Skip to content

Commit 56137b0

Browse files
feat: Automated regeneration of runtimeconfig v1 client (#25073)
Auto-created at 2025-11-30 09:28:09 +0000 using the toys pull request generator.
1 parent 2ce6f6b commit 56137b0

File tree

6 files changed

+31
-4
lines changed

6 files changed

+31
-4
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345100,6 +345100,8 @@
345100345100
"/runtimeconfig:v1/ListOperationsResponse/nextPageToken": next_page_token
345101345101
"/runtimeconfig:v1/ListOperationsResponse/operations": operations
345102345102
"/runtimeconfig:v1/ListOperationsResponse/operations/operation": operation
345103+
"/runtimeconfig:v1/ListOperationsResponse/unreachable": unreachable
345104+
"/runtimeconfig:v1/ListOperationsResponse/unreachable/unreachable": unreachable
345103345105
"/runtimeconfig:v1/Operation": operation
345104345106
"/runtimeconfig:v1/Operation/done": done
345105345107
"/runtimeconfig:v1/Operation/error": error
@@ -345126,6 +345128,7 @@
345126345128
"/runtimeconfig:v1/runtimeconfig.operations.list/name": name
345127345129
"/runtimeconfig:v1/runtimeconfig.operations.list/pageSize": page_size
345128345130
"/runtimeconfig:v1/runtimeconfig.operations.list/pageToken": page_token
345131+
"/runtimeconfig:v1/runtimeconfig.operations.list/returnPartialSuccess": return_partial_success
345129345132
"/runtimeconfig:v1beta1/Binding": binding
345130345133
"/runtimeconfig:v1beta1/Binding/bindingId": binding_id
345131345134
"/runtimeconfig:v1beta1/Binding/condition": condition

generated/google-apis-runtimeconfig_v1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-runtimeconfig_v1
22

3+
### v0.25.0 (2025-11-30)
4+
5+
* Regenerated from discovery document revision 20251113
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.24.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

generated/google-apis-runtimeconfig_v1/lib/google/apis/runtimeconfig_v1/classes.rb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ class ListOperationsResponse
6565
# @return [Array<Google::Apis::RuntimeconfigV1::Operation>]
6666
attr_accessor :operations
6767

68+
# Unordered list. Unreachable resources. Populated when the request sets `
69+
# ListOperationsRequest.return_partial_success` and reads across collections.
70+
# For example, when attempting to list all resources across all supported
71+
# locations.
72+
# Corresponds to the JSON property `unreachable`
73+
# @return [Array<String>]
74+
attr_accessor :unreachable
75+
6876
def initialize(**args)
6977
update!(**args)
7078
end
@@ -73,6 +81,7 @@ def initialize(**args)
7381
def update!(**args)
7482
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
7583
@operations = args[:operations] if args.key?(:operations)
84+
@unreachable = args[:unreachable] if args.key?(:unreachable)
7685
end
7786
end
7887

generated/google-apis-runtimeconfig_v1/lib/google/apis/runtimeconfig_v1/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module RuntimeconfigV1
1818
# Version of the google-apis-runtimeconfig_v1 gem
19-
GEM_VERSION = "0.24.0"
19+
GEM_VERSION = "0.25.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20241219"
25+
REVISION = "20251113"
2626
end
2727
end
2828
end

generated/google-apis-runtimeconfig_v1/lib/google/apis/runtimeconfig_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
7070
property :next_page_token, as: 'nextPageToken'
7171
collection :operations, as: 'operations', class: Google::Apis::RuntimeconfigV1::Operation, decorator: Google::Apis::RuntimeconfigV1::Operation::Representation
7272

73+
collection :unreachable, as: 'unreachable'
7374
end
7475
end
7576

generated/google-apis-runtimeconfig_v1/lib/google/apis/runtimeconfig_v1/service.rb

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,14 @@ def delete_operation(name, fields: nil, quota_user: nil, options: nil, &block)
137137
# The standard list page size.
138138
# @param [String] page_token
139139
# The standard list page token.
140+
# @param [Boolean] return_partial_success
141+
# When set to `true`, operations that are reachable are returned as normal, and
142+
# those that are unreachable are returned in the ListOperationsResponse.
143+
# unreachable field. This can only be `true` when reading across collections.
144+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
145+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
146+
# if set unless explicitly documented otherwise in service or product specific
147+
# documentation.
140148
# @param [String] fields
141149
# Selector specifying which fields to include in a partial response.
142150
# @param [String] quota_user
@@ -154,14 +162,15 @@ def delete_operation(name, fields: nil, quota_user: nil, options: nil, &block)
154162
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
155163
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
156164
# @raise [Google::Apis::AuthorizationError] Authorization is required
157-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
165+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
158166
command = make_simple_command(:get, 'v1/{+name}', options)
159167
command.response_representation = Google::Apis::RuntimeconfigV1::ListOperationsResponse::Representation
160168
command.response_class = Google::Apis::RuntimeconfigV1::ListOperationsResponse
161169
command.params['name'] = name unless name.nil?
162170
command.query['filter'] = filter unless filter.nil?
163171
command.query['pageSize'] = page_size unless page_size.nil?
164172
command.query['pageToken'] = page_token unless page_token.nil?
173+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
165174
command.query['fields'] = fields unless fields.nil?
166175
command.query['quotaUser'] = quota_user unless quota_user.nil?
167176
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)