Skip to content

Commit e4466d1

Browse files
feat: Automated regeneration of vault v1 client (googleapis#24688)
Auto-created at 2025-10-19 10:29:43 +0000 using the toys pull request generator.
1 parent 04415ae commit e4466d1

File tree

6 files changed

+27
-3
lines changed

6 files changed

+27
-3
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372779,6 +372779,8 @@
372779372779
"/vault:v1/ListOperationsResponse/nextPageToken": next_page_token
372780372780
"/vault:v1/ListOperationsResponse/operations": operations
372781372781
"/vault:v1/ListOperationsResponse/operations/operation": operation
372782+
"/vault:v1/ListOperationsResponse/unreachable": unreachable
372783+
"/vault:v1/ListOperationsResponse/unreachable/unreachable": unreachable
372782372784
"/vault:v1/ListSavedQueriesResponse": list_saved_queries_response
372783372785
"/vault:v1/ListSavedQueriesResponse/nextPageToken": next_page_token
372784372786
"/vault:v1/ListSavedQueriesResponse/savedQueries": saved_queries
@@ -372980,6 +372982,7 @@
372980372982
"/vault:v1/vault.operations.list/name": name
372981372983
"/vault:v1/vault.operations.list/pageSize": page_size
372982372984
"/vault:v1/vault.operations.list/pageToken": page_token
372985+
"/vault:v1/vault.operations.list/returnPartialSuccess": return_partial_success
372983372986
"/vectortile:v1/Area": area
372984372987
"/vectortile:v1/Area/basemapZOrder": basemap_z_order
372985372988
"/vectortile:v1/Area/hasExternalEdges": has_external_edges

generated/google-apis-vault_v1/CHANGELOG.md

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

3+
### v0.37.0 (2025-10-19)
4+
5+
* Regenerated from discovery document revision 20251015
6+
37
### v0.36.0 (2025-06-01)
48

59
* Regenerated from discovery document revision 20250527

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,6 +1390,13 @@ class ListOperationsResponse
13901390
# @return [Array<Google::Apis::VaultV1::Operation>]
13911391
attr_accessor :operations
13921392

1393+
# Unordered list. Unreachable resources. Populated when the request sets `
1394+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
1395+
# when attempting to list all resources across all supported locations.
1396+
# Corresponds to the JSON property `unreachable`
1397+
# @return [Array<String>]
1398+
attr_accessor :unreachable
1399+
13931400
def initialize(**args)
13941401
update!(**args)
13951402
end
@@ -1398,6 +1405,7 @@ def initialize(**args)
13981405
def update!(**args)
13991406
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
14001407
@operations = args[:operations] if args.key?(:operations)
1408+
@unreachable = args[:unreachable] if args.key?(:unreachable)
14011409
end
14021410
end
14031411

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module VaultV1
1818
# Version of the google-apis-vault_v1 gem
19-
GEM_VERSION = "0.36.0"
19+
GEM_VERSION = "0.37.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -875,6 +875,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
875875
property :next_page_token, as: 'nextPageToken'
876876
collection :operations, as: 'operations', class: Google::Apis::VaultV1::Operation, decorator: Google::Apis::VaultV1::Operation::Representation
877877

878+
collection :unreachable, as: 'unreachable'
878879
end
879880
end
880881

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,6 +1179,13 @@ def get_operation(name, fields: nil, quota_user: nil, options: nil, &block)
11791179
# The standard list page size.
11801180
# @param [String] page_token
11811181
# The standard list page token.
1182+
# @param [Boolean] return_partial_success
1183+
# When set to `true`, operations that are reachable are returned as normal, and
1184+
# those that are unreachable are returned in the [ListOperationsResponse.
1185+
# unreachable] field. This can only be `true` when reading across collections e.
1186+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1187+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
1188+
# explicitly documented otherwise in service or product specific documentation.
11821189
# @param [String] fields
11831190
# Selector specifying which fields to include in a partial response.
11841191
# @param [String] quota_user
@@ -1196,14 +1203,15 @@ def get_operation(name, fields: nil, quota_user: nil, options: nil, &block)
11961203
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11971204
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11981205
# @raise [Google::Apis::AuthorizationError] Authorization is required
1199-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1206+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
12001207
command = make_simple_command(:get, 'v1/{+name}', options)
12011208
command.response_representation = Google::Apis::VaultV1::ListOperationsResponse::Representation
12021209
command.response_class = Google::Apis::VaultV1::ListOperationsResponse
12031210
command.params['name'] = name unless name.nil?
12041211
command.query['filter'] = filter unless filter.nil?
12051212
command.query['pageSize'] = page_size unless page_size.nil?
12061213
command.query['pageToken'] = page_token unless page_token.nil?
1214+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
12071215
command.query['fields'] = fields unless fields.nil?
12081216
command.query['quotaUser'] = quota_user unless quota_user.nil?
12091217
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)