google-apis-serviceconsumermanagement_v1 0.48.0 → 0.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04eeddf32c463960d57a9b5795002c626608f234eee64760a2214c51196781fc
4
- data.tar.gz: fbfcaf3c7757a68864c9ae82c3e7e634d3f5dc41c048bb1a743e9a57cc9db7f5
3
+ metadata.gz: 23fb133393c687652b1c25749271582761c03d1477348a96539318c2a3a80ccd
4
+ data.tar.gz: c9f581438a4142bdc22b4aa3fadc57b9a6dc3d681da70c8908416990e608aaab
5
5
  SHA512:
6
- metadata.gz: b50444eb8eebf592c75642892ff8c159fc3cf338c589af81016b25aeeb14bea9f4df2906a8f59089ff7b12cb0efd456c7bbc9308c554e749146cc42d1f3b4fe7
7
- data.tar.gz: 3f99b41a2607b7b2d25f886491e0a6e4dd19b0f9f37179637d2f083bde2a23130bae8117b419ce3f176828051568050ca41b410102de33e9b04d75353b438aad
6
+ metadata.gz: de4ad4bc289cf6143d1cb4913b792111566228d49acee1a0b7f92a35191072c57ad6b7073b9b7084fc83d33a9daf2a957df905479261ce3942d69e727dcd9217
7
+ data.tar.gz: eb3a7c628bba29db2c4f16014e152fe9541f07f1ecf0b412d94f94f6f0066987710418791d14fb3a3fabff8856a681a9e7a2269de8bca708034659319ac45966
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.49.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240712
6
+
3
7
  ### v0.48.0 (2024-06-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20240602
@@ -760,12 +760,14 @@ module Google
760
760
  # @return [Array<String>]
761
761
  attr_accessor :allowed_response_extensions
762
762
 
763
- # A list of full type names of provided contexts.
763
+ # A list of full type names of provided contexts. It is used to support
764
+ # propagating HTTP headers and ETags from the response extension.
764
765
  # Corresponds to the JSON property `provided`
765
766
  # @return [Array<String>]
766
767
  attr_accessor :provided
767
768
 
768
- # A list of full type names of requested contexts.
769
+ # A list of full type names of requested contexts, only the requested context
770
+ # will be made available to the backend.
769
771
  # Corresponds to the JSON property `requested`
770
772
  # @return [Array<String>]
771
773
  attr_accessor :requested
@@ -1594,27 +1596,27 @@ module Google
1594
1596
  # effect as the proto annotation. This can be particularly useful if you have a
1595
1597
  # proto that is reused in multiple services. Note that any transcoding specified
1596
1598
  # in the service config will override any matching transcoding configuration in
1597
- # the proto. Example below selects a gRPC method and applies HttpRule to it.
1598
- # http: rules: - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
1599
- # message_id`/`sub.subfield` Special notes When gRPC Transcoding is used to map
1600
- # a gRPC to JSON REST endpoints, the proto to JSON conversion must follow the [
1601
- # proto3 specification](https://developers.google.com/protocol-buffers/docs/
1602
- # proto3#json). While the single segment variable follows the semantics of [RFC
1603
- # 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
1604
- # Expansion, the multi segment variable **does not** follow RFC 6570 Section 3.2.
1605
- # 3 Reserved Expansion. The reason is that the Reserved Expansion does not
1606
- # expand special characters like `?` and `#`, which would lead to invalid URLs.
1607
- # As the result, gRPC Transcoding uses a custom encoding for multi segment
1608
- # variables. The path variables **must not** refer to any repeated or mapped
1609
- # field, because client libraries are not capable of handling such variable
1610
- # expansion. The path variables **must not** capture the leading "/" character.
1611
- # The reason is that the most common use case "`var`" does not capture the
1612
- # leading "/" character. For consistency, all path variables must share the same
1613
- # behavior. Repeated message fields must not be mapped to URL query parameters,
1614
- # because no client library can support such complicated mapping. If an API
1615
- # needs to use a JSON array for request or response body, it can map the request
1616
- # or response body to a repeated field. However, some gRPC Transcoding
1617
- # implementations may not support this feature.
1599
+ # the proto. The following example selects a gRPC method and applies an `
1600
+ # HttpRule` to it: http: rules: - selector: example.v1.Messaging.GetMessage get:
1601
+ # /v1/messages/`message_id`/`sub.subfield` Special notes When gRPC Transcoding
1602
+ # is used to map a gRPC to JSON REST endpoints, the proto to JSON conversion
1603
+ # must follow the [proto3 specification](https://developers.google.com/protocol-
1604
+ # buffers/docs/proto3#json). While the single segment variable follows the
1605
+ # semantics of [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
1606
+ # Simple String Expansion, the multi segment variable **does not** follow RFC
1607
+ # 6570 Section 3.2.3 Reserved Expansion. The reason is that the Reserved
1608
+ # Expansion does not expand special characters like `?` and `#`, which would
1609
+ # lead to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
1610
+ # for multi segment variables. The path variables **must not** refer to any
1611
+ # repeated or mapped field, because client libraries are not capable of handling
1612
+ # such variable expansion. The path variables **must not** capture the leading "/
1613
+ # " character. The reason is that the most common use case "`var`" does not
1614
+ # capture the leading "/" character. For consistency, all path variables must
1615
+ # share the same behavior. Repeated message fields must not be mapped to URL
1616
+ # query parameters, because no client library can support such complicated
1617
+ # mapping. If an API needs to use a JSON array for request or response body, it
1618
+ # can map the request or response body to a repeated field. However, some gRPC
1619
+ # Transcoding implementations may not support this feature.
1618
1620
  class HttpRule
1619
1621
  include Google::Apis::Core::Hashable
1620
1622
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1 gem
19
- GEM_VERSION = "0.48.0"
19
+ GEM_VERSION = "0.49.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-serviceconsumermanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.49.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-09 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-serviceconsumermanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.49.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []