endpoint_policy.proto 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. // Copyright 2022 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.networkservices.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/networkservices/v1/common.proto";
  19. import "google/protobuf/field_mask.proto";
  20. import "google/protobuf/timestamp.proto";
  21. option csharp_namespace = "Google.Cloud.NetworkServices.V1";
  22. option go_package = "google.golang.org/genproto/googleapis/cloud/networkservices/v1;networkservices";
  23. option java_multiple_files = true;
  24. option java_outer_classname = "EndpointPolicyProto";
  25. option java_package = "com.google.cloud.networkservices.v1";
  26. option php_namespace = "Google\\Cloud\\NetworkServices\\V1";
  27. option ruby_package = "Google::Cloud::NetworkServices::V1";
  28. option (google.api.resource_definition) = {
  29. type: "networksecurity.googleapis.com/AuthorizationPolicy"
  30. pattern: "projects/{project}/locations/{location}/authorizationPolicies/{authorization_policy}"
  31. };
  32. option (google.api.resource_definition) = {
  33. type: "networksecurity.googleapis.com/ServerTlsPolicy"
  34. pattern: "projects/{project}/locations/{location}/serverTlsPolicies/{server_tls_policy}"
  35. };
  36. option (google.api.resource_definition) = {
  37. type: "networksecurity.googleapis.com/ClientTlsPolicy"
  38. pattern: "projects/{project}/locations/{location}/clientTlsPolicies/{client_tls_policy}"
  39. };
  40. // EndpointPolicy is a resource that helps apply desired configuration
  41. // on the endpoints that match specific criteria.
  42. // For example, this resource can be used to apply "authentication config"
  43. // an all endpoints that serve on port 8080.
  44. message EndpointPolicy {
  45. option (google.api.resource) = {
  46. type: "networkservices.googleapis.com/EndpointPolicy"
  47. pattern: "projects/{project}/locations/{location}/endpointPolicies/{endpoint_policy}"
  48. };
  49. // The type of endpoint policy.
  50. enum EndpointPolicyType {
  51. // Default value. Must not be used.
  52. ENDPOINT_POLICY_TYPE_UNSPECIFIED = 0;
  53. // Represents a proxy deployed as a sidecar.
  54. SIDECAR_PROXY = 1;
  55. // Represents a proxyless gRPC backend.
  56. GRPC_SERVER = 2;
  57. }
  58. // Required. Name of the EndpointPolicy resource. It matches pattern
  59. // `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.
  60. string name = 1 [(google.api.field_behavior) = REQUIRED];
  61. // Output only. The timestamp when the resource was created.
  62. google.protobuf.Timestamp create_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  63. // Output only. The timestamp when the resource was updated.
  64. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  65. // Optional. Set of label tags associated with the EndpointPolicy resource.
  66. map<string, string> labels = 4 [(google.api.field_behavior) = OPTIONAL];
  67. // Required. The type of endpoint policy. This is primarily used to validate
  68. // the configuration.
  69. EndpointPolicyType type = 5 [(google.api.field_behavior) = REQUIRED];
  70. // Optional. This field specifies the URL of AuthorizationPolicy resource that
  71. // applies authorization policies to the inbound traffic at the
  72. // matched endpoints. Refer to Authorization. If this field is not
  73. // specified, authorization is disabled(no authz checks) for this
  74. // endpoint.
  75. string authorization_policy = 7 [
  76. (google.api.field_behavior) = OPTIONAL,
  77. (google.api.resource_reference) = {
  78. type: "networksecurity.googleapis.com/AuthorizationPolicy"
  79. }
  80. ];
  81. // Required. A matcher that selects endpoints to which the policies should be applied.
  82. EndpointMatcher endpoint_matcher = 9 [(google.api.field_behavior) = REQUIRED];
  83. // Optional. Port selector for the (matched) endpoints. If no port selector is
  84. // provided, the matched config is applied to all ports.
  85. TrafficPortSelector traffic_port_selector = 10 [(google.api.field_behavior) = OPTIONAL];
  86. // Optional. A free-text description of the resource. Max length 1024 characters.
  87. string description = 11 [(google.api.field_behavior) = OPTIONAL];
  88. // Optional. A URL referring to ServerTlsPolicy resource. ServerTlsPolicy is used to
  89. // determine the authentication policy to be applied to terminate the inbound
  90. // traffic at the identified backends. If this field is not set,
  91. // authentication is disabled(open) for this endpoint.
  92. string server_tls_policy = 12 [
  93. (google.api.field_behavior) = OPTIONAL,
  94. (google.api.resource_reference) = {
  95. type: "networksecurity.googleapis.com/ServerTlsPolicy"
  96. }
  97. ];
  98. // Optional. A URL referring to a ClientTlsPolicy resource. ClientTlsPolicy can be set
  99. // to specify the authentication for traffic from the proxy to the actual
  100. // endpoints. More specifically, it is applied to the outgoing traffic from
  101. // the proxy to the endpoint. This is typically used for sidecar model where
  102. // the proxy identifies itself as endpoint to the control plane, with the
  103. // connection between sidecar and endpoint requiring authentication. If this
  104. // field is not set, authentication is disabled(open). Applicable only when
  105. // EndpointPolicyType is SIDECAR_PROXY.
  106. string client_tls_policy = 13 [
  107. (google.api.field_behavior) = OPTIONAL,
  108. (google.api.resource_reference) = {
  109. type: "networksecurity.googleapis.com/ClientTlsPolicy"
  110. }
  111. ];
  112. }
  113. // Request used with the ListEndpointPolicies method.
  114. message ListEndpointPoliciesRequest {
  115. // Required. The project and location from which the EndpointPolicies should be
  116. // listed, specified in the format `projects/*/locations/global`.
  117. string parent = 1 [
  118. (google.api.field_behavior) = REQUIRED,
  119. (google.api.resource_reference) = {
  120. child_type: "networkservices.googleapis.com/EndpointPolicy"
  121. }
  122. ];
  123. // Maximum number of EndpointPolicies to return per call.
  124. int32 page_size = 2;
  125. // The value returned by the last `ListEndpointPoliciesResponse`
  126. // Indicates that this is a continuation of a prior
  127. // `ListEndpointPolicies` call, and that the system should return the
  128. // next page of data.
  129. string page_token = 3;
  130. }
  131. // Response returned by the ListEndpointPolicies method.
  132. message ListEndpointPoliciesResponse {
  133. // List of EndpointPolicy resources.
  134. repeated EndpointPolicy endpoint_policies = 1;
  135. // If there might be more results than those appearing in this response, then
  136. // `next_page_token` is included. To get the next set of results, call this
  137. // method again using the value of `next_page_token` as `page_token`.
  138. string next_page_token = 2;
  139. }
  140. // Request used with the GetEndpointPolicy method.
  141. message GetEndpointPolicyRequest {
  142. // Required. A name of the EndpointPolicy to get. Must be in the format
  143. // `projects/*/locations/global/endpointPolicies/*`.
  144. string name = 1 [
  145. (google.api.field_behavior) = REQUIRED,
  146. (google.api.resource_reference) = {
  147. type: "networkservices.googleapis.com/EndpointPolicy"
  148. }
  149. ];
  150. }
  151. // Request used with the CreateEndpointPolicy method.
  152. message CreateEndpointPolicyRequest {
  153. // Required. The parent resource of the EndpointPolicy. Must be in the
  154. // format `projects/*/locations/global`.
  155. string parent = 1 [
  156. (google.api.field_behavior) = REQUIRED,
  157. (google.api.resource_reference) = {
  158. child_type: "networkservices.googleapis.com/EndpointPolicy"
  159. }
  160. ];
  161. // Required. Short name of the EndpointPolicy resource to be created.
  162. // E.g. "CustomECS".
  163. string endpoint_policy_id = 2 [(google.api.field_behavior) = REQUIRED];
  164. // Required. EndpointPolicy resource to be created.
  165. EndpointPolicy endpoint_policy = 3 [(google.api.field_behavior) = REQUIRED];
  166. }
  167. // Request used with the UpdateEndpointPolicy method.
  168. message UpdateEndpointPolicyRequest {
  169. // Optional. Field mask is used to specify the fields to be overwritten in the
  170. // EndpointPolicy resource by the update.
  171. // The fields specified in the update_mask are relative to the resource, not
  172. // the full request. A field will be overwritten if it is in the mask. If the
  173. // user does not provide a mask then all fields will be overwritten.
  174. google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = OPTIONAL];
  175. // Required. Updated EndpointPolicy resource.
  176. EndpointPolicy endpoint_policy = 2 [(google.api.field_behavior) = REQUIRED];
  177. }
  178. // Request used with the DeleteEndpointPolicy method.
  179. message DeleteEndpointPolicyRequest {
  180. // Required. A name of the EndpointPolicy to delete. Must be in the format
  181. // `projects/*/locations/global/endpointPolicies/*`.
  182. string name = 1 [
  183. (google.api.field_behavior) = REQUIRED,
  184. (google.api.resource_reference) = {
  185. type: "networkservices.googleapis.com/EndpointPolicy"
  186. }
  187. ];
  188. }