google-apis-dataplex_v1 0.85.0 → 0.87.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: 52ea9b5c78aacfda350b9495ad8f35fd6370d5751efdbafb077c8e3a7131f7bf
|
4
|
+
data.tar.gz: '08db89f3e6531c636d1db6a48e663215ca4559077ff71880dacf08a1f08b7327'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2a518f47bee9600e5bced614383f47e2c59029f52f04b1982acf0cd8a1dcf021d5c27101c56dbba7bbf5e2cf81678e643dd805ab0c057950ff4b5cc85cfba1b
|
7
|
+
data.tar.gz: 56030476f2ebca8c1e779ecf5f4e3174271fca4119c83c9c6bfe312a9c9f2233db168c68272ad64a757bd8ce7ed33154a9482ef06a7d43df09570b71e57a6b18
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.87.0 (2025-09-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250919
|
6
|
+
|
7
|
+
### v0.86.0 (2025-09-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250915
|
10
|
+
|
3
11
|
### v0.85.0 (2025-09-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250907
|
@@ -1913,6 +1913,152 @@ module Google
|
|
1913
1913
|
end
|
1914
1914
|
end
|
1915
1915
|
|
1916
|
+
# The output of a DataDocumentation scan.
|
1917
|
+
class GoogleCloudDataplexV1DataDocumentationResult
|
1918
|
+
include Google::Apis::Core::Hashable
|
1919
|
+
|
1920
|
+
# Generated metadata about the table.
|
1921
|
+
# Corresponds to the JSON property `tableResult`
|
1922
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult]
|
1923
|
+
attr_accessor :table_result
|
1924
|
+
|
1925
|
+
def initialize(**args)
|
1926
|
+
update!(**args)
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
# Update properties of this object
|
1930
|
+
def update!(**args)
|
1931
|
+
@table_result = args[:table_result] if args.key?(:table_result)
|
1932
|
+
end
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
# Column of a table with generated metadata and nested fields.
|
1936
|
+
class GoogleCloudDataplexV1DataDocumentationResultField
|
1937
|
+
include Google::Apis::Core::Hashable
|
1938
|
+
|
1939
|
+
# Output only. Generated description for columns and fields.
|
1940
|
+
# Corresponds to the JSON property `description`
|
1941
|
+
# @return [String]
|
1942
|
+
attr_accessor :description
|
1943
|
+
|
1944
|
+
# Output only. Nested fields.
|
1945
|
+
# Corresponds to the JSON property `fields`
|
1946
|
+
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultField>]
|
1947
|
+
attr_accessor :fields
|
1948
|
+
|
1949
|
+
# Output only. The name of the column.
|
1950
|
+
# Corresponds to the JSON property `name`
|
1951
|
+
# @return [String]
|
1952
|
+
attr_accessor :name
|
1953
|
+
|
1954
|
+
def initialize(**args)
|
1955
|
+
update!(**args)
|
1956
|
+
end
|
1957
|
+
|
1958
|
+
# Update properties of this object
|
1959
|
+
def update!(**args)
|
1960
|
+
@description = args[:description] if args.key?(:description)
|
1961
|
+
@fields = args[:fields] if args.key?(:fields)
|
1962
|
+
@name = args[:name] if args.key?(:name)
|
1963
|
+
end
|
1964
|
+
end
|
1965
|
+
|
1966
|
+
# A sample SQL query in data documentation.
|
1967
|
+
class GoogleCloudDataplexV1DataDocumentationResultQuery
|
1968
|
+
include Google::Apis::Core::Hashable
|
1969
|
+
|
1970
|
+
# Output only. The description for the query.
|
1971
|
+
# Corresponds to the JSON property `description`
|
1972
|
+
# @return [String]
|
1973
|
+
attr_accessor :description
|
1974
|
+
|
1975
|
+
# Output only. The SQL query string which can be executed.
|
1976
|
+
# Corresponds to the JSON property `sql`
|
1977
|
+
# @return [String]
|
1978
|
+
attr_accessor :sql
|
1979
|
+
|
1980
|
+
def initialize(**args)
|
1981
|
+
update!(**args)
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
# Update properties of this object
|
1985
|
+
def update!(**args)
|
1986
|
+
@description = args[:description] if args.key?(:description)
|
1987
|
+
@sql = args[:sql] if args.key?(:sql)
|
1988
|
+
end
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
# Schema of the table with generated metadata of columns.
|
1992
|
+
class GoogleCloudDataplexV1DataDocumentationResultSchema
|
1993
|
+
include Google::Apis::Core::Hashable
|
1994
|
+
|
1995
|
+
# Output only. The list of columns.
|
1996
|
+
# Corresponds to the JSON property `fields`
|
1997
|
+
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultField>]
|
1998
|
+
attr_accessor :fields
|
1999
|
+
|
2000
|
+
def initialize(**args)
|
2001
|
+
update!(**args)
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
# Update properties of this object
|
2005
|
+
def update!(**args)
|
2006
|
+
@fields = args[:fields] if args.key?(:fields)
|
2007
|
+
end
|
2008
|
+
end
|
2009
|
+
|
2010
|
+
# Generated metadata about the table.
|
2011
|
+
class GoogleCloudDataplexV1DataDocumentationResultTableResult
|
2012
|
+
include Google::Apis::Core::Hashable
|
2013
|
+
|
2014
|
+
# Output only. The service-qualified full resource name of the cloud resource.
|
2015
|
+
# Ex: bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/
|
2016
|
+
# TABLE_ID
|
2017
|
+
# Corresponds to the JSON property `name`
|
2018
|
+
# @return [String]
|
2019
|
+
attr_accessor :name
|
2020
|
+
|
2021
|
+
# Output only. Generated description of the table.
|
2022
|
+
# Corresponds to the JSON property `overview`
|
2023
|
+
# @return [String]
|
2024
|
+
attr_accessor :overview
|
2025
|
+
|
2026
|
+
# Output only. Sample SQL queries for the table.
|
2027
|
+
# Corresponds to the JSON property `queries`
|
2028
|
+
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery>]
|
2029
|
+
attr_accessor :queries
|
2030
|
+
|
2031
|
+
# Schema of the table with generated metadata of columns.
|
2032
|
+
# Corresponds to the JSON property `schema`
|
2033
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultSchema]
|
2034
|
+
attr_accessor :schema
|
2035
|
+
|
2036
|
+
def initialize(**args)
|
2037
|
+
update!(**args)
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
# Update properties of this object
|
2041
|
+
def update!(**args)
|
2042
|
+
@name = args[:name] if args.key?(:name)
|
2043
|
+
@overview = args[:overview] if args.key?(:overview)
|
2044
|
+
@queries = args[:queries] if args.key?(:queries)
|
2045
|
+
@schema = args[:schema] if args.key?(:schema)
|
2046
|
+
end
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
# DataDocumentation scan related spec.
|
2050
|
+
class GoogleCloudDataplexV1DataDocumentationSpec
|
2051
|
+
include Google::Apis::Core::Hashable
|
2052
|
+
|
2053
|
+
def initialize(**args)
|
2054
|
+
update!(**args)
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
# Update properties of this object
|
2058
|
+
def update!(**args)
|
2059
|
+
end
|
2060
|
+
end
|
2061
|
+
|
1916
2062
|
# DataProfileResult defines the output of DataProfileScan. Each field of the
|
1917
2063
|
# table will have field type specific profile result.
|
1918
2064
|
class GoogleCloudDataplexV1DataProfileResult
|
@@ -3367,7 +3513,11 @@ module Google
|
|
3367
3513
|
# data profiling (https://cloud.google.com/dataplex/docs/data-profiling-overview)
|
3368
3514
|
# . Data discovery: scans data in Cloud Storage buckets to extract and then
|
3369
3515
|
# catalog metadata. For more information, see Discover and catalog Cloud Storage
|
3370
|
-
# data (https://cloud.google.com/bigquery/docs/automatic-discovery).
|
3516
|
+
# data (https://cloud.google.com/bigquery/docs/automatic-discovery). Data
|
3517
|
+
# documentation: analyzes the table details and generates insights including
|
3518
|
+
# descriptions and sample SQL queries for the table. For more information, see
|
3519
|
+
# Generate data insights in BigQuery (https://cloud.google.com/bigquery/docs/
|
3520
|
+
# data-insights).
|
3371
3521
|
class GoogleCloudDataplexV1DataScan
|
3372
3522
|
include Google::Apis::Core::Hashable
|
3373
3523
|
|
@@ -3391,6 +3541,16 @@ module Google
|
|
3391
3541
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec]
|
3392
3542
|
attr_accessor :data_discovery_spec
|
3393
3543
|
|
3544
|
+
# The output of a DataDocumentation scan.
|
3545
|
+
# Corresponds to the JSON property `dataDocumentationResult`
|
3546
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult]
|
3547
|
+
attr_accessor :data_documentation_result
|
3548
|
+
|
3549
|
+
# DataDocumentation scan related spec.
|
3550
|
+
# Corresponds to the JSON property `dataDocumentationSpec`
|
3551
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationSpec]
|
3552
|
+
attr_accessor :data_documentation_spec
|
3553
|
+
|
3394
3554
|
# DataProfileResult defines the output of DataProfileScan. Each field of the
|
3395
3555
|
# table will have field type specific profile result.
|
3396
3556
|
# Corresponds to the JSON property `dataProfileResult`
|
@@ -3476,6 +3636,8 @@ module Google
|
|
3476
3636
|
@data = args[:data] if args.key?(:data)
|
3477
3637
|
@data_discovery_result = args[:data_discovery_result] if args.key?(:data_discovery_result)
|
3478
3638
|
@data_discovery_spec = args[:data_discovery_spec] if args.key?(:data_discovery_spec)
|
3639
|
+
@data_documentation_result = args[:data_documentation_result] if args.key?(:data_documentation_result)
|
3640
|
+
@data_documentation_spec = args[:data_documentation_spec] if args.key?(:data_documentation_spec)
|
3479
3641
|
@data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
|
3480
3642
|
@data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
|
3481
3643
|
@data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
|
@@ -3890,6 +4052,16 @@ module Google
|
|
3890
4052
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec]
|
3891
4053
|
attr_accessor :data_discovery_spec
|
3892
4054
|
|
4055
|
+
# The output of a DataDocumentation scan.
|
4056
|
+
# Corresponds to the JSON property `dataDocumentationResult`
|
4057
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult]
|
4058
|
+
attr_accessor :data_documentation_result
|
4059
|
+
|
4060
|
+
# DataDocumentation scan related spec.
|
4061
|
+
# Corresponds to the JSON property `dataDocumentationSpec`
|
4062
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationSpec]
|
4063
|
+
attr_accessor :data_documentation_spec
|
4064
|
+
|
3893
4065
|
# DataProfileResult defines the output of DataProfileScan. Each field of the
|
3894
4066
|
# table will have field type specific profile result.
|
3895
4067
|
# Corresponds to the JSON property `dataProfileResult`
|
@@ -3958,6 +4130,8 @@ module Google
|
|
3958
4130
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3959
4131
|
@data_discovery_result = args[:data_discovery_result] if args.key?(:data_discovery_result)
|
3960
4132
|
@data_discovery_spec = args[:data_discovery_spec] if args.key?(:data_discovery_spec)
|
4133
|
+
@data_documentation_result = args[:data_documentation_result] if args.key?(:data_documentation_result)
|
4134
|
+
@data_documentation_spec = args[:data_documentation_spec] if args.key?(:data_documentation_spec)
|
3961
4135
|
@data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
|
3962
4136
|
@data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
|
3963
4137
|
@data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
|
@@ -3988,8 +4162,8 @@ module Google
|
|
3988
4162
|
# a DataScan job to scan against. The field could either be: Cloud Storage
|
3989
4163
|
# bucket for DataDiscoveryScan Format: //storage.googleapis.com/projects/
|
3990
4164
|
# PROJECT_ID/buckets/BUCKET_ID or BigQuery table of type "TABLE" for
|
3991
|
-
# DataProfileScan/DataQualityScan Format: //bigquery.
|
3992
|
-
# PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
|
4165
|
+
# DataProfileScan/DataQualityScan/DataDocumentationScan Format: //bigquery.
|
4166
|
+
# googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID
|
3993
4167
|
# Corresponds to the JSON property `resource`
|
3994
4168
|
# @return [String]
|
3995
4169
|
attr_accessor :resource
|
@@ -7158,11 +7332,11 @@ module Google
|
|
7158
7332
|
# @return [Array<String>]
|
7159
7333
|
attr_accessor :aspect_types
|
7160
7334
|
|
7161
|
-
# Required. The entry
|
7162
|
-
# relative resource
|
7163
|
-
#
|
7164
|
-
# belong to the specified entry
|
7165
|
-
#
|
7335
|
+
# Required. The entry groups that are in scope for the import job, specified as
|
7336
|
+
# relative resource names in the format projects/`project_number_or_id`/
|
7337
|
+
# locations/`location_id`/entryGroups/`entry_group_id`. Only entries and aspects
|
7338
|
+
# that belong to the specified entry groups are affected by the job.The entry
|
7339
|
+
# groups and the job must be in the same location.
|
7166
7340
|
# Corresponds to the JSON property `entryGroups`
|
7167
7341
|
# @return [Array<String>]
|
7168
7342
|
attr_accessor :entry_groups
|
@@ -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.87.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 = "20250919"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -298,6 +298,42 @@ module Google
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
+
class GoogleCloudDataplexV1DataDocumentationResult
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
307
|
+
class GoogleCloudDataplexV1DataDocumentationResultField
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
313
|
+
class GoogleCloudDataplexV1DataDocumentationResultQuery
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
319
|
+
class GoogleCloudDataplexV1DataDocumentationResultSchema
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
325
|
+
class GoogleCloudDataplexV1DataDocumentationResultTableResult
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class GoogleCloudDataplexV1DataDocumentationSpec
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
301
337
|
class GoogleCloudDataplexV1DataProfileResult
|
302
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
339
|
|
@@ -1895,6 +1931,58 @@ module Google
|
|
1895
1931
|
end
|
1896
1932
|
end
|
1897
1933
|
|
1934
|
+
class GoogleCloudDataplexV1DataDocumentationResult
|
1935
|
+
# @private
|
1936
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1937
|
+
property :table_result, as: 'tableResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult::Representation
|
1938
|
+
|
1939
|
+
end
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
class GoogleCloudDataplexV1DataDocumentationResultField
|
1943
|
+
# @private
|
1944
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1945
|
+
property :description, as: 'description'
|
1946
|
+
collection :fields, as: 'fields', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultField, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultField::Representation
|
1947
|
+
|
1948
|
+
property :name, as: 'name'
|
1949
|
+
end
|
1950
|
+
end
|
1951
|
+
|
1952
|
+
class GoogleCloudDataplexV1DataDocumentationResultQuery
|
1953
|
+
# @private
|
1954
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1955
|
+
property :description, as: 'description'
|
1956
|
+
property :sql, as: 'sql'
|
1957
|
+
end
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
class GoogleCloudDataplexV1DataDocumentationResultSchema
|
1961
|
+
# @private
|
1962
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1963
|
+
collection :fields, as: 'fields', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultField, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultField::Representation
|
1964
|
+
|
1965
|
+
end
|
1966
|
+
end
|
1967
|
+
|
1968
|
+
class GoogleCloudDataplexV1DataDocumentationResultTableResult
|
1969
|
+
# @private
|
1970
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1971
|
+
property :name, as: 'name'
|
1972
|
+
property :overview, as: 'overview'
|
1973
|
+
collection :queries, as: 'queries', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery::Representation
|
1974
|
+
|
1975
|
+
property :schema, as: 'schema', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultSchema, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultSchema::Representation
|
1976
|
+
|
1977
|
+
end
|
1978
|
+
end
|
1979
|
+
|
1980
|
+
class GoogleCloudDataplexV1DataDocumentationSpec
|
1981
|
+
# @private
|
1982
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1983
|
+
end
|
1984
|
+
end
|
1985
|
+
|
1898
1986
|
class GoogleCloudDataplexV1DataProfileResult
|
1899
1987
|
# @private
|
1900
1988
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2313,6 +2401,10 @@ module Google
|
|
2313
2401
|
|
2314
2402
|
property :data_discovery_spec, as: 'dataDiscoverySpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec::Representation
|
2315
2403
|
|
2404
|
+
property :data_documentation_result, as: 'dataDocumentationResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult::Representation
|
2405
|
+
|
2406
|
+
property :data_documentation_spec, as: 'dataDocumentationSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationSpec::Representation
|
2407
|
+
|
2316
2408
|
property :data_profile_result, as: 'dataProfileResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult::Representation
|
2317
2409
|
|
2318
2410
|
property :data_profile_spec, as: 'dataProfileSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec::Representation
|
@@ -2450,6 +2542,10 @@ module Google
|
|
2450
2542
|
|
2451
2543
|
property :data_discovery_spec, as: 'dataDiscoverySpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec::Representation
|
2452
2544
|
|
2545
|
+
property :data_documentation_result, as: 'dataDocumentationResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult::Representation
|
2546
|
+
|
2547
|
+
property :data_documentation_spec, as: 'dataDocumentationSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationSpec::Representation
|
2548
|
+
|
2453
2549
|
property :data_profile_result, as: 'dataProfileResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult::Representation
|
2454
2550
|
|
2455
2551
|
property :data_profile_spec, as: 'dataProfileSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec::Representation
|
@@ -589,7 +589,11 @@ module Google
|
|
589
589
|
execute_or_queue_command(command, &block)
|
590
590
|
end
|
591
591
|
|
592
|
-
# Looks up an entry by name using the permission on the source system.
|
592
|
+
# Looks up an entry by name using the permission on the source system. Caution:
|
593
|
+
# The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc Metastore
|
594
|
+
# metadata that is stored in Dataplex Universal Catalog is changing. For more
|
595
|
+
# information, see Changes to metadata stored in Dataplex Universal Catalog (
|
596
|
+
# https://cloud.google.com/dataplex/docs/metadata-changes).
|
593
597
|
# @param [String] name
|
594
598
|
# Required. The project to which the request should be attributed in the
|
595
599
|
# following form: projects/`project`/locations/`location`.
|
@@ -3066,7 +3070,10 @@ module Google
|
|
3066
3070
|
execute_or_queue_command(command, &block)
|
3067
3071
|
end
|
3068
3072
|
|
3069
|
-
# Gets an Entry.
|
3073
|
+
# Gets an Entry. Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform,
|
3074
|
+
# and Dataproc Metastore metadata that is stored in Dataplex Universal Catalog
|
3075
|
+
# is changing. For more information, see Changes to metadata stored in Dataplex
|
3076
|
+
# Universal Catalog (https://cloud.google.com/dataplex/docs/metadata-changes).
|
3070
3077
|
# @param [String] name
|
3071
3078
|
# Required. The resource name of the Entry: projects/`project`/locations/`
|
3072
3079
|
# location`/entryGroups/`entry_group`/entries/`entry`.
|
@@ -3108,7 +3115,11 @@ module Google
|
|
3108
3115
|
execute_or_queue_command(command, &block)
|
3109
3116
|
end
|
3110
3117
|
|
3111
|
-
# Lists Entries within an EntryGroup.
|
3118
|
+
# Lists Entries within an EntryGroup. Caution: The Vertex AI, Bigtable, Spanner,
|
3119
|
+
# Pub/Sub, Dataform, and Dataproc Metastore metadata that is stored in Dataplex
|
3120
|
+
# Universal Catalog is changing. For more information, see Changes to metadata
|
3121
|
+
# stored in Dataplex Universal Catalog (https://cloud.google.com/dataplex/docs/
|
3122
|
+
# metadata-changes).
|
3112
3123
|
# @param [String] parent
|
3113
3124
|
# Required. The resource name of the parent Entry Group: projects/`project`/
|
3114
3125
|
# locations/`location`/entryGroups/`entry_group`.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.87.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-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.87.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:
|