http_route.proto 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  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 = "HttpRouteProto";
  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. // HttpRoute is the resource defining how HTTP traffic should be routed by a
  29. // Mesh or Gateway resource.
  30. message HttpRoute {
  31. option (google.api.resource) = {
  32. type: "networkservices.googleapis.com/HttpRoute"
  33. pattern: "projects/{project}/locations/{location}/httpRoutes/{http_route}"
  34. };
  35. // Specifies how to select a route rule based on HTTP request headers.
  36. message HeaderMatch {
  37. // Represents an integer value range.
  38. message IntegerRange {
  39. // Start of the range (inclusive)
  40. int32 start = 1;
  41. // End of the range (exclusive)
  42. int32 end = 2;
  43. }
  44. oneof MatchType {
  45. // The value of the header should match exactly the content of
  46. // exact_match.
  47. string exact_match = 2;
  48. // The value of the header must match the regular expression specified in
  49. // regex_match. For regular expression grammar, please see:
  50. // https://github.com/google/re2/wiki/Syntax
  51. string regex_match = 3;
  52. // The value of the header must start with the contents of prefix_match.
  53. string prefix_match = 4;
  54. // A header with header_name must exist. The match takes place whether or
  55. // not the header has a value.
  56. bool present_match = 5;
  57. // The value of the header must end with the contents of suffix_match.
  58. string suffix_match = 6;
  59. // If specified, the rule will match if the request header value is within
  60. // the range.
  61. IntegerRange range_match = 7;
  62. }
  63. // The name of the HTTP header to match against.
  64. string header = 1;
  65. // If specified, the match result will be inverted before checking. Default
  66. // value is set to false.
  67. bool invert_match = 8;
  68. }
  69. // Specifications to match a query parameter in the request.
  70. message QueryParameterMatch {
  71. oneof MatchType {
  72. // The value of the query parameter must exactly match the contents of
  73. // exact_match.
  74. //
  75. // Only one of exact_match, regex_match, or present_match must be set.
  76. string exact_match = 2;
  77. // The value of the query parameter must match the regular expression
  78. // specified by regex_match. For regular expression grammar, please see
  79. // https://github.com/google/re2/wiki/Syntax
  80. //
  81. // Only one of exact_match, regex_match, or present_match must be set.
  82. string regex_match = 3;
  83. // Specifies that the QueryParameterMatcher matches if request contains
  84. // query parameter, irrespective of whether the parameter has a value or
  85. // not.
  86. //
  87. // Only one of exact_match, regex_match, or present_match must be set.
  88. bool present_match = 4;
  89. }
  90. // The name of the query parameter to match.
  91. string query_parameter = 1;
  92. }
  93. // RouteMatch defines specifications used to match requests. If multiple match
  94. // types are set, this RouteMatch will match if ALL type of matches are
  95. // matched.
  96. message RouteMatch {
  97. oneof PathMatch {
  98. // The HTTP request path value should exactly match this value.
  99. //
  100. // Only one of full_path_match, prefix_match, or regex_match should be
  101. // used.
  102. string full_path_match = 1;
  103. // The HTTP request path value must begin with specified prefix_match.
  104. // prefix_match must begin with a /.
  105. //
  106. // Only one of full_path_match, prefix_match, or regex_match should be
  107. // used.
  108. string prefix_match = 2;
  109. // The HTTP request path value must satisfy the regular expression
  110. // specified by regex_match after removing any query parameters and anchor
  111. // supplied with the original URL. For regular expression grammar, please
  112. // see https://github.com/google/re2/wiki/Syntax
  113. //
  114. // Only one of full_path_match, prefix_match, or regex_match should be
  115. // used.
  116. string regex_match = 3;
  117. }
  118. // Specifies if prefix_match and full_path_match matches are case sensitive.
  119. // The default value is false.
  120. bool ignore_case = 4;
  121. // Specifies a list of HTTP request headers to match against. ALL of the
  122. // supplied headers must be matched.
  123. repeated HeaderMatch headers = 5;
  124. // Specifies a list of query parameters to match against. ALL of the query
  125. // parameters must be matched.
  126. repeated QueryParameterMatch query_parameters = 6;
  127. }
  128. // Specifications of a destination to which the request should be routed to.
  129. message Destination {
  130. // The URL of a BackendService to route traffic to.
  131. string service_name = 1 [(google.api.resource_reference) = {
  132. type: "compute.googleapis.com/BackendService"
  133. }];
  134. // Specifies the proportion of requests forwarded to the backend referenced
  135. // by the serviceName field. This is computed as:
  136. // weight/Sum(weights in this destination list).
  137. // For non-zero values, there may be some epsilon from the exact proportion
  138. // defined here depending on the precision an implementation supports.
  139. //
  140. // If only one serviceName is specified and it has a weight greater than 0,
  141. // 100% of the traffic is forwarded to that backend.
  142. //
  143. // If weights are specified for any one service name, they need to be
  144. // specified for all of them.
  145. //
  146. // If weights are unspecified for all services, then, traffic is distributed
  147. // in equal proportions to all of them.
  148. int32 weight = 2;
  149. }
  150. // The specification for redirecting traffic.
  151. message Redirect {
  152. // Supported HTTP response code.
  153. enum ResponseCode {
  154. // Default value
  155. RESPONSE_CODE_UNSPECIFIED = 0;
  156. // Corresponds to 301.
  157. MOVED_PERMANENTLY_DEFAULT = 1;
  158. // Corresponds to 302.
  159. FOUND = 2;
  160. // Corresponds to 303.
  161. SEE_OTHER = 3;
  162. // Corresponds to 307. In this case, the request method will be retained.
  163. TEMPORARY_REDIRECT = 4;
  164. // Corresponds to 308. In this case, the request method will be retained.
  165. PERMANENT_REDIRECT = 5;
  166. }
  167. // The host that will be used in the redirect response instead of the one
  168. // that was supplied in the request.
  169. string host_redirect = 1;
  170. // The path that will be used in the redirect response instead of the one
  171. // that was supplied in the request.
  172. // path_redirect can not be supplied together with prefix_redirect. Supply
  173. // one alone or neither. If neither is supplied, the path of the original
  174. // request will be used for the redirect.
  175. string path_redirect = 2;
  176. // Indicates that during redirection, the matched prefix (or path) should be
  177. // swapped with this value. This option allows URLs be dynamically created
  178. // based on the request.
  179. string prefix_rewrite = 3;
  180. // The HTTP Status code to use for the redirect.
  181. ResponseCode response_code = 4;
  182. // If set to true, the URL scheme in the redirected request is set to https.
  183. // If set to false, the URL scheme of the redirected request will remain the
  184. // same as that of the request.
  185. //
  186. // The default is set to false.
  187. bool https_redirect = 5;
  188. // if set to true, any accompanying query portion of the original URL is
  189. // removed prior to redirecting the request. If set to false, the query
  190. // portion of the original URL is retained.
  191. //
  192. // The default is set to false.
  193. bool strip_query = 6;
  194. // The port that will be used in the redirected request instead of the one
  195. // that was supplied in the request.
  196. int32 port_redirect = 7;
  197. }
  198. // The specification for fault injection introduced into traffic to test the
  199. // resiliency of clients to destination service failure. As part of fault
  200. // injection, when clients send requests to a destination, delays can be
  201. // introduced by client proxy on a percentage of requests before sending those
  202. // requests to the destination service. Similarly requests can be aborted by
  203. // client proxy for a percentage of requests.
  204. message FaultInjectionPolicy {
  205. // Specification of how client requests are delayed as part of fault
  206. // injection before being sent to a destination.
  207. message Delay {
  208. // Specify a fixed delay before forwarding the request.
  209. google.protobuf.Duration fixed_delay = 1;
  210. // The percentage of traffic on which delay will be injected.
  211. //
  212. // The value must be between [0, 100]
  213. int32 percentage = 2;
  214. }
  215. // Specification of how client requests are aborted as part of fault
  216. // injection before being sent to a destination.
  217. message Abort {
  218. // The HTTP status code used to abort the request.
  219. //
  220. // The value must be between 200 and 599 inclusive.
  221. int32 http_status = 1;
  222. // The percentage of traffic which will be aborted.
  223. //
  224. // The value must be between [0, 100]
  225. int32 percentage = 2;
  226. }
  227. // The specification for injecting delay to client requests.
  228. Delay delay = 1;
  229. // The specification for aborting to client requests.
  230. Abort abort = 2;
  231. }
  232. // The specification for modifying HTTP header in HTTP request and HTTP
  233. // response.
  234. message HeaderModifier {
  235. // Completely overwrite/replace the headers with given map where key is the
  236. // name of the header, value is the value of the header.
  237. map<string, string> set = 1;
  238. // Add the headers with given map where key is the name of the header, value
  239. // is the value of the header.
  240. map<string, string> add = 2;
  241. // Remove headers (matching by header names) specified in the list.
  242. repeated string remove = 3;
  243. }
  244. // The specification for modifying the URL of the request, prior to forwarding
  245. // the request to the destination.
  246. message URLRewrite {
  247. // Prior to forwarding the request to the selected destination, the matching
  248. // portion of the requests path is replaced by this value.
  249. string path_prefix_rewrite = 1;
  250. // Prior to forwarding the request to the selected destination, the requests
  251. // host header is replaced by this value.
  252. string host_rewrite = 2;
  253. }
  254. // The specifications for retries.
  255. message RetryPolicy {
  256. // Specifies one or more conditions when this retry policy applies. Valid
  257. // values are:
  258. // 5xx: Proxy will attempt a retry if the destination service responds
  259. // with any 5xx response code, of if the destination service does not
  260. // respond at all, example: disconnect, reset, read timeout, connection
  261. // failure and refused streams.
  262. //
  263. // gateway-error: Similar to 5xx, but only applies to response codes 502,
  264. // 503, 504.
  265. //
  266. // reset: Proxy will attempt a retry if the destination service does not
  267. // respond at all (disconnect/reset/read timeout)
  268. //
  269. // connect-failure: Proxy will retry on failures connecting to destination
  270. // for example due to connection timeouts.
  271. //
  272. // retriable-4xx: Proxy will retry fro retriable 4xx response codes.
  273. // Currently the only retriable error supported is 409.
  274. //
  275. // refused-stream: Proxy will retry if the destination resets the stream
  276. // with a REFUSED_STREAM error code. This reset type indicates that it
  277. // is safe to retry.
  278. repeated string retry_conditions = 1;
  279. // Specifies the allowed number of retries. This number must be > 0. If not
  280. // specified, default to 1.
  281. int32 num_retries = 2;
  282. // Specifies a non-zero timeout per retry attempt.
  283. google.protobuf.Duration per_try_timeout = 3;
  284. }
  285. // Specifies the policy on how requests are shadowed to a separate mirrored
  286. // destination service. The proxy does not wait for responses from the
  287. // shadow service. Prior to sending traffic to the shadow service, the
  288. // host/authority header is suffixed with -shadow.
  289. message RequestMirrorPolicy {
  290. // The destination the requests will be mirrored to. The weight of the
  291. // destination will be ignored.
  292. Destination destination = 1;
  293. }
  294. // The Specification for allowing client side cross-origin requests.
  295. message CorsPolicy {
  296. // Specifies the list of origins that will be allowed to do CORS requests.
  297. // An origin is allowed if it matches either an item in allow_origins or
  298. // an item in allow_origin_regexes.
  299. repeated string allow_origins = 1;
  300. // Specifies the regular expression patterns that match allowed origins. For
  301. // regular expression grammar, please see
  302. // https://github.com/google/re2/wiki/Syntax.
  303. repeated string allow_origin_regexes = 2;
  304. // Specifies the content for Access-Control-Allow-Methods header.
  305. repeated string allow_methods = 3;
  306. // Specifies the content for Access-Control-Allow-Headers header.
  307. repeated string allow_headers = 4;
  308. // Specifies the content for Access-Control-Expose-Headers header.
  309. repeated string expose_headers = 5;
  310. // Specifies how long result of a preflight request can be cached in
  311. // seconds. This translates to the Access-Control-Max-Age header.
  312. string max_age = 6;
  313. // In response to a preflight request, setting this to true indicates that
  314. // the actual request can include user credentials. This translates to the
  315. // Access-Control-Allow-Credentials header.
  316. //
  317. // Default value is false.
  318. bool allow_credentials = 7;
  319. // If true, the CORS policy is disabled. The default value is false, which
  320. // indicates that the CORS policy is in effect.
  321. bool disabled = 8;
  322. }
  323. // The specifications for routing traffic and applying associated policies.
  324. message RouteAction {
  325. // The destination to which traffic should be forwarded.
  326. repeated Destination destinations = 1;
  327. // If set, the request is directed as configured by this field.
  328. Redirect redirect = 2;
  329. // The specification for fault injection introduced into traffic to test the
  330. // resiliency of clients to backend service failure. As part of fault
  331. // injection, when clients send requests to a backend service, delays can be
  332. // introduced on a percentage of requests before sending those requests to
  333. // the backend service. Similarly requests from clients can be aborted for a
  334. // percentage of requests.
  335. //
  336. // timeout and retry_policy will be ignored by clients that are configured
  337. // with a fault_injection_policy
  338. FaultInjectionPolicy fault_injection_policy = 4;
  339. // The specification for modifying the headers of a matching request prior
  340. // to delivery of the request to the destination.
  341. HeaderModifier request_header_modifier = 5;
  342. // The specification for modifying the headers of a response prior to
  343. // sending the response back to the client.
  344. HeaderModifier response_header_modifier = 6;
  345. // The specification for rewrite URL before forwarding requests to the
  346. // destination.
  347. URLRewrite url_rewrite = 7;
  348. // Specifies the timeout for selected route. Timeout is computed from the
  349. // time the request has been fully processed (i.e. end of stream) up until
  350. // the response has been completely processed. Timeout includes all retries.
  351. google.protobuf.Duration timeout = 8;
  352. // Specifies the retry policy associated with this route.
  353. RetryPolicy retry_policy = 9;
  354. // Specifies the policy on how requests intended for the routes destination
  355. // are shadowed to a separate mirrored destination. Proxy will not wait for
  356. // the shadow destination to respond before returning the response. Prior to
  357. // sending traffic to the shadow service, the host/authority header is
  358. // suffixed with -shadow.
  359. RequestMirrorPolicy request_mirror_policy = 10;
  360. // The specification for allowing client side cross-origin requests.
  361. CorsPolicy cors_policy = 11;
  362. }
  363. // Specifies how to match traffic and how to route traffic when traffic is
  364. // matched.
  365. message RouteRule {
  366. // A list of matches define conditions used for matching the rule against
  367. // incoming HTTP requests. Each match is independent, i.e. this rule will be
  368. // matched if ANY one of the matches is satisfied.
  369. //
  370. // If no matches field is specified, this rule will unconditionally match
  371. // traffic.
  372. //
  373. // If a default rule is desired to be configured, add a rule with no matches
  374. // specified to the end of the rules list.
  375. repeated RouteMatch matches = 1;
  376. // The detailed rule defining how to route matched traffic.
  377. RouteAction action = 2;
  378. }
  379. // Required. Name of the HttpRoute resource. It matches pattern
  380. // `projects/*/locations/global/httpRoutes/http_route_name>`.
  381. string name = 1 [(google.api.field_behavior) = REQUIRED];
  382. // Output only. Server-defined URL of this resource
  383. string self_link = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  384. // Optional. A free-text description of the resource. Max length 1024 characters.
  385. string description = 2 [(google.api.field_behavior) = OPTIONAL];
  386. // Output only. The timestamp when the resource was created.
  387. google.protobuf.Timestamp create_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  388. // Output only. The timestamp when the resource was updated.
  389. google.protobuf.Timestamp update_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  390. // Required. Hostnames define a set of hosts that should match against the HTTP host
  391. // header to select a HttpRoute to process the request. Hostname is the fully
  392. // qualified domain name of a network host, as defined by RFC 1123 with the
  393. // exception that:
  394. // - IPs are not allowed.
  395. // - A hostname may be prefixed with a wildcard label (*.). The wildcard
  396. // label must appear by itself as the first label.
  397. //
  398. // Hostname can be "precise" which is a domain name without the terminating
  399. // dot of a network host (e.g. "foo.example.com") or "wildcard", which is a
  400. // domain name prefixed with a single wildcard label (e.g. *.example.com).
  401. //
  402. // Note that as per RFC1035 and RFC1123, a label must consist of lower case
  403. // alphanumeric characters or '-', and must start and end with an alphanumeric
  404. // character. No other punctuation is allowed.
  405. //
  406. // The routes associated with a Mesh or Gateways must have unique hostnames.
  407. // If you attempt to attach multiple routes with conflicting hostnames,
  408. // the configuration will be rejected.
  409. //
  410. // For example, while it is acceptable for routes for the hostnames
  411. // "*.foo.bar.com" and "*.bar.com" to be associated with the same Mesh (or
  412. // Gateways under the same scope), it is not possible to associate two routes
  413. // both with "*.bar.com" or both with "bar.com".
  414. repeated string hostnames = 5 [(google.api.field_behavior) = REQUIRED];
  415. // Optional. Meshes defines a list of meshes this HttpRoute is attached to, as one of
  416. // the routing rules to route the requests served by the mesh.
  417. //
  418. // Each mesh reference should match the pattern:
  419. // `projects/*/locations/global/meshes/<mesh_name>`
  420. //
  421. // The attached Mesh should be of a type SIDECAR
  422. repeated string meshes = 8 [
  423. (google.api.field_behavior) = OPTIONAL,
  424. (google.api.resource_reference) = {
  425. type: "networkservices.googleapis.com/Mesh"
  426. }
  427. ];
  428. // Optional. Gateways defines a list of gateways this HttpRoute is attached to, as one
  429. // of the routing rules to route the requests served by the gateway.
  430. //
  431. // Each gateway reference should match the pattern:
  432. // `projects/*/locations/global/gateways/<gateway_name>`
  433. repeated string gateways = 9 [
  434. (google.api.field_behavior) = OPTIONAL,
  435. (google.api.resource_reference) = {
  436. type: "networkservices.googleapis.com/Gateway"
  437. }
  438. ];
  439. // Optional. Set of label tags associated with the HttpRoute resource.
  440. map<string, string> labels = 10 [(google.api.field_behavior) = OPTIONAL];
  441. // Required. Rules that define how traffic is routed and handled.
  442. // Rules will be matched sequentially based on the RouteMatch specified for
  443. // the rule.
  444. repeated RouteRule rules = 6 [(google.api.field_behavior) = REQUIRED];
  445. }
  446. // Request used with the ListHttpRoutes method.
  447. message ListHttpRoutesRequest {
  448. // Required. The project and location from which the HttpRoutes should be
  449. // listed, specified in the format `projects/*/locations/global`.
  450. string parent = 1 [
  451. (google.api.field_behavior) = REQUIRED,
  452. (google.api.resource_reference) = {
  453. child_type: "networkservices.googleapis.com/HttpRoute"
  454. }
  455. ];
  456. // Maximum number of HttpRoutes to return per call.
  457. int32 page_size = 2;
  458. // The value returned by the last `ListHttpRoutesResponse`
  459. // Indicates that this is a continuation of a prior `ListHttpRoutes` call,
  460. // and that the system should return the next page of data.
  461. string page_token = 3;
  462. }
  463. // Response returned by the ListHttpRoutes method.
  464. message ListHttpRoutesResponse {
  465. // List of HttpRoute resources.
  466. repeated HttpRoute http_routes = 1;
  467. // If there might be more results than those appearing in this response, then
  468. // `next_page_token` is included. To get the next set of results, call this
  469. // method again using the value of `next_page_token` as `page_token`.
  470. string next_page_token = 2;
  471. }
  472. // Request used by the GetHttpRoute method.
  473. message GetHttpRouteRequest {
  474. // Required. A name of the HttpRoute to get. Must be in the format
  475. // `projects/*/locations/global/httpRoutes/*`.
  476. string name = 1 [
  477. (google.api.field_behavior) = REQUIRED,
  478. (google.api.resource_reference) = {
  479. type: "networkservices.googleapis.com/HttpRoute"
  480. }
  481. ];
  482. }
  483. // Request used by the HttpRoute method.
  484. message CreateHttpRouteRequest {
  485. // Required. The parent resource of the HttpRoute. Must be in the
  486. // format `projects/*/locations/global`.
  487. string parent = 1 [
  488. (google.api.field_behavior) = REQUIRED,
  489. (google.api.resource_reference) = {
  490. child_type: "networkservices.googleapis.com/HttpRoute"
  491. }
  492. ];
  493. // Required. Short name of the HttpRoute resource to be created.
  494. string http_route_id = 2 [(google.api.field_behavior) = REQUIRED];
  495. // Required. HttpRoute resource to be created.
  496. HttpRoute http_route = 3 [(google.api.field_behavior) = REQUIRED];
  497. }
  498. // Request used by the UpdateHttpRoute method.
  499. message UpdateHttpRouteRequest {
  500. // Optional. Field mask is used to specify the fields to be overwritten in the
  501. // HttpRoute resource by the update.
  502. // The fields specified in the update_mask are relative to the resource, not
  503. // the full request. A field will be overwritten if it is in the mask. If the
  504. // user does not provide a mask then all fields will be overwritten.
  505. google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = OPTIONAL];
  506. // Required. Updated HttpRoute resource.
  507. HttpRoute http_route = 2 [(google.api.field_behavior) = REQUIRED];
  508. }
  509. // Request used by the DeleteHttpRoute method.
  510. message DeleteHttpRouteRequest {
  511. // Required. A name of the HttpRoute to delete. Must be in the format
  512. // `projects/*/locations/global/httpRoutes/*`.
  513. string name = 1 [
  514. (google.api.field_behavior) = REQUIRED,
  515. (google.api.resource_reference) = {
  516. type: "networkservices.googleapis.com/HttpRoute"
  517. }
  518. ];
  519. }