google-apis-gkehub_v2 0.13.0 → 0.14.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: 1f881585c4318597174c460f9c15e91d74c2beb21076272910e8750ab75fcf6f
4
- data.tar.gz: fc1a8ee8447aae84acdbb4030d9c83e7b528b37d6d8ec2380032e56b8e84abd5
3
+ metadata.gz: f5aee6ce37ed163fcaab579a0d9a4f82281fdd7789b348cf5167829c63c6dde0
4
+ data.tar.gz: e27b82e17020b64bdfff944d052485c0f5ccaaf2b058f4804c8d3ce6f62c3818
5
5
  SHA512:
6
- metadata.gz: f7c4c27bb0cbe05382351fc9a309daff334e43a8a15f36ba6f1470ed9d04e9a93639e10c86aeed2190d4d6d1fb41c3fb11b81dbf1398e84679113564ed399ba1
7
- data.tar.gz: 408d868bd4f8bd04e75823cae6a07c3f68f6686f87351a441c0e756b97d9f59fe435125f132977b2db3132e327a16245fe93a1f158981f418fd53f81e5aa3f80
6
+ metadata.gz: de00940f18019a77ec70652f1347f644b897df6a12c0014a8cac847f9517b6d86db3e19219d6afcb5bda42c9c180926a44b45564aee3d0a066b876635ac2c82d
7
+ data.tar.gz: 125826f89f041a89ef7402b199773e9210c765ada6c4d51aebead5449f0a8c29fcd6170193e64c493fd86abddddab5cfd3d06df2171ba209cfc30c37620f876c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v2
2
2
 
3
+ ### v0.14.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250925
6
+
3
7
  ### v0.13.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250907
@@ -2365,6 +2365,13 @@ module Google
2365
2365
  # @return [Array<Google::Apis::GkehubV2::Operation>]
2366
2366
  attr_accessor :operations
2367
2367
 
2368
+ # Unordered list. Unreachable resources. Populated when the request sets `
2369
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2370
+ # when attempting to list all resources across all supported locations.
2371
+ # Corresponds to the JSON property `unreachable`
2372
+ # @return [Array<String>]
2373
+ attr_accessor :unreachable
2374
+
2368
2375
  def initialize(**args)
2369
2376
  update!(**args)
2370
2377
  end
@@ -2373,6 +2380,7 @@ module Google
2373
2380
  def update!(**args)
2374
2381
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2375
2382
  @operations = args[:operations] if args.key?(:operations)
2383
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2376
2384
  end
2377
2385
  end
2378
2386
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV2
18
18
  # Version of the google-apis-gkehub_v2 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.14.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 = "20250907"
25
+ REVISION = "20250925"
26
26
  end
27
27
  end
28
28
  end
@@ -1262,6 +1262,7 @@ module Google
1262
1262
  property :next_page_token, as: 'nextPageToken'
1263
1263
  collection :operations, as: 'operations', class: Google::Apis::GkehubV2::Operation, decorator: Google::Apis::GkehubV2::Operation::Representation
1264
1264
 
1265
+ collection :unreachable, as: 'unreachable'
1265
1266
  end
1266
1267
  end
1267
1268
 
@@ -413,6 +413,13 @@ module Google
413
413
  # The standard list page size.
414
414
  # @param [String] page_token
415
415
  # The standard list page token.
416
+ # @param [Boolean] return_partial_success
417
+ # When set to `true`, operations that are reachable are returned as normal, and
418
+ # those that are unreachable are returned in the [ListOperationsResponse.
419
+ # unreachable] field. This can only be `true` when reading across collections e.
420
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
421
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
422
+ # explicitly documented otherwise in service or product specific documentation.
416
423
  # @param [String] fields
417
424
  # Selector specifying which fields to include in a partial response.
418
425
  # @param [String] quota_user
@@ -430,7 +437,7 @@ module Google
430
437
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
431
438
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
432
439
  # @raise [Google::Apis::AuthorizationError] Authorization is required
433
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
440
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
434
441
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
435
442
  command.response_representation = Google::Apis::GkehubV2::ListOperationsResponse::Representation
436
443
  command.response_class = Google::Apis::GkehubV2::ListOperationsResponse
@@ -438,6 +445,7 @@ module Google
438
445
  command.query['filter'] = filter unless filter.nil?
439
446
  command.query['pageSize'] = page_size unless page_size.nil?
440
447
  command.query['pageToken'] = page_token unless page_token.nil?
448
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
441
449
  command.query['fields'] = fields unless fields.nil?
442
450
  command.query['quotaUser'] = quota_user unless quota_user.nil?
443
451
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.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-gkehub_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.13.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.14.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v2
62
62
  rdoc_options: []
63
63
  require_paths: