google-apis-serviceusage_v1 0.51.0 → 0.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7d8b8c902e34bf49dc568fc13f2f322ed390e1414488cb97c4cd05dc0ed95ec
4
- data.tar.gz: f5cc5fe146876b44a5934031aa80f98678e684443cb22e22942d3555f223bc75
3
+ metadata.gz: 5a7064b8d6fc9a010e6b2528207e0c71669c1072600e8de72ae06fc0083d450c
4
+ data.tar.gz: 28ac8621a506a018b0cfdc122abcf436791e3cb8d1b648c445c79b5318265e9c
5
5
  SHA512:
6
- metadata.gz: 8f30b86a1d87e4f01e4fbb91ff31059668d1b56aa87eaa5bad35f9babbb86d1ebbdbca8f6e3d1ce87162ea8ff98608cb6c68eec1035a1d0aab5b6dbf0ecefe6a
7
- data.tar.gz: 63169dcc43d2168ba82feb402ed5ccfeb11ee794318270b9b6da8138412c49ceea46afe1298ec6ae278c318f3d7c61fae50eec8d5dba4d2884aa3d327ef14d51
6
+ metadata.gz: d1e54871562faf2a297c03089631569761ae93b655a29e41e28d8987e6223584ef9e5b1e4e47b630ee285330ba6f51f974bf075f8dca1786879f41638108e3f6
7
+ data.tar.gz: fa094c708428622cbc0193110a17e5164297ae40ad31f17cf44dde5c78de0dc75aab8bcc7710570c1042cb66a2e668510709d2d3868c171b8d71ec701a0a1242
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.53.0 (2024-06-09)
4
+
5
+ * Regenerated from discovery document revision 20240602
6
+
7
+ ### v0.52.0 (2024-05-19)
8
+
9
+ * Regenerated using generator version 0.15.0
10
+
3
11
  ### v0.51.0 (2024-05-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20240429
@@ -2499,7 +2499,7 @@ module Google
2499
2499
  end
2500
2500
  end
2501
2501
 
2502
- # # gRPC Transcoding gRPC Transcoding is a feature for mapping between a gRPC
2502
+ # gRPC Transcoding gRPC Transcoding is a feature for mapping between a gRPC
2503
2503
  # method and one or more HTTP REST endpoints. It allows developers to build a
2504
2504
  # single API service that supports both gRPC APIs and REST APIs. Many systems,
2505
2505
  # including [Google APIs](https://github.com/googleapis/googleapis), [Cloud
@@ -2519,70 +2519,69 @@ module Google
2519
2519
  # Message) ` option (google.api.http) = ` get: "/v1/`name=messages/*`" `; ` `
2520
2520
  # message GetMessageRequest ` string name = 1; // Mapped to URL path. ` message
2521
2521
  # Message ` string text = 1; // The resource content. ` This enables an HTTP
