google-apis-metastore_v1 0.38.0 → 0.39.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: 0e69b61b46913524f43b18cec741476eb8e88e69412a25ca9a32f6e2a7df3121
4
- data.tar.gz: 9f4a31915439e4d79a62a228aae76e09c5f0e7238387b8967f266aa4966a2e41
3
+ metadata.gz: fcb54e1e68c9701607ee96d5676f3b20ed1fbd60caeea88456b0464d4a9b863f
4
+ data.tar.gz: be7d1fab1110d0491db04c3b76746c1769779624b43aa1736e227425240025cc
5
5
  SHA512:
6
- metadata.gz: c2a4d34745ee5de5f513115010055f1afed006ac050db2eabd54dfa36307386521d5ad816f2d2e76492588afb4910f8884d889b05291c8e2c0678c16c8e5315d
7
- data.tar.gz: ee32305bb0f570715d0358ff88c42aff16fb1f0b318a119a56dbb1ab2facb32b4f3276285dcf7aad2f72476e5fe1a7a8313bef96a50575b22f670eaea23b1e4e
6
+ metadata.gz: efd5fae54ce89f4fd5dd88e4a94fef70d9ceac70c345a82de5d5af1da7fcc43ff6ab92760d55bb1e73a03df361fc958b171494addcfb9ac4abafd0049f0f1698
7
+ data.tar.gz: 504420adcd4b5d8887d0829df2ddc554fe02d24513ca5de1873b27ded873324fa2b983d1f5726978d6ef742b263d943b44bb728e9df9f9e5f94fe5baf687e4d5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1
2
2
 
3
+ ### v0.39.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250925
6
+
3
7
  ### v0.38.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250911
@@ -1357,6 +1357,13 @@ module Google
1357
1357
  # @return [Array<Google::Apis::MetastoreV1::Operation>]
1358
1358
  attr_accessor :operations
1359
1359
 
1360
+ # Unordered list. Unreachable resources. Populated when the request sets
1361
+ # ListOperationsRequest.return_partial_success and reads across collections e.g.
1362
+ # when attempting to list all resources across all supported locations.
1363
+ # Corresponds to the JSON property `unreachable`
1364
+ # @return [Array<String>]
1365
+ attr_accessor :unreachable
1366
+
1360
1367
  def initialize(**args)
1361
1368
  update!(**args)
1362
1369
  end
@@ -1365,6 +1372,7 @@ module Google
1365
1372
  def update!(**args)
1366
1373
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1367
1374
  @operations = args[:operations] if args.key?(:operations)
1375
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1368
1376
  end
1369
1377
  end
1370
1378
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1
18
18
  # Version of the google-apis-metastore_v1 gem
19
- GEM_VERSION = "0.38.0"
19
+ GEM_VERSION = "0.39.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
@@ -779,6 +779,7 @@ module Google
779
779
  property :next_page_token, as: 'nextPageToken'
780
780
  collection :operations, as: 'operations', class: Google::Apis::MetastoreV1::Operation, decorator: Google::Apis::MetastoreV1::Operation::Representation
781
781
 
782
+ collection :unreachable, as: 'unreachable'
782
783
  end
783
784
  end
784
785
 
@@ -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, 'v1/{+name}/operations', options)
613
620
  command.response_representation = Google::Apis::MetastoreV1::ListOperationsResponse::Representation
614
621
  command.response_class = Google::Apis::MetastoreV1::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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.39.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.38.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.39.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1
62
62
  rdoc_options: []
63
63
  require_paths: