google-apis-datacatalog_v1beta1 0.51.0 → 0.53.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: 768fe241543b168b13b78c8f6117d01596f96430ab66fa14d212f5483ec0fde6
4
- data.tar.gz: a61bdd0a367e817fb5382f2aa562c796ed83c6d5877fb54bd0ebcc127ee92d5d
3
+ metadata.gz: 8c7a02a7ce7b4434226768caef6b0f79f46abc69d0459bcd5a0b8a869deb8c19
4
+ data.tar.gz: ae94054795f1a023c07a6d278ec96fba1c438815cacff260835751fff54d86de
5
5
  SHA512:
6
- metadata.gz: bba19e0d858fdf218b6379487527255f413b2ab2b3bfeb06e408708ab3d72cc8b6b6f346d3502af961301664752c055b855735de8f9380126091ae6eda4956de
7
- data.tar.gz: 2dc2967a57bbc54826e21f4280687ec742a8c77ad4f506d6222850200403f10a7aa35fb3d9eb41862fc2e16381f268f7f4df02242644fbe028337e140577b5da
6
+ metadata.gz: a402f14ccbb740e865cc9484b94364863d29b6043613663c83b953b8bc0b881c7ee8fdd0d984cc6445ec40b47e537cf4800f4693f443c8f443ad1627a395e4f7
7
+ data.tar.gz: 20b0eaa4a4749660f1f1e8cc2dd414931cd28ee13337b6a92b1fe011a22940e07bf1951d8d42173dcf49928ee0a8b23a5eb2965c6f34821289f477a4dc08d927
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.53.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251205
6
+
7
+ ### v0.52.0 (2025-12-07)
8
+
9
+ * Regenerated from discovery document revision 20251112
10
+
3
11
  ### v0.51.0 (2025-06-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20250609
@@ -1083,6 +1083,11 @@ module Google
1083
1083
  # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GcsFilesetSpec]
1084
1084
  attr_accessor :gcs_fileset_spec
1085
1085
 
1086
+ # Specification that applies to a graph.
1087
+ # Corresponds to the JSON property `graphSpec`
1088
+ # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpec]
1089
+ attr_accessor :graph_spec
1090
+
1086
1091
  # Output only. Indicates the entry's source system that Data Catalog integrates
1087
1092
  # with, such as BigQuery, Pub/Sub, or Dataproc Metastore.
1088
1093
  # Corresponds to the JSON property `integratedSystem`
@@ -1215,6 +1220,7 @@ module Google
1215
1220
  @fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
1216
1221
  @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
1217
1222
  @gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
1223
+ @graph_spec = args[:graph_spec] if args.key?(:graph_spec)
1218
1224
  @integrated_system = args[:integrated_system] if args.key?(:integrated_system)
1219
1225
  @labels = args[:labels] if args.key?(:labels)
1220
1226
  @linked_resource = args[:linked_resource] if args.key?(:linked_resource)
@@ -1366,6 +1372,199 @@ module Google
1366
1372
  end
1367
1373
  end
1368
1374
 
1375
+ # Specification that applies to a graph.
1376
+ class GoogleCloudDatacatalogV1GraphSpec
1377
+ include Google::Apis::Core::Hashable
1378
+
1379
+ # Optional. Edge tables of the graph.
1380
+ # Corresponds to the JSON property `edgeTables`
1381
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable>]
1382
+ attr_accessor :edge_tables
1383
+
1384
+ # Output only. Fully qualified graph name. e.g. `named_catalog.MyGraph`
1385
+ # Corresponds to the JSON property `name`
1386
+ # @return [String]
1387
+ attr_accessor :name
1388
+
1389
+ # Required. Node tables of the graph.
1390
+ # Corresponds to the JSON property `nodeTables`
1391
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable>]
1392
+ attr_accessor :node_tables
1393
+
1394
+ def initialize(**args)
1395
+ update!(**args)
1396
+ end
1397
+
1398
+ # Update properties of this object
1399
+ def update!(**args)
1400
+ @edge_tables = args[:edge_tables] if args.key?(:edge_tables)
1401
+ @name = args[:name] if args.key?(:name)
1402
+ @node_tables = args[:node_tables] if args.key?(:node_tables)
1403
+ end
1404
+ end
1405
+
1406
+ # Element table definition.
1407
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
1408
+ include Google::Apis::Core::Hashable
1409
+
1410
+ # Required. The alias name of the graph element.
1411
+ # Corresponds to the JSON property `alias`
1412
+ # @return [String]
1413
+ attr_accessor :alias
1414
+
1415
+ # Required. The name of the data source. This is either a table name or a view
1416
+ # name that is used for graph element input source. E.g. `Person` table or `
1417
+ # PersonView` view.
1418
+ # Corresponds to the JSON property `dataSource`
1419
+ # @return [String]
1420
+ attr_accessor :data_source
1421
+
1422
+ # A reference to a source or destination node in a graph edge.
1423
+ # Corresponds to the JSON property `destinationNodeReference`
1424
+ # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
1425
+ attr_accessor :destination_node_reference
1426
+
1427
+ # Optional. If set, this is the input column for dynamic label in schemaless
1428
+ # data model.
1429
+ # Corresponds to the JSON property `dynamicLabelColumn`
1430
+ # @return [String]
1431
+ attr_accessor :dynamic_label_column
1432
+
1433
+ # Optional. If set, this is the input column for dynamic properties in
1434
+ # schemaless data model.
1435
+ # Corresponds to the JSON property `dynamicPropertiesColumn`
1436
+ # @return [String]
1437
+ attr_accessor :dynamic_properties_column
1438
+
1439
+ # Required. The name of the keys of the elements in the table.
1440
+ # Corresponds to the JSON property `elementKeys`
1441
+ # @return [Array<String>]
1442
+ attr_accessor :element_keys
1443
+
1444
+ # Required. The input source of the graph element.
1445
+ # Corresponds to the JSON property `inputSource`
1446
+ # @return [String]
1447
+ attr_accessor :input_source
1448
+
1449
+ # Required. The kind of the graph element.
1450
+ # Corresponds to the JSON property `kind`
1451
+ # @return [String]
1452
+ attr_accessor :kind
1453
+
1454
+ # Required. The labels and their properties for the graph element.
1455
+ # Corresponds to the JSON property `labelAndProperties`
1456
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties>]
1457
+ attr_accessor :label_and_properties
1458
+
1459
+ # A reference to a source or destination node in a graph edge.
1460
+ # Corresponds to the JSON property `sourceNodeReference`
1461
+ # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
1462
+ attr_accessor :source_node_reference
1463
+
1464
+ def initialize(**args)
1465
+ update!(**args)
1466
+ end
1467
+
1468
+ # Update properties of this object
1469
+ def update!(**args)
1470
+ @alias = args[:alias] if args.key?(:alias)
1471
+ @data_source = args[:data_source] if args.key?(:data_source)
1472
+ @destination_node_reference = args[:destination_node_reference] if args.key?(:destination_node_reference)
1473
+ @dynamic_label_column = args[:dynamic_label_column] if args.key?(:dynamic_label_column)
1474
+ @dynamic_properties_column = args[:dynamic_properties_column] if args.key?(:dynamic_properties_column)
1475
+ @element_keys = args[:element_keys] if args.key?(:element_keys)
1476
+ @input_source = args[:input_source] if args.key?(:input_source)
1477
+ @kind = args[:kind] if args.key?(:kind)
1478
+ @label_and_properties = args[:label_and_properties] if args.key?(:label_and_properties)
1479
+ @source_node_reference = args[:source_node_reference] if args.key?(:source_node_reference)
1480
+ end
1481
+ end
1482
+
1483
+ # A reference to a source or destination node in a graph edge.
1484
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
1485
+ include Google::Apis::Core::Hashable
1486
+
1487
+ # Required. The referencing columns in the edge table. The size of `
1488
+ # edge_table_columns` must be equal to the size of `node_table_columns`.
1489
+ # Corresponds to the JSON property `edgeTableColumns`
1490
+ # @return [Array<String>]
1491
+ attr_accessor :edge_table_columns
1492
+
1493
+ # Required. The reference to the source/destination node of the edge. This name
1494
+ # must be a valid `alias` of a node element in the same graph. Example, `Person`
1495
+ # node can be a source node name of an edge element `Person_to_Address`.
1496
+ # Corresponds to the JSON property `nodeAlias`
1497
+ # @return [String]
1498
+ attr_accessor :node_alias
1499
+
1500
+ # Required. The referenced columns of the source node table.
1501
+ # Corresponds to the JSON property `nodeTableColumns`
1502
+ # @return [Array<String>]
1503
+ attr_accessor :node_table_columns
1504
+
1505
+ def initialize(**args)
1506
+ update!(**args)
1507
+ end
1508
+
1509
+ # Update properties of this object
1510
+ def update!(**args)
1511
+ @edge_table_columns = args[:edge_table_columns] if args.key?(:edge_table_columns)
1512
+ @node_alias = args[:node_alias] if args.key?(:node_alias)
1513
+ @node_table_columns = args[:node_table_columns] if args.key?(:node_table_columns)
1514
+ end
1515
+ end
1516
+
1517
+ # The label and its properties. Each label is associated with a set of
1518
+ # properties.
1519
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
1520
+ include Google::Apis::Core::Hashable
1521
+
1522
+ # Required. The name of the label.
1523
+ # Corresponds to the JSON property `label`
1524
+ # @return [String]
1525
+ attr_accessor :label
1526
+
1527
+ # Optional. The properties associated with the label.
1528
+ # Corresponds to the JSON property `properties`
1529
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty>]
1530
+ attr_accessor :properties
1531
+
1532
+ def initialize(**args)
1533
+ update!(**args)
1534
+ end
1535
+
1536
+ # Update properties of this object
1537
+ def update!(**args)
1538
+ @label = args[:label] if args.key?(:label)
1539
+ @properties = args[:properties] if args.key?(:properties)
1540
+ end
1541
+ end
1542
+
1543
+ # A property declaration.
1544
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
1545
+ include Google::Apis::Core::Hashable
1546
+
1547
+ # Required. Property name.
1548
+ # Corresponds to the JSON property `name`
1549
+ # @return [String]
1550
+ attr_accessor :name
1551
+
1552
+ # Required. Property data type.
1553
+ # Corresponds to the JSON property `type`
1554
+ # @return [String]
1555
+ attr_accessor :type
1556
+
1557
+ def initialize(**args)
1558
+ update!(**args)
1559
+ end
1560
+
1561
+ # Update properties of this object
1562
+ def update!(**args)
1563
+ @name = args[:name] if args.key?(:name)
1564
+ @type = args[:type] if args.key?(:type)
1565
+ end
1566
+ end
1567
+
1369
1568
  # Metadata message for long-running operation returned by the ImportEntries.
1370
1569
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
1371
1570
  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.51.0"
19
+ GEM_VERSION = "0.53.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 = "20250609"
25
+ REVISION = "20251205"
26
26
  end
27
27
  end
28
28
  end
@@ -238,6 +238,36 @@ module Google
238
238
  include Google::Apis::Core::JsonObjectSupport
239
239
  end
240
240
 
241
+ class GoogleCloudDatacatalogV1GraphSpec
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
247
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
253
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
259
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
265
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
241
271
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
242
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
273
 
@@ -1009,6 +1039,8 @@ module Google
1009
1039
  property :fully_qualified_name, as: 'fullyQualifiedName'
1010
1040
  property :gcs_fileset_spec, as: 'gcsFilesetSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GcsFilesetSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GcsFilesetSpec::Representation
1011
1041
 
1042
+ property :graph_spec, as: 'graphSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpec::Representation
1043
+
1012
1044
  property :integrated_system, as: 'integratedSystem'
1013
1045
  hash :labels, as: 'labels'
1014
1046
  property :linked_resource, as: 'linkedResource'
@@ -1078,6 +1110,62 @@ module Google
1078
1110
  end
1079
1111
  end
1080
1112
 
1113
+ class GoogleCloudDatacatalogV1GraphSpec
1114
+ # @private
1115
+ class Representation < Google::Apis::Core::JsonRepresentation
1116
+ collection :edge_tables, as: 'edgeTables', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
1117
+
1118
+ property :name, as: 'name'
1119
+ collection :node_tables, as: 'nodeTables', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
1120
+
1121
+ end
1122
+ end
1123
+
1124
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
1125
+ # @private
1126
+ class Representation < Google::Apis::Core::JsonRepresentation
1127
+ property :alias, as: 'alias'
1128
+ property :data_source, as: 'dataSource'
1129
+ property :destination_node_reference, as: 'destinationNodeReference', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference::Representation
1130
+
1131
+ property :dynamic_label_column, as: 'dynamicLabelColumn'
1132
+ property :dynamic_properties_column, as: 'dynamicPropertiesColumn'
1133
+ collection :element_keys, as: 'elementKeys'
1134
+ property :input_source, as: 'inputSource'
1135
+ property :kind, as: 'kind'
1136
+ collection :label_and_properties, as: 'labelAndProperties', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties::Representation
1137
+
1138
+ property :source_node_reference, as: 'sourceNodeReference', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference::Representation
1139
+
1140
+ end
1141
+ end
1142
+
1143
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
1144
+ # @private
1145
+ class Representation < Google::Apis::Core::JsonRepresentation
1146
+ collection :edge_table_columns, as: 'edgeTableColumns'
1147
+ property :node_alias, as: 'nodeAlias'
1148
+ collection :node_table_columns, as: 'nodeTableColumns'
1149
+ end
1150
+ end
1151
+
1152
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
1153
+ # @private
1154
+ class Representation < Google::Apis::Core::JsonRepresentation
1155
+ property :label, as: 'label'
1156
+ collection :properties, as: 'properties', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty::Representation
1157
+
1158
+ end
1159
+ end
1160
+
1161
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
1162
+ # @private
1163
+ class Representation < Google::Apis::Core::JsonRepresentation
1164
+ property :name, as: 'name'
1165
+ property :type, as: 'type'
1166
+ end
1167
+ end
1168
+
1081
1169
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
1082
1170
  # @private
1083
1171
  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.51.0
4
+ version: 0.53.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.51.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.53.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: