google-apis-datacatalog_v1beta1 0.53.0 → 0.54.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: 8c7a02a7ce7b4434226768caef6b0f79f46abc69d0459bcd5a0b8a869deb8c19
4
- data.tar.gz: ae94054795f1a023c07a6d278ec96fba1c438815cacff260835751fff54d86de
3
+ metadata.gz: 6f2962474f3207344fa36e075d43e4567b97beac249f95026fdd2654cfc14a47
4
+ data.tar.gz: 677986f11d9191ebddcbc8781c051a969e4c3c67f2420d5f2e4f2e2f0b9bf17d
5
5
  SHA512:
6
- metadata.gz: a402f14ccbb740e865cc9484b94364863d29b6043613663c83b953b8bc0b881c7ee8fdd0d984cc6445ec40b47e537cf4800f4693f443c8f443ad1627a395e4f7
7
- data.tar.gz: 20b0eaa4a4749660f1f1e8cc2dd414931cd28ee13337b6a92b1fe011a22940e07bf1951d8d42173dcf49928ee0a8b23a5eb2965c6f34821289f477a4dc08d927
6
+ metadata.gz: 211327e6f6e5e77fee4965e145f99e61822e072260b94ab1b397d264f7699f122feec84cf619edb68a65153578634eeda03fd5c8359add1c106f95ccfc8f5489
7
+ data.tar.gz: 1f1b9f2265b862b36c80c3a4cdf57d4c4d99868729ada85af22dcc203e48267170486583dbebe3157c5759af7918b9db6b6de24dee81c362ddd4181686fd3221
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.54.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20251226
6
+
3
7
  ### v0.53.0 (2025-12-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20251205
@@ -1161,6 +1161,11 @@ module Google
1161
1161
  # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps]
1162
1162
  attr_accessor :source_system_timestamps
1163
1163
 
1164
+ # Specification of a Spanner table.
1165
+ # Corresponds to the JSON property `spannerTableSpec`
1166
+ # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpec]
1167
+ attr_accessor :spanner_table_spec
1168
+
1164
1169
  # Specification that applies to entries that are part `SQL_DATABASE` system (
1165
1170
  # user_specified_type)
1166
1171
  # Corresponds to the JSON property `sqlDatabaseSystemSpec`
@@ -1232,6 +1237,7 @@ module Google
1232
1237
  @schema = args[:schema] if args.key?(:schema)
1233
1238
  @service_spec = args[:service_spec] if args.key?(:service_spec)
1234
1239
  @source_system_timestamps = args[:source_system_timestamps] if args.key?(:source_system_timestamps)
1240
+ @spanner_table_spec = args[:spanner_table_spec] if args.key?(:spanner_table_spec)
1235
1241
  @sql_database_system_spec = args[:sql_database_system_spec] if args.key?(:sql_database_system_spec)
1236
1242
  @type = args[:type] if args.key?(:type)
1237
1243
  @usage_signal = args[:usage_signal] if args.key?(:usage_signal)
@@ -2044,6 +2050,110 @@ module Google
2044
2050
  end
2045
2051
  end
2046
2052
 
2053
+ # Specification of a Spanner table.
2054
+ class GoogleCloudDatacatalogV1SpannerTableSpec
2055
+ include Google::Apis::Core::Hashable
2056
+
2057
+ # Output only. The foreign keys of the table.
2058
+ # Corresponds to the JSON property `foreignKeys`
2059
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey>]
2060
+ attr_accessor :foreign_keys
2061
+
2062
+ # Specification of a Spanner primary key.
2063
+ # Corresponds to the JSON property `primaryKey`
2064
+ # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey]
2065
+ attr_accessor :primary_key
2066
+
2067
+ def initialize(**args)
2068
+ update!(**args)
2069
+ end
2070
+
2071
+ # Update properties of this object
2072
+ def update!(**args)
2073
+ @foreign_keys = args[:foreign_keys] if args.key?(:foreign_keys)
2074
+ @primary_key = args[:primary_key] if args.key?(:primary_key)
2075
+ end
2076
+ end
2077
+
2078
+ # Specification of a Spanner foreign key.
2079
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey
2080
+ include Google::Apis::Core::Hashable
2081
+
2082
+ # Output only. The ordered list of column mappings for this foreign key.
2083
+ # Corresponds to the JSON property `columnMappings`
2084
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping>]
2085
+ attr_accessor :column_mappings
2086
+
2087
+ # Output only. The table name this foreign key referenced to. Format: `projects/`
2088
+ # PROJECT_ID`/locations/`LOCATION`/entryGroups/`ENTRY_GROUP_ID`/entries/`
2089
+ # ENTRY_ID``
2090
+ # Corresponds to the JSON property `entry`
2091
+ # @return [String]
2092
+ attr_accessor :entry
2093
+
2094
+ # Output only. The constraint_name of the foreign key, for example,
2095
+ # FK_CustomerOrder.
2096
+ # Corresponds to the JSON property `name`
2097
+ # @return [String]
2098
+ attr_accessor :name
2099
+
2100
+ def initialize(**args)
2101
+ update!(**args)
2102
+ end
2103
+
2104
+ # Update properties of this object
2105
+ def update!(**args)
2106
+ @column_mappings = args[:column_mappings] if args.key?(:column_mappings)
2107
+ @entry = args[:entry] if args.key?(:entry)
2108
+ @name = args[:name] if args.key?(:name)
2109
+ end
2110
+ end
2111
+
2112
+ # Column mapping for a Spanner foreign key.
2113
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping
2114
+ include Google::Apis::Core::Hashable
2115
+
2116
+ # Output only. The column in the current table that is part of the foreign key.
2117
+ # Corresponds to the JSON property `column`
2118
+ # @return [String]
2119
+ attr_accessor :column
2120
+
2121
+ # Output only. The column in the referenced table that is part of the foreign
2122
+ # key.
2123
+ # Corresponds to the JSON property `referenceColumn`
2124
+ # @return [String]
2125
+ attr_accessor :reference_column
2126
+
2127
+ def initialize(**args)
2128
+ update!(**args)
2129
+ end
2130
+
2131
+ # Update properties of this object
2132
+ def update!(**args)
2133
+ @column = args[:column] if args.key?(:column)
2134
+ @reference_column = args[:reference_column] if args.key?(:reference_column)
2135
+ end
2136
+ end
2137
+
2138
+ # Specification of a Spanner primary key.
2139
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey
2140
+ include Google::Apis::Core::Hashable
2141
+
2142
+ # Output only. Column names of the primary key.
2143
+ # Corresponds to the JSON property `columns`
2144
+ # @return [Array<String>]
2145
+ attr_accessor :columns
2146
+
2147
+ def initialize(**args)
2148
+ update!(**args)
2149
+ end
2150
+
2151
+ # Update properties of this object
2152
+ def update!(**args)
2153
+ @columns = args[:columns] if args.key?(:columns)
2154
+ end
2155
+ end
2156
+
2047
2157
  # Specification that applies to entries that are part `SQL_DATABASE` system (
2048
2158
  # user_specified_type)
2049
2159
  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.53.0"
19
+ GEM_VERSION = "0.54.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 = "20251205"
25
+ REVISION = "20251226"
26
26
  end
27
27
  end
28
28
  end
@@ -376,6 +376,30 @@ module Google
376
376
  include Google::Apis::Core::JsonObjectSupport
377
377
  end
378
378
 
379
+ class GoogleCloudDatacatalogV1SpannerTableSpec
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
385
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
391
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
397
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
379
403
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
380
404
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
405
 
@@ -1059,6 +1083,8 @@ module Google
1059
1083
 
1060
1084
  property :source_system_timestamps, as: 'sourceSystemTimestamps', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SystemTimestamps::Representation
1061
1085
 
1086
+ property :spanner_table_spec, as: 'spannerTableSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpec::Representation
1087
+
1062
1088
  property :sql_database_system_spec, as: 'sqlDatabaseSystemSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec::Representation
1063
1089
 
1064
1090
  property :type, as: 'type'
@@ -1325,6 +1351,41 @@ module Google
1325
1351
  end
1326
1352
  end
1327
1353
 
1354
+ class GoogleCloudDatacatalogV1SpannerTableSpec
1355
+ # @private
1356
+ class Representation < Google::Apis::Core::JsonRepresentation
1357
+ collection :foreign_keys, as: 'foreignKeys', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey::Representation
1358
+
1359
+ property :primary_key, as: 'primaryKey', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey::Representation
1360
+
1361
+ end
1362
+ end
1363
+
1364
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey
1365
+ # @private
1366
+ class Representation < Google::Apis::Core::JsonRepresentation
1367
+ collection :column_mappings, as: 'columnMappings', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping::Representation
1368
+
1369
+ property :entry, as: 'entry'
1370
+ property :name, as: 'name'
1371
+ end
1372
+ end
1373
+
1374
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping
1375
+ # @private
1376
+ class Representation < Google::Apis::Core::JsonRepresentation
1377
+ property :column, as: 'column'
1378
+ property :reference_column, as: 'referenceColumn'
1379
+ end
1380
+ end
1381
+
1382
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey
1383
+ # @private
1384
+ class Representation < Google::Apis::Core::JsonRepresentation
1385
+ collection :columns, as: 'columns'
1386
+ end
1387
+ end
1388
+
1328
1389
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
1329
1390
  # @private
1330
1391
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.54.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.53.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.54.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: