google-apis-accesscontextmanager_v1 0.59.0 → 0.60.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: bfc524f616fb8c7437d2a64d7a87e85c4ea35483911ce5ec5dcda053af3bcc1b
4
- data.tar.gz: 8cee1ba8b2d79b4d1423f4e759202252f985ccd16ab6bb2c0f555ec2c99afb9d
3
+ metadata.gz: 988249f7cb8ceda2751126332c9238eb2e46feab04b290bee11191bbf73d70ff
4
+ data.tar.gz: 98f3501db31fdf448b7e167efe03dde242d101e5a18b97952e9423d558d8b7f1
5
5
  SHA512:
6
- metadata.gz: aa3b077a065858f2ab6184009e9cc13cdd65e488877effd7288e9724f073ff529094bb755cc2c72418fbc05d0be4a9602f40c35cc0115aa1288e93101fb92985
7
- data.tar.gz: d9abf49d83b61b9c06e0ff2bc482a85d3324292e4f22438404cb4b97e86e9075f7bbe741405bc3c13d2f17e184aa8fb7a31bd158f181ac30d8420cc40e645ff8
6
+ metadata.gz: c025f8754c8f5a2482eb5846b7dbe2ea043f96ae161891ef58d038e6674890291b44cc55e91e8932aefae1257569488bdc49b95111dcae114ce84b0e6ed31976
7
+ data.tar.gz: 71fdb2a911b1937eff49e0595c0d30542a65f2391fbad547c2ad94a79c361f70e0d3e99c09914ecc9eb706f6b449e6877e83ad9fee1b3c80d936fd8440265e5e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-accesscontextmanager_v1
2
2
 
3
+ ### v0.60.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251005
6
+
3
7
  ### v0.59.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250723
@@ -1457,6 +1457,13 @@ module Google
1457
1457
  # @return [Array<Google::Apis::AccesscontextmanagerV1::Operation>]
1458
1458
  attr_accessor :operations
1459
1459
 
1460
+ # Unordered list. Unreachable resources. Populated when the request sets `
1461
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1462
+ # when attempting to list all resources across all supported locations.
1463
+ # Corresponds to the JSON property `unreachable`
1464
+ # @return [Array<String>]
1465
+ attr_accessor :unreachable
1466
+
1460
1467
  def initialize(**args)
1461
1468
  update!(**args)
1462
1469
  end
@@ -1465,6 +1472,7 @@ module Google
1465
1472
  def update!(**args)
1466
1473
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1467
1474
  @operations = args[:operations] if args.key?(:operations)
1475
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1468
1476
  end
1469
1477
  end
1470
1478
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AccesscontextmanagerV1
18
18
  # Version of the google-apis-accesscontextmanager_v1 gem
19
- GEM_VERSION = "0.59.0"
19
+ GEM_VERSION = "0.60.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 = "20250723"
25
+ REVISION = "20251005"
26
26
  end
27
27
  end
28
28
  end
@@ -733,6 +733,7 @@ module Google
733
733
  property :next_page_token, as: 'nextPageToken'
734
734
  collection :operations, as: 'operations', class: Google::Apis::AccesscontextmanagerV1::Operation, decorator: Google::Apis::AccesscontextmanagerV1::Operation::Representation
735
735
 
736
+ collection :unreachable, as: 'unreachable'
736
737
  end
737
738
  end
738
739
 
@@ -1218,6 +1218,13 @@ module Google
1218
1218
  # The standard list page size.
1219
1219
  # @param [String] page_token
1220
1220
  # The standard list page token.
1221
+ # @param [Boolean] return_partial_success
1222
+ # When set to `true`, operations that are reachable are returned as normal, and
1223
+ # those that are unreachable are returned in the [ListOperationsResponse.
1224
+ # unreachable] field. This can only be `true` when reading across collections e.
1225
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1226
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1227
+ # explicitly documented otherwise in service or product specific documentation.
1221
1228
  # @param [String] fields
1222
1229
  # Selector specifying which fields to include in a partial response.
1223
1230
  # @param [String] quota_user
@@ -1235,7 +1242,7 @@ module Google
1235
1242
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1236
1243
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1237
1244
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1238
- def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1245
+ def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1239
1246
  command = make_simple_command(:get, 'v1/{+name}', options)
1240
1247
  command.response_representation = Google::Apis::AccesscontextmanagerV1::ListOperationsResponse::Representation
1241
1248
  command.response_class = Google::Apis::AccesscontextmanagerV1::ListOperationsResponse
@@ -1243,6 +1250,7 @@ module Google
1243
1250
  command.query['filter'] = filter unless filter.nil?
1244
1251
  command.query['pageSize'] = page_size unless page_size.nil?
1245
1252
  command.query['pageToken'] = page_token unless page_token.nil?
1253
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1246
1254
  command.query['fields'] = fields unless fields.nil?
1247
1255
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1248
1256
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-accesscontextmanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.60.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-accesscontextmanager_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.59.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-accesscontextmanager_v1/v0.60.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-accesscontextmanager_v1
62
62
  rdoc_options: []
63
63
  require_paths: