google-apis-datacatalog_v1 0.64.0 → 0.65.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: 64ee03a33b2d878804de9e8b864ece390549c7efae228daf4cf51d0c4b42021d
4
- data.tar.gz: 99c640bef2c76a902e9c346e87426249b5a92b29639304548af2bd2e00867f80
3
+ metadata.gz: ac877b230db6c0821ed3881296da0492b1eefefe2c687ef3d2c3c0a4c21c5d7c
4
+ data.tar.gz: 2199394e4364c84b206d8eca3a94e8e3283537b380f841e5e2156c2129de669e
5
5
  SHA512:
6
- metadata.gz: a7dc8c88612f0e6caa052d91f4f38533151b747304a500412a6fe189a051b1921e588c952e83617b75923e46939c583958261ee68a649134f871e3061c9bcbb4
7
- data.tar.gz: 754633ed17593f833b9d70a54424c0f1a6561556eb0eb7585a4657ff450f453ef509c2efa1fce8781edb204562daac3340f2bdd56b5ff1527041e5f72fb49513
6
+ metadata.gz: 902b9508f257f740e2974b7d2213bce1872a88e3627568daae0b154e81cf0563f5960bd0ee13863c9a3a635f35df7b74cf38333609d9fbccf33a48cfc278b5d1
7
+ data.tar.gz: 2d55dd4066976849493cce98ed0dbe409ed96c1f598b794c8f8c2c5119ef06af9a48399405df5754d15d6f74568cce735c9ccbaf917b79693e6f9d0ef10dd90b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.65.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20251226
6
+
3
7
  ### v0.64.0 (2025-12-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20251205
@@ -1181,6 +1181,11 @@ module Google
1181
1181
  # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps]
1182
1182
  attr_accessor :source_system_timestamps
1183
1183
 
1184
+ # Specification of a Spanner table.
1185
+ # Corresponds to the JSON property `spannerTableSpec`
1186
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpec]
1187
+ attr_accessor :spanner_table_spec
1188
+
1184
1189
  # Specification that applies to entries that are part `SQL_DATABASE` system (
1185
1190
  # user_specified_type)
1186
1191
  # Corresponds to the JSON property `sqlDatabaseSystemSpec`
@@ -1252,6 +1257,7 @@ module Google
1252
1257
  @schema = args[:schema] if args.key?(:schema)
1253
1258
  @service_spec = args[:service_spec] if args.key?(:service_spec)
1254
1259
  @source_system_timestamps = args[:source_system_timestamps] if args.key?(:source_system_timestamps)
1260
+ @spanner_table_spec = args[:spanner_table_spec] if args.key?(:spanner_table_spec)
1255
1261
  @sql_database_system_spec = args[:sql_database_system_spec] if args.key?(:sql_database_system_spec)
1256
1262
  @type = args[:type] if args.key?(:type)
1257
1263
  @usage_signal = args[:usage_signal] if args.key?(:usage_signal)
@@ -3042,6 +3048,110 @@ module Google
3042
3048
  end
3043
3049
  end
3044
3050
 
3051
+ # Specification of a Spanner table.
3052
+ class GoogleCloudDatacatalogV1SpannerTableSpec
3053
+ include Google::Apis::Core::Hashable
3054
+
3055
+ # Output only. The foreign keys of the table.
3056
+ # Corresponds to the JSON property `foreignKeys`
3057
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey>]
3058
+ attr_accessor :foreign_keys
3059
+
3060
+ # Specification of a Spanner primary key.
3061
+ # Corresponds to the JSON property `primaryKey`
3062
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey]
3063
+ attr_accessor :primary_key
3064
+
3065
+ def initialize(**args)
3066
+ update!(**args)
3067
+ end
3068
+
3069
+ # Update properties of this object
3070
+ def update!(**args)
3071
+ @foreign_keys = args[:foreign_keys] if args.key?(:foreign_keys)
3072
+ @primary_key = args[:primary_key] if args.key?(:primary_key)
3073
+ end
3074
+ end
3075
+
3076
+ # Specification of a Spanner foreign key.
3077
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey
3078
+ include Google::Apis::Core::Hashable
3079
+
3080
+ # Output only. The ordered list of column mappings for this foreign key.
3081
+ # Corresponds to the JSON property `columnMappings`
3082
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping>]
3083
+ attr_accessor :column_mappings
3084
+
3085
+ # Output only. The table name this foreign key referenced to. Format: `projects/`
3086
+ # PROJECT_ID`/locations/`LOCATION`/entryGroups/`ENTRY_GROUP_ID`/entries/`
3087
+ # ENTRY_ID``
3088
+ # Corresponds to the JSON property `entry`
3089
+ # @return [String]
3090
+ attr_accessor :entry
3091
+
3092
+ # Output only. The constraint_name of the foreign key, for example,
3093
+ # FK_CustomerOrder.
3094
+ # Corresponds to the JSON property `name`
3095
+ # @return [String]
3096
+ attr_accessor :name
3097
+
3098
+ def initialize(**args)
3099
+ update!(**args)
3100
+ end
3101
+
3102
+ # Update properties of this object
3103
+ def update!(**args)
3104
+ @column_mappings = args[:column_mappings] if args.key?(:column_mappings)
3105
+ @entry = args[:entry] if args.key?(:entry)
3106
+ @name = args[:name] if args.key?(:name)
3107
+ end
3108
+ end
3109
+
3110
+ # Column mapping for a Spanner foreign key.
3111
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping
3112
+ include Google::Apis::Core::Hashable
3113
+
3114
+ # Output only. The column in the current table that is part of the foreign key.
3115
+ # Corresponds to the JSON property `column`
3116
+ # @return [String]
3117
+ attr_accessor :column
3118
+
3119
+ # Output only. The column in the referenced table that is part of the foreign
3120
+ # key.
3121
+ # Corresponds to the JSON property `referenceColumn`
3122
+ # @return [String]
3123
+ attr_accessor :reference_column
3124
+
3125
+ def initialize(**args)
3126
+ update!(**args)
3127
+ end
3128
+
3129
+ # Update properties of this object
3130
+ def update!(**args)
3131
+ @column = args[:column] if args.key?(:column)
3132
+ @reference_column = args[:reference_column] if args.key?(:reference_column)
3133
+ end
3134
+ end
3135
+
3136
+ # Specification of a Spanner primary key.
3137
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey
3138
+ include Google::Apis::Core::Hashable
3139
+
3140
+ # Output only. Column names of the primary key.
3141
+ # Corresponds to the JSON property `columns`
3142
+ # @return [Array<String>]
3143
+ attr_accessor :columns
3144
+
3145
+ def initialize(**args)
3146
+ update!(**args)
3147
+ end
3148
+
3149
+ # Update properties of this object
3150
+ def update!(**args)
3151
+ @columns = args[:columns] if args.key?(:columns)
3152
+ end
3153
+ end
3154
+
3045
3155
  # Specification that applies to entries that are part `SQL_DATABASE` system (
3046
3156
  # user_specified_type)
3047
3157
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
@@ -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.64.0"
19
+ GEM_VERSION = "0.65.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
@@ -562,6 +562,30 @@ module Google
562
562
  include Google::Apis::Core::JsonObjectSupport
563
563
  end
564
564
 
565
+ class GoogleCloudDatacatalogV1SpannerTableSpec
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
571
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
577
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
583
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
565
589
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
566
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
591
 
@@ -1066,6 +1090,8 @@ module Google
1066
1090
 
1067
1091
  property :source_system_timestamps, as: 'sourceSystemTimestamps', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps::Representation
1068
1092
 
1093
+ property :spanner_table_spec, as: 'spannerTableSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpec::Representation
1094
+
1069
1095
  property :sql_database_system_spec, as: 'sqlDatabaseSystemSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SqlDatabaseSystemSpec::Representation
1070
1096
 
1071
1097
  property :type, as: 'type'
@@ -1613,6 +1639,41 @@ module Google
1613
1639
  end
1614
1640
  end
1615
1641
 
1642
+ class GoogleCloudDatacatalogV1SpannerTableSpec
1643
+ # @private
1644
+ class Representation < Google::Apis::Core::JsonRepresentation
1645
+ collection :foreign_keys, as: 'foreignKeys', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey::Representation
1646
+
1647
+ property :primary_key, as: 'primaryKey', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey::Representation
1648
+
1649
+ end
1650
+ end
1651
+
1652
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey
1653
+ # @private
1654
+ class Representation < Google::Apis::Core::JsonRepresentation
1655
+ collection :column_mappings, as: 'columnMappings', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping::Representation
1656
+
1657
+ property :entry, as: 'entry'
1658
+ property :name, as: 'name'
1659
+ end
1660
+ end
1661
+
1662
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping
1663
+ # @private
1664
+ class Representation < Google::Apis::Core::JsonRepresentation
1665
+ property :column, as: 'column'
1666
+ property :reference_column, as: 'referenceColumn'
1667
+ end
1668
+ end
1669
+
1670
+ class GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey
1671
+ # @private
1672
+ class Representation < Google::Apis::Core::JsonRepresentation
1673
+ collection :columns, as: 'columns'
1674
+ end
1675
+ end
1676
+
1616
1677
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
1617
1678
  # @private
1618
1679
  class Representation < Google::Apis::Core::JsonRepresentation
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.64.0
4
+ version: 0.65.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.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.65.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: