google-apis-servicenetworking_v1 0.60.0 → 0.62.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: 96aa60158e8c1a7740193d827e5fe884ce296c8be2da6e53ab0977b014dbc6d8
4
- data.tar.gz: 3420b3f34ddf2e75f3b56564366f6fa26c9fa57004e8c85afeb9328a0751be62
3
+ metadata.gz: 1d70c01b384e22264e5842da21bfb6702576dcea5c169a8520d0ad939be1949e
4
+ data.tar.gz: 6bc5facc3db40ca606a62714559e6d9236b85acdae9063d9adad17dc0a9531c0
5
5
  SHA512:
6
- metadata.gz: 6bd5f6e7656a7992838f80375a0fa4ffe919cf9a81a554bf2dfd1ac3c047929d3cfd3dda1570b784ae7305c17726925831aa304a8e480487a7d1a8b58d704ec5
7
- data.tar.gz: 0dd9ad149bf3dcb4c2128a26271d1a5162c5b8c74770988c936498c3aa83ff3fce90a399ab4f8cb41c0a6291f9b3328bafc224e420c832ac77883b1c5e7f1a42
6
+ metadata.gz: 884099d7c41db42e0e81e802e52501c363ff31772cb96d4817f8ea45843b44d1394e2ffab42a8984d8893450f1ce6df2ab2f1aed550df5966c37deb440049af5
7
+ data.tar.gz: 4d3a9e939c7e39beac50eb5d7aa484bfabcaf2289f4df1c86e00dec37d40f8f35548574d4711450cb3b86dec95c86b8a041bff0052efdb28524f7b5ff91dbde5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.62.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240716
6
+
7
+ ### v0.61.0 (2024-06-30)
8
+
9
+ * Regenerated from discovery document revision 20240626
10
+
3
11
  ### v0.60.0 (2024-06-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20240529
@@ -1246,12 +1246,14 @@ module Google
1246
1246
  # @return [Array<String>]
1247
1247
  attr_accessor :allowed_response_extensions
1248
1248
 
1249
- # A list of full type names of provided contexts.
1249
+ # A list of full type names of provided contexts. It is used to support
1250
+ # propagating HTTP headers and ETags from the response extension.
1250
1251
  # Corresponds to the JSON property `provided`
1251
1252
  # @return [Array<String>]
1252
1253
  attr_accessor :provided
1253
1254
 
1254
- # A list of full type names of requested contexts.
1255
+ # A list of full type names of requested contexts, only the requested context
1256
+ # will be made available to the backend.
1255
1257
  # Corresponds to the JSON property `requested`
1256
1258
  # @return [Array<String>]
1257
1259
  attr_accessor :requested
@@ -2369,27 +2371,27 @@ module Google
2369
2371
  # effect as the proto annotation. This can be particularly useful if you have a
2370
2372
  # proto that is reused in multiple services. Note that any transcoding specified
2371
2373
  # in the service config will override any matching transcoding configuration in
2372
- # the proto. Example below selects a gRPC method and applies HttpRule to it.
2373
- # http: rules: - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
2374
- # message_id`/`sub.subfield` Special notes When gRPC Transcoding is used to map
2375
- # a gRPC to JSON REST endpoints, the proto to JSON conversion must follow the [
2376
- # proto3 specification](https://developers.google.com/protocol-buffers/docs/
2377
- # proto3#json). While the single segment variable follows the semantics of [RFC
2378
- # 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
2379
- # Expansion, the multi segment variable **does not** follow RFC 6570 Section 3.2.
2380
- # 3 Reserved Expansion. The reason is that the Reserved Expansion does not
2381
- # expand special characters like `?` and `#`, which would lead to invalid URLs.
2382
- # As the result, gRPC Transcoding uses a custom encoding for multi segment
2383
- # variables. The path variables **must not** refer to any repeated or mapped
2384
- # field, because client libraries are not capable of handling such variable
2385
- # expansion. The path variables **must not** capture the leading "/" character.
2386
- # The reason is that the most common use case "`var`" does not capture the
2387
- # leading "/" character. For consistency, all path variables must share the same
2388
- # behavior. Repeated message fields must not be mapped to URL query parameters,
2389
- # because no client library can support such complicated mapping. If an API
2390
- # needs to use a JSON array for request or response body, it can map the request
2391
- # or response body to a repeated field. However, some gRPC Transcoding
2392
- # implementations may not support this feature.
2374
+ # the proto. The following example selects a gRPC method and applies an `
2375
+ # HttpRule` to it: http: rules: - selector: example.v1.Messaging.GetMessage get:
2376
+ # /v1/messages/`message_id`/`sub.subfield` Special notes When gRPC Transcoding
2377
+ # is used to map a gRPC to JSON REST endpoints, the proto to JSON conversion
2378
+ # must follow the [proto3 specification](https://developers.google.com/protocol-
2379
+ # buffers/docs/proto3#json). While the single segment variable follows the
2380
+ # semantics of [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
2381
+ # Simple String Expansion, the multi segment variable **does not** follow RFC
2382
+ # 6570 Section 3.2.3 Reserved Expansion. The reason is that the Reserved
2383
+ # Expansion does not expand special characters like `?` and `#`, which would
2384
+ # lead to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
2385
+ # for multi segment variables. The path variables **must not** refer to any
2386
+ # repeated or mapped field, because client libraries are not capable of handling
2387
+ # such variable expansion. The path variables **must not** capture the leading "/
2388
+ # " character. The reason is that the most common use case "`var`" does not
2389
+ # capture the leading "/" character. For consistency, all path variables must
2390
+ # share the same behavior. Repeated message fields must not be mapped to URL
2391
+ # query parameters, because no client library can support such complicated
2392
+ # mapping. If an API needs to use a JSON array for request or response body, it
2393
+ # can map the request or response body to a repeated field. However, some gRPC
2394
+ # Transcoding implementations may not support this feature.
2393
2395
  class HttpRule
2394
2396
  include Google::Apis::Core::Hashable
2395
2397
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.62.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 = "20240529"
25
+ REVISION = "20240716"
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-servicenetworking_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.62.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-02 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-servicenetworking_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.62.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
63
63
  post_install_message:
64
64
  rdoc_options: []