google-apis-servicemanagement_v1 0.57.0 → 0.58.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65abbc5d017fac8e4657fb5a06d6903f4530ac6f8221a8caf72708703b5cc617
|
4
|
+
data.tar.gz: a854a6d548eb690602313ecc2b7fb5104455b4554ff2472401b6913ee5183058
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f0a3e35950b3aff60a860226b1995e7e5728747ffd0af35db5c2c915d99461439bb2e3a7f442ca4d05a6ac864afc8540597b9802985b1d5e014320bab9014cb
|
7
|
+
data.tar.gz: 596e06c207415778d72b399ad650df327e4fadaa45890e9f1d26ac34903f7efa8aa93dcde5ccb6314e68ce692f06f5fd2f4fa068ca154eb6395b5520a4c224c2
|
data/CHANGELOG.md
CHANGED
@@ -988,12 +988,14 @@ module Google
|
|
988
988
|
# @return [Array<String>]
|
989
989
|
attr_accessor :allowed_response_extensions
|
990
990
|
|
991
|
-
# A list of full type names of provided contexts.
|
991
|
+
# A list of full type names of provided contexts. It is used to support
|
992
|
+
# propagating HTTP headers and ETags from the response extension.
|
992
993
|
# Corresponds to the JSON property `provided`
|
993
994
|
# @return [Array<String>]
|
994
995
|
attr_accessor :provided
|
995
996
|
|
996
|
-
# A list of full type names of requested contexts
|
997
|
+
# A list of full type names of requested contexts, only the requested context
|
998
|
+
# will be made available to the backend.
|
997
999
|
# Corresponds to the JSON property `requested`
|
998
1000
|
# @return [Array<String>]
|
999
1001
|
attr_accessor :requested
|
@@ -2017,27 +2019,27 @@ module Google
|
|
2017
2019
|
# effect as the proto annotation. This can be particularly useful if you have a
|
2018
2020
|
# proto that is reused in multiple services. Note that any transcoding specified
|
2019
2021
|
# in the service config will override any matching transcoding configuration in
|
2020
|
-
# the proto.
|
2021
|
-
# http: rules: - selector: example.v1.Messaging.GetMessage get:
|
2022
|
-
# message_id`/`sub.subfield` Special notes When gRPC Transcoding
|
2023
|
-
# a gRPC to JSON REST endpoints, the proto to JSON conversion
|
2024
|
-
# proto3 specification](https://developers.google.com/protocol-
|
2025
|
-
# proto3#json). While the single segment variable follows the
|
2026
|
-
# 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
|
2027
|
-
# Expansion, the multi segment variable **does not** follow RFC
|
2028
|
-
# 3 Reserved Expansion. The reason is that the Reserved
|
2029
|
-
# expand special characters like `?` and `#`, which would
|
2030
|
-
# As the result, gRPC Transcoding uses a custom encoding
|
2031
|
-
# variables. The path variables **must not** refer to any
|
2032
|
-
# field, because client libraries are not capable of handling
|
2033
|
-
# expansion. The path variables **must not** capture the leading "/
|
2034
|
-
# The reason is that the most common use case "`var`" does not
|
2035
|
-
# leading "/" character. For consistency, all path variables must
|
2036
|
-
# behavior. Repeated message fields must not be mapped to URL
|
2037
|
-
# because no client library can support such complicated
|
2038
|
-
# needs to use a JSON array for request or response body, it
|
2039
|
-
# or response body to a repeated field. However, some gRPC
|
2040
|
-
# implementations may not support this feature.
|
2022
|
+
# the proto. The following example selects a gRPC method and applies an `
|
2023
|
+
# HttpRule` to it: http: rules: - selector: example.v1.Messaging.GetMessage get:
|
2024
|
+
# /v1/messages/`message_id`/`sub.subfield` Special notes When gRPC Transcoding
|
2025
|
+
# is used to map a gRPC to JSON REST endpoints, the proto to JSON conversion
|
2026
|
+
# must follow the [proto3 specification](https://developers.google.com/protocol-
|
2027
|
+
# buffers/docs/proto3#json). While the single segment variable follows the
|
2028
|
+
# semantics of [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
|
2029
|
+
# Simple String Expansion, the multi segment variable **does not** follow RFC
|
2030
|
+
# 6570 Section 3.2.3 Reserved Expansion. The reason is that the Reserved
|
2031
|
+
# Expansion does not expand special characters like `?` and `#`, which would
|
2032
|
+
# lead to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
|
2033
|
+
# for multi segment variables. The path variables **must not** refer to any
|
2034
|
+
# repeated or mapped field, because client libraries are not capable of handling
|
2035
|
+
# such variable expansion. The path variables **must not** capture the leading "/
|
2036
|
+
# " character. The reason is that the most common use case "`var`" does not
|
2037
|
+
# capture the leading "/" character. For consistency, all path variables must
|
2038
|
+
# share the same behavior. Repeated message fields must not be mapped to URL
|
2039
|
+
# query parameters, because no client library can support such complicated
|
2040
|
+
# mapping. If an API needs to use a JSON array for request or response body, it
|
2041
|
+
# can map the request or response body to a repeated field. However, some gRPC
|
2042
|
+
# Transcoding implementations may not support this feature.
|
2041
2043
|
class HttpRule
|
2042
2044
|
include Google::Apis::Core::Hashable
|
2043
2045
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicemanagementV1
|
18
18
|
# Version of the google-apis-servicemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.58.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 = "
|
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-servicemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.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-
|
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-servicemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.58.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicemanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|