google-apis-vault_v1 0.36.0 → 0.38.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: cc41847d57573615521af1caba6ade097a2d973fce8cfb250a67612c6510f4f7
4
+ data.tar.gz: 8066df2273c9777fc3f8d45f9800ad4bfe089eceeaa134eba5a60558ffb935ae
5
5
  SHA512:
6
- metadata.gz: 8950efa06fb262a7039cdf8db1626a184dfd38ffa947e2f338629a02e05d4e2d0036e6795b5142fa1cba0dcf097509a0b9f8eaa2178e94bfb5574839cba2c718
7
- data.tar.gz: 743ab5ca5291b706f3934881e6ed285ff59ae5c6e0222e2d0d178b5bd472e8c728de2d25e3b75a2931910a5ee5b1401d2b71f78f5e8cc14063d13ced91466003
6
+ metadata.gz: 7a7dc377dcd21fe2b658e4e4502b3ef56f1f768515ce4a50b57e2122f271839917e89d9f015dae7c03452d8eeb9f303ff4f88207714855d899b133e011106c30
7
+ data.tar.gz: c406da3872ba4cdb71b9f2cea2b1a2c30c4709b0e7eb8be00e960ed05dbfd167947cd8d3324ece8930b8cbc808b25180efc1ec6733ad3f78ab932e5f89bf8d0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vault_v1
2
2
 
3
+ ### v0.38.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251126
6
+
7
+ ### v0.37.0 (2025-10-19)
8
+
9
+ * Regenerated from discovery document revision 20251015
10
+
3
11
  ### v0.36.0 (2025-06-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20250527
@@ -1390,6 +1390,14 @@ 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.
1395
+ # For example, when attempting to list all resources across all supported
1396
+ # locations.
1397
+ # Corresponds to the JSON property `unreachable`
1398
+ # @return [Array<String>]
1399
+ attr_accessor :unreachable
1400
+
1393
1401
  def initialize(**args)
1394
1402
  update!(**args)
1395
1403
  end
@@ -1398,6 +1406,7 @@ module Google
1398
1406
  def update!(**args)
1399
1407
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1400
1408
  @operations = args[:operations] if args.key?(:operations)
1409
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1401
1410
  end
1402
1411
  end
1403
1412
 
@@ -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.38.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 = "20251126"
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,14 @@ 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.
1186
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1187
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1188
+ # if set unless explicitly documented otherwise in service or product specific
1189
+ # documentation.
1182
1190
  # @param [String] fields
1183
1191
  # Selector specifying which fields to include in a partial response.
1184
1192
  # @param [String] quota_user
@@ -1196,7 +1204,7 @@ module Google
1196
1204
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1197
1205
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1198
1206
  # @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)
1207
+ 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
1208
  command = make_simple_command(:get, 'v1/{+name}', options)
1201
1209
  command.response_representation = Google::Apis::VaultV1::ListOperationsResponse::Representation
1202
1210
  command.response_class = Google::Apis::VaultV1::ListOperationsResponse
@@ -1204,6 +1212,7 @@ module Google
1204
1212
  command.query['filter'] = filter unless filter.nil?
1205
1213
  command.query['pageSize'] = page_size unless page_size.nil?
1206
1214
  command.query['pageToken'] = page_token unless page_token.nil?
1215
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1207
1216
  command.query['fields'] = fields unless fields.nil?
1208
1217
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1209
1218
  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.38.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.38.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: