google-apis-datacatalog_v1beta1 0.51.0 → 0.52.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: f4439a00ac05bd81122f90ae492a2fbbc82cd3a18d955f272e1c5fe891ccb374
4
+ data.tar.gz: 76f873fc18b1425388614e9abf843cacf9ea8f4a757f7deeec9565e4dd9f397a
5
5
  SHA512:
6
- metadata.gz: bba19e0d858fdf218b6379487527255f413b2ab2b3bfeb06e408708ab3d72cc8b6b6f346d3502af961301664752c055b855735de8f9380126091ae6eda4956de
7
- data.tar.gz: 2dc2967a57bbc54826e21f4280687ec742a8c77ad4f506d6222850200403f10a7aa35fb3d9eb41862fc2e16381f268f7f4df02242644fbe028337e140577b5da
6
+ metadata.gz: e60afce32186e0926daa558cfb848b4f4f7d46753a902e542f4c9b048cb5f3364bb8e50eeb151873e1eda8e308ed721531575ddb80d705df6000d189a974101a
7
+ data.tar.gz: 37c3283cba2a869618b0e6efb8438b27b15ba99f3fb4d8984b63888933d2a1e33ba66bca526178f4f339b6b9e3c7a670c55a850feb352c48d97090b2c9597880
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.52.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251112
6
+
3
7
  ### v0.51.0 (2025-06-15)
4
8
 
5
9
  * 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,169 @@ 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
+ # Optional. Only applies to `kind = EDGE`.
1423
+ # Corresponds to the JSON property `destinationNodeReference`
1424
+ # @return [String]
1425
+ attr_accessor :destination_node_reference
1426
+
1427
+ # Optional. If true, the graph element has a dynamic label in schemaless model.
1428
+ # Corresponds to the JSON property `dynamicLabelEnabled`
1429
+ # @return [Boolean]
1430
+ attr_accessor :dynamic_label_enabled
1431
+ alias_method :dynamic_label_enabled?, :dynamic_label_enabled
1432
+
1433
+ # Optional. If true, the graph element has dynamic properties in schemaless
1434
+ # model.
1435
+ # Corresponds to the JSON property `dynamicPropertiesEnabled`
1436
+ # @return [Boolean]
1437
+ attr_accessor :dynamic_properties_enabled
1438
+ alias_method :dynamic_properties_enabled?, :dynamic_properties_enabled
1439
+
1440
+ # Required. The name of the keys of the elements in the table.
1441
+ # Corresponds to the JSON property `elementKeys`
1442
+ # @return [Array<String>]
1443
+ attr_accessor :element_keys
1444
+
1445
+ # Required. The input source of the graph element.
1446
+ # Corresponds to the JSON property `inputSource`
1447
+ # @return [String]
1448
+ attr_accessor :input_source
1449
+
1450
+ # Required. The kind of the graph element.
1451
+ # Corresponds to the JSON property `kind`
1452
+ # @return [String]
1453
+ attr_accessor :kind
1454
+
1455
+ # Required. The labels and their properties for the graph element.
1456
+ # Corresponds to the JSON property `labelAndProperties`
1457
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties>]
1458
+ attr_accessor :label_and_properties
1459
+
1460
+ # Optional. Only applies to `kind = EDGE`. The reference to the source node of
1461
+ # the edge. This name must be a valid `alias` of a node element in the same
1462
+ # graph. Example, `Person` node can be a source node of an edge element `
1463
+ # Person_to_Address`. Similar rule applies to `destination_node_reference`.
1464
+ # Corresponds to the JSON property `sourceNodeReference`
1465
+ # @return [String]
1466
+ attr_accessor :source_node_reference
1467
+
1468
+ def initialize(**args)
1469
+ update!(**args)
1470
+ end
1471
+
1472
+ # Update properties of this object
1473
+ def update!(**args)
1474
+ @alias = args[:alias] if args.key?(:alias)
1475
+ @data_source = args[:data_source] if args.key?(:data_source)
1476
+ @destination_node_reference = args[:destination_node_reference] if args.key?(:destination_node_reference)
1477
+ @dynamic_label_enabled = args[:dynamic_label_enabled] if args.key?(:dynamic_label_enabled)
1478
+ @dynamic_properties_enabled = args[:dynamic_properties_enabled] if args.key?(:dynamic_properties_enabled)
1479
+ @element_keys = args[:element_keys] if args.key?(:element_keys)
1480
+ @input_source = args[:input_source] if args.key?(:input_source)
1481
+ @kind = args[:kind] if args.key?(:kind)
1482
+ @label_and_properties = args[:label_and_properties] if args.key?(:label_and_properties)
1483
+ @source_node_reference = args[:source_node_reference] if args.key?(:source_node_reference)
1484
+ end
1485
+ end
1486
+
1487
+ # The label and its properties. Each label is associated with a set of
1488
+ # properties.
1489
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
1490
+ include Google::Apis::Core::Hashable
1491
+
1492
+ # Required. The name of the label.
1493
+ # Corresponds to the JSON property `label`
1494
+ # @return [String]
1495
+ attr_accessor :label
1496
+
1497
+ # Optional. The properties associated with the label.
1498
+ # Corresponds to the JSON property `properties`
1499
+ # @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty>]
1500
+ attr_accessor :properties
1501
+
1502
+ def initialize(**args)
1503
+ update!(**args)
1504
+ end
1505
+
1506
+ # Update properties of this object
1507
+ def update!(**args)
1508
+ @label = args[:label] if args.key?(:label)
1509
+ @properties = args[:properties] if args.key?(:properties)
1510
+ end
1511
+ end
1512
+
1513
+ # A property declaration.
1514
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
1515
+ include Google::Apis::Core::Hashable
1516
+
1517
+ # Required. Property name.
1518
+ # Corresponds to the JSON property `name`
1519
+ # @return [String]
1520
+ attr_accessor :name
1521
+
1522
+ # Required. Property data type.
1523
+ # Corresponds to the JSON property `type`
1524
+ # @return [String]
1525
+ attr_accessor :type
1526
+
1527
+ def initialize(**args)
1528
+ update!(**args)
1529
+ end
1530
+
1531
+ # Update properties of this object
1532
+ def update!(**args)
1533
+ @name = args[:name] if args.key?(:name)
1534
+ @type = args[:type] if args.key?(:type)
1535
+ end
1536
+ end
1537
+
1369
1538
  # Metadata message for long-running operation returned by the ImportEntries.
1370
1539
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
1371
1540
  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.52.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 = "20251112"
26
26
  end
27
27
  end
28
28
  end
@@ -238,6 +238,30 @@ 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 GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
259
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
241
265
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
242
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
267
 
@@ -1009,6 +1033,8 @@ module Google
1009
1033
  property :fully_qualified_name, as: 'fullyQualifiedName'
1010
1034
  property :gcs_fileset_spec, as: 'gcsFilesetSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GcsFilesetSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GcsFilesetSpec::Representation
1011
1035
 
1036
+ property :graph_spec, as: 'graphSpec', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpec, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpec::Representation
1037
+
1012
1038
  property :integrated_system, as: 'integratedSystem'
1013
1039
  hash :labels, as: 'labels'
1014
1040
  property :linked_resource, as: 'linkedResource'
@@ -1078,6 +1104,51 @@ module Google
1078
1104
  end
1079
1105
  end
1080
1106
 
1107
+ class GoogleCloudDatacatalogV1GraphSpec
1108
+ # @private
1109
+ class Representation < Google::Apis::Core::JsonRepresentation
1110
+ collection :edge_tables, as: 'edgeTables', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
1111
+
1112
+ property :name, as: 'name'
1113
+ collection :node_tables, as: 'nodeTables', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
1114
+
1115
+ end
1116
+ end
1117
+
1118
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
1119
+ # @private
1120
+ class Representation < Google::Apis::Core::JsonRepresentation
1121
+ property :alias, as: 'alias'
1122
+ property :data_source, as: 'dataSource'
1123
+ property :destination_node_reference, as: 'destinationNodeReference'
1124
+ property :dynamic_label_enabled, as: 'dynamicLabelEnabled'
1125
+ property :dynamic_properties_enabled, as: 'dynamicPropertiesEnabled'
1126
+ collection :element_keys, as: 'elementKeys'
1127
+ property :input_source, as: 'inputSource'
1128
+ property :kind, as: 'kind'
1129
+ collection :label_and_properties, as: 'labelAndProperties', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties::Representation
1130
+
1131
+ property :source_node_reference, as: 'sourceNodeReference'
1132
+ end
1133
+ end
1134
+
1135
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
1136
+ # @private
1137
+ class Representation < Google::Apis::Core::JsonRepresentation
1138
+ property :label, as: 'label'
1139
+ collection :properties, as: 'properties', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty::Representation
1140
+
1141
+ end
1142
+ end
1143
+
1144
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
1145
+ # @private
1146
+ class Representation < Google::Apis::Core::JsonRepresentation
1147
+ property :name, as: 'name'
1148
+ property :type, as: 'type'
1149
+ end
1150
+ end
1151
+
1081
1152
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
1082
1153
  # @private
1083
1154
  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.52.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.52.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: