google-apis-datacatalog_v1beta1 0.52.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c7a02a7ce7b4434226768caef6b0f79f46abc69d0459bcd5a0b8a869deb8c19
|
|
4
|
+
data.tar.gz: ae94054795f1a023c07a6d278ec96fba1c438815cacff260835751fff54d86de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a402f14ccbb740e865cc9484b94364863d29b6043613663c83b953b8bc0b881c7ee8fdd0d984cc6445ec40b47e537cf4800f4693f443c8f443ad1627a395e4f7
|
|
7
|
+
data.tar.gz: 20b0eaa4a4749660f1f1e8cc2dd414931cd28ee13337b6a92b1fe011a22940e07bf1951d8d42173dcf49928ee0a8b23a5eb2965c6f34821289f477a4dc08d927
|
data/CHANGELOG.md
CHANGED
|
@@ -1419,23 +1419,22 @@ module Google
|
|
|
1419
1419
|
# @return [String]
|
|
1420
1420
|
attr_accessor :data_source
|
|
1421
1421
|
|
|
1422
|
-
#
|
|
1422
|
+
# A reference to a source or destination node in a graph edge.
|
|
1423
1423
|
# Corresponds to the JSON property `destinationNodeReference`
|
|
1424
|
-
# @return [
|
|
1424
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
|
|
1425
1425
|
attr_accessor :destination_node_reference
|
|
1426
1426
|
|
|
1427
|
-
# Optional. If
|
|
1428
|
-
#
|
|
1429
|
-
#
|
|
1430
|
-
|
|
1431
|
-
|
|
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
1432
|
|
|
1433
|
-
# Optional. If
|
|
1434
|
-
# model.
|
|
1435
|
-
# Corresponds to the JSON property `
|
|
1436
|
-
# @return [
|
|
1437
|
-
attr_accessor :
|
|
1438
|
-
alias_method :dynamic_properties_enabled?, :dynamic_properties_enabled
|
|
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
|
|
1439
1438
|
|
|
1440
1439
|
# Required. The name of the keys of the elements in the table.
|
|
1441
1440
|
# Corresponds to the JSON property `elementKeys`
|
|
@@ -1457,12 +1456,9 @@ module Google
|
|
|
1457
1456
|
# @return [Array<Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties>]
|
|
1458
1457
|
attr_accessor :label_and_properties
|
|
1459
1458
|
|
|
1460
|
-
#
|
|
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`.
|
|
1459
|
+
# A reference to a source or destination node in a graph edge.
|
|
1464
1460
|
# Corresponds to the JSON property `sourceNodeReference`
|
|
1465
|
-
# @return [
|
|
1461
|
+
# @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
|
|
1466
1462
|
attr_accessor :source_node_reference
|
|
1467
1463
|
|
|
1468
1464
|
def initialize(**args)
|
|
@@ -1474,8 +1470,8 @@ module Google
|
|
|
1474
1470
|
@alias = args[:alias] if args.key?(:alias)
|
|
1475
1471
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
1476
1472
|
@destination_node_reference = args[:destination_node_reference] if args.key?(:destination_node_reference)
|
|
1477
|
-
@
|
|
1478
|
-
@
|
|
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)
|
|
1479
1475
|
@element_keys = args[:element_keys] if args.key?(:element_keys)
|
|
1480
1476
|
@input_source = args[:input_source] if args.key?(:input_source)
|
|
1481
1477
|
@kind = args[:kind] if args.key?(:kind)
|
|
@@ -1484,6 +1480,40 @@ module Google
|
|
|
1484
1480
|
end
|
|
1485
1481
|
end
|
|
1486
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
|
+
|
|
1487
1517
|
# The label and its properties. Each label is associated with a set of
|
|
1488
1518
|
# properties.
|
|
1489
1519
|
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
@@ -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.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 = "
|
|
25
|
+
REVISION = "20251205"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -250,6 +250,12 @@ module Google
|
|
|
250
250
|
include Google::Apis::Core::JsonObjectSupport
|
|
251
251
|
end
|
|
252
252
|
|
|
253
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
|
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
255
|
+
|
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
257
|
+
end
|
|
258
|
+
|
|
253
259
|
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
254
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
255
261
|
|
|
@@ -1120,15 +1126,26 @@ module Google
|
|
|
1120
1126
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1121
1127
|
property :alias, as: 'alias'
|
|
1122
1128
|
property :data_source, as: 'dataSource'
|
|
1123
|
-
property :destination_node_reference, as: 'destinationNodeReference'
|
|
1124
|
-
|
|
1125
|
-
property :
|
|
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'
|
|
1126
1133
|
collection :element_keys, as: 'elementKeys'
|
|
1127
1134
|
property :input_source, as: 'inputSource'
|
|
1128
1135
|
property :kind, as: 'kind'
|
|
1129
1136
|
collection :label_and_properties, as: 'labelAndProperties', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties::Representation
|
|
1130
1137
|
|
|
1131
|
-
property :source_node_reference, as: 'sourceNodeReference'
|
|
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'
|
|
1132
1149
|
end
|
|
1133
1150
|
end
|
|
1134
1151
|
|
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.
|
|
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.
|
|
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:
|