google-apis-servicemanagement_v1 0.56.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: 2db6aefa95c47b52d055fbc3923a2d1c8718aaf4059bbca71e5334a24509a898
4
- data.tar.gz: 6b442309f07d9e702ae5b516aa420caa91a0b25fe24de21840a403c4be3773e1
3
+ metadata.gz: 65abbc5d017fac8e4657fb5a06d6903f4530ac6f8221a8caf72708703b5cc617
4
+ data.tar.gz: a854a6d548eb690602313ecc2b7fb5104455b4554ff2472401b6913ee5183058
5
5
  SHA512:
6
- metadata.gz: f3193f407ee420b4187e775f549c743d4aa31c19375f37ee2169d2f26c6620c9a8a93b2162b4dfeb030a4892b23a524e46a5fe54f261bcd0b6f75d73f5f8724a
7
- data.tar.gz: 1c7ebe1a4a6136899e0ab2364392bad20da1079d5b9e6016904678ebf80d22e055f48f0e52cfa2c107ffa4b204ccd634e4bb154cbb10cae25a5040b814013516
6
+ metadata.gz: 2f0a3e35950b3aff60a860226b1995e7e5728747ffd0af35db5c2c915d99461439bb2e3a7f442ca4d05a6ac864afc8540597b9802985b1d5e014320bab9014cb
7
+ data.tar.gz: 596e06c207415778d72b399ad650df327e4fadaa45890e9f1d26ac34903f7efa8aa93dcde5ccb6314e68ce692f06f5fd2f4fa068ca154eb6395b5520a4c224c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-servicemanagement_v1
2
2
 
3
+ ### v0.58.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240712
6
+
7
+ ### v0.57.0 (2024-06-09)
8
+
9
+ * Regenerated from discovery document revision 20240531
10
+
3
11
  ### v0.56.0 (2024-05-19)
4
12
 
5
13
  * Regenerated using generator version 0.15.0
@@ -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
@@ -1910,7 +1912,7 @@ module Google
1910
1912
  end
1911
1913
  end
1912
1914
 
1913
- # # gRPC Transcoding gRPC Transcoding is a feature for mapping between a gRPC
1915
+ # gRPC Transcoding gRPC Transcoding is a feature for mapping between a gRPC
1914
1916
  # method and one or more HTTP REST endpoints. It allows developers to build a
1915
1917
  # single API service that supports both gRPC APIs and REST APIs. Many systems,
1916
1918
  # including [Google APIs](https://github.com/googleapis/googleapis), [Cloud
@@ -1930,70 +1932,69 @@ module Google
1930
1932
  # Message) ` option (google.api.http) = ` get: "/v1/`name=messages/*`" `; ` `
1931
1933
  # message GetMessageRequest ` string name = 1; // Mapped to URL path. ` message
1932
1934
  # Message ` string text = 1; // The resource content. ` This enables an HTTP
1933
- # REST to gRPC mapping as below: HTTP | gRPC -----|----- `GET /v1/messages/
1934
- # 123456` | `GetMessage(name: "messages/123456")` Any fields in the request
1935
- # message which are not bound by the path template automatically become HTTP
1936
- # query parameters if there is no HTTP request body. For example: service
1937
- # Messaging ` rpc GetMessage(GetMessageRequest) returns (Message) ` option (
1938
- # google.api.http) = ` get:"/v1/messages/`message_id`" `; ` ` message
1939
- # GetMessageRequest ` message SubMessage ` string subfield = 1; ` string
1940
- # message_id = 1; // Mapped to URL path. int64 revision = 2; // Mapped to URL
1941
- # query parameter `revision`. SubMessage sub = 3; // Mapped to URL query
1942
- # parameter `sub.subfield`. ` This enables a HTTP JSON to RPC mapping as below:
1943
- # HTTP | gRPC -----|----- `GET /v1/messages/123456?revision=2&sub.subfield=foo` |
1944
- # `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield: "foo"))
1945
- # ` Note that fields which are mapped to URL query parameters must have a
1946
- # primitive type or a repeated primitive type or a non-repeated message type. In
1947
- # the case of a repeated type, the parameter can be repeated in the URL as `...?
1948
- # param=A&param=B`. In the case of a message type, each field of the message is
1949
- # mapped to a separate parameter, such as `...?foo.a=A&foo.b=B&foo.c=C`. For
1950
- # HTTP methods that allow a request body, the `body` field specifies the mapping.
1951
- # Consider a REST update method on the message resource collection: service
1952
- # Messaging ` rpc UpdateMessage(UpdateMessageRequest) returns (Message) ` option
1953
- # (google.api.http) = ` patch: "/v1/messages/`message_id`" body: "message" `; ` `
1954
- # message UpdateMessageRequest ` string message_id = 1; // mapped to the URL
1955
- # Message message = 2; // mapped to the body ` The following HTTP JSON to RPC
1956
- # mapping is enabled, where the representation of the JSON in the request body
1957
- # is determined by protos JSON encoding: HTTP | gRPC -----|----- `PATCH /v1/
1958
- # messages/123456 ` "text": "Hi!" `` | `UpdateMessage(message_id: "123456"
1959
- # message ` text: "Hi!" `)` The special name `*` can be used in the body mapping
1960
- # to define that every field not bound by the path template should be mapped to
1961
- # the request body. This enables the following alternative definition of the
1962
- # update method: service Messaging ` rpc UpdateMessage(Message) returns (Message)
1963
- # ` option (google.api.http) = ` patch: "/v1/messages/`message_id`" body: "*" `;
1964
- # ` ` message Message ` string message_id = 1; string text = 2; ` The following
1965
- # HTTP JSON to RPC mapping is enabled: HTTP | gRPC -----|----- `PATCH /v1/
1966
- # messages/123456 ` "text": "Hi!" `` | `UpdateMessage(message_id: "123456" text:
1967
- # "Hi!")` Note that when using `*` in the body mapping, it is not possible to
1968
- # have HTTP parameters, as all fields not bound by the path end in the body.
1969
- # This makes this option more rarely used in practice when defining REST APIs.
1970
- # The common usage of `*` is in custom methods which don't use the URL at all
1971
- # for transferring data. It is possible to define multiple HTTP methods for one
1972
- # RPC by using the `additional_bindings` option. Example: service Messaging `
1973
- # rpc GetMessage(GetMessageRequest) returns (Message) ` option (google.api.http)
1974
- # = ` get: "/v1/messages/`message_id`" additional_bindings ` get: "/v1/users/`
1975
- # user_id`/messages/`message_id`" ` `; ` ` message GetMessageRequest ` string
1976
- # message_id = 1; string user_id = 2; ` This enables the following two
1977
- # alternative HTTP JSON to RPC mappings: HTTP | gRPC -----|----- `GET /v1/
1978
- # messages/123456` | `GetMessage(message_id: "123456")` `GET /v1/users/me/
1979
- # messages/123456` | `GetMessage(user_id: "me" message_id: "123456")` ## Rules
1980
- # for HTTP mapping 1. Leaf request fields (recursive expansion nested messages
1981
- # in the request message) are classified into three categories: - Fields
1982
- # referred by the path template. They are passed via the URL path. - Fields
1983
- # referred by the HttpRule.body. They are passed via the HTTP request body. -
1984
- # All other fields are passed via the URL query parameters, and the parameter
1985
- # name is the field path in the request message. A repeated field can be
1986
- # represented as multiple query parameters under the same name. 2. If HttpRule.
1987
- # body is "*", there is no URL query parameter, all fields are passed via URL
1988
- # path and HTTP request body. 3. If HttpRule.body is omitted, there is no HTTP
1989
- # request body, all fields are passed via URL path and URL query parameters. ###
1990
- # Path template syntax Template = "/" Segments [ Verb ] ; Segments = Segment ` "/
1991
- # " Segment ` ; Segment = "*" | "**" | LITERAL | Variable ; Variable = "`"
1992
- # FieldPath [ "=" Segments ] "`" ; FieldPath = IDENT ` "." IDENT ` ; Verb = ":"
1993
- # LITERAL ; The syntax `*` matches a single URL path segment. The syntax `**`
1994
- # matches zero or more URL path segments, which must be the last part of the URL
1995
- # path except the `Verb`. The syntax `Variable` matches part of the URL path as
1996
- # specified by its template. A variable template must not contain other
1935
+ # REST to gRPC mapping as below: - HTTP: `GET /v1/messages/123456` - gRPC: `
1936
+ # GetMessage(name: "messages/123456")` Any fields in the request message which
1937
+ # are not bound by the path template automatically become HTTP query parameters
1938
+ # if there is no HTTP request body. For example: service Messaging ` rpc
1939
+ # GetMessage(GetMessageRequest) returns (Message) ` option (google.api.http) = `
1940
+ # get:"/v1/messages/`message_id`" `; ` ` message GetMessageRequest ` message
1941
+ # SubMessage ` string subfield = 1; ` string message_id = 1; // Mapped to URL
1942
+ # path. int64 revision = 2; // Mapped to URL query parameter `revision`.
1943
+ # SubMessage sub = 3; // Mapped to URL query parameter `sub.subfield`. ` This
1944
+ # enables a HTTP JSON to RPC mapping as below: - HTTP: `GET /v1/messages/123456?
1945
+ # revision=2&sub.subfield=foo` - gRPC: `GetMessage(message_id: "123456" revision:
1946
+ # 2 sub: SubMessage(subfield: "foo"))` Note that fields which are mapped to URL
1947
+ # query parameters must have a primitive type or a repeated primitive type or a
1948
+ # non-repeated message type. In the case of a repeated type, the parameter can
1949
+ # be repeated in the URL as `...?param=A&param=B`. In the case of a message type,
1950
+ # each field of the message is mapped to a separate parameter, such as `...?foo.
1951
+ # a=A&foo.b=B&foo.c=C`. For HTTP methods that allow a request body, the `body`
1952
+ # field specifies the mapping. Consider a REST update method on the message
1953
+ # resource collection: service Messaging ` rpc UpdateMessage(
1954
+ # UpdateMessageRequest) returns (Message) ` option (google.api.http) = ` patch: "
1955
+ # /v1/messages/`message_id`" body: "message" `; ` ` message UpdateMessageRequest
1956
+ # ` string message_id = 1; // mapped to the URL Message message = 2; // mapped
1957
+ # to the body ` The following HTTP JSON to RPC mapping is enabled, where the
1958
+ # representation of the JSON in the request body is determined by protos JSON
1959
+ # encoding: - HTTP: `PATCH /v1/messages/123456 ` "text": "Hi!" `` - gRPC: `
1960
+ # UpdateMessage(message_id: "123456" message ` text: "Hi!" `)` The special name `
1961
+ # *` can be used in the body mapping to define that every field not bound by the
1962
+ # path template should be mapped to the request body. This enables the following
1963
+ # alternative definition of the update method: service Messaging ` rpc
1964
+ # UpdateMessage(Message) returns (Message) ` option (google.api.http) = ` patch:
1965
+ # "/v1/messages/`message_id`" body: "*" `; ` ` message Message ` string
1966
+ # message_id = 1; string text = 2; ` The following HTTP JSON to RPC mapping is
1967
+ # enabled: - HTTP: `PATCH /v1/messages/123456 ` "text": "Hi!" `` - gRPC: `
1968
+ # UpdateMessage(message_id: "123456" text: "Hi!")` Note that when using `*` in
1969
+ # the body mapping, it is not possible to have HTTP parameters, as all fields
1970
+ # not bound by the path end in the body. This makes this option more rarely used
1971
+ # in practice when defining REST APIs. The common usage of `*` is in custom
1972
+ # methods which don't use the URL at all for transferring data. It is possible
1973
+ # to define multiple HTTP methods for one RPC by using the `additional_bindings`
1974
+ # option. Example: service Messaging ` rpc GetMessage(GetMessageRequest) returns
1975
+ # (Message) ` option (google.api.http) = ` get: "/v1/messages/`message_id`"
1976
+ # additional_bindings ` get: "/v1/users/`user_id`/messages/`message_id`" ` `; ` `
1977
+ # message GetMessageRequest ` string message_id = 1; string user_id = 2; ` This
1978
+ # enables the following two alternative HTTP JSON to RPC mappings: - HTTP: `GET /
1979
+ # v1/messages/123456` - gRPC: `GetMessage(message_id: "123456")` - HTTP: `GET /
1980
+ # v1/users/me/messages/123456` - gRPC: `GetMessage(user_id: "me" message_id: "
1981
+ # 123456")` Rules for HTTP mapping 1. Leaf request fields (recursive expansion
1982
+ # nested messages in the request message) are classified into three categories: -
1983
+ # Fields referred by the path template. They are passed via the URL path. -
1984
+ # Fields referred by the HttpRule.body. They are passed via the HTTP request
1985
+ # body. - All other fields are passed via the URL query parameters, and the
1986
+ # parameter name is the field path in the request message. A repeated field can
1987
+ # be represented as multiple query parameters under the same name. 2. If
1988
+ # HttpRule.body is "*", there is no URL query parameter, all fields are passed
1989
+ # via URL path and HTTP request body. 3. If HttpRule.body is omitted, there is
1990
+ # no HTTP request body, all fields are passed via URL path and URL query
1991
+ # parameters. Path template syntax Template = "/" Segments [ Verb ] ; Segments =
1992
+ # Segment ` "/" Segment ` ; Segment = "*" | "**" | LITERAL | Variable ; Variable
1993
+ # = "`" FieldPath [ "=" Segments ] "`" ; FieldPath = IDENT ` "." IDENT ` ; Verb =
1994
+ # ":" LITERAL ; The syntax `*` matches a single URL path segment. The syntax `**
1995
+ # ` matches zero or more URL path segments, which must be the last part of the
1996
+ # URL path except the `Verb`. The syntax `Variable` matches part of the URL path
1997
+ # as specified by its template. A variable template must not contain other
1997
1998
  # variables. If a variable matches a single path segment, its template may be
1998
1999
  # omitted, e.g. ``var`` is equivalent to ``var=*``. The syntax `LITERAL` matches
1999
2000
  # literal text in the URL path. If the `LITERAL` contains any reserved character,
@@ -2008,7 +2009,7 @@ module Google
2008
2009
  # except `[-_.~/0-9a-zA-Z]` are percent-encoded. The server side does the
2009
2010
  # reverse decoding, except "%2F" and "%2f" are left unchanged. Such variables
2010
2011
  # show up in the [Discovery Document](https://developers.google.com/discovery/v1/
2011
- # reference/apis) as ``+var``. ## Using gRPC API Service Configuration gRPC API
2012
+ # reference/apis) as ``+var``. Using gRPC API Service Configuration gRPC API
2012
2013
  # Service Configuration (service config) is a configuration language for
2013
2014
  # configuring a gRPC service to become a user-facing product. The service config
2014
2015
  # is simply the YAML representation of the `google.api.Service` proto message.
@@ -2018,27 +2019,27 @@ module Google
2018
2019
  # effect as the proto annotation. This can be particularly useful if you have a
2019
2020
  # proto that is reused in multiple services. Note that any transcoding specified
2020
2021
  # in the service config will override any matching transcoding configuration in
2021
- # the proto. Example: http: rules: # Selects a gRPC method and applies HttpRule
2022
- # to it. - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
2023
- # message_id`/`sub.subfield` ## Special notes When gRPC Transcoding is used to
2024
- # map a gRPC to JSON REST endpoints, the proto to JSON conversion must follow
2025
- # the [proto3 specification](https://developers.google.com/protocol-buffers/docs/
2026
- # proto3#json). While the single segment variable follows the semantics of [RFC
2027
- # 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
2028
- # Expansion, the multi segment variable **does not** follow RFC 6570 Section 3.2.
2029
- # 3 Reserved Expansion. The reason is that the Reserved Expansion does not
2030
- # expand special characters like `?` and `#`, which would lead to invalid URLs.
2031
- # As the result, gRPC Transcoding uses a custom encoding for multi segment
2032
- # variables. The path variables **must not** refer to any repeated or mapped
2033
- # field, because client libraries are not capable of handling such variable
2034
- # expansion. The path variables **must not** capture the leading "/" character.
2035
- # The reason is that the most common use case "`var`" does not capture the
2036
- # leading "/" character. For consistency, all path variables must share the same
2037
- # behavior. Repeated message fields must not be mapped to URL query parameters,
2038
- # because no client library can support such complicated mapping. If an API
2039
- # needs to use a JSON array for request or response body, it can map the request
2040
- # or response body to a repeated field. However, some gRPC Transcoding
2041
- # 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.
2042
2043
  class HttpRule
2043
2044
  include Google::Apis::Core::Hashable
2044
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.56.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 = "20240426"
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.56.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-05-19 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-servicemanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.56.0
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: []