google-apis-datacatalog_v1 0.61.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 574d0d50be49c17292027e3efde94002d9503e70e2bda3f20f88cdb5bbbd3a04
|
|
4
|
+
data.tar.gz: c18f700da9b1733521108f7b69d06b5a6379076775d9fdd82a92cd8c5ba7e9cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aedfa84e02e8ed06927856305d6ba57516d17525be68d859cd1d2e4969cbe4a594c35ba33507fa5f15521b71334718224a64a2b41d462eb3d19a7765dea6568a
|
|
7
|
+
data.tar.gz: b279d026ab008e82bc033d3c5c3d6d3319ec07630e9928d28fe98a455de4e8360f34a27f900fb84928dd854622d9463a3eb606aa420dcdc522af2c93d1482824
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.62.0 (2025-10-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250928
|
|
10
|
+
|
|
3
11
|
### v0.61.0 (2025-07-27)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250720
|
|
@@ -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
|
|
@@ -3640,6 +3809,13 @@ module Google
|
|
|
3640
3809
|
# @return [Array<Google::Apis::DatacatalogV1::Operation>]
|
|
3641
3810
|
attr_accessor :operations
|
|
3642
3811
|
|
|
3812
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3813
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
3814
|
+
# when attempting to list all resources across all supported locations.
|
|
3815
|
+
# Corresponds to the JSON property `unreachable`
|
|
3816
|
+
# @return [Array<String>]
|
|
3817
|
+
attr_accessor :unreachable
|
|
3818
|
+
|
|
3643
3819
|
def initialize(**args)
|
|
3644
3820
|
update!(**args)
|
|
3645
3821
|
end
|
|
@@ -3648,6 +3824,7 @@ module Google
|
|
|
3648
3824
|
def update!(**args)
|
|
3649
3825
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3650
3826
|
@operations = args[:operations] if args.key?(:operations)
|
|
3827
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3651
3828
|
end
|
|
3652
3829
|
end
|
|
3653
3830
|
|
|
@@ -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.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 = "
|
|
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
|
|
@@ -1740,6 +1811,7 @@ module Google
|
|
|
1740
1811
|
property :next_page_token, as: 'nextPageToken'
|
|
1741
1812
|
collection :operations, as: 'operations', class: Google::Apis::DatacatalogV1::Operation, decorator: Google::Apis::DatacatalogV1::Operation::Representation
|
|
1742
1813
|
|
|
1814
|
+
collection :unreachable, as: 'unreachable'
|
|
1743
1815
|
end
|
|
1744
1816
|
end
|
|
1745
1817
|
|
|
@@ -1575,6 +1575,13 @@ module Google
|
|
|
1575
1575
|
# The standard list page size.
|
|
1576
1576
|
# @param [String] page_token
|
|
1577
1577
|
# The standard list page token.
|
|
1578
|
+
# @param [Boolean] return_partial_success
|
|
1579
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1580
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
1581
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
1582
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
1583
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
1584
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1578
1585
|
# @param [String] fields
|
|
1579
1586
|
# Selector specifying which fields to include in a partial response.
|
|
1580
1587
|
# @param [String] quota_user
|
|
@@ -1592,7 +1599,7 @@ module Google
|
|
|
1592
1599
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1593
1600
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1594
1601
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1595
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1602
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1596
1603
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
1597
1604
|
command.response_representation = Google::Apis::DatacatalogV1::ListOperationsResponse::Representation
|
|
1598
1605
|
command.response_class = Google::Apis::DatacatalogV1::ListOperationsResponse
|
|
@@ -1600,6 +1607,7 @@ module Google
|
|
|
1600
1607
|
command.query['filter'] = filter unless filter.nil?
|
|
1601
1608
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1602
1609
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1610
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1603
1611
|
command.query['fields'] = fields unless fields.nil?
|
|
1604
1612
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1605
1613
|
execute_or_queue_command(command, &block)
|
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.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.
|
|
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:
|