2522
- # REST to gRPC mapping as below: HTTP | gRPC -----|----- `GET /v1/messages/
2523
- # 123456` | `GetMessage(name: "messages/123456")` Any fields in the request
2524
- # message which are not bound by the path template automatically become HTTP
2525
- # query parameters if there is no HTTP request body. For example: service
2526
- # Messaging ` rpc GetMessage(GetMessageRequest) returns (Message) ` option (
2527
- # google.api.http) = ` get:"/v1/messages/`message_id`" `; ` ` message
2528
- # GetMessageRequest ` message SubMessage ` string subfield = 1; ` string
2529
- # message_id = 1; // Mapped to URL path. int64 revision = 2; // Mapped to URL
2530
- # query parameter `revision`. SubMessage sub = 3; // Mapped to URL query
2531
- # parameter `sub.subfield`. ` This enables a HTTP JSON to RPC mapping as below:
2532
- # HTTP | gRPC -----|----- `GET /v1/messages/123456?revision=2&sub.subfield=foo` |
2533
- # `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield: "foo"))
2534
- # ` Note that fields which are mapped to URL query parameters must have a
2535
- # primitive type or a repeated primitive type or a non-repeated message type. In
2536
- # the case of a repeated type, the parameter can be repeated in the URL as `...?
2537
- # param=A&param=B`. In the case of a message type, each field of the message is
2538
- # mapped to a separate parameter, such as `...?foo.a=A&foo.b=B&foo.c=C`. For
2539
- # HTTP methods that allow a request body, the `body` field specifies the mapping.
2540
- # Consider a REST update method on the message resource collection: service
2541
- # Messaging ` rpc UpdateMessage(UpdateMessageRequest) returns (Message) ` option
2542
- # (google.api.http) = ` patch: "/v1/messages/`message_id`" body: "message" `; ` `
2543
- # message UpdateMessageRequest ` string message_id = 1; // mapped to the URL
2544
- # Message message = 2; // mapped to the body ` The following HTTP JSON to RPC
2545
- # mapping is enabled, where the representation of the JSON in the request body
2546
- # is determined by protos JSON encoding: HTTP | gRPC -----|----- `PATCH /v1/
2547
- # messages/123456 ` "text": "Hi!" `` | `UpdateMessage(message_id: "123456"
2548
- # message ` text: "Hi!" `)` The special name `*` can be used in the body mapping
2549
- # to define that every field not bound by the path template should be mapped to
2550
- # the request body. This enables the following alternative definition of the
2551
- # update method: service Messaging ` rpc UpdateMessage(Message) returns (Message)
2552
- # ` option (google.api.http) = ` patch: "/v1/messages/`message_id`" body: "*" `;
2553
- # ` ` message Message ` string message_id = 1; string text = 2; ` The following
2554
- # HTTP JSON to RPC mapping is enabled: HTTP | gRPC -----|----- `PATCH /v1/
2555
- # messages/123456 ` "text": "Hi!" `` | `UpdateMessage(message_id: "123456" text:
2556
- # "Hi!")` Note that when using `*` in the body mapping, it is not possible to
2557
- # have HTTP parameters, as all fields not bound by the path end in the body.
2558
- # This makes this option more rarely used in practice when defining REST APIs.
2559
- # The common usage of `*` is in custom methods which don't use the URL at all
2560
- # for transferring data. It is possible to define multiple HTTP methods for one
2561
- # RPC by using the `additional_bindings` option. Example: service Messaging `
2562
- # rpc GetMessage(GetMessageRequest) returns (Message) ` option (google.api.http)
2563
- # = ` get: "/v1/messages/`message_id`" additional_bindings ` get: "/v1/users/`
2564
- # user_id`/messages/`message_id`" ` `; ` ` message GetMessageRequest ` string
2565
- # message_id = 1; string user_id = 2; ` This enables the following two
2566
- # alternative HTTP JSON to RPC mappings: HTTP | gRPC -----|----- `GET /v1/
2567
- # messages/123456` | `GetMessage(message_id: "123456")` `GET /v1/users/me/
2568
- # messages/123456` | `GetMessage(user_id: "me" message_id: "123456")` ## Rules
2569
- # for HTTP mapping 1. Leaf request fields (recursive expansion nested messages
2570
- # in the request message) are classified into three categories: - Fields
2571
- # referred by the path template. They are passed via the URL path. - Fields
2572
- # referred by the HttpRule.body. They are passed via the HTTP request body. -
2573
- # All other fields are passed via the URL query parameters, and the parameter
2574
- # name is the field path in the request message. A repeated field can be
2575
- # represented as multiple query parameters under the same name. 2. If HttpRule.
2576
- # body is "*", there is no URL query parameter, all fields are passed via URL
2577
- # path and HTTP request body. 3. If HttpRule.body is omitted, there is no HTTP
2578
- # request body, all fields are passed via URL path and URL query parameters. ###
2579
- # Path template syntax Template = "/" Segments [ Verb ] ; Segments = Segment ` "/
2580
- # " Segment ` ; Segment = "*" | "**" | LITERAL | Variable ; Variable = "`"
2581
- # FieldPath [ "=" Segments ] "`" ; FieldPath = IDENT ` "." IDENT ` ; Verb = ":"
2582
- # LITERAL ; The syntax `*` matches a single URL path segment. The syntax `**`
2583
- # matches zero or more URL path segments, which must be the last part of the URL
2584
- # path except the `Verb`. The syntax `Variable` matches part of the URL path as
2585
- # specified by its template. A variable template must not contain other
2522
+ # REST to gRPC mapping as below: - HTTP: `GET /v1/messages/123456` - gRPC: `
2523
+ # GetMessage(name: "messages/123456")` Any fields in the request message which
2524
+ # are not bound by the path template automatically become HTTP query parameters
2525
+ # if there is no HTTP request body. For example: service Messaging ` rpc
2526
+ # GetMessage(GetMessageRequest) returns (Message) ` option (google.api.http) = `
2527
+ # get:"/v1/messages/`message_id`" `; ` ` message GetMessageRequest ` message
2528
+ # SubMessage ` string subfield = 1; ` string message_id = 1; // Mapped to URL
2529
+ # path. int64 revision = 2; // Mapped to URL query parameter `revision`.
2530
+ # SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`. ` This
2531
+ # enables a HTTP JSON to RPC mapping as below: - HTTP: `GET /v1/messages/123456?
2532
+ # revision=2&sub.subfield=foo` - gRPC: `GetMessage(message_id: "123456" revision:
2533
+ # 2 sub: SubMessage(subfield: "foo"))` Note that fields which are mapped to URL
2534
+ # query parameters must have a primitive type or a repeated primitive type or a
2535
+ # non-repeated message type. In the case of a repeated type, the parameter can
2536
+ # be repeated in the URL as `...?param=A&param=B`. In the case of a message type,
2537
+ # each field of the message is mapped to a separate parameter, such as `...?foo.
2538
+ # a=A&foo.b=B&foo.c=C`. For HTTP methods that allow a request body, the `body`
2539
+ # field specifies the mapping. Consider a REST update method on the message
2540
+ # resource collection: service Messaging ` rpc UpdateMessage(
2541
+ # UpdateMessageRequest) returns (Message) ` option (google.api.http) = ` patch: "
2542
+ # /v1/messages/`message_id`" body: "message" `; ` ` message UpdateMessageRequest
2543
+ # ` string message_id = 1; // mapped to the URL Message message = 2; // mapped
2544
+ # to the body ` The following HTTP JSON to RPC mapping is enabled, where the
2545
+ # representation of the JSON in the request body is determined by protos JSON
2546
+ # encoding: - HTTP: `PATCH /v1/messages/123456 ` "text": "Hi!" `` - gRPC: `
2547
+ # UpdateMessage(message_id: "123456" message ` text: "Hi!" `)` The special name `
2548
+ # *` can be used in the body mapping to define that every field not bound by the
2549
+ # path template should be mapped to the request body. This enables the following
2550
+ # alternative definition of the update method: service Messaging ` rpc
2551
+ # UpdateMessage(Message) returns (Message) ` option (google.api.http) = ` patch:
2552
+ # "/v1/messages/`message_id`" body: "*" `; ` ` message Message ` string
2553
+ # message_id = 1; string text = 2; ` The following HTTP JSON to RPC mapping is
2554
+ # enabled: - HTTP: `PATCH /v1/messages/123456 ` "text": "Hi!" `` - gRPC: `
2555
+ # UpdateMessage(message_id: "123456" text: "Hi!")` Note that when using `*` in
2556
+ # the body mapping, it is not possible to have HTTP parameters, as all fields
2557
+ # not bound by the path end in the body. This makes this option more rarely used
2558
+ # in practice when defining REST APIs. The common usage of `*` is in custom
2559
+ # methods which don't use the URL at all for transferring data. It is possible
2560
+ # to define multiple HTTP methods for one RPC by using the `additional_bindings`
2561
+ # option. Example: service Messaging ` rpc GetMessage(GetMessageRequest) returns
2562
+ # (Message) ` option (google.api.http) = ` get: "/v1/messages/`message_id`"
2563
+ # additional_bindings ` get: "/v1/users/`user_id`/messages/`message_id`" ` `; ` `
2564
+ # message GetMessageRequest ` string message_id = 1; string user_id = 2; ` This
2565
+ # enables the following two alternative HTTP JSON to RPC mappings: - HTTP: `GET /
2566
+ # v1/messages/123456` - gRPC: `GetMessage(message_id: "123456")` - HTTP: `GET /
2567
+ # v1/users/me/messages/123456` - gRPC: `GetMessage(user_id: "me" message_id: "
2568
+ # 123456")` Rules for HTTP mapping 1. Leaf request fields (recursive expansion
2569
+ # nested messages in the request message) are classified into three categories: -
2570
+ # Fields referred by the path template. They are passed via the URL path. -
2571
+ # Fields referred by the HttpRule.body. They are passed via the HTTP request
2572
+ # body. - All other fields are passed via the URL query parameters, and the
2573
+ # parameter name is the field path in the request message. A repeated field can
2574
+ # be represented as multiple query parameters under the same name. 2. If
2575
+ # HttpRule.body is "*", there is no URL query parameter, all fields are passed
2576
+ # via URL path and HTTP request body. 3. If HttpRule.body is omitted, there is
2577
+ # no HTTP request body, all fields are passed via URL path and URL query
2578
+ # parameters. Path template syntax Template = "/" Segments [ Verb ] ; Segments =
2579
+ # Segment ` "/" Segment ` ; Segment = "*" | "**" | LITERAL | Variable ; Variable
2580
+ # = "`" FieldPath [ "=" Segments ] "`" ; FieldPath = IDENT ` "." IDENT ` ; Verb =
2581
+ # ":" LITERAL ; The syntax `*` matches a single URL path segment. The syntax `**
2582
+ # ` matches zero or more URL path segments, which must be the last part of the
2583
+ # URL path except the `Verb`. The syntax `Variable` matches part of the URL path
2584
+ # as specified by its template. A variable template must not contain other
2586
2585
  # variables. If a variable matches a single path segment, its template may be
2587
2586
  # omitted, e.g. ``var`` is equivalent to ``var=*``. The syntax `LITERAL` matches
2588
2587
  # literal text in the URL path. If the `LITERAL` contains any reserved character,
@@ -2597,7 +2596,7 @@ module Google
2597
2596
  # except `[-_.~/0-9a-zA-Z]` are percent-encoded. The server side does the
2598
2597
  # reverse decoding, except "%2F" and "%2f" are left unchanged. Such variables
2599
2598
  # show up in the [Discovery Document](https://developers.google.com/discovery/v1/
2600
- # reference/apis) as ``+var``. ## Using gRPC API Service Configuration gRPC API
2599
+ # reference/apis) as ``+var``. Using gRPC API Service Configuration gRPC API
2601
2600
  # Service Configuration (service config) is a configuration language for
2602
2601
  # configuring a gRPC service to become a user-facing product. The service config
2603
2602
  # is simply the YAML representation of the `google.api.Service` proto message.
@@ -2607,11 +2606,11 @@ module Google
2607
2606
  # effect as the proto annotation. This can be particularly useful if you have a
2608
2607
  # proto that is reused in multiple services. Note that any transcoding specified
2609
2608
  # in the service config will override any matching transcoding configuration in
2610
- # the proto. Example: http: rules: # Selects a gRPC method and applies HttpRule
2611
- # to it. - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
2612
- # message_id`/`sub.subfield` ## Special notes When gRPC Transcoding is used to
2613
- # map a gRPC to JSON REST endpoints, the proto to JSON conversion must follow
2614
- # the [proto3 specification](https://developers.google.com/protocol-buffers/docs/
2609
+ # the proto. Example below selects a gRPC method and applies HttpRule to it.
2610
+ # http: rules: - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
2611
+ # message_id`/`sub.subfield` Special notes When gRPC Transcoding is used to map
2612
+ # a gRPC to JSON REST endpoints, the proto to JSON conversion must follow the [
2613
+ # proto3 specification](https://developers.google.com/protocol-buffers/docs/
2615
2614
  # proto3#json). While the single segment variable follows the semantics of [RFC
2616
2615
  # 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
2617
2616
  # Expansion, the multi segment variable **does not** follow RFC 6570 Section 3.2.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1
18
18
  # Version of the google-apis-serviceusage_v1 gem
19
- GEM_VERSION = "0.51.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240429"
25
+ REVISION = "20240602"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.0
4
+ version: 0.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-05 00:00:00.000000000 Z
11
+ date: 2024-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
63
63
  post_install_message:
64
64
  rdoc_options: []