google-apis-gkehub_v1beta1 0.48.0 → 0.49.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: 189fd0516c7e15aac53d28f0965d3b305c0acb80152e4e6ed5b6142c876469f2
4
- data.tar.gz: 3653648b7134a87b17ab14fd37551c8ba9adae1e17342c8bb4a05135312ee591
3
+ metadata.gz: db9eb0302176031bdb052920e64b8fb5d60dd5566705a2ecba845a560a9f28be
4
+ data.tar.gz: d9954091b9144d1ab0eb5ae066cd568c21ac9cf8717d45ad2dd77bb0bcdf4256
5
5
  SHA512:
6
- metadata.gz: 3cfec0f7be791d5c550b1557c349d164496cdb71481e33405cad51737fcdc4779389dd8a9257edddd620eff1a6503a5eb1cc741e3cfbfb3be817f002bc4fba8c
7
- data.tar.gz: 4348a72a896a70fff1527e57e5caf0655dea13897ad0eb77b939db60748fd37028e890ea4a2723c51b7d267e1b728fefaaa86caa1a901898a56028c35c22081a
6
+ metadata.gz: 04c0fe3e29910702d8f9a4c268a8a1b121a006c060e0b5e96aba889d89a51f8857bebce40d35d89a698db672f8f89acdd582a39cbfae75d4e5416b3a9b02b6be
7
+ data.tar.gz: 0fd3137abc8079fbe8786daf83999aad2551320a71e7cff6af9336536c03c524c7e0a048f2c6da9772b265d2fc9e1f5ace85369ece0a0ebd606d832e613c6c18
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1beta1
2
2
 
3
+ ### v0.49.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250925
6
+
3
7
  ### v0.48.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250907
@@ -713,6 +713,13 @@ module Google
713
713
  # @return [Array<Google::Apis::GkehubV1beta1::Operation>]
714
714
  attr_accessor :operations
715
715
 
716
+ # Unordered list. Unreachable resources. Populated when the request sets `
717
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
718
+ # when attempting to list all resources across all supported locations.
719
+ # Corresponds to the JSON property `unreachable`
720
+ # @return [Array<String>]
721
+ attr_accessor :unreachable
722
+
716
723
  def initialize(**args)
717
724
  update!(**args)
718
725
  end
@@ -721,6 +728,7 @@ module Google
721
728
  def update!(**args)
722
729
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
723
730
  @operations = args[:operations] if args.key?(:operations)
731
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
724
732
  end
725
733
  end
726
734
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1beta1
18
18
  # Version of the google-apis-gkehub_v1beta1 gem
19
- GEM_VERSION = "0.48.0"
19
+ GEM_VERSION = "0.49.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
@@ -405,6 +405,7 @@ module Google
405
405
  property :next_page_token, as: 'nextPageToken'
406
406
  collection :operations, as: 'operations', class: Google::Apis::GkehubV1beta1::Operation, decorator: Google::Apis::GkehubV1beta1::Operation::Representation
407
407
 
408
+ collection :unreachable, as: 'unreachable'
408
409
  end
409
410
  end
410
411
 
@@ -756,6 +756,13 @@ module Google
756
756
  # The standard list page size.
757
757
  # @param [String] page_token
758
758
  # The standard list page token.
759
+ # @param [Boolean] return_partial_success
760
+ # When set to `true`, operations that are reachable are returned as normal, and
761
+ # those that are unreachable are returned in the [ListOperationsResponse.
762
+ # unreachable] field. This can only be `true` when reading across collections e.
763
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
764
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
765
+ # explicitly documented otherwise in service or product specific documentation.
759
766
  # @param [String] fields
760
767
  # Selector specifying which fields to include in a partial response.
761
768
  # @param [String] quota_user
@@ -773,7 +780,7 @@ module Google
773
780
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
774
781
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
775
782
  # @raise [Google::Apis::AuthorizationError] Authorization is required
776
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
783
+ 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)
777
784
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
778
785
  command.response_representation = Google::Apis::GkehubV1beta1::ListOperationsResponse::Representation
779
786
  command.response_class = Google::Apis::GkehubV1beta1::ListOperationsResponse
@@ -781,6 +788,7 @@ module Google
781
788
  command.query['filter'] = filter unless filter.nil?
782
789
  command.query['pageSize'] = page_size unless page_size.nil?
783
790
  command.query['pageToken'] = page_token unless page_token.nil?
791
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
784
792
  command.query['fields'] = fields unless fields.nil?
785
793
  command.query['quotaUser'] = quota_user unless quota_user.nil?
786
794
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.49.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta1/v0.48.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta1/v0.49.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: