google-apis-dataplex_v1 0.71.0 → 0.72.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: 3d684421d4cc0441e1d71142fd0daa7e127a1e162a34303cc0a5023dd50dc385
|
4
|
+
data.tar.gz: a38bfd34631560799dbf9665ae17d24fd7124f7b9f02b1c7535c1f39876ba37c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bec3ff1d723a0dcc0a613e2c9bd294314aa7533ec5a8fc2e9aa60bf58a7a2a663a31a274af0492c2fe9bd58bb900800862834d9737f0b8fe15f9e6312bcf2a5f
|
7
|
+
data.tar.gz: cad14641077238e0aef6f9009726ac7429492632067cee882d86e926a9acb934d1fa2d5d19f04d26aad5d23b9c69d1a8e54db9eefe53ef853d10876b0fef0b60
|
data/CHANGELOG.md
CHANGED
@@ -856,7 +856,7 @@ module Google
|
|
856
856
|
|
857
857
|
# Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running
|
858
858
|
# discovery periodically. Successive discovery runs must be scheduled at least
|
859
|
-
# 60 minutes apart. The default value is to run discovery every 60 minutes.
|
859
|
+
# 60 minutes apart. The default value is to run discovery every 60 minutes.To
|
860
860
|
# explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "
|
861
861
|
# CRON_TZ=$`IANA_TIME_ZONE`" or TZ=$`IANA_TIME_ZONE`". The $`IANA_TIME_ZONE` may
|
862
862
|
# only be a valid string from IANA time zone database. For example, CRON_TZ=
|
@@ -1601,6 +1601,11 @@ module Google
|
|
1601
1601
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing]
|
1602
1602
|
attr_accessor :bigquery_publishing
|
1603
1603
|
|
1604
|
+
# Statistics of the DataDiscoveryScan.
|
1605
|
+
# Corresponds to the JSON property `scanStatistics`
|
1606
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics]
|
1607
|
+
attr_accessor :scan_statistics
|
1608
|
+
|
1604
1609
|
def initialize(**args)
|
1605
1610
|
update!(**args)
|
1606
1611
|
end
|
@@ -1608,6 +1613,7 @@ module Google
|
|
1608
1613
|
# Update properties of this object
|
1609
1614
|
def update!(**args)
|
1610
1615
|
@bigquery_publishing = args[:bigquery_publishing] if args.key?(:bigquery_publishing)
|
1616
|
+
@scan_statistics = args[:scan_statistics] if args.key?(:scan_statistics)
|
1611
1617
|
end
|
1612
1618
|
end
|
1613
1619
|
|
@@ -1620,6 +1626,11 @@ module Google
|
|
1620
1626
|
# @return [String]
|
1621
1627
|
attr_accessor :dataset
|
1622
1628
|
|
1629
|
+
# Output only. The location of the BigQuery publishing dataset.
|
1630
|
+
# Corresponds to the JSON property `location`
|
1631
|
+
# @return [String]
|
1632
|
+
attr_accessor :location
|
1633
|
+
|
1623
1634
|
def initialize(**args)
|
1624
1635
|
update!(**args)
|
1625
1636
|
end
|
@@ -1627,6 +1638,74 @@ module Google
|
|
1627
1638
|
# Update properties of this object
|
1628
1639
|
def update!(**args)
|
1629
1640
|
@dataset = args[:dataset] if args.key?(:dataset)
|
1641
|
+
@location = args[:location] if args.key?(:location)
|
1642
|
+
end
|
1643
|
+
end
|
1644
|
+
|
1645
|
+
# Statistics of the DataDiscoveryScan.
|
1646
|
+
class GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
|
1647
|
+
include Google::Apis::Core::Hashable
|
1648
|
+
|
1649
|
+
# The data processed in bytes.
|
1650
|
+
# Corresponds to the JSON property `dataProcessedBytes`
|
1651
|
+
# @return [Fixnum]
|
1652
|
+
attr_accessor :data_processed_bytes
|
1653
|
+
|
1654
|
+
# The number of files excluded.
|
1655
|
+
# Corresponds to the JSON property `filesExcluded`
|
1656
|
+
# @return [Fixnum]
|
1657
|
+
attr_accessor :files_excluded
|
1658
|
+
|
1659
|
+
# The number of filesets created.
|
1660
|
+
# Corresponds to the JSON property `filesetsCreated`
|
1661
|
+
# @return [Fixnum]
|
1662
|
+
attr_accessor :filesets_created
|
1663
|
+
|
1664
|
+
# The number of filesets deleted.
|
1665
|
+
# Corresponds to the JSON property `filesetsDeleted`
|
1666
|
+
# @return [Fixnum]
|
1667
|
+
attr_accessor :filesets_deleted
|
1668
|
+
|
1669
|
+
# The number of filesets updated.
|
1670
|
+
# Corresponds to the JSON property `filesetsUpdated`
|
1671
|
+
# @return [Fixnum]
|
1672
|
+
attr_accessor :filesets_updated
|
1673
|
+
|
1674
|
+
# The number of files scanned.
|
1675
|
+
# Corresponds to the JSON property `scannedFileCount`
|
1676
|
+
# @return [Fixnum]
|
1677
|
+
attr_accessor :scanned_file_count
|
1678
|
+
|
1679
|
+
# The number of tables created.
|
1680
|
+
# Corresponds to the JSON property `tablesCreated`
|
1681
|
+
# @return [Fixnum]
|
1682
|
+
attr_accessor :tables_created
|
1683
|
+
|
1684
|
+
# The number of tables deleted.
|
1685
|
+
# Corresponds to the JSON property `tablesDeleted`
|
1686
|
+
# @return [Fixnum]
|
1687
|
+
attr_accessor :tables_deleted
|
1688
|
+
|
1689
|
+
# The number of tables updated.
|
1690
|
+
# Corresponds to the JSON property `tablesUpdated`
|
1691
|
+
# @return [Fixnum]
|
1692
|
+
attr_accessor :tables_updated
|
1693
|
+
|
1694
|
+
def initialize(**args)
|
1695
|
+
update!(**args)
|
1696
|
+
end
|
1697
|
+
|
1698
|
+
# Update properties of this object
|
1699
|
+
def update!(**args)
|
1700
|
+
@data_processed_bytes = args[:data_processed_bytes] if args.key?(:data_processed_bytes)
|
1701
|
+
@files_excluded = args[:files_excluded] if args.key?(:files_excluded)
|
1702
|
+
@filesets_created = args[:filesets_created] if args.key?(:filesets_created)
|
1703
|
+
@filesets_deleted = args[:filesets_deleted] if args.key?(:filesets_deleted)
|
1704
|
+
@filesets_updated = args[:filesets_updated] if args.key?(:filesets_updated)
|
1705
|
+
@scanned_file_count = args[:scanned_file_count] if args.key?(:scanned_file_count)
|
1706
|
+
@tables_created = args[:tables_created] if args.key?(:tables_created)
|
1707
|
+
@tables_deleted = args[:tables_deleted] if args.key?(:tables_deleted)
|
1708
|
+
@tables_updated = args[:tables_updated] if args.key?(:tables_updated)
|
1630
1709
|
end
|
1631
1710
|
end
|
1632
1711
|
|
@@ -6119,6 +6198,17 @@ module Google
|
|
6119
6198
|
# @return [String]
|
6120
6199
|
attr_accessor :create_time
|
6121
6200
|
|
6201
|
+
# Export Job Results. The result is based on the snapshot at the time when the
|
6202
|
+
# job is created.
|
6203
|
+
# Corresponds to the JSON property `exportResult`
|
6204
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobResult]
|
6205
|
+
attr_accessor :export_result
|
6206
|
+
|
6207
|
+
# Export job specification.
|
6208
|
+
# Corresponds to the JSON property `exportSpec`
|
6209
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpec]
|
6210
|
+
attr_accessor :export_spec
|
6211
|
+
|
6122
6212
|
# Results from a metadata import job.
|
6123
6213
|
# Corresponds to the JSON property `importResult`
|
6124
6214
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult]
|
@@ -6175,6 +6265,8 @@ module Google
|
|
6175
6265
|
# Update properties of this object
|
6176
6266
|
def update!(**args)
|
6177
6267
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6268
|
+
@export_result = args[:export_result] if args.key?(:export_result)
|
6269
|
+
@export_spec = args[:export_spec] if args.key?(:export_spec)
|
6178
6270
|
@import_result = args[:import_result] if args.key?(:import_result)
|
6179
6271
|
@import_spec = args[:import_spec] if args.key?(:import_spec)
|
6180
6272
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -6186,6 +6278,121 @@ module Google
|
|
6186
6278
|
end
|
6187
6279
|
end
|
6188
6280
|
|
6281
|
+
# Export Job Results. The result is based on the snapshot at the time when the
|
6282
|
+
# job is created.
|
6283
|
+
class GoogleCloudDataplexV1MetadataJobExportJobResult
|
6284
|
+
include Google::Apis::Core::Hashable
|
6285
|
+
|
6286
|
+
# Output only. The error message if the export job failed.
|
6287
|
+
# Corresponds to the JSON property `errorMessage`
|
6288
|
+
# @return [String]
|
6289
|
+
attr_accessor :error_message
|
6290
|
+
|
6291
|
+
# Output only. The number of entries that have been exported.
|
6292
|
+
# Corresponds to the JSON property `exportedEntries`
|
6293
|
+
# @return [Fixnum]
|
6294
|
+
attr_accessor :exported_entries
|
6295
|
+
|
6296
|
+
def initialize(**args)
|
6297
|
+
update!(**args)
|
6298
|
+
end
|
6299
|
+
|
6300
|
+
# Update properties of this object
|
6301
|
+
def update!(**args)
|
6302
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
6303
|
+
@exported_entries = args[:exported_entries] if args.key?(:exported_entries)
|
6304
|
+
end
|
6305
|
+
end
|
6306
|
+
|
6307
|
+
# Export job specification.
|
6308
|
+
class GoogleCloudDataplexV1MetadataJobExportJobSpec
|
6309
|
+
include Google::Apis::Core::Hashable
|
6310
|
+
|
6311
|
+
# Required. The root path of the exported metadata. Must be in the format: "gs://
|
6312
|
+
# " Or specify a customized prefix after the bucket: "gs://///.../". The length
|
6313
|
+
# limit of the customized prefix is 128 characters. The bucket must be in the
|
6314
|
+
# same VPC-SC perimeter with the job.
|
6315
|
+
# Corresponds to the JSON property `outputPath`
|
6316
|
+
# @return [String]
|
6317
|
+
attr_accessor :output_path
|
6318
|
+
|
6319
|
+
# Scope of the export job.
|
6320
|
+
# Corresponds to the JSON property `scope`
|
6321
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope]
|
6322
|
+
attr_accessor :scope
|
6323
|
+
|
6324
|
+
def initialize(**args)
|
6325
|
+
update!(**args)
|
6326
|
+
end
|
6327
|
+
|
6328
|
+
# Update properties of this object
|
6329
|
+
def update!(**args)
|
6330
|
+
@output_path = args[:output_path] if args.key?(:output_path)
|
6331
|
+
@scope = args[:scope] if args.key?(:scope)
|
6332
|
+
end
|
6333
|
+
end
|
6334
|
+
|
6335
|
+
# Scope of the export job.
|
6336
|
+
class GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope
|
6337
|
+
include Google::Apis::Core::Hashable
|
6338
|
+
|
6339
|
+
# The aspect types that are in scope for the export job. Optional. If specified,
|
6340
|
+
# only aspects of the specified types will be affected by the job. Must follow
|
6341
|
+
# the format: "projects//locations//aspectTypes/"
|
6342
|
+
# Corresponds to the JSON property `aspectTypes`
|
6343
|
+
# @return [Array<String>]
|
6344
|
+
attr_accessor :aspect_types
|
6345
|
+
|
6346
|
+
# The entry groups that are in scope for the export job. Optional. If specified,
|
6347
|
+
# only entries in the specified entry groups will be exported by the job. Must
|
6348
|
+
# be in the VPC-SC perimeter of the job. The location of the entry groups must
|
6349
|
+
# be the same as the job. Either projects or entry_groups can be specified when
|
6350
|
+
# organization_level_export is set to false. Must follow the format: "projects//
|
6351
|
+
# locations//entryGroups/"
|
6352
|
+
# Corresponds to the JSON property `entryGroups`
|
6353
|
+
# @return [Array<String>]
|
6354
|
+
attr_accessor :entry_groups
|
6355
|
+
|
6356
|
+
# If specified, only entries of the specified types will be affected by the job.
|
6357
|
+
# Must follow the format: "projects//locations//entryTypes/"
|
6358
|
+
# Corresponds to the JSON property `entryTypes`
|
6359
|
+
# @return [Array<String>]
|
6360
|
+
attr_accessor :entry_types
|
6361
|
+
|
6362
|
+
# Indicating if it is an organization level export job. - When set to true,
|
6363
|
+
# exports all entries from entry groups and projects sharing the same
|
6364
|
+
# organization id of the Metadata Job. Only projects and entry groups in the VPC-
|
6365
|
+
# SC perimeter will be exported. The projects and entry groups are ignored. -
|
6366
|
+
# When set to false, one of the projects or entry groups must be specified. -
|
6367
|
+
# Default to false.
|
6368
|
+
# Corresponds to the JSON property `organizationLevel`
|
6369
|
+
# @return [Boolean]
|
6370
|
+
attr_accessor :organization_level
|
6371
|
+
alias_method :organization_level?, :organization_level
|
6372
|
+
|
6373
|
+
# The projects that are in the scope of the export job. Can either be project
|
6374
|
+
# numbers or project IDs. If specified, only the entries from the specified
|
6375
|
+
# projects will be exported. The projects must be in the same organization and
|
6376
|
+
# in the VPC-SC perimeter. Either projects or entry_groups can be specified when
|
6377
|
+
# organization_level_export is set to false. Must follow the format: "projects/"
|
6378
|
+
# Corresponds to the JSON property `projects`
|
6379
|
+
# @return [Array<String>]
|
6380
|
+
attr_accessor :projects
|
6381
|
+
|
6382
|
+
def initialize(**args)
|
6383
|
+
update!(**args)
|
6384
|
+
end
|
6385
|
+
|
6386
|
+
# Update properties of this object
|
6387
|
+
def update!(**args)
|
6388
|
+
@aspect_types = args[:aspect_types] if args.key?(:aspect_types)
|
6389
|
+
@entry_groups = args[:entry_groups] if args.key?(:entry_groups)
|
6390
|
+
@entry_types = args[:entry_types] if args.key?(:entry_types)
|
6391
|
+
@organization_level = args[:organization_level] if args.key?(:organization_level)
|
6392
|
+
@projects = args[:projects] if args.key?(:projects)
|
6393
|
+
end
|
6394
|
+
end
|
6395
|
+
|
6189
6396
|
# Results from a metadata import job.
|
6190
6397
|
class GoogleCloudDataplexV1MetadataJobImportJobResult
|
6191
6398
|
include Google::Apis::Core::Hashable
|
@@ -7863,7 +8070,7 @@ module Google
|
|
7863
8070
|
|
7864
8071
|
# Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running
|
7865
8072
|
# discovery periodically. Successive discovery runs must be scheduled at least
|
7866
|
-
# 60 minutes apart. The default value is to run discovery every 60 minutes.
|
8073
|
+
# 60 minutes apart. The default value is to run discovery every 60 minutes.To
|
7867
8074
|
# explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "
|
7868
8075
|
# CRON_TZ=$`IANA_TIME_ZONE`" or TZ=$`IANA_TIME_ZONE`". The $`IANA_TIME_ZONE` may
|
7869
8076
|
# only be a valid string from IANA time zone database. For example, CRON_TZ=
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DataplexV1
|
18
18
|
# Version of the google-apis-dataplex_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250325"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -262,6 +262,12 @@ module Google
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
263
263
|
end
|
264
264
|
|
265
|
+
class GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
265
271
|
class GoogleCloudDataplexV1DataDiscoverySpec
|
266
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
273
|
|
@@ -946,6 +952,24 @@ module Google
|
|
946
952
|
include Google::Apis::Core::JsonObjectSupport
|
947
953
|
end
|
948
954
|
|
955
|
+
class GoogleCloudDataplexV1MetadataJobExportJobResult
|
956
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
957
|
+
|
958
|
+
include Google::Apis::Core::JsonObjectSupport
|
959
|
+
end
|
960
|
+
|
961
|
+
class GoogleCloudDataplexV1MetadataJobExportJobSpec
|
962
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
963
|
+
|
964
|
+
include Google::Apis::Core::JsonObjectSupport
|
965
|
+
end
|
966
|
+
|
967
|
+
class GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope
|
968
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
|
+
|
970
|
+
include Google::Apis::Core::JsonObjectSupport
|
971
|
+
end
|
972
|
+
|
949
973
|
class GoogleCloudDataplexV1MetadataJobImportJobResult
|
950
974
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
951
975
|
|
@@ -1720,6 +1744,8 @@ module Google
|
|
1720
1744
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1721
1745
|
property :bigquery_publishing, as: 'bigqueryPublishing', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing::Representation
|
1722
1746
|
|
1747
|
+
property :scan_statistics, as: 'scanStatistics', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultScanStatistics::Representation
|
1748
|
+
|
1723
1749
|
end
|
1724
1750
|
end
|
1725
1751
|
|
@@ -1727,6 +1753,22 @@ module Google
|
|
1727
1753
|
# @private
|
1728
1754
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1729
1755
|
property :dataset, as: 'dataset'
|
1756
|
+
property :location, as: 'location'
|
1757
|
+
end
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
class GoogleCloudDataplexV1DataDiscoveryResultScanStatistics
|
1761
|
+
# @private
|
1762
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1763
|
+
property :data_processed_bytes, :numeric_string => true, as: 'dataProcessedBytes'
|
1764
|
+
property :files_excluded, as: 'filesExcluded'
|
1765
|
+
property :filesets_created, as: 'filesetsCreated'
|
1766
|
+
property :filesets_deleted, as: 'filesetsDeleted'
|
1767
|
+
property :filesets_updated, as: 'filesetsUpdated'
|
1768
|
+
property :scanned_file_count, as: 'scannedFileCount'
|
1769
|
+
property :tables_created, as: 'tablesCreated'
|
1770
|
+
property :tables_deleted, as: 'tablesDeleted'
|
1771
|
+
property :tables_updated, as: 'tablesUpdated'
|
1730
1772
|
end
|
1731
1773
|
end
|
1732
1774
|
|
@@ -2964,6 +3006,10 @@ module Google
|
|
2964
3006
|
# @private
|
2965
3007
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2966
3008
|
property :create_time, as: 'createTime'
|
3009
|
+
property :export_result, as: 'exportResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobResult::Representation
|
3010
|
+
|
3011
|
+
property :export_spec, as: 'exportSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpec::Representation
|
3012
|
+
|
2967
3013
|
property :import_result, as: 'importResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult::Representation
|
2968
3014
|
|
2969
3015
|
property :import_spec, as: 'importSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobSpec::Representation
|
@@ -2978,6 +3024,34 @@ module Google
|
|
2978
3024
|
end
|
2979
3025
|
end
|
2980
3026
|
|
3027
|
+
class GoogleCloudDataplexV1MetadataJobExportJobResult
|
3028
|
+
# @private
|
3029
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3030
|
+
property :error_message, as: 'errorMessage'
|
3031
|
+
property :exported_entries, :numeric_string => true, as: 'exportedEntries'
|
3032
|
+
end
|
3033
|
+
end
|
3034
|
+
|
3035
|
+
class GoogleCloudDataplexV1MetadataJobExportJobSpec
|
3036
|
+
# @private
|
3037
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3038
|
+
property :output_path, as: 'outputPath'
|
3039
|
+
property :scope, as: 'scope', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope::Representation
|
3040
|
+
|
3041
|
+
end
|
3042
|
+
end
|
3043
|
+
|
3044
|
+
class GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope
|
3045
|
+
# @private
|
3046
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3047
|
+
collection :aspect_types, as: 'aspectTypes'
|
3048
|
+
collection :entry_groups, as: 'entryGroups'
|
3049
|
+
collection :entry_types, as: 'entryTypes'
|
3050
|
+
property :organization_level, as: 'organizationLevel'
|
3051
|
+
collection :projects, as: 'projects'
|
3052
|
+
end
|
3053
|
+
end
|
3054
|
+
|
2981
3055
|
class GoogleCloudDataplexV1MetadataJobImportJobResult
|
2982
3056
|
# @private
|
2983
3057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -349,6 +349,9 @@ module Google
|
|
349
349
|
# Lists information about the supported locations for this service.
|
350
350
|
# @param [String] name
|
351
351
|
# The resource that owns the locations collection, if applicable.
|
352
|
+
# @param [Array<String>, String] extra_location_types
|
353
|
+
# Optional. A list of extra location types that should be used as conditions for
|
354
|
+
# controlling the visibility of the locations.
|
352
355
|
# @param [String] filter
|
353
356
|
# A filter to narrow down results to a preferred subset. The filtering language
|
354
357
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
@@ -376,11 +379,12 @@ module Google
|
|
376
379
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
377
380
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
378
381
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
379
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
382
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
380
383
|
command = make_simple_command(:get, 'v1/{+name}/locations', options)
|
381
384
|
command.response_representation = Google::Apis::DataplexV1::GoogleCloudLocationListLocationsResponse::Representation
|
382
385
|
command.response_class = Google::Apis::DataplexV1::GoogleCloudLocationListLocationsResponse
|
383
386
|
command.params['name'] = name unless name.nil?
|
387
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
384
388
|
command.query['filter'] = filter unless filter.nil?
|
385
389
|
command.query['pageSize'] = page_size unless page_size.nil?
|
386
390
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataplex_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-dataplex_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.72.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|