google-apis-datacatalog_v1 0.62.0 → 0.63.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: 822b514d94769d873c839e1e75f1586eed089e477f730aa4fbf0ad8a46ca1f0e
4
- data.tar.gz: 2c90b7717b5500c6c2c633fddcab4341c46041d2fcedc8b246d6bfec679a5311
3
+ metadata.gz: 574d0d50be49c17292027e3efde94002d9503e70e2bda3f20f88cdb5bbbd3a04
4
+ data.tar.gz: c18f700da9b1733521108f7b69d06b5a6379076775d9fdd82a92cd8c5ba7e9cf
5
5
  SHA512:
6
- metadata.gz: 041c5dd10a752ad6db79bb4153e2fc79a4cc32a977e4aba10e3b920c3a3917ab32cbd72483866fc8d624eec5ff5cf5a164a7d8fbc936a6ad67c3094ad3a0c6f4
7
- data.tar.gz: 1aadfce8b31393c893dbf3b1cb78230771d1ddc6ede41094d33d890baf81d5c2f476ea3d2a09b1f8e081df9c008cc7c66950607b20c751486cf1c51e7d5481e1
6
+ metadata.gz: aedfa84e02e8ed06927856305d6ba57516d17525be68d859cd1d2e4969cbe4a594c35ba33507fa5f15521b71334718224a64a2b41d462eb3d19a7765dea6568a
7
+ data.tar.gz: b279d026ab008e82bc033d3c5c3d6d3319ec07630e9928d28fe98a455de4e8360f34a27f900fb84928dd854622d9463a3eb606aa420dcdc522af2c93d1482824
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.63.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251112
6
+
3
7
  ### v0.62.0 (2025-10-12)
4
8
 
5
9
  * 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,169 @@ 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
+ # Optional. Only applies to `kind = EDGE`.
1585
+ # Corresponds to the JSON property `destinationNodeReference`
1586
+ # @return [String]
1587
+ attr_accessor :destination_node_reference
1588
+
1589
+ # Optional. If true, the graph element has a dynamic label in schemaless model.
1590
+ # Corresponds to the JSON property `dynamicLabelEnabled`
1591
+ # @return [Boolean]
1592
+ attr_accessor :dynamic_label_enabled
1593
+ alias_method :dynamic_label_enabled?, :dynamic_label_enabled
1594
+
1595
+ # Optional. If true, the graph element has dynamic properties in schemaless
1596
+ # model.
1597
+ # Corresponds to the JSON property `dynamicPropertiesEnabled`
1598
+ # @return [Boolean]
1599
+ attr_accessor :dynamic_properties_enabled
1600
+ alias_method :dynamic_properties_enabled?, :dynamic_properties_enabled
1601
+
1602
+ # Required. The name of the keys of the elements in the table.
1603
+ # Corresponds to the JSON property `elementKeys`
1604
+ # @return [Array<String>]
1605
+ attr_accessor :element_keys
1606
+
1607
+ # Required. The input source of the graph element.
1608
+ # Corresponds to the JSON property `inputSource`
1609
+ # @return [String]
1610
+ attr_accessor :input_source
1611
+
1612
+ # Required. The kind of the graph element.
1613
+ # Corresponds to the JSON property `kind`
1614
+ # @return [String]
1615
+ attr_accessor :kind
1616
+
1617
+ # Required. The labels and their properties for the graph element.
1618
+ # Corresponds to the JSON property `labelAndProperties`
1619
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties>]
1620
+ attr_accessor :label_and_properties
1621
+
1622
+ # Optional. Only applies to `kind = EDGE`. The reference to the source node of
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`.
1626
+ # Corresponds to the JSON property `sourceNodeReference`
1627
+ # @return [String]
1628
+ attr_accessor :source_node_reference
1629
+
1630
+ def initialize(**args)
1631
+ update!(**args)
1632
+ end
1633
+
1634
+ # Update properties of this object
1635
+ def update!(**args)
1636
+ @alias = args[:alias] if args.key?(:alias)
1637
+ @data_source = args[:data_source] if args.key?(:data_source)
1638
+ @destination_node_reference = args[:destination_node_reference] if args.key?(:destination_node_reference)
1639
+ @dynamic_label_enabled = args[:dynamic_label_enabled] if args.key?(:dynamic_label_enabled)
1640
+ @dynamic_properties_enabled = args[:dynamic_properties_enabled] if args.key?(:dynamic_properties_enabled)
1641
+ @element_keys = args[:element_keys] if args.key?(:element_keys)
1642
+ @input_source = args[:input_source] if args.key?(:input_source)
1643
+ @kind = args[:kind] if args.key?(:kind)
1644
+ @label_and_properties = args[:label_and_properties] if args.key?(:label_and_properties)
1645
+ @source_node_reference = args[:source_node_reference] if args.key?(:source_node_reference)
1646
+ end
1647
+ end
1648
+
1649
+ # The label and its properties. Each label is associated with a set of
1650
+ # properties.
1651
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
1652
+ include Google::Apis::Core::Hashable
1653
+
1654
+ # Required. The name of the label.
1655
+ # Corresponds to the JSON property `label`
1656
+ # @return [String]
1657
+ attr_accessor :label
1658
+
1659
+ # Optional. The properties associated with the label.
1660
+ # Corresponds to the JSON property `properties`
1661
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty>]
1662
+ attr_accessor :properties
1663
+
1664
+ def initialize(**args)
1665
+ update!(**args)
1666
+ end
1667
+
1668
+ # Update properties of this object
1669
+ def update!(**args)
1670
+ @label = args[:label] if args.key?(:label)
1671
+ @properties = args[:properties] if args.key?(:properties)
1672
+ end
1673
+ end
1674
+
1675
+ # A property declaration.
1676
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
1677
+ include Google::Apis::Core::Hashable
1678
+
1679
+ # Required. Property name.
1680
+ # Corresponds to the JSON property `name`
1681
+ # @return [String]
1682
+ attr_accessor :name
1683
+
1684
+ # Required. Property data type.
1685
+ # Corresponds to the JSON property `type`
1686
+ # @return [String]
1687
+ attr_accessor :type
1688
+
1689
+ def initialize(**args)
1690
+ update!(**args)
1691
+ end
1692
+
1693
+ # Update properties of this object
1694
+ def update!(**args)
1695
+ @name = args[:name] if args.key?(:name)
1696
+ @type = args[:type] if args.key?(:type)
1697
+ end
1698
+ end
1699
+
1531
1700
  # Metadata message for long-running operation returned by the ImportEntries.
1532
1701
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
1533
1702
  include Google::Apis::Core::Hashable
@@ -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.62.0"
19
+ GEM_VERSION = "0.63.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 = "20250928"
25
+ REVISION = "20251112"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,30 @@ 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 GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
295
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
277
301
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
278
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
303
 
@@ -1016,6 +1040,8 @@ module Google
1016
1040
  property :fully_qualified_name, as: 'fullyQualifiedName'
1017
1041
  property :gcs_fileset_spec, as: 'gcsFilesetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec::Representation
1018
1042
 
1043
+ property :graph_spec, as: 'graphSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpec::Representation
1044
+
1019
1045
  property :integrated_system, as: 'integratedSystem'
1020
1046
  hash :labels, as: 'labels'
1021
1047
  property :linked_resource, as: 'linkedResource'
@@ -1129,6 +1155,51 @@ module Google
1129
1155
  end
1130
1156
  end
1131
1157
 
1158
+ class GoogleCloudDatacatalogV1GraphSpec
1159
+ # @private
1160
+ class Representation < Google::Apis::Core::JsonRepresentation
1161
+ collection :edge_tables, as: 'edgeTables', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
1162
+
1163
+ property :name, as: 'name'
1164
+ collection :node_tables, as: 'nodeTables', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTable::Representation
1165
+
1166
+ end
1167
+ end
1168
+
1169
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTable
1170
+ # @private
1171
+ class Representation < Google::Apis::Core::JsonRepresentation
1172
+ property :alias, as: 'alias'
1173
+ property :data_source, as: 'dataSource'
1174
+ property :destination_node_reference, as: 'destinationNodeReference'
1175
+ property :dynamic_label_enabled, as: 'dynamicLabelEnabled'
1176
+ property :dynamic_properties_enabled, as: 'dynamicPropertiesEnabled'
1177
+ collection :element_keys, as: 'elementKeys'
1178
+ property :input_source, as: 'inputSource'
1179
+ property :kind, as: 'kind'
1180
+ collection :label_and_properties, as: 'labelAndProperties', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties::Representation
1181
+
1182
+ property :source_node_reference, as: 'sourceNodeReference'
1183
+ end
1184
+ end
1185
+
1186
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties
1187
+ # @private
1188
+ class Representation < Google::Apis::Core::JsonRepresentation
1189
+ property :label, as: 'label'
1190
+ collection :properties, as: 'properties', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty::Representation
1191
+
1192
+ end
1193
+ end
1194
+
1195
+ class GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty
1196
+ # @private
1197
+ class Representation < Google::Apis::Core::JsonRepresentation
1198
+ property :name, as: 'name'
1199
+ property :type, as: 'type'
1200
+ end
1201
+ end
1202
+
1132
1203
  class GoogleCloudDatacatalogV1ImportEntriesMetadata
1133
1204
  # @private
1134
1205
  class Representation < Google::Apis::Core::JsonRepresentation
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.62.0
4
+ version: 0.63.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.62.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.63.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: