grpc_route.proto 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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/protobuf/duration.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 = "GrpcRouteProto";
  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. // GrpcRoute is the resource defining how gRPC traffic routed by a Mesh
  29. // or Gateway resource is routed.
  30. message GrpcRoute {
  31. option (google.api.resource) = {
  32. type: "networkservices.googleapis.com/GrpcRoute"
  33. pattern: "projects/{project}/locations/{location}/grpcRoutes/{grpc_route}"
  34. };
  35. // Specifies a match against a method.
  36. message MethodMatch {
  37. // The type of the match.
  38. enum Type {
  39. // Unspecified.
  40. TYPE_UNSPECIFIED = 0;
  41. // Will only match the exact name provided.
  42. EXACT = 1;
  43. // Will interpret grpc_method and grpc_service as regexes. RE2 syntax is
  44. // supported.
  45. REGULAR_EXPRESSION = 2;
  46. }
  47. // Optional. Specifies how to match against the name. If not specified, a default
  48. // value of "EXACT" is used.
  49. Type type = 1 [(google.api.field_behavior) = OPTIONAL];
  50. // Required. Name of the service to match against. If unspecified, will match all
  51. // services.
  52. string grpc_service = 2 [(google.api.field_behavior) = REQUIRED];
  53. // Required. Name of the method to match against. If unspecified, will match all
  54. // methods.
  55. string grpc_method = 3 [(google.api.field_behavior) = REQUIRED];
  56. // Optional. Specifies that matches are case sensitive. The default value is true.
  57. // case_sensitive must not be used with a type of REGULAR_EXPRESSION.
  58. optional bool case_sensitive = 4 [(google.api.field_behavior) = OPTIONAL];
  59. }
  60. // A match against a collection of headers.
  61. message HeaderMatch {
  62. // The type of match.
  63. enum Type {
  64. // Unspecified.
  65. TYPE_UNSPECIFIED = 0;
  66. // Will only match the exact value provided.
  67. EXACT = 1;
  68. // Will match paths conforming to the prefix specified by value. RE2
  69. // syntax is supported.
  70. REGULAR_EXPRESSION = 2;
  71. }
  72. // Optional. Specifies how to match against the value of the header. If not
  73. // specified, a default value of EXACT is used.
  74. Type type = 1 [(google.api.field_behavior) = OPTIONAL];
  75. // Required. The key of the header.
  76. string key = 2 [(google.api.field_behavior) = REQUIRED];
  77. // Required. The value of the header.
  78. string value = 3 [(google.api.field_behavior) = REQUIRED];
  79. }
  80. // Criteria for matching traffic. A RouteMatch will be considered to match
  81. // when all supplied fields match.
  82. message RouteMatch {
  83. // Optional. A gRPC method to match against. If this field is empty or omitted, will
  84. // match all methods.
  85. optional MethodMatch method = 1 [(google.api.field_behavior) = OPTIONAL];
  86. // Optional. Specifies a collection of headers to match.
  87. repeated HeaderMatch headers = 2 [(google.api.field_behavior) = OPTIONAL];
  88. }
  89. // The destination to which traffic will be routed.
  90. message Destination {
  91. // Specifies the kind of destination to which traffic will be routed.
  92. oneof destination_type {
  93. // Required. The URL of a destination service to which to route traffic. Must refer
  94. // to either a BackendService or ServiceDirectoryService.
  95. string service_name = 1 [
  96. (google.api.field_behavior) = REQUIRED,
  97. (google.api.resource_reference) = {
  98. type: "compute.googleapis.com/BackendService"
  99. }
  100. ];
  101. }
  102. // Optional. Specifies the proportion of requests forwarded to the backend referenced
  103. // by the serviceName field. This is computed as:
  104. // weight/Sum(weights in this destination list).
  105. // For non-zero values, there may be some epsilon from the exact proportion
  106. // defined here depending on the precision an implementation supports.
  107. //
  108. // If only one serviceName is specified and it has a weight greater than 0,
  109. // 100% of the traffic is forwarded to that backend.
  110. //
  111. // If weights are specified for any one service name, they need to be
  112. // specified for all of them.
  113. //
  114. // If weights are unspecified for all services, then, traffic is distributed
  115. // in equal proportions to all of them.
  116. optional int32 weight = 2 [(google.api.field_behavior) = OPTIONAL];
  117. }
  118. // The specification for fault injection introduced into traffic to test the
  119. // resiliency of clients to destination service failure. As part of fault
  120. // injection, when clients send requests to a destination, delays can be
  121. // introduced on a percentage of requests before sending those requests to the
  122. // destination service. Similarly requests from clients can be aborted by for
  123. // a percentage of requests.
  124. message FaultInjectionPolicy {
  125. // Specification of how client requests are delayed as part of fault
  126. // injection before being sent to a destination.
  127. message Delay {
  128. // Specify a fixed delay before forwarding the request.
  129. optional google.protobuf.Duration fixed_delay = 1;
  130. // The percentage of traffic on which delay will be injected.
  131. //
  132. // The value must be between [0, 100]
  133. optional int32 percentage = 2;
  134. }
  135. // Specification of how client requests are aborted as part of fault
  136. // injection before being sent to a destination.
  137. message Abort {
  138. // The HTTP status code used to abort the request.
  139. //
  140. // The value must be between 200 and 599 inclusive.
  141. optional int32 http_status = 1;
  142. // The percentage of traffic which will be aborted.
  143. //
  144. // The value must be between [0, 100]
  145. optional int32 percentage = 2;
  146. }
  147. // The specification for injecting delay to client requests.
  148. optional Delay delay = 1;
  149. // The specification for aborting to client requests.
  150. optional Abort abort = 2;
  151. }
  152. // The specifications for retries.
  153. message RetryPolicy {
  154. // - connect-failure: Router will retry on failures connecting to Backend
  155. // Services, for example due to connection timeouts.
  156. // - refused-stream: Router will retry if the backend service resets the
  157. // stream
  158. // with a REFUSED_STREAM error code. This reset type indicates that it is
  159. // safe to retry.
  160. // - cancelled: Router will retry if the gRPC status code in the response
  161. // header
  162. // is set to cancelled
  163. // - deadline-exceeded: Router will retry if the gRPC status code in the
  164. // response
  165. // header is set to deadline-exceeded
  166. // - resource-exhausted: Router will retry if the gRPC status code in the
  167. // response header is set to resource-exhausted
  168. // - unavailable: Router will retry if the gRPC status code in the response
  169. // header is set to unavailable
  170. repeated string retry_conditions = 1;
  171. // Specifies the allowed number of retries. This number must be > 0. If not
  172. // specified, default to 1.
  173. uint32 num_retries = 2;
  174. }
  175. // Specifies how to route matched traffic.
  176. message RouteAction {
  177. // Optional. The destination services to which traffic should be forwarded. If
  178. // multiple destinations are specified, traffic will be split between
  179. // Backend Service(s) according to the weight field of these destinations.
  180. repeated Destination destinations = 1 [(google.api.field_behavior) = OPTIONAL];
  181. // Optional. The specification for fault injection introduced into traffic to test the
  182. // resiliency of clients to destination service failure. As part of fault
  183. // injection, when clients send requests to a destination, delays can be
  184. // introduced on a percentage of requests before sending those requests to
  185. // the destination service. Similarly requests from clients can be aborted
  186. // by for a percentage of requests.
  187. //
  188. // timeout and retry_policy will be ignored by clients that are configured
  189. // with a fault_injection_policy
  190. FaultInjectionPolicy fault_injection_policy = 3 [(google.api.field_behavior) = OPTIONAL];
  191. // Optional. Specifies the timeout for selected route. Timeout is computed from the
  192. // time the request has been fully processed (i.e. end of stream) up until
  193. // the response has been completely processed. Timeout includes all retries.
  194. google.protobuf.Duration timeout = 7 [(google.api.field_behavior) = OPTIONAL];
  195. // Optional. Specifies the retry policy associated with this route.
  196. RetryPolicy retry_policy = 8 [(google.api.field_behavior) = OPTIONAL];
  197. }
  198. // Describes how to route traffic.
  199. message RouteRule {
  200. // Optional. Matches define conditions used for matching the rule against incoming
  201. // gRPC requests. Each match is independent, i.e. this rule will be matched
  202. // if ANY one of the matches is satisfied. If no matches field is
  203. // specified, this rule will unconditionally match traffic.
  204. repeated RouteMatch matches = 1 [(google.api.field_behavior) = OPTIONAL];
  205. // Required. A detailed rule defining how to route traffic. This field is required.
  206. RouteAction action = 2 [(google.api.field_behavior) = REQUIRED];
  207. }
  208. // Required. Name of the GrpcRoute resource. It matches pattern
  209. // `projects/*/locations/global/grpcRoutes/<grpc_route_name>`
  210. string name = 1 [(google.api.field_behavior) = REQUIRED];
  211. // Output only. Server-defined URL of this resource
  212. string self_link = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  213. // Output only. The timestamp when the resource was created.
  214. google.protobuf.Timestamp create_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  215. // Output only. The timestamp when the resource was updated.
  216. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  217. // Optional. Set of label tags associated with the GrpcRoute resource.
  218. map<string, string> labels = 4 [(google.api.field_behavior) = OPTIONAL];
  219. // Optional. A free-text description of the resource. Max length 1024 characters.
  220. string description = 5 [(google.api.field_behavior) = OPTIONAL];
  221. // Required. Service hostnames with an optional port for which this route describes
  222. // traffic.
  223. //
  224. // Format: <hostname>[:<port>]
  225. //
  226. // Hostname is the fully qualified domain name of a network host. This matches
  227. // the RFC 1123 definition of a hostname with 2 notable exceptions:
  228. // - IPs are not allowed.
  229. // - A hostname may be prefixed with a wildcard label (*.). The wildcard
  230. // label must appear by itself as the first label.
  231. //
  232. // Hostname can be "precise" which is a domain name without the terminating
  233. // dot of a network host (e.g. "foo.example.com") or "wildcard", which is a
  234. // domain name prefixed with a single wildcard label (e.g. *.example.com).
  235. //
  236. // Note that as per RFC1035 and RFC1123, a label must consist of lower case
  237. // alphanumeric characters or '-', and must start and end with an alphanumeric
  238. // character. No other punctuation is allowed.
  239. //
  240. // The routes associated with a Mesh or Gateway must have unique hostnames. If
  241. // you attempt to attach multiple routes with conflicting hostnames, the
  242. // configuration will be rejected.
  243. //
  244. // For example, while it is acceptable for routes for the hostnames
  245. // "*.foo.bar.com" and "*.bar.com" to be associated with the same route, it is
  246. // not possible to associate two routes both with "*.bar.com" or both with
  247. // "bar.com".
  248. //
  249. // If a port is specified, then gRPC clients must use the channel URI with the
  250. // port to match this rule (i.e. "xds:///service:123"), otherwise they must
  251. // supply the URI without a port (i.e. "xds:///service").
  252. repeated string hostnames = 6 [(google.api.field_behavior) = REQUIRED];
  253. // Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as one of
  254. // the routing rules to route the requests served by the mesh.
  255. //
  256. // Each mesh reference should match the pattern:
  257. // `projects/*/locations/global/meshes/<mesh_name>`
  258. repeated string meshes = 9 [
  259. (google.api.field_behavior) = OPTIONAL,
  260. (google.api.resource_reference) = {
  261. type: "networkservices.googleapis.com/Mesh"
  262. }
  263. ];
  264. // Optional. Gateways defines a list of gateways this GrpcRoute is attached to, as one
  265. // of the routing rules to route the requests served by the gateway.
  266. //
  267. // Each gateway reference should match the pattern:
  268. // `projects/*/locations/global/gateways/<gateway_name>`
  269. repeated string gateways = 10 [
  270. (google.api.field_behavior) = OPTIONAL,
  271. (google.api.resource_reference) = {
  272. type: "networkservices.googleapis.com/Gateway"
  273. }
  274. ];
  275. // Required. A list of detailed rules defining how to route traffic.
  276. //
  277. // Within a single GrpcRoute, the GrpcRoute.RouteAction associated with the
  278. // first matching GrpcRoute.RouteRule will be executed. At least one rule
  279. // must be supplied.
  280. repeated RouteRule rules = 7 [(google.api.field_behavior) = REQUIRED];
  281. }
  282. // Request used with the ListGrpcRoutes method.
  283. message ListGrpcRoutesRequest {
  284. // Required. The project and location from which the GrpcRoutes should be
  285. // listed, specified in the format `projects/*/locations/global`.
  286. string parent = 1 [
  287. (google.api.field_behavior) = REQUIRED,
  288. (google.api.resource_reference) = {
  289. child_type: "networkservices.googleapis.com/GrpcRoute"
  290. }
  291. ];
  292. // Maximum number of GrpcRoutes to return per call.
  293. int32 page_size = 2;
  294. // The value returned by the last `ListGrpcRoutesResponse`
  295. // Indicates that this is a continuation of a prior `ListGrpcRoutes` call,
  296. // and that the system should return the next page of data.
  297. string page_token = 3;
  298. }
  299. // Response returned by the ListGrpcRoutes method.
  300. message ListGrpcRoutesResponse {
  301. // List of GrpcRoute resources.
  302. repeated GrpcRoute grpc_routes = 1;
  303. // If there might be more results than those appearing in this response, then
  304. // `next_page_token` is included. To get the next set of results, call this
  305. // method again using the value of `next_page_token` as `page_token`.
  306. string next_page_token = 2;
  307. }
  308. // Request used by the GetGrpcRoute method.
  309. message GetGrpcRouteRequest {
  310. // Required. A name of the GrpcRoute to get. Must be in the format
  311. // `projects/*/locations/global/grpcRoutes/*`.
  312. string name = 1 [
  313. (google.api.field_behavior) = REQUIRED,
  314. (google.api.resource_reference) = {
  315. type: "networkservices.googleapis.com/GrpcRoute"
  316. }
  317. ];
  318. }
  319. // Request used by the CreateGrpcRoute method.
  320. message CreateGrpcRouteRequest {
  321. // Required. The parent resource of the GrpcRoute. Must be in the
  322. // format `projects/*/locations/global`.
  323. string parent = 1 [
  324. (google.api.field_behavior) = REQUIRED,
  325. (google.api.resource_reference) = {
  326. child_type: "networkservices.googleapis.com/GrpcRoute"
  327. }
  328. ];
  329. // Required. Short name of the GrpcRoute resource to be created.
  330. string grpc_route_id = 2 [(google.api.field_behavior) = REQUIRED];
  331. // Required. GrpcRoute resource to be created.
  332. GrpcRoute grpc_route = 3 [(google.api.field_behavior) = REQUIRED];
  333. }
  334. // Request used by the UpdateGrpcRoute method.
  335. message UpdateGrpcRouteRequest {
  336. // Optional. Field mask is used to specify the fields to be overwritten in the
  337. // GrpcRoute resource by the update.
  338. // The fields specified in the update_mask are relative to the resource, not
  339. // the full request. A field will be overwritten if it is in the mask. If the
  340. // user does not provide a mask then all fields will be overwritten.
  341. google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = OPTIONAL];
  342. // Required. Updated GrpcRoute resource.
  343. GrpcRoute grpc_route = 2 [(google.api.field_behavior) = REQUIRED];
  344. }
  345. // Request used by the DeleteGrpcRoute method.
  346. message DeleteGrpcRouteRequest {
  347. // Required. A name of the GrpcRoute to delete. Must be in the format
  348. // `projects/*/locations/global/grpcRoutes/*`.
  349. string name = 1 [
  350. (google.api.field_behavior) = REQUIRED,
  351. (google.api.resource_reference) = {
  352. type: "networkservices.googleapis.com/GrpcRoute"
  353. }
  354. ];
  355. }