google-apis-datacatalog_v1beta1 0.30.0 → 0.31.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: 3ebcb659d4c6650155b3708623e127c31794bd48ec8279632000d1803e903d4a
|
4
|
+
data.tar.gz: 4fc04bf10d6aea053a11c25e288300a43f1cc874d8ca81bf0f6e91b375f57c5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd8ce3b53f28a2a3decb868cd275a787f276583ffba3b0914f7bfce6410e35a0e159470bbb54537fa5da34acbfcfa5c5ac96ab1dbe0e7dfe5efbbf80a12a593a
|
7
|
+
data.tar.gz: d27e175472d5bd81773adfc8c8e35d5458cdafb0dc34dfbec4107ef548c05c4508134299c158e5cde9ae163cf3eb1fd93bbd9c2efcd4d62597e3453f10747813
|
data/CHANGELOG.md
CHANGED
@@ -367,6 +367,84 @@ module Google
|
|
367
367
|
end
|
368
368
|
end
|
369
369
|
|
370
|
+
# Specification that applies to Instance entries that are part of `
|
371
|
+
# CLOUD_BIGTABLE` system. (user_specified_type)
|
372
|
+
class GoogleCloudDatacatalogV1CloudBigtableInstanceSpec
|
373
|
+
include Google::Apis::Core::Hashable
|
374
|
+
|
375
|
+
# The list of clusters for the Instance.
|
376
|
+
# Corresponds to the JSON property `cloudBigtableClusterSpecs`
|
377
|
+
# @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec>]
|
378
|
+
attr_accessor :cloud_bigtable_cluster_specs
|
379
|
+
|
380
|
+
def initialize(**args)
|
381
|
+
update!(**args)
|
382
|
+
end
|
383
|
+
|
384
|
+
# Update properties of this object
|
385
|
+
def update!(**args)
|
386
|
+
@cloud_bigtable_cluster_specs = args[:cloud_bigtable_cluster_specs] if args.key?(:cloud_bigtable_cluster_specs)
|
387
|
+
end
|
388
|
+
end
|
389
|
+
|
390
|
+
# Spec that applies to clusters of an Instance of Cloud Bigtable.
|
391
|
+
class GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec
|
392
|
+
include Google::Apis::Core::Hashable
|
393
|
+
|
394
|
+
# Name of the cluster.
|
395
|
+
# Corresponds to the JSON property `displayName`
|
396
|
+
# @return [String]
|
397
|
+
attr_accessor :display_name
|
398
|
+
|
399
|
+
# A link back to the parent resource, in this case Instance.
|
400
|
+
# Corresponds to the JSON property `linkedResource`
|
401
|
+
# @return [String]
|
402
|
+
attr_accessor :linked_resource
|
403
|
+
|
404
|
+
# Location of the cluster, typically a Cloud zone.
|
405
|
+
# Corresponds to the JSON property `location`
|
406
|
+
# @return [String]
|
407
|
+
attr_accessor :location
|
408
|
+
|
409
|
+
# Type of the resource. For a cluster this would be "CLUSTER".
|
410
|
+
# Corresponds to the JSON property `type`
|
411
|
+
# @return [String]
|
412
|
+
attr_accessor :type
|
413
|
+
|
414
|
+
def initialize(**args)
|
415
|
+
update!(**args)
|
416
|
+
end
|
417
|
+
|
418
|
+
# Update properties of this object
|
419
|
+
def update!(**args)
|
420
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
421
|
+
@linked_resource = args[:linked_resource] if args.key?(:linked_resource)
|
422
|
+
@location = args[:location] if args.key?(:location)
|
423
|
+
@type = args[:type] if args.key?(:type)
|
424
|
+
end
|
425
|
+
end
|
426
|
+
|
427
|
+
# Specification that applies to all entries that are part of `CLOUD_BIGTABLE`
|
428
|
+
# system (user_specified_type)
|
429
|
+
class GoogleCloudDatacatalogV1CloudBigtableSystemSpec
|
430
|
+
include Google::Apis::Core::Hashable
|
431
|
+
|
432
|
+
# Display name of the Instance. This is user specified and different from the
|
433
|
+
# resource name.
|
434
|
+
# Corresponds to the JSON property `instanceDisplayName`
|
435
|
+
# @return [String]
|
436
|
+
attr_accessor :instance_display_name
|
437
|
+
|
438
|
+
def initialize(**args)
|
439
|
+
update!(**args)
|
440
|
+
end
|
441
|
+
|
442
|
+
# Update properties of this object
|
443
|
+
def update!(**args)
|
444
|
+
@instance_display_name = args[:instance_display_name] if args.key?(:instance_display_name)
|
445
|
+
end
|
446
|
+
end
|
447
|
+
|
370
448
|
# Specification for the BigQuery connection to a Cloud SQL instance.
|
371
449
|
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
372
450
|
include Google::Apis::Core::Hashable
|
@@ -865,6 +943,12 @@ module Google
|
|
865
943
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1BusinessContext]
|
866
944
|
attr_accessor :business_context
|
867
945
|
|
946
|
+
# Specification that applies to all entries that are part of `CLOUD_BIGTABLE`
|
947
|
+
# system (user_specified_type)
|
948
|
+
# Corresponds to the JSON property `cloudBigtableSystemSpec`
|
949
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableSystemSpec]
|
950
|
+
attr_accessor :cloud_bigtable_system_spec
|
951
|
+
|
868
952
|
# Physical location of an entry.
|
869
953
|
# Corresponds to the JSON property `dataSource`
|
870
954
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataSource]
|
@@ -977,6 +1061,12 @@ module Google
|
|
977
1061
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1Schema]
|
978
1062
|
attr_accessor :schema
|
979
1063
|
|
1064
|
+
# Specification that applies to a Service resource. Valid only for entries with
|
1065
|
+
# the `SERVICE` type.
|
1066
|
+
# Corresponds to the JSON property `serviceSpec`
|
1067
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ServiceSpec]
|
1068
|
+
attr_accessor :service_spec
|
1069
|
+
|
980
1070
|
# Timestamps associated with this resource in a particular system.
|
981
1071
|
# Corresponds to the JSON property `sourceSystemTimestamps`
|
982
1072
|
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps]
|
@@ -1032,6 +1122,7 @@ module Google
|
|
1032
1122
|
@bigquery_date_sharded_spec = args[:bigquery_date_sharded_spec] if args.key?(:bigquery_date_sharded_spec)
|
1033
1123
|
@bigquery_table_spec = args[:bigquery_table_spec] if args.key?(:bigquery_table_spec)
|
1034
1124
|
@business_context = args[:business_context] if args.key?(:business_context)
|
1125
|
+
@cloud_bigtable_system_spec = args[:cloud_bigtable_system_spec] if args.key?(:cloud_bigtable_system_spec)
|
1035
1126
|
@data_source = args[:data_source] if args.key?(:data_source)
|
1036
1127
|
@data_source_connection_spec = args[:data_source_connection_spec] if args.key?(:data_source_connection_spec)
|
1037
1128
|
@database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
|
@@ -1048,6 +1139,7 @@ module Google
|
|
1048
1139
|
@personal_details = args[:personal_details] if args.key?(:personal_details)
|
1049
1140
|
@routine_spec = args[:routine_spec] if args.key?(:routine_spec)
|
1050
1141
|
@schema = args[:schema] if args.key?(:schema)
|
1142
|
+
@service_spec = args[:service_spec] if args.key?(:service_spec)
|
1051
1143
|
@source_system_timestamps = args[:source_system_timestamps] if args.key?(:source_system_timestamps)
|
1052
1144
|
@sql_database_system_spec = args[:sql_database_system_spec] if args.key?(:sql_database_system_spec)
|
1053
1145
|
@type = args[:type] if args.key?(:type)
|
@@ -1609,6 +1701,27 @@ module Google
|
|
1609
1701
|
end
|
1610
1702
|
end
|
1611
1703
|
|
1704
|
+
# Specification that applies to a Service resource. Valid only for entries with
|
1705
|
+
# the `SERVICE` type.
|
1706
|
+
class GoogleCloudDatacatalogV1ServiceSpec
|
1707
|
+
include Google::Apis::Core::Hashable
|
1708
|
+
|
1709
|
+
# Specification that applies to Instance entries that are part of `
|
1710
|
+
# CLOUD_BIGTABLE` system. (user_specified_type)
|
1711
|
+
# Corresponds to the JSON property `cloudBigtableInstanceSpec`
|
1712
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpec]
|
1713
|
+
attr_accessor :cloud_bigtable_instance_spec
|
1714
|
+
|
1715
|
+
def initialize(**args)
|
1716
|
+
update!(**args)
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
# Update properties of this object
|
1720
|
+
def update!(**args)
|
1721
|
+
@cloud_bigtable_instance_spec = args[:cloud_bigtable_instance_spec] if args.key?(:cloud_bigtable_instance_spec)
|
1722
|
+
end
|
1723
|
+
end
|
1724
|
+
|
1612
1725
|
# Specification that applies to entries that are part `SQL_DATABASE` system (
|
1613
1726
|
# user_specified_type)
|
1614
1727
|
class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
|
@@ -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.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230317"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,24 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class GoogleCloudDatacatalogV1CloudBigtableInstanceSpec
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
91
|
+
class GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
97
|
+
class GoogleCloudDatacatalogV1CloudBigtableSystemSpec
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
85
103
|
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
86
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
105
|
|
@@ -298,6 +316,12 @@ module Google
|
|
298
316
|
include Google::Apis::Core::JsonObjectSupport
|
299
317
|
end
|
300
318
|
|
319
|
+
class GoogleCloudDatacatalogV1ServiceSpec
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
301
325
|
class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
|
302
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
327
|
|
@@ -729,6 +753,31 @@ module Google
|
|
729
753
|
end
|
730
754
|
end
|
731
755
|
|
756
|
+
class GoogleCloudDatacatalogV1CloudBigtableInstanceSpec
|
757
|
+
# @private
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
759
|
+
collection :cloud_bigtable_cluster_specs, as: 'cloudBigtableClusterSpecs', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec::Representation
|
760
|
+
|
761
|
+
end
|
762
|
+
end
|
763
|
+
|
764
|
+
class GoogleCloudDatacatalogV1CloudBigtableInstanceSpecCloudBigtableClusterSpec
|
765
|
+
# @private
|
766
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
767
|
+
property :display_name, as: 'displayName'
|
768
|
+
property :linked_resource, as: 'linkedResource'
|
769
|
+
property :location, as: 'location'
|
770
|
+
property :type, as: 'type'
|
771
|
+
end
|
772
|
+
end
|
773
|
+
|
774
|
+
class GoogleCloudDatacatalogV1CloudBigtableSystemSpec
|
775
|
+
# @private
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
777
|
+
property :instance_display_name, as: 'instanceDisplayName'
|
778
|
+
end
|
779
|
+
end
|
780
|
+
|
732
781
|
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
733
782
|
# @private
|
734
783
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -882,6 +931,8 @@ module Google
|
|
882
931
|
|
883
932
|
property :business_context, as: 'businessContext', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1BusinessContext, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1BusinessContext::Representation
|
884
933
|
|
934
|
+
property :cloud_bigtable_system_spec, as: 'cloudBigtableSystemSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableSystemSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableSystemSpec::Representation
|
935
|
+
|
885
936
|
property :data_source, as: 'dataSource', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataSource, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataSource::Representation
|
886
937
|
|
887
938
|
property :data_source_connection_spec, as: 'dataSourceConnectionSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataSourceConnectionSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1DataSourceConnectionSpec::Representation
|
@@ -907,6 +958,8 @@ module Google
|
|
907
958
|
|
908
959
|
property :schema, as: 'schema', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1Schema, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1Schema::Representation
|
909
960
|
|
961
|
+
property :service_spec, as: 'serviceSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ServiceSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ServiceSpec::Representation
|
962
|
+
|
910
963
|
property :source_system_timestamps, as: 'sourceSystemTimestamps', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps::Representation
|
911
964
|
|
912
965
|
property :sql_database_system_spec, as: 'sqlDatabaseSystemSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec::Representation
|
@@ -1096,6 +1149,14 @@ module Google
|
|
1096
1149
|
end
|
1097
1150
|
end
|
1098
1151
|
|
1152
|
+
class GoogleCloudDatacatalogV1ServiceSpec
|
1153
|
+
# @private
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1155
|
+
property :cloud_bigtable_instance_spec, as: 'cloudBigtableInstanceSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1CloudBigtableInstanceSpec::Representation
|
1156
|
+
|
1157
|
+
end
|
1158
|
+
end
|
1159
|
+
|
1099
1160
|
class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
|
1100
1161
|
# @private
|
1101
1162
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.31.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-03-
|
11
|
+
date: 2023-03-26 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.31.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: []
|