service.proto 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.binaryauthorization.v1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/cloud/binaryauthorization/v1/resources.proto";
  21. import "google/protobuf/empty.proto";
  22. import "grafeas/v1/attestation.proto";
  23. option cc_enable_arenas = true;
  24. option csharp_namespace = "Google.Cloud.BinaryAuthorization.V1";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1;binaryauthorization";
  26. option java_multiple_files = false;
  27. option java_package = "com.google.protos.google.cloud.binaryauthorization.v1";
  28. option php_namespace = "Google\\Cloud\\BinaryAuthorization\\V1";
  29. option ruby_package = "Google::Cloud::BinaryAuthorization::V1";
  30. // Customer-facing API for Cloud Binary Authorization.
  31. // Google Cloud Management Service for Binary Authorization admission policies
  32. // and attestation authorities.
  33. //
  34. // This API implements a REST model with the following objects:
  35. //
  36. // * [Policy][google.cloud.binaryauthorization.v1.Policy]
  37. // * [Attestor][google.cloud.binaryauthorization.v1.Attestor]
  38. service BinauthzManagementServiceV1 {
  39. option (google.api.default_host) = "binaryauthorization.googleapis.com";
  40. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  41. // A [policy][google.cloud.binaryauthorization.v1.Policy] specifies the [attestors][google.cloud.binaryauthorization.v1.Attestor] that must attest to
  42. // a container image, before the project is allowed to deploy that
  43. // image. There is at most one policy per project. All image admission
  44. // requests are permitted if a project has no policy.
  45. //
  46. // Gets the [policy][google.cloud.binaryauthorization.v1.Policy] for this project. Returns a default
  47. // [policy][google.cloud.binaryauthorization.v1.Policy] if the project does not have one.
  48. rpc GetPolicy(GetPolicyRequest) returns (Policy) {
  49. option (google.api.http) = {
  50. get: "/v1/{name=projects/*/policy}"
  51. };
  52. option (google.api.method_signature) = "name";
  53. }
  54. // Creates or updates a project's [policy][google.cloud.binaryauthorization.v1.Policy], and returns a copy of the
  55. // new [policy][google.cloud.binaryauthorization.v1.Policy]. A policy is always updated as a whole, to avoid race
  56. // conditions with concurrent policy enforcement (or management!)
  57. // requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT
  58. // if the request is malformed.
  59. rpc UpdatePolicy(UpdatePolicyRequest) returns (Policy) {
  60. option (google.api.http) = {
  61. put: "/v1/{policy.name=projects/*/policy}"
  62. body: "policy"
  63. };
  64. option (google.api.method_signature) = "policy";
  65. }
  66. // Creates an [attestor][google.cloud.binaryauthorization.v1.Attestor], and returns a copy of the new
  67. // [attestor][google.cloud.binaryauthorization.v1.Attestor]. Returns NOT_FOUND if the project does not exist,
  68. // INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the
  69. // [attestor][google.cloud.binaryauthorization.v1.Attestor] already exists.
  70. rpc CreateAttestor(CreateAttestorRequest) returns (Attestor) {
  71. option (google.api.http) = {
  72. post: "/v1/{parent=projects/*}/attestors"
  73. body: "attestor"
  74. };
  75. option (google.api.method_signature) = "parent,attestor_id,attestor";
  76. }
  77. // Gets an [attestor][google.cloud.binaryauthorization.v1.Attestor].
  78. // Returns NOT_FOUND if the [attestor][google.cloud.binaryauthorization.v1.Attestor] does not exist.
  79. rpc GetAttestor(GetAttestorRequest) returns (Attestor) {
  80. option (google.api.http) = {
  81. get: "/v1/{name=projects/*/attestors/*}"
  82. };
  83. option (google.api.method_signature) = "name";
  84. }
  85. // Updates an [attestor][google.cloud.binaryauthorization.v1.Attestor].
  86. // Returns NOT_FOUND if the [attestor][google.cloud.binaryauthorization.v1.Attestor] does not exist.
  87. rpc UpdateAttestor(UpdateAttestorRequest) returns (Attestor) {
  88. option (google.api.http) = {
  89. put: "/v1/{attestor.name=projects/*/attestors/*}"
  90. body: "attestor"
  91. };
  92. option (google.api.method_signature) = "attestor";
  93. }
  94. // Lists [attestors][google.cloud.binaryauthorization.v1.Attestor].
  95. // Returns INVALID_ARGUMENT if the project does not exist.
  96. rpc ListAttestors(ListAttestorsRequest) returns (ListAttestorsResponse) {
  97. option (google.api.http) = {
  98. get: "/v1/{parent=projects/*}/attestors"
  99. };
  100. option (google.api.method_signature) = "parent";
  101. }
  102. // Deletes an [attestor][google.cloud.binaryauthorization.v1.Attestor]. Returns NOT_FOUND if the
  103. // [attestor][google.cloud.binaryauthorization.v1.Attestor] does not exist.
  104. rpc DeleteAttestor(DeleteAttestorRequest) returns (google.protobuf.Empty) {
  105. option (google.api.http) = {
  106. delete: "/v1/{name=projects/*/attestors/*}"
  107. };
  108. option (google.api.method_signature) = "name";
  109. }
  110. }
  111. // API for working with the system policy.
  112. service SystemPolicyV1 {
  113. option (google.api.default_host) = "binaryauthorization.googleapis.com";
  114. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  115. // Gets the current system policy in the specified location.
  116. rpc GetSystemPolicy(GetSystemPolicyRequest) returns (Policy) {
  117. option (google.api.http) = {
  118. get: "/v1/{name=locations/*/policy}"
  119. };
  120. option (google.api.method_signature) = "name";
  121. }
  122. }
  123. // BinAuthz Attestor verification
  124. service ValidationHelperV1 {
  125. option (google.api.default_host) = "binaryauthorization.googleapis.com";
  126. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  127. // Returns whether the given Attestation for the given image URI
  128. // was signed by the given Attestor
  129. rpc ValidateAttestationOccurrence(ValidateAttestationOccurrenceRequest) returns (ValidateAttestationOccurrenceResponse) {
  130. option (google.api.http) = {
  131. post: "/v1/{attestor=projects/*/attestors/*}:validateAttestationOccurrence"
  132. body: "*"
  133. };
  134. }
  135. }
  136. // Request message for [BinauthzManagementService.GetPolicy][].
  137. message GetPolicyRequest {
  138. // Required. The resource name of the [policy][google.cloud.binaryauthorization.v1.Policy] to retrieve,
  139. // in the format `projects/*/policy`.
  140. string name = 1 [
  141. (google.api.field_behavior) = REQUIRED,
  142. (google.api.resource_reference) = {
  143. type: "binaryauthorization.googleapis.com/Policy"
  144. }
  145. ];
  146. }
  147. // Request message for [BinauthzManagementService.UpdatePolicy][].
  148. message UpdatePolicyRequest {
  149. // Required. A new or updated [policy][google.cloud.binaryauthorization.v1.Policy] value. The service will
  150. // overwrite the [policy name][google.cloud.binaryauthorization.v1.Policy.name] field with the resource name in
  151. // the request URL, in the format `projects/*/policy`.
  152. Policy policy = 1 [(google.api.field_behavior) = REQUIRED];
  153. }
  154. // Request message for [BinauthzManagementService.CreateAttestor][].
  155. message CreateAttestorRequest {
  156. // Required. The parent of this [attestor][google.cloud.binaryauthorization.v1.Attestor].
  157. string parent = 1 [
  158. (google.api.field_behavior) = REQUIRED,
  159. (google.api.resource_reference) = {
  160. type: "cloudresourcemanager.googleapis.com/Project"
  161. }
  162. ];
  163. // Required. The [attestors][google.cloud.binaryauthorization.v1.Attestor] ID.
  164. string attestor_id = 2 [(google.api.field_behavior) = REQUIRED];
  165. // Required. The initial [attestor][google.cloud.binaryauthorization.v1.Attestor] value. The service will
  166. // overwrite the [attestor name][google.cloud.binaryauthorization.v1.Attestor.name] field with the resource name,
  167. // in the format `projects/*/attestors/*`.
  168. Attestor attestor = 3 [(google.api.field_behavior) = REQUIRED];
  169. }
  170. // Request message for [BinauthzManagementService.GetAttestor][].
  171. message GetAttestorRequest {
  172. // Required. The name of the [attestor][google.cloud.binaryauthorization.v1.Attestor] to retrieve, in the format
  173. // `projects/*/attestors/*`.
  174. string name = 1 [
  175. (google.api.field_behavior) = REQUIRED,
  176. (google.api.resource_reference) = {
  177. type: "binaryauthorization.googleapis.com/Attestor"
  178. }
  179. ];
  180. }
  181. // Request message for [BinauthzManagementService.UpdateAttestor][].
  182. message UpdateAttestorRequest {
  183. // Required. The updated [attestor][google.cloud.binaryauthorization.v1.Attestor] value. The service will
  184. // overwrite the [attestor name][google.cloud.binaryauthorization.v1.Attestor.name] field with the resource name
  185. // in the request URL, in the format `projects/*/attestors/*`.
  186. Attestor attestor = 1 [(google.api.field_behavior) = REQUIRED];
  187. }
  188. // Request message for [BinauthzManagementService.ListAttestors][].
  189. message ListAttestorsRequest {
  190. // Required. The resource name of the project associated with the
  191. // [attestors][google.cloud.binaryauthorization.v1.Attestor], in the format `projects/*`.
  192. string parent = 1 [
  193. (google.api.field_behavior) = REQUIRED,
  194. (google.api.resource_reference) = {
  195. type: "cloudresourcemanager.googleapis.com/Project"
  196. }
  197. ];
  198. // Requested page size. The server may return fewer results than requested. If
  199. // unspecified, the server will pick an appropriate default.
  200. int32 page_size = 2;
  201. // A token identifying a page of results the server should return. Typically,
  202. // this is the value of [ListAttestorsResponse.next_page_token][google.cloud.binaryauthorization.v1.ListAttestorsResponse.next_page_token] returned
  203. // from the previous call to the `ListAttestors` method.
  204. string page_token = 3;
  205. }
  206. // Response message for [BinauthzManagementService.ListAttestors][].
  207. message ListAttestorsResponse {
  208. // The list of [attestors][google.cloud.binaryauthorization.v1.Attestor].
  209. repeated Attestor attestors = 1;
  210. // A token to retrieve the next page of results. Pass this value in the
  211. // [ListAttestorsRequest.page_token][google.cloud.binaryauthorization.v1.ListAttestorsRequest.page_token] field in the subsequent call to the
  212. // `ListAttestors` method to retrieve the next page of results.
  213. string next_page_token = 2;
  214. }
  215. // Request message for [BinauthzManagementService.DeleteAttestor][].
  216. message DeleteAttestorRequest {
  217. // Required. The name of the [attestors][google.cloud.binaryauthorization.v1.Attestor] to delete, in the format
  218. // `projects/*/attestors/*`.
  219. string name = 1 [
  220. (google.api.field_behavior) = REQUIRED,
  221. (google.api.resource_reference) = {
  222. type: "binaryauthorization.googleapis.com/Attestor"
  223. }
  224. ];
  225. }
  226. // Request to read the current system policy.
  227. message GetSystemPolicyRequest {
  228. // Required. The resource name, in the format `locations/*/policy`.
  229. // Note that the system policy is not associated with a project.
  230. string name = 1 [
  231. (google.api.field_behavior) = REQUIRED,
  232. (google.api.resource_reference) = {
  233. type: "binaryauthorization.googleapis.com/Policy"
  234. }
  235. ];
  236. }
  237. // Request message for
  238. // [ValidationHelperV1.ValidateAttestationOccurrence][google.cloud.binaryauthorization.v1.ValidationHelperV1.ValidateAttestationOccurrence].
  239. message ValidateAttestationOccurrenceRequest {
  240. // Required. The resource name of the [Attestor][google.cloud.binaryauthorization.v1.Attestor] of the
  241. // [occurrence][grafeas.v1.Occurrence], in the format
  242. // `projects/*/attestors/*`.
  243. string attestor = 1 [(google.api.field_behavior) = REQUIRED];
  244. // Required. An [AttestationOccurrence][grafeas.v1.AttestationOccurrence] to
  245. // be checked that it can be verified by the Attestor. It does not have to be
  246. // an existing entity in Container Analysis. It must otherwise be a valid
  247. // AttestationOccurrence.
  248. grafeas.v1.AttestationOccurrence attestation = 2 [(google.api.field_behavior) = REQUIRED];
  249. // Required. The resource name of the [Note][grafeas.v1.Note] to which the
  250. // containing [Occurrence][grafeas.v1.Occurrence] is associated.
  251. string occurrence_note = 3 [(google.api.field_behavior) = REQUIRED];
  252. // Required. The URI of the artifact (e.g. container image) that is the
  253. // subject of the containing [Occurrence][grafeas.v1.Occurrence].
  254. string occurrence_resource_uri = 4 [(google.api.field_behavior) = REQUIRED];
  255. }
  256. // Response message for
  257. // [ValidationHelperV1.ValidateAttestationOccurrence][google.cloud.binaryauthorization.v1.ValidationHelperV1.ValidateAttestationOccurrence].
  258. message ValidateAttestationOccurrenceResponse {
  259. // The enum returned in the "result" field.
  260. enum Result {
  261. // Unspecified.
  262. RESULT_UNSPECIFIED = 0;
  263. // The Attestation was able to verified by the Attestor.
  264. VERIFIED = 1;
  265. // The Attestation was not able to verified by the Attestor.
  266. ATTESTATION_NOT_VERIFIABLE = 2;
  267. }
  268. // The result of the Attestation validation.
  269. Result result = 1;
  270. // The reason for denial if the Attestation couldn't be validated.
  271. string denial_reason = 2;
  272. }