google-apis-metastore_v1beta 0.75.0 → 0.76.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: 3e3e41648e4fbe937fba8dafa8c6f6a9597555da3e89a4e4d5c37ea7fdbcf94a
4
- data.tar.gz: '082cd1e77e79b9db662eb6ee1f6383e1b1ae12525071e3ad11157097f1e062a0'
3
+ metadata.gz: af2a15de2736cdec58d869c33949152c8a68b89239387a94d945d36c0c6b5556
4
+ data.tar.gz: 9b8cb2ef4d4e38dd4490b92460b686d0c6a522968dfd9435145a36b6635648e7
5
5
  SHA512:
6
- metadata.gz: 9d574345a446070a005fce09bbdc647a3c7ad2e87a153bdc8d82b39959a153e4db803654f553a06eb7779cc5e7f0609c1cddb678297ce4a8d1db8e3ccde98811
7
- data.tar.gz: 70fe66d76cb07eb4ed77a5b8c0c61a58bd81015b347fb4eef4cfa53ed80e18edd7636f4d7fe17cbcac6f5319ae4e971865c79d9ef4de56e7600f53386599fc74
6
+ metadata.gz: 7407d3c62da770eae7dcb0ba4464abeeb761f6867c817c0e48a343f1f56d5b037820c400942bbf63ea59d77b95081e7bbff8ec8c8eaced4e73b4d2fb56925ad6
7
+ data.tar.gz: 86eb7c5ad552984bd30d78ebf2c75345c00d40b948f3be6c7c21d3d7847bc135da0bbef144a856e3cb042ca3630bbb99a1bf1878ed5e96db31d7e1dd846a448c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.76.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250925
6
+
3
7
  ### v0.75.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250911
@@ -1478,6 +1478,13 @@ module Google
1478
1478
  # @return [Array<Google::Apis::MetastoreV1beta::Operation>]
1479
1479
  attr_accessor :operations
1480
1480
 
1481
+ # Unordered list. Unreachable resources. Populated when the request sets
1482
+ # ListOperationsRequest.return_partial_success and reads across collections e.g.
1483
+ # when attempting to list all resources across all supported locations.
1484
+ # Corresponds to the JSON property `unreachable`
1485
+ # @return [Array<String>]
1486
+ attr_accessor :unreachable
1487
+
1481
1488
  def initialize(**args)
1482
1489
  update!(**args)
1483
1490
  end
@@ -1486,6 +1493,7 @@ module Google
1486
1493
  def update!(**args)
1487
1494
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1488
1495
  @operations = args[:operations] if args.key?(:operations)
1496
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1489
1497
  end
1490
1498
  end
1491
1499
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1beta
18
18
  # Version of the google-apis-metastore_v1beta gem
19
- GEM_VERSION = "0.75.0"
19
+ GEM_VERSION = "0.76.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 = "20250911"
25
+ REVISION = "20250925"
26
26
  end
27
27
  end
28
28
  end
@@ -871,6 +871,7 @@ module Google
871
871
  property :next_page_token, as: 'nextPageToken'
872
872
  collection :operations, as: 'operations', class: Google::Apis::MetastoreV1beta::Operation, decorator: Google::Apis::MetastoreV1beta::Operation::Representation
873
873
 
874
+ collection :unreachable, as: 'unreachable'
874
875
  end
875
876
  end
876
877
 
@@ -591,6 +591,13 @@ module Google
591
591
  # The standard list page size.
592
592
  # @param [String] page_token
593
593
  # The standard list page token.
594
+ # @param [Boolean] return_partial_success
595
+ # When set to true, operations that are reachable are returned as normal, and
596
+ # those that are unreachable are returned in the ListOperationsResponse.
597
+ # unreachable field.This can only be true when reading across collections e.g.
598
+ # when parent is set to "projects/example/locations/-".This field is not by
599
+ # default supported and will result in an UNIMPLEMENTED error if set unless
600
+ # explicitly documented otherwise in service or product specific documentation.
594
601
  # @param [String] fields
595
602
  # Selector specifying which fields to include in a partial response.
596
603
  # @param [String] quota_user
@@ -608,7 +615,7 @@ module Google
608
615
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
609
616
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
610
617
  # @raise [Google::Apis::AuthorizationError] Authorization is required
611
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
618
+ 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)
612
619
  command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
613
620
  command.response_representation = Google::Apis::MetastoreV1beta::ListOperationsResponse::Representation
614
621
  command.response_class = Google::Apis::MetastoreV1beta::ListOperationsResponse
@@ -616,6 +623,7 @@ module Google
616
623
  command.query['filter'] = filter unless filter.nil?
617
624
  command.query['pageSize'] = page_size unless page_size.nil?
618
625
  command.query['pageToken'] = page_token unless page_token.nil?
626
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
619
627
  command.query['fields'] = fields unless fields.nil?
620
628
  command.query['quotaUser'] = quota_user unless quota_user.nil?
621
629
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.75.0
4
+ version: 0.76.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-metastore_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.75.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.76.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: