google-apis-datacatalog_v1 0.63.0 → 0.64.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: 64ee03a33b2d878804de9e8b864ece390549c7efae228daf4cf51d0c4b42021d
|
|
4
|
+
data.tar.gz: 99c640bef2c76a902e9c346e87426249b5a92b29639304548af2bd2e00867f80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7dc8c88612f0e6caa052d91f4f38533151b747304a500412a6fe189a051b1921e588c952e83617b75923e46939c583958261ee68a649134f871e3061c9bcbb4
|
|
7
|
+
data.tar.gz: 754633ed17593f833b9d70a54424c0f1a6561556eb0eb7585a4657ff450f453ef509c2efa1fce8781edb204562daac3340f2bdd56b5ff1527041e5f72fb49513
|
data/CHANGELOG.md
CHANGED
|
@@ -1581,23 +1581,22 @@ module Google
|
|
|
1581
1581
|
# @return [String]
|
|
1582
1582
|
attr_accessor :data_source
|
|
1583
1583
|
|
|
1584
|
-
#
|
|
1584
|
+
# A reference to a source or destination node in a graph edge.
|
|
1585
1585
|
# Corresponds to the JSON property `destinationNodeReference`
|
|
1586
|
-
# @return [
|
|
1586
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
|
|
1587
1587
|
attr_accessor :destination_node_reference
|
|
1588
1588
|
|
|
1589
|
-
# Optional. If
|
|
1590
|
-
#
|
|
1591
|
-
#
|
|
1592
|
-
|
|
1593
|
-
|
|
1589
|
+
# Optional. If set, this is the input column for dynamic label in schemaless
|
|
1590
|
+
# data model.
|
|
1591
|
+
# Corresponds to the JSON property `dynamicLabelColumn`
|
|
1592
|
+
# @return [String]
|
|
1593
|
+
attr_accessor :dynamic_label_column
|
|
1594
1594
|
|
|
1595
|
-
# Optional. If
|
|
1596
|
-
# model.
|
|
1597
|
-
# Corresponds to the JSON property `
|
|
1598
|
-
# @return [
|
|
1599
|
-
attr_accessor :
|
|
1600
|
-
alias_method :dynamic_properties_enabled?, :dynamic_properties_enabled
|
|
1595
|
+
# Optional. If set, this is the input column for dynamic properties in
|
|
1596
|
+
# schemaless data model.
|
|
1597
|
+
# Corresponds to the JSON property `dynamicPropertiesColumn`
|
|
1598
|
+
# @return [String]
|
|
1599
|
+
attr_accessor :dynamic_properties_column
|
|
1601
1600
|
|
|
1602
1601
|
# Required. The name of the keys of the elements in the table.
|
|
1603
1602
|
# Corresponds to the JSON property `elementKeys`
|
|
@@ -1619,12 +1618,9 @@ module Google
|
|
|
1619
1618
|
# @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties>]
|
|
1620
1619
|
attr_accessor :label_and_properties
|
|
1621
1620
|
|
|
1622
|
-
#
|
|
1623
|
-
# the edge. This name must be a valid `alias` of a node element in the same
|
|
1624
|
-
# graph. Example, `Person` node can be a source node of an edge element `
|
|
1625
|
-
# Person_to_Address`. Similar rule applies to `destination_node_reference`.
|
|
1621
|
+
# A reference to a source or destination node in a graph edge.
|
|
1626
1622
|
# Corresponds to the JSON property `sourceNodeReference`
|
|
1627
|
-
# @return [
|
|
1623
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
|
|
1628
1624
|
attr_accessor :source_node_reference
|
|
1629
1625
|
|
|
1630
1626
|
def initialize(**args)
|
|
@@ -1636,8 +1632,8 @@ module Google
|
|
|
1636
1632
|
@alias = args[:alias] if args.key?(:alias)
|
|
1637
1633
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
1638
1634
|
@destination_node_reference = args[:destination_node_reference] if args.key?(:destination_node_reference)
|
|
1639
|
-
@
|
|
1640
|
-
@
|
|
1635
|
+
@dynamic_label_column = args[:dynamic_label_column] if args.key?(:dynamic_label_column)
|
|
1636
|
+
@dynamic_properties_column = args[:dynamic_properties_column] if args.key?(:dynamic_properties_column)
|
|
1641
1637
|
@element_keys = args[:element_keys] if args.key?(:element_keys)
|
|
1642
1638
|
@input_source = args[:input_source] if args.key?(:input_source)
|
|
1643
1639
|
@kind = args[:kind] if args.key?(:kind)
|
|
@@ -1646,6 +1642,40 @@ module Google
|
|
|
1646
1642
|
end
|
|
1647
1643
|
end
|
|
1648
1644
|
|
|
1645
|
+
# A reference to a source or destination node in a graph edge.
|
|
1646
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
|
|
1647
|
+
include Google::Apis::Core::Hashable
|
|
1648
|
+
|
|
1649
|
+
# Required. The referencing columns in the edge table. The size of `
|
|
1650
|
+
# edge_table_columns` must be equal to the size of `node_table_columns`.
|
|
1651
|
+
# Corresponds to the JSON property `edgeTableColumns`
|
|
1652
|
+
# @return [Array<String>]
|
|
1653
|
+
attr_accessor :edge_table_columns
|
|
1654
|
+
|
|
1655
|
+
# Required. The reference to the source/destination node of the edge. This name
|
|
1656
|
+
# must be a valid `alias` of a node element in the same graph. Example, `Person`
|
|
1657
|
+
# node can be a source node name of an edge element `Person_to_Address`.
|
|
1658
|
+
# Corresponds to the JSON property `nodeAlias`
|
|
1659
|
+
# @return [String]
|
|
1660
|
+
attr_accessor :node_alias
|
|
1661
|
+
|
|
1662
|
+
# Required. The referenced columns of the source node table.
|
|
1663
|
+
# Corresponds to the JSON property `nodeTableColumns`
|
|
1664
|
+
# @return [Array<String>]
|
|
1665
|
+
attr_accessor :node_table_columns
|
|
1666
|
+
|
|
1667
|
+
def initialize(**args)
|
|
1668
|
+
update!(**args)
|
|
1669
|
+
end
|
|
1670
|
+
|
|
1671
|
+
# Update properties of this object
|
|
1672
|
+
def update!(**args)
|
|
1673
|
+
@edge_table_columns = args[:edge_table_columns] if args.key?(:edge_table_columns)
|
|
1674
|
+
@node_alias = args[:node_alias] if args.key?(:node_alias)
|
|
1675
|
+
@node_table_columns = args[:node_table_columns] if args.key?(:node_table_columns)
|
|
1676
|
+
end
|
|
1677
|
+
end
|
|
1678
|
+
|
|
1649
1679
|
# The label and its properties. Each label is associated with a set of
|
|
1650
1680
|
# properties.
|
|
1651
1681
|
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
@@ -3810,8 +3840,9 @@ module Google
|
|
|
3810
3840
|
attr_accessor :operations
|
|
3811
3841
|
|
|
3812
3842
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3813
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
3814
|
-
# when attempting to list all resources across all supported
|
|
3843
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
3844
|
+
# For example, when attempting to list all resources across all supported
|
|
3845
|
+
# locations.
|
|
3815
3846
|
# Corresponds to the JSON property `unreachable`
|
|
3816
3847
|
# @return [Array<String>]
|
|
3817
3848
|
attr_accessor :unreachable
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.64.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
|
|
@@ -286,6 +286,12 @@ module Google
|
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
|
287
287
|
end
|
|
288
288
|
|
|
289
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
|
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
|
+
|
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
293
|
+
end
|
|
294
|
+
|
|
289
295
|
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
297
|
|
|
@@ -1171,15 +1177,26 @@ module Google
|
|
|
1171
1177
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1172
1178
|
property :alias, as: 'alias'
|
|
1173
1179
|
property :data_source, as: 'dataSource'
|
|
1174
|
-
property :destination_node_reference, as: 'destinationNodeReference'
|
|
1175
|
-
|
|
1176
|
-
property :
|
|
1180
|
+
property :destination_node_reference, as: 'destinationNodeReference', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference::Representation
|
|
1181
|
+
|
|
1182
|
+
property :dynamic_label_column, as: 'dynamicLabelColumn'
|
|
1183
|
+
property :dynamic_properties_column, as: 'dynamicPropertiesColumn'
|
|
1177
1184
|
collection :element_keys, as: 'elementKeys'
|
|
1178
1185
|
property :input_source, as: 'inputSource'
|
|
1179
1186
|
property :kind, as: 'kind'
|
|
1180
1187
|
collection :label_and_properties, as: 'labelAndProperties', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties::Representation
|
|
1181
1188
|
|
|
1182
|
-
property :source_node_reference, as: 'sourceNodeReference'
|
|
1189
|
+
property :source_node_reference, as: 'sourceNodeReference', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference::Representation
|
|
1190
|
+
|
|
1191
|
+
end
|
|
1192
|
+
end
|
|
1193
|
+
|
|
1194
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
|
|
1195
|
+
# @private
|
|
1196
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1197
|
+
collection :edge_table_columns, as: 'edgeTableColumns'
|
|
1198
|
+
property :node_alias, as: 'nodeAlias'
|
|
1199
|
+
collection :node_table_columns, as: 'nodeTableColumns'
|
|
1183
1200
|
end
|
|
1184
1201
|
end
|
|
1185
1202
|
|
|
@@ -1577,11 +1577,12 @@ module Google
|
|
|
1577
1577
|
# The standard list page token.
|
|
1578
1578
|
# @param [Boolean] return_partial_success
|
|
1579
1579
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1580
|
-
# those that are unreachable are returned in the
|
|
1581
|
-
# unreachable
|
|
1582
|
-
#
|
|
1583
|
-
# by default
|
|
1584
|
-
# explicitly documented otherwise in service or product specific
|
|
1580
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1581
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1582
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1583
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1584
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1585
|
+
# documentation.
|
|
1585
1586
|
# @param [String] fields
|
|
1586
1587
|
# Selector specifying which fields to include in a partial response.
|
|
1587
1588
|
# @param [String] quota_user
|
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.
|
|
4
|
+
version: 0.64.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.64.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:
|