google-apis-serviceusage_v1beta1 0.58.0 → 0.59.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: 5a8df6694d6f338ec9f63b8b495b1101eada91fbc58980fedf7e7f938c8ddd05
4
- data.tar.gz: 63e87160adca76b771247ac62daa560a204810946558d01f9d169e0110158efb
3
+ metadata.gz: d84c1d418a3052690fe4407dd850c37dbec266b1c428f10777ab7b5e5e592aa1
4
+ data.tar.gz: 7f0d66462839ba6477503bdba5fbd3ef75d5c6c3801dace0fc971ea17cedb8dd
5
5
  SHA512:
6
- metadata.gz: '088b996b9ad245ca0c3367ee3641411e5b6c18e0e47ffb53496e83562f178d20db596f60f3969b71ec68f53bb0f856745ef9a44b57fb0253cc6a3c1abd4d8e68'
7
- data.tar.gz: 9f0a53c19258af3996f9d57d6a391ef1265a3ef68955aa1f589aa439788e411cff1fcc4680689b7da0e0baa092bc026c32f84eea171268b050cd2b913e70fa68
6
+ metadata.gz: 26bd3fd3164544da4aad664181f3ca75e8b2fb0e6b6579cf9ce5291cf79e78867709a225435f241549e7669e56b33edc7f1e3dd7172ad835313ae001eb569de9
7
+ data.tar.gz: 13fce8d2ef91c2b85e12886ef682f7de9a1b842fa359119ad906ba369a0c415d83d4bb9fb37e953779674d5440895f10fce3055ffe25332adfae52c7bbf69fcc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.59.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240712
6
+
3
7
  ### v0.58.0 (2024-06-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20240602
@@ -1006,12 +1006,14 @@ module Google
1006
1006
  # @return [Array<String>]
1007
1007
  attr_accessor :allowed_response_extensions
1008
1008
 
1009
- # A list of full type names of provided contexts.
1009
+ # A list of full type names of provided contexts. It is used to support
1010
+ # propagating HTTP headers and ETags from the response extension.
1010
1011
  # Corresponds to the JSON property `provided`
1011
1012
  # @return [Array<String>]
1012
1013
  attr_accessor :provided
1013
1014
 
1014
- # A list of full type names of requested contexts.
1015
+ # A list of full type names of requested contexts, only the requested context
1016
+ # will be made available to the backend.
1015
1017
  # Corresponds to the JSON property `requested`
1016
1018
  # @return [Array<String>]
1017
1019
  attr_accessor :requested
@@ -2684,27 +2686,27 @@ module Google
2684
2686
  # effect as the proto annotation. This can be particularly useful if you have a
2685
2687
  # proto that is reused in multiple services. Note that any transcoding specified
2686
2688
  # in the service config will override any matching transcoding configuration in
2687
- # the proto. Example below selects a gRPC method and applies HttpRule to it.
2688
- # http: rules: - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
2689
- # message_id`/`sub.subfield` Special notes When gRPC Transcoding is used to map
2690
- # a gRPC to JSON REST endpoints, the proto to JSON conversion must follow the [
2691
- # proto3 specification](https://developers.google.com/protocol-buffers/docs/
2692
- # proto3#json). While the single segment variable follows the semantics of [RFC
2693
- # 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
2694
- # Expansion, the multi segment variable **does not** follow RFC 6570 Section 3.2.
2695
- # 3 Reserved Expansion. The reason is that the Reserved Expansion does not
2696
- # expand special characters like `?` and `#`, which would lead to invalid URLs.
2697
- # As the result, gRPC Transcoding uses a custom encoding for multi segment
2698
- # variables. The path variables **must not** refer to any repeated or mapped
2699
- # field, because client libraries are not capable of handling such variable
2700
- # expansion. The path variables **must not** capture the leading "/" character.
2701
- # The reason is that the most common use case "`var`" does not capture the
2702
- # leading "/" character. For consistency, all path variables must share the same
2703
- # behavior. Repeated message fields must not be mapped to URL query parameters,
2704
- # because no client library can support such complicated mapping. If an API
2705
- # needs to use a JSON array for request or response body, it can map the request
2706
- # or response body to a repeated field. However, some gRPC Transcoding
2707
- # implementations may not support this feature.
2689
+ # the proto. The following example selects a gRPC method and applies an `
2690
+ # HttpRule` to it: http: rules: - selector: example.v1.Messaging.GetMessage get:
2691
+ # /v1/messages/`message_id`/`sub.subfield` Special notes When gRPC Transcoding
2692
+ # is used to map a gRPC to JSON REST endpoints, the proto to JSON conversion
2693
+ # must follow the [proto3 specification](https://developers.google.com/protocol-
2694
+ # buffers/docs/proto3#json). While the single segment variable follows the
2695
+ # semantics of [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
2696
+ # Simple String Expansion, the multi segment variable **does not** follow RFC
2697
+ # 6570 Section 3.2.3 Reserved Expansion. The reason is that the Reserved
2698
+ # Expansion does not expand special characters like `?` and `#`, which would
2699
+ # lead to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
2700
+ # for multi segment variables. The path variables **must not** refer to any
2701
+ # repeated or mapped field, because client libraries are not capable of handling
2702
+ # such variable expansion. The path variables **must not** capture the leading "/
2703
+ # " character. The reason is that the most common use case "`var`" does not
2704
+ # capture the leading "/" character. For consistency, all path variables must
2705
+ # share the same behavior. Repeated message fields must not be mapped to URL
2706
+ # query parameters, because no client library can support such complicated
2707
+ # mapping. If an API needs to use a JSON array for request or response body, it
2708
+ # can map the request or response body to a repeated field. However, some gRPC
2709
+ # Transcoding implementations may not support this feature.
2708
2710
  class HttpRule
2709
2711
  include Google::Apis::Core::Hashable
2710
2712
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1beta1
18
18
  # Version of the google-apis-serviceusage_v1beta1 gem
19
- GEM_VERSION = "0.58.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240602"
25
+ REVISION = "20240712"
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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.58.0
4
+ version: 0.59.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-06-16 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.59.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []