google-apis-vault_v1 0.36.0 → 0.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e70afe1c8bb2c03394b7dde950e643154b5faaa51d16b3a4c3f7db3be7dbba9f
4
- data.tar.gz: bb6db3fbc089b953f3f3824f097685a2ed5e8eeb353d27a1834ec62e31ec74a2
3
+ metadata.gz: 99b0880967ca64bf0ac473cfa9c039d7745714c186d225373f5f9c8daa2ba8fd
4
+ data.tar.gz: 0120f8983a8fae2e8f0fc06a1e25720467fc68b6060f3e9aa05f30455f34505e
5
5
  SHA512:
6
- metadata.gz: 8950efa06fb262a7039cdf8db1626a184dfd38ffa947e2f338629a02e05d4e2d0036e6795b5142fa1cba0dcf097509a0b9f8eaa2178e94bfb5574839cba2c718
7
- data.tar.gz: 743ab5ca5291b706f3934881e6ed285ff59ae5c6e0222e2d0d178b5bd472e8c728de2d25e3b75a2931910a5ee5b1401d2b71f78f5e8cc14063d13ced91466003
6
+ metadata.gz: 4a56c00e3d9f1a7ef083abf0aa1d3760741cd40171e823ddee7a5379348bc2262554b922e095dcafc2a26445d2d4e4c1c6be68958cffa074c2d1952aac1ae2df
7
+ data.tar.gz: 98d80c06dde7b14b8d724697b215ac55e085464ae01a79dfa4cd2d670d214c59f65dc77612d99b64cb48665a4e462f0ee3e39d342379da8f5c5c28e9553e40ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.37.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251015
6
+
3
7
  ### v0.36.0 (2025-06-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20250527
@@ -1390,6 +1390,13 @@ module Google
1390
1390
  # @return [Array<Google::Apis::VaultV1::Operation>]
1391
1391
  attr_accessor :operations
1392
1392
 
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
+
1393
1400
  def initialize(**args)
1394
1401
  update!(**args)
1395
1402
  end
@@ -1398,6 +1405,7 @@ module Google
1398
1405
  def update!(**args)
1399
1406
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1400
1407
  @operations = args[:operations] if args.key?(:operations)
1408
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1401
1409
  end
1402
1410
  end
1403
1411
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VaultV1
18
18
  # Version of the google-apis-vault_v1 gem
19
- GEM_VERSION = "0.36.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250527"
25
+ REVISION = "20251015"
26
26
  end
27
27
  end
28
28
  end
@@ -875,6 +875,7 @@ module Google
875
875
  property :next_page_token, as: 'nextPageToken'
876
876
  collection :operations, as: 'operations', class: Google::Apis::VaultV1::Operation, decorator: Google::Apis::VaultV1::Operation::Representation
877
877
 
878
+ collection :unreachable, as: 'unreachable'
878
879
  end
879
880
  end
880
881
 
@@ -1179,6 +1179,13 @@ module Google
1179
1179
  # The standard list page size.
1180
1180
  # @param [String] page_token
1181
1181
  # 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.
1182
1189
  # @param [String] fields
1183
1190
  # Selector specifying which fields to include in a partial response.
1184
1191
  # @param [String] quota_user
@@ -1196,7 +1203,7 @@ module Google
1196
1203
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1197
1204
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1198
1205
  # @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)
1200
1207
  command = make_simple_command(:get, 'v1/{+name}', options)
1201
1208
  command.response_representation = Google::Apis::VaultV1::ListOperationsResponse::Representation
1202
1209
  command.response_class = Google::Apis::VaultV1::ListOperationsResponse
@@ -1204,6 +1211,7 @@ module Google
1204
1211
  command.query['filter'] = filter unless filter.nil?
1205
1212
  command.query['pageSize'] = page_size unless page_size.nil?
1206
1213
  command.query['pageToken'] = page_token unless page_token.nil?
1214
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1207
1215
  command.query['fields'] = fields unless fields.nil?
1208
1216
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1209
1217
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vault_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vault_v1/v0.37.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vault_v1
62
62
  rdoc_options: []
63
63
  require_paths: