google-apis-datacatalog_v1beta1 0.24.0 → 0.26.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 +9 -0
- data/lib/google/apis/datacatalog_v1beta1/classes.rb +98 -10
- data/lib/google/apis/datacatalog_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datacatalog_v1beta1/representations.rb +46 -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: 70942eb20de9647a327708b598729c4a1c72eccf164efd1365ce57a8b85e2362
|
4
|
+
data.tar.gz: e4e96b260b70597dedc5efa89c034ea58e6275a1f3da247d3f270bfa32322eac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d414c12e2e3247082e1b93656a15a68854710ba969bedb92d1ec5b2af4813670cb87de530cb29ab9a08857ec95d913059638cac100d6ea796d5e5848ea9d5770
|
7
|
+
data.tar.gz: 7b1a61ac53f15c51290905758a0c656001c86c8b0fa3bd93a882bdef4495cf9f180fabe8b34e0845810ec0c0aa5668a266c02d6bbd2ced7e1119f24e2bfe9870
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1beta1
|
2
2
|
|
3
|
+
### v0.26.0 (2023-02-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230127
|
6
|
+
|
7
|
+
### v0.25.0 (2023-01-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230117
|
10
|
+
* Regenerated using generator version 0.11.1
|
11
|
+
|
3
12
|
### v0.24.0 (2022-12-14)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221203
|
@@ -60,22 +60,22 @@ module Google
|
|
60
60
|
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
61
61
|
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
62
62
|
# email address that represents a Google group. For example, `admins@example.com`
|
63
|
-
# . * `
|
64
|
-
#
|
65
|
-
#
|
66
|
-
#
|
67
|
-
# the
|
68
|
-
#
|
69
|
-
#
|
63
|
+
# . * `domain:`domain``: The G Suite domain (primary) that represents all the
|
64
|
+
# users of that domain. For example, `google.com` or `example.com`. * `deleted:
|
65
|
+
# user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
66
|
+
# representing a user that has been recently deleted. For example, `alice@
|
67
|
+
# example.com?uid=123456789012345678901`. If the user is recovered, this value
|
68
|
+
# reverts to `user:`emailid`` and the recovered user retains the role in the
|
69
|
+
# binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
|
70
|
+
# (plus unique identifier) representing a service account that has been recently
|
71
|
+
# deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
70
72
|
# 123456789012345678901`. If the service account is undeleted, this value
|
71
73
|
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
72
74
|
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
73
75
|
# An email address (plus unique identifier) representing a Google group that has
|
74
76
|
# been recently deleted. For example, `admins@example.com?uid=
|
75
77
|
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
76
|
-
# group:`emailid`` and the recovered group retains the role in the binding.
|
77
|
-
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
78
|
-
# of that domain. For example, `google.com` or `example.com`.
|
78
|
+
# group:`emailid`` and the recovered group retains the role in the binding.
|
79
79
|
# Corresponds to the JSON property `members`
|
80
80
|
# @return [Array<String>]
|
81
81
|
attr_accessor :members
|
@@ -268,6 +268,63 @@ module Google
|
|
268
268
|
end
|
269
269
|
end
|
270
270
|
|
271
|
+
# Metadata message for long-running operation returned by the ReconcileTags.
|
272
|
+
class GoogleCloudDatacatalogV1ReconcileTagsMetadata
|
273
|
+
include Google::Apis::Core::Hashable
|
274
|
+
|
275
|
+
# Map that maps name of each tagged column (or empty string in case of sole
|
276
|
+
# entry) to tagging operation status.
|
277
|
+
# Corresponds to the JSON property `errors`
|
278
|
+
# @return [Hash<String,Google::Apis::DatacatalogV1beta1::Status>]
|
279
|
+
attr_accessor :errors
|
280
|
+
|
281
|
+
# State of the reconciliation operation.
|
282
|
+
# Corresponds to the JSON property `state`
|
283
|
+
# @return [String]
|
284
|
+
attr_accessor :state
|
285
|
+
|
286
|
+
def initialize(**args)
|
287
|
+
update!(**args)
|
288
|
+
end
|
289
|
+
|
290
|
+
# Update properties of this object
|
291
|
+
def update!(**args)
|
292
|
+
@errors = args[:errors] if args.key?(:errors)
|
293
|
+
@state = args[:state] if args.key?(:state)
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
# Request message for long-running operation returned by the ReconcileTags.
|
298
|
+
class GoogleCloudDatacatalogV1ReconcileTagsResponse
|
299
|
+
include Google::Apis::Core::Hashable
|
300
|
+
|
301
|
+
# Number of tags created in the request.
|
302
|
+
# Corresponds to the JSON property `createdTagsCount`
|
303
|
+
# @return [Fixnum]
|
304
|
+
attr_accessor :created_tags_count
|
305
|
+
|
306
|
+
# Number of tags deleted in the request.
|
307
|
+
# Corresponds to the JSON property `deletedTagsCount`
|
308
|
+
# @return [Fixnum]
|
309
|
+
attr_accessor :deleted_tags_count
|
310
|
+
|
311
|
+
# Number of tags updated in the request.
|
312
|
+
# Corresponds to the JSON property `updatedTagsCount`
|
313
|
+
# @return [Fixnum]
|
314
|
+
attr_accessor :updated_tags_count
|
315
|
+
|
316
|
+
def initialize(**args)
|
317
|
+
update!(**args)
|
318
|
+
end
|
319
|
+
|
320
|
+
# Update properties of this object
|
321
|
+
def update!(**args)
|
322
|
+
@created_tags_count = args[:created_tags_count] if args.key?(:created_tags_count)
|
323
|
+
@deleted_tags_count = args[:deleted_tags_count] if args.key?(:deleted_tags_count)
|
324
|
+
@updated_tags_count = args[:updated_tags_count] if args.key?(:updated_tags_count)
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
271
328
|
# Spec for a group of BigQuery tables with name pattern `[prefix]YYYYMMDD`.
|
272
329
|
# Context: https://cloud.google.com/bigquery/docs/partitioned-tables#
|
273
330
|
# partitioning_versus_sharding
|
@@ -1619,6 +1676,11 @@ module Google
|
|
1619
1676
|
# @return [Fixnum]
|
1620
1677
|
attr_accessor :policy_tag_count
|
1621
1678
|
|
1679
|
+
# The source system of the Taxonomy.
|
1680
|
+
# Corresponds to the JSON property `service`
|
1681
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TaxonomyService]
|
1682
|
+
attr_accessor :service
|
1683
|
+
|
1622
1684
|
# Timestamps about this resource according to a particular system.
|
1623
1685
|
# Corresponds to the JSON property `taxonomyTimestamps`
|
1624
1686
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps]
|
@@ -1635,10 +1697,36 @@ module Google
|
|
1635
1697
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1636
1698
|
@name = args[:name] if args.key?(:name)
|
1637
1699
|
@policy_tag_count = args[:policy_tag_count] if args.key?(:policy_tag_count)
|
1700
|
+
@service = args[:service] if args.key?(:service)
|
1638
1701
|
@taxonomy_timestamps = args[:taxonomy_timestamps] if args.key?(:taxonomy_timestamps)
|
1639
1702
|
end
|
1640
1703
|
end
|
1641
1704
|
|
1705
|
+
# The source system of the Taxonomy.
|
1706
|
+
class GoogleCloudDatacatalogV1beta1TaxonomyService
|
1707
|
+
include Google::Apis::Core::Hashable
|
1708
|
+
|
1709
|
+
# P4SA Identity of the service.
|
1710
|
+
# Corresponds to the JSON property `identity`
|
1711
|
+
# @return [String]
|
1712
|
+
attr_accessor :identity
|
1713
|
+
|
1714
|
+
# The GCP service name.
|
1715
|
+
# Corresponds to the JSON property `name`
|
1716
|
+
# @return [String]
|
1717
|
+
attr_accessor :name
|
1718
|
+
|
1719
|
+
def initialize(**args)
|
1720
|
+
update!(**args)
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
# Update properties of this object
|
1724
|
+
def update!(**args)
|
1725
|
+
@identity = args[:identity] if args.key?(:identity)
|
1726
|
+
@name = args[:name] if args.key?(:name)
|
1727
|
+
end
|
1728
|
+
end
|
1729
|
+
|
1642
1730
|
# The set of all usage signals that we store in Data Catalog.
|
1643
1731
|
class GoogleCloudDatacatalogV1beta1UsageSignal
|
1644
1732
|
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.26.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 = "20230127"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class GoogleCloudDatacatalogV1ReconcileTagsMetadata
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class GoogleCloudDatacatalogV1ReconcileTagsResponse
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -286,6 +298,12 @@ module Google
|
|
286
298
|
include Google::Apis::Core::JsonObjectSupport
|
287
299
|
end
|
288
300
|
|
301
|
+
class GoogleCloudDatacatalogV1beta1TaxonomyService
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
289
307
|
class GoogleCloudDatacatalogV1beta1UsageSignal
|
290
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
309
|
|
@@ -392,6 +410,24 @@ module Google
|
|
392
410
|
end
|
393
411
|
end
|
394
412
|
|
413
|
+
class GoogleCloudDatacatalogV1ReconcileTagsMetadata
|
414
|
+
# @private
|
415
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
416
|
+
hash :errors, as: 'errors', class: Google::Apis::DatacatalogV1beta1::Status, decorator: Google::Apis::DatacatalogV1beta1::Status::Representation
|
417
|
+
|
418
|
+
property :state, as: 'state'
|
419
|
+
end
|
420
|
+
end
|
421
|
+
|
422
|
+
class GoogleCloudDatacatalogV1ReconcileTagsResponse
|
423
|
+
# @private
|
424
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
425
|
+
property :created_tags_count, :numeric_string => true, as: 'createdTagsCount'
|
426
|
+
property :deleted_tags_count, :numeric_string => true, as: 'deletedTagsCount'
|
427
|
+
property :updated_tags_count, :numeric_string => true, as: 'updatedTagsCount'
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
395
431
|
class GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec
|
396
432
|
# @private
|
397
433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -759,11 +795,21 @@ module Google
|
|
759
795
|
property :display_name, as: 'displayName'
|
760
796
|
property :name, as: 'name'
|
761
797
|
property :policy_tag_count, as: 'policyTagCount'
|
798
|
+
property :service, as: 'service', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TaxonomyService, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1TaxonomyService::Representation
|
799
|
+
|
762
800
|
property :taxonomy_timestamps, as: 'taxonomyTimestamps', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps::Representation
|
763
801
|
|
764
802
|
end
|
765
803
|
end
|
766
804
|
|
805
|
+
class GoogleCloudDatacatalogV1beta1TaxonomyService
|
806
|
+
# @private
|
807
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
808
|
+
property :identity, as: 'identity'
|
809
|
+
property :name, as: 'name'
|
810
|
+
end
|
811
|
+
end
|
812
|
+
|
767
813
|
class GoogleCloudDatacatalogV1beta1UsageSignal
|
768
814
|
# @private
|
769
815
|
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.26.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-
|
11
|
+
date: 2023-02-05 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.26.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
|