google-apis-datacatalog_v1 0.61.0 → 0.62.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 822b514d94769d873c839e1e75f1586eed089e477f730aa4fbf0ad8a46ca1f0e
|
4
|
+
data.tar.gz: 2c90b7717b5500c6c2c633fddcab4341c46041d2fcedc8b246d6bfec679a5311
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 041c5dd10a752ad6db79bb4153e2fc79a4cc32a977e4aba10e3b920c3a3917ab32cbd72483866fc8d624eec5ff5cf5a164a7d8fbc936a6ad67c3094ad3a0c6f4
|
7
|
+
data.tar.gz: 1aadfce8b31393c893dbf3b1cb78230771d1ddc6ede41094d33d890baf81d5c2f476ea3d2a09b1f8e081df9c008cc7c66950607b20c751486cf1c51e7d5481e1
|
data/CHANGELOG.md
CHANGED
@@ -3640,6 +3640,13 @@ module Google
|
|
3640
3640
|
# @return [Array<Google::Apis::DatacatalogV1::Operation>]
|
3641
3641
|
attr_accessor :operations
|
3642
3642
|
|
3643
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
3644
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
3645
|
+
# when attempting to list all resources across all supported locations.
|
3646
|
+
# Corresponds to the JSON property `unreachable`
|
3647
|
+
# @return [Array<String>]
|
3648
|
+
attr_accessor :unreachable
|
3649
|
+
|
3643
3650
|
def initialize(**args)
|
3644
3651
|
update!(**args)
|
3645
3652
|
end
|
@@ -3648,6 +3655,7 @@ module Google
|
|
3648
3655
|
def update!(**args)
|
3649
3656
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3650
3657
|
@operations = args[:operations] if args.key?(:operations)
|
3658
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3651
3659
|
end
|
3652
3660
|
end
|
3653
3661
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatacatalogV1
|
18
18
|
# Version of the google-apis-datacatalog_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.62.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 = "
|
25
|
+
REVISION = "20250928"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1740,6 +1740,7 @@ module Google
|
|
1740
1740
|
property :next_page_token, as: 'nextPageToken'
|
1741
1741
|
collection :operations, as: 'operations', class: Google::Apis::DatacatalogV1::Operation, decorator: Google::Apis::DatacatalogV1::Operation::Representation
|
1742
1742
|
|
1743
|
+
collection :unreachable, as: 'unreachable'
|
1743
1744
|
end
|
1744
1745
|
end
|
1745
1746
|
|
@@ -1575,6 +1575,13 @@ module Google
|
|
1575
1575
|
# The standard list page size.
|
1576
1576
|
# @param [String] page_token
|
1577
1577
|
# The standard list page token.
|
1578
|
+
# @param [Boolean] return_partial_success
|
1579
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1580
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1581
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1582
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1583
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1584
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1578
1585
|
# @param [String] fields
|
1579
1586
|
# Selector specifying which fields to include in a partial response.
|
1580
1587
|
# @param [String] quota_user
|
@@ -1592,7 +1599,7 @@ module Google
|
|
1592
1599
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1593
1600
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1594
1601
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1595
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1602
|
+
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)
|
1596
1603
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
1597
1604
|
command.response_representation = Google::Apis::DatacatalogV1::ListOperationsResponse::Representation
|
1598
1605
|
command.response_class = Google::Apis::DatacatalogV1::ListOperationsResponse
|
@@ -1600,6 +1607,7 @@ module Google
|
|
1600
1607
|
command.query['filter'] = filter unless filter.nil?
|
1601
1608
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1602
1609
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1610
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1603
1611
|
command.query['fields'] = fields unless fields.nil?
|
1604
1612
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1605
1613
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datacatalog_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.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-datacatalog_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.62.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|