google-apis-datacatalog_v1 0.62.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-datacatalog_v1
|
|
2
2
|
|
|
3
|
+
### v0.64.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251205
|
|
6
|
+
|
|
7
|
+
### v0.63.0 (2025-12-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251112
|
|
10
|
+
|
|
3
11
|
### v0.62.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250928
|
|
@@ -1103,6 +1103,11 @@ module Google
|
|
|
1103
1103
|
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec]
|
|
1104
1104
|
attr_accessor :gcs_fileset_spec
|
|
1105
1105
|
|
|
1106
|
+
# Specification that applies to a graph.
|
|
1107
|
+
# Corresponds to the JSON property `graphSpec`
|
|
1108
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpec]
|
|
1109
|
+
attr_accessor :graph_spec
|
|
1110
|
+
|
|
1106
1111
|
# Output only. Indicates the entry's source system that Data Catalog integrates
|
|
1107
1112
|
# with, such as BigQuery, Pub/Sub, or Dataproc Metastore.
|
|
1108
1113
|
# Corresponds to the JSON property `integratedSystem`
|
|
@@ -1235,6 +1240,7 @@ module Google
|
|
|
1235
1240
|
@fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
|
|
1236
1241
|
@fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
|
|
1237
1242
|
@gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
|
|
1243
|
+
@graph_spec = args[:graph_spec] if args.key?(:graph_spec)
|
|
1238
1244
|
@integrated_system = args[:integrated_system] if args.key?(:integrated_system)
|
|
1239
1245
|
@labels = args[:labels] if args.key?(:labels)
|
|
1240
1246
|
@linked_resource = args[:linked_resource] if args.key?(:linked_resource)
|
|
@@ -1528,6 +1534,199 @@ module Google
|
|
|
1528
1534
|
end
|
|
1529
1535
|
end
|
|
1530
1536
|
|
|
1537
|
+
# Specification that applies to a graph.
|
|
1538
|
+
class GoogleCloudDatacatalogV1GraphSpec
|
|
1539
|
+
include Google::Apis::Core::Hashable
|
|
1540
|
+
|
|
1541
|
+
# Optional. Edge tables of the graph.
|
|
1542
|
+
# Corresponds to the JSON property `edgeTables`
|
|
1543
|
+
# @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable>]
|
|
1544
|
+
attr_accessor :edge_tables
|
|
1545
|
+
|
|
1546
|
+
# Output only. Fully qualified graph name. e.g. `named_catalog.MyGraph`
|
|
1547
|
+
# Corresponds to the JSON property `name`
|
|
1548
|
+
# @return [String]
|
|
1549
|
+
attr_accessor :name
|
|
1550
|
+
|
|
1551
|
+
# Required. Node tables of the graph.
|
|
1552
|
+
# Corresponds to the JSON property `nodeTables`
|
|
1553
|
+
# @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable>]
|
|
1554
|
+
attr_accessor :node_tables
|
|
1555
|
+
|
|
1556
|
+
def initialize(**args)
|
|
1557
|
+
update!(**args)
|
|
1558
|
+
end
|
|
1559
|
+
|
|
1560
|
+
# Update properties of this object
|
|
1561
|
+
def update!(**args)
|
|
1562
|
+
@edge_tables = args[:edge_tables] if args.key?(:edge_tables)
|
|
1563
|
+
@name = args[:name] if args.key?(:name)
|
|
1564
|
+
@node_tables = args[:node_tables] if args.key?(:node_tables)
|
|
1565
|
+
end
|
|
1566
|
+
end
|
|
1567
|
+
|
|
1568
|
+
# Element table definition.
|
|
1569
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
|
|
1570
|
+
include Google::Apis::Core::Hashable
|
|
1571
|
+
|
|
1572
|
+
# Required. The alias name of the graph element.
|
|
1573
|
+
# Corresponds to the JSON property `alias`
|
|
1574
|
+
# @return [String]
|
|
1575
|
+
attr_accessor :alias
|
|
1576
|
+
|
|
1577
|
+
# Required. The name of the data source. This is either a table name or a view
|
|
1578
|
+
# name that is used for graph element input source. E.g. `Person` table or `
|
|
1579
|
+
# PersonView` view.
|
|
1580
|
+
# Corresponds to the JSON property `dataSource`
|
|
1581
|
+
# @return [String]
|
|
1582
|
+
attr_accessor :data_source
|
|
1583
|
+
|
|
1584
|
+
# A reference to a source or destination node in a graph edge.
|
|
1585
|
+
# Corresponds to the JSON property `destinationNodeReference`
|
|
1586
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
|
|
1587
|
+
attr_accessor :destination_node_reference
|
|
1588
|
+
|
|
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
|
+
|
|
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
|
|
1600
|
+
|
|
1601
|
+
# Required. The name of the keys of the elements in the table.
|
|
1602
|
+
# Corresponds to the JSON property `elementKeys`
|
|
1603
|
+
# @return [Array<String>]
|
|
1604
|
+
attr_accessor :element_keys
|
|
1605
|
+
|
|
1606
|
+
# Required. The input source of the graph element.
|
|
1607
|
+
# Corresponds to the JSON property `inputSource`
|
|
1608
|
+
# @return [String]
|
|
1609
|
+
attr_accessor :input_source
|
|
1610
|
+
|
|
1611
|
+
# Required. The kind of the graph element.
|
|
1612
|
+
# Corresponds to the JSON property `kind`
|
|
1613
|
+
# @return [String]
|
|
1614
|
+
attr_accessor :kind
|
|
1615
|
+
|
|
1616
|
+
# Required. The labels and their properties for the graph element.
|
|
1617
|
+
# Corresponds to the JSON property `labelAndProperties`
|
|
1618
|
+
# @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties>]
|
|
1619
|
+
attr_accessor :label_and_properties
|
|
1620
|
+
|
|
1621
|
+
# A reference to a source or destination node in a graph edge.
|
|
1622
|
+
# Corresponds to the JSON property `sourceNodeReference`
|
|
1623
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference]
|
|
1624
|
+
attr_accessor :source_node_reference
|
|
1625
|
+
|
|
1626
|
+
def initialize(**args)
|
|
1627
|
+
update!(**args)
|
|
1628
|
+
end
|
|
1629
|
+
|
|
1630
|
+
# Update properties of this object
|
|
1631
|
+
def update!(**args)
|
|
1632
|
+
@alias = args[:alias] if args.key?(:alias)
|
|
1633
|
+
@data_source = args[:data_source] if args.key?(:data_source)
|
|
1634
|
+
@destination_node_reference = args[:destination_node_reference] if args.key?(:destination_node_reference)
|
|
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)
|
|
1637
|
+
@element_keys = args[:element_keys] if args.key?(:element_keys)
|
|
1638
|
+
@input_source = args[:input_source] if args.key?(:input_source)
|
|
1639
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
1640
|
+
@label_and_properties = args[:label_and_properties] if args.key?(:label_and_properties)
|
|
1641
|
+
@source_node_reference = args[:source_node_reference] if args.key?(:source_node_reference)
|
|
1642
|
+
end
|
|
1643
|
+
end
|
|
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
|
+
|
|
1679
|
+
# The label and its properties. Each label is associated with a set of
|
|
1680
|
+
# properties.
|
|
1681
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
1682
|
+
include Google::Apis::Core::Hashable
|
|
1683
|
+
|
|
1684
|
+
# Required. The name of the label.
|
|
1685
|
+
# Corresponds to the JSON property `label`
|
|
1686
|
+
# @return [String]
|
|
1687
|
+
attr_accessor :label
|
|
1688
|
+
|
|
1689
|
+
# Optional. The properties associated with the label.
|
|
1690
|
+
# Corresponds to the JSON property `properties`
|
|
1691
|
+
# @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty>]
|
|
1692
|
+
attr_accessor :properties
|
|
1693
|
+
|
|
1694
|
+
def initialize(**args)
|
|
1695
|
+
update!(**args)
|
|
1696
|
+
end
|
|
1697
|
+
|
|
1698
|
+
# Update properties of this object
|
|
1699
|
+
def update!(**args)
|
|
1700
|
+
@label = args[:label] if args.key?(:label)
|
|
1701
|
+
@properties = args[:properties] if args.key?(:properties)
|
|
1702
|
+
end
|
|
1703
|
+
end
|
|
1704
|
+
|
|
1705
|
+
# A property declaration.
|
|
1706
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
|
|
1707
|
+
include Google::Apis::Core::Hashable
|
|
1708
|
+
|
|
1709
|
+
# Required. Property name.
|
|
1710
|
+
# Corresponds to the JSON property `name`
|
|
1711
|
+
# @return [String]
|
|
1712
|
+
attr_accessor :name
|
|
1713
|
+
|
|
1714
|
+
# Required. Property data type.
|
|
1715
|
+
# Corresponds to the JSON property `type`
|
|
1716
|
+
# @return [String]
|
|
1717
|
+
attr_accessor :type
|
|
1718
|
+
|
|
1719
|
+
def initialize(**args)
|
|
1720
|
+
update!(**args)
|
|
1721
|
+
end
|
|
1722
|
+
|
|
1723
|
+
# Update properties of this object
|
|
1724
|
+
def update!(**args)
|
|
1725
|
+
@name = args[:name] if args.key?(:name)
|
|
1726
|
+
@type = args[:type] if args.key?(:type)
|
|
1727
|
+
end
|
|
1728
|
+
end
|
|
1729
|
+
|
|
1531
1730
|
# Metadata message for long-running operation returned by the ImportEntries.
|
|
1532
1731
|
class GoogleCloudDatacatalogV1ImportEntriesMetadata
|
|
1533
1732
|
include Google::Apis::Core::Hashable
|
|
@@ -3641,8 +3840,9 @@ module Google
|
|
|
3641
3840
|
attr_accessor :operations
|
|
3642
3841
|
|
|
3643
3842
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3644
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
3645
|
-
# 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.
|
|
3646
3846
|
# Corresponds to the JSON property `unreachable`
|
|
3647
3847
|
# @return [Array<String>]
|
|
3648
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
|
|
@@ -274,6 +274,36 @@ module Google
|
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
|
275
275
|
end
|
|
276
276
|
|
|
277
|
+
class GoogleCloudDatacatalogV1GraphSpec
|
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
279
|
+
|
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
281
|
+
end
|
|
282
|
+
|
|
283
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference
|
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
|
+
|
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
293
|
+
end
|
|
294
|
+
|
|
295
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
297
|
+
|
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
|
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
303
|
+
|
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
305
|
+
end
|
|
306
|
+
|
|
277
307
|
class GoogleCloudDatacatalogV1ImportEntriesMetadata
|
|
278
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
279
309
|
|
|
@@ -1016,6 +1046,8 @@ module Google
|
|
|
1016
1046
|
property :fully_qualified_name, as: 'fullyQualifiedName'
|
|
1017
1047
|
property :gcs_fileset_spec, as: 'gcsFilesetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec::Representation
|
|
1018
1048
|
|
|
1049
|
+
property :graph_spec, as: 'graphSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpec::Representation
|
|
1050
|
+
|
|
1019
1051
|
property :integrated_system, as: 'integratedSystem'
|
|
1020
1052
|
hash :labels, as: 'labels'
|
|
1021
1053
|
property :linked_resource, as: 'linkedResource'
|
|
@@ -1129,6 +1161,62 @@ module Google
|
|
|
1129
1161
|
end
|
|
1130
1162
|
end
|
|
1131
1163
|
|
|
1164
|
+
class GoogleCloudDatacatalogV1GraphSpec
|
|
1165
|
+
# @private
|
|
1166
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1167
|
+
collection :edge_tables, as: 'edgeTables', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
|
|
1168
|
+
|
|
1169
|
+
property :name, as: 'name'
|
|
1170
|
+
collection :node_tables, as: 'nodeTables', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
|
|
1171
|
+
|
|
1172
|
+
end
|
|
1173
|
+
end
|
|
1174
|
+
|
|
1175
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
|
|
1176
|
+
# @private
|
|
1177
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1178
|
+
property :alias, as: 'alias'
|
|
1179
|
+
property :data_source, as: 'dataSource'
|
|
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'
|
|
1184
|
+
collection :element_keys, as: 'elementKeys'
|
|
1185
|
+
property :input_source, as: 'inputSource'
|
|
1186
|
+
property :kind, as: 'kind'
|
|
1187
|
+
collection :label_and_properties, as: 'labelAndProperties', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties::Representation
|
|
1188
|
+
|
|
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'
|
|
1200
|
+
end
|
|
1201
|
+
end
|
|
1202
|
+
|
|
1203
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
|
|
1204
|
+
# @private
|
|
1205
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1206
|
+
property :label, as: 'label'
|
|
1207
|
+
collection :properties, as: 'properties', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty::Representation
|
|
1208
|
+
|
|
1209
|
+
end
|
|
1210
|
+
end
|
|
1211
|
+
|
|
1212
|
+
class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
|
|
1213
|
+
# @private
|
|
1214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1215
|
+
property :name, as: 'name'
|
|
1216
|
+
property :type, as: 'type'
|
|
1217
|
+
end
|
|
1218
|
+
end
|
|
1219
|
+
|
|
1132
1220
|
class GoogleCloudDatacatalogV1ImportEntriesMetadata
|
|
1133
1221
|
# @private
|
|
1134
1222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -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:
|