google-apis-datacatalog_v1beta1 0.24.0 → 0.25.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/datacatalog_v1beta1/classes.rb +31 -0
- data/lib/google/apis/datacatalog_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datacatalog_v1beta1/representations.rb +16 -0
- data/lib/google/apis/datacatalog_v1beta1/service.rb +5 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc58464c8dbb0a08a5d0afbf3f549642e355780edccda97ebb95bda1b02cf2ac
|
4
|
+
data.tar.gz: 9bc9d3cf4e17050ef43ddb31ea70ae946086e2791bef8f1e56ade706086132e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fff8606146e0f481057864fd0d184474b09a66ce3b0e014b7a56d890a5713cb1361026a2a9dadea104e71a02d39f9db24f516cfe80eb8c55ac14251a7d346208
|
7
|
+
data.tar.gz: be2131347e8643065edb844bf14513d02ddf84d577c5646cf2523dea1fb4cb8627460f65639af4eb67d03e864c272c8e4b615f6e488ee646d94f5c03e1dc8fbc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1beta1
|
2
2
|
|
3
|
+
### v0.25.0 (2023-01-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230117
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
3
8
|
### v0.24.0 (2022-12-14)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20221203
|
@@ -1619,6 +1619,11 @@ module Google
|
|
1619
1619
|
# @return [Fixnum]
|
1620
1620
|
attr_accessor :policy_tag_count
|
1621
1621
|
|
1622
|
+
# The source system of the Taxonomy.
|
1623
|
+
# Corresponds to the JSON property `service`
|
1624
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TaxonomyService]
|
1625
|
+
attr_accessor :service
|
1626
|
+
|
1622
1627
|
# Timestamps about this resource according to a particular system.
|
1623
1628
|
# Corresponds to the JSON property `taxonomyTimestamps`
|
1624
1629
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps]
|
@@ -1635,10 +1640,36 @@ module Google
|
|
1635
1640
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1636
1641
|
@name = args[:name] if args.key?(:name)
|
1637
1642
|
@policy_tag_count = args[:policy_tag_count] if args.key?(:policy_tag_count)
|
1643
|
+
@service = args[:service] if args.key?(:service)
|
1638
1644
|
@taxonomy_timestamps = args[:taxonomy_timestamps] if args.key?(:taxonomy_timestamps)
|
1639
1645
|
end
|
1640
1646
|
end
|
1641
1647
|
|
1648
|
+
# The source system of the Taxonomy.
|
1649
|
+
class GoogleCloudDatacatalogV1beta1TaxonomyService
|
1650
|
+
include Google::Apis::Core::Hashable
|
1651
|
+
|
1652
|
+
# P4SA Identity of the service.
|
1653
|
+
# Corresponds to the JSON property `identity`
|
1654
|
+
# @return [String]
|
1655
|
+
attr_accessor :identity
|
1656
|
+
|
1657
|
+
# The GCP service name.
|
1658
|
+
# Corresponds to the JSON property `name`
|
1659
|
+
# @return [String]
|
1660
|
+
attr_accessor :name
|
1661
|
+
|
1662
|
+
def initialize(**args)
|
1663
|
+
update!(**args)
|
1664
|
+
end
|
1665
|
+
|
1666
|
+
# Update properties of this object
|
1667
|
+
def update!(**args)
|
1668
|
+
@identity = args[:identity] if args.key?(:identity)
|
1669
|
+
@name = args[:name] if args.key?(:name)
|
1670
|
+
end
|
1671
|
+
end
|
1672
|
+
|
1642
1673
|
# The set of all usage signals that we store in Data Catalog.
|
1643
1674
|
class GoogleCloudDatacatalogV1beta1UsageSignal
|
1644
1675
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatacatalogV1beta1
|
18
18
|
# Version of the google-apis-datacatalog_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230117"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class GoogleCloudDatacatalogV1beta1TaxonomyService
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class GoogleCloudDatacatalogV1beta1UsageSignal
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -759,11 +765,21 @@ module Google
|
|
759
765
|
property :display_name, as: 'displayName'
|
760
766
|
property :name, as: 'name'
|
761
767
|
property :policy_tag_count, as: 'policyTagCount'
|
768
|
+
property :service, as: 'service', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TaxonomyService, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TaxonomyService::Representation
|
769
|
+
|
762
770
|
property :taxonomy_timestamps, as: 'taxonomyTimestamps', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps::Representation
|
763
771
|
|
764
772
|
end
|
765
773
|
end
|
766
774
|
|
775
|
+
class GoogleCloudDatacatalogV1beta1TaxonomyService
|
776
|
+
# @private
|
777
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
778
|
+
property :identity, as: 'identity'
|
779
|
+
property :name, as: 'name'
|
780
|
+
end
|
781
|
+
end
|
782
|
+
|
767
783
|
class GoogleCloudDatacatalogV1beta1UsageSignal
|
768
784
|
# @private
|
769
785
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1752,6 +1752,9 @@ module Google
|
|
1752
1752
|
# permission to view.
|
1753
1753
|
# @param [String] parent
|
1754
1754
|
# Required. Resource name of the project to list the taxonomies of.
|
1755
|
+
# @param [String] filter
|
1756
|
+
# Supported field for filter is 'service' and value is 'dataplex'. Eg: service=
|
1757
|
+
# dataplex.
|
1755
1758
|
# @param [Fixnum] page_size
|
1756
1759
|
# The maximum number of items to return. Must be a value between 1 and 1000. If
|
1757
1760
|
# not set, defaults to 50.
|
@@ -1775,11 +1778,12 @@ module Google
|
|
1775
1778
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1776
1779
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1777
1780
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1778
|
-
def list_project_location_taxonomies(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1781
|
+
def list_project_location_taxonomies(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1779
1782
|
command = make_simple_command(:get, 'v1beta1/{+parent}/taxonomies', options)
|
1780
1783
|
command.response_representation = Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse::Representation
|
1781
1784
|
command.response_class = Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ListTaxonomiesResponse
|
1782
1785
|
command.params['parent'] = parent unless parent.nil?
|
1786
|
+
command.query['filter'] = filter unless filter.nil?
|
1783
1787
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1784
1788
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1785
1789
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datacatalog_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.25.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Cloud Data Catalog API V1beta1
|