google-apis-dataplex_v1 0.86.0 → 0.88.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: 5e2fed232be1ee3bcc03161d23ecddb739d2e53663fd73a15264f61346173aff
4
- data.tar.gz: 04fd1a8bc4c23074906c39aa4cf03afbca93c4acde00d893d089a9bd827b288e
3
+ metadata.gz: b269fbaf9aca05fd58c7df0d1e9f3ad88ca6f12ce83853e70100fab31f5002f6
4
+ data.tar.gz: 434f7fe1979fc16f747652050ee1f9a8b4504cb2c8ae989af42394cbd167e789
5
5
  SHA512:
6
- metadata.gz: d4398320fa6485591f45fd9c58e3f88fcfb7c4ea5233efde05ade627cd40565b29ad2be3992e8727ae858cdf301a0b670d89bddbf578545d0b9c138170434516
7
- data.tar.gz: 6d57602b8334d31ac0dee3fb43fde332018123518b8b10fdb895b89f2a978d41dd2fa003892d0a5148d12a16ef7e0abb2b81c0911a5c8a47abc060541e6e7b30
6
+ metadata.gz: e05eddefb61002160659147dabaf5faeecb2a5f24d6133b07b8354f6714b536dc7745242e1b96c116b83f116bc1e186fb924baa01e88533d44408979df182786
7
+ data.tar.gz: b80c77bfed889430ea1fa87b3cbb090935b0e5498cdffdaba1231d381b4cb20d517789053fec1bb893230ff277ca975eb5fbffd2231a9d13dbeb10bc6ad4df66
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.88.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250924
6
+
7
+ ### v0.87.0 (2025-09-28)
8
+
9
+ * Regenerated from discovery document revision 20250919
10
+
3
11
  ### v0.86.0 (2025-09-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20250915
@@ -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.googleapis.com/projects/
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
@@ -4317,6 +4491,12 @@ module Google
4317
4491
  # @return [String]
4318
4492
  attr_accessor :create_time
4319
4493
 
4494
+ # Optional. Represent the state of CMEK opt-in for metastore.
4495
+ # Corresponds to the JSON property `enableMetastoreEncryption`
4496
+ # @return [Boolean]
4497
+ attr_accessor :enable_metastore_encryption
4498
+ alias_method :enable_metastore_encryption?, :enable_metastore_encryption
4499
+
4320
4500
  # Output only. The state of encryption of the databases.
4321
4501
  # Corresponds to the JSON property `encryptionState`
4322
4502
  # @return [String]
@@ -4358,6 +4538,7 @@ module Google
4358
4538
  # Update properties of this object
4359
4539
  def update!(**args)
4360
4540
  @create_time = args[:create_time] if args.key?(:create_time)
4541
+ @enable_metastore_encryption = args[:enable_metastore_encryption] if args.key?(:enable_metastore_encryption)
4361
4542
  @encryption_state = args[:encryption_state] if args.key?(:encryption_state)
4362
4543
  @etag = args[:etag] if args.key?(:etag)
4363
4544
  @failure_details = args[:failure_details] if args.key?(:failure_details)
@@ -9304,6 +9485,13 @@ module Google
9304
9485
  # @return [Array<Google::Apis::DataplexV1::GoogleLongrunningOperation>]
9305
9486
  attr_accessor :operations
9306
9487
 
9488
+ # Unordered list. Unreachable resources. Populated when the request sets
9489
+ # ListOperationsRequest.return_partial_success and reads across collections e.g.
9490
+ # when attempting to list all resources across all supported locations.
9491
+ # Corresponds to the JSON property `unreachable`
9492
+ # @return [Array<String>]
9493
+ attr_accessor :unreachable
9494
+
9307
9495
  def initialize(**args)
9308
9496
  update!(**args)
9309
9497
  end
@@ -9312,6 +9500,7 @@ module Google
9312
9500
  def update!(**args)
9313
9501
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
9314
9502
  @operations = args[:operations] if args.key?(:operations)
9503
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
9315
9504
  end
9316
9505
  end
9317
9506
 
@@ -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.86.0"
19
+ GEM_VERSION = "0.88.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 = "20250915"
25
+ REVISION = "20250924"
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
@@ -2560,6 +2656,7 @@ module Google
2560
2656
  # @private
2561
2657
  class Representation < Google::Apis::Core::JsonRepresentation
2562
2658
  property :create_time, as: 'createTime'
2659
+ property :enable_metastore_encryption, as: 'enableMetastoreEncryption'
2563
2660
  property :encryption_state, as: 'encryptionState'
2564
2661
  property :etag, as: 'etag'
2565
2662
  property :failure_details, as: 'failureDetails', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails::Representation
@@ -3840,6 +3937,7 @@ module Google
3840
3937
  property :next_page_token, as: 'nextPageToken'
3841
3938
  collection :operations, as: 'operations', class: Google::Apis::DataplexV1::GoogleLongrunningOperation, decorator: Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
3842
3939
 
3940
+ collection :unreachable, as: 'unreachable'
3843
3941
  end
3844
3942
  end
3845
3943
 
@@ -482,6 +482,13 @@ module Google
482
482
  # The standard list page size.
483
483
  # @param [String] page_token
484
484
  # The standard list page token.
485
+ # @param [Boolean] return_partial_success
486
+ # When set to true, operations that are reachable are returned as normal, and
487
+ # those that are unreachable are returned in the ListOperationsResponse.
488
+ # unreachable field.This can only be true when reading across collections e.g.
489
+ # when parent is set to "projects/example/locations/-".This field is not by
490
+ # default supported and will result in an UNIMPLEMENTED error if set unless
491
+ # explicitly documented otherwise in service or product specific documentation.
485
492
  # @param [String] fields
486
493
  # Selector specifying which fields to include in a partial response.
487
494
  # @param [String] quota_user
@@ -499,7 +506,7 @@ module Google
499
506
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
500
507
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
501
508
  # @raise [Google::Apis::AuthorizationError] Authorization is required
502
- def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
509
+ def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
503
510
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
504
511
  command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse::Representation
505
512
  command.response_class = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse
@@ -507,6 +514,7 @@ module Google
507
514
  command.query['filter'] = filter unless filter.nil?
508
515
  command.query['pageSize'] = page_size unless page_size.nil?
509
516
  command.query['pageToken'] = page_token unless page_token.nil?
517
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
510
518
  command.query['fields'] = fields unless fields.nil?
511
519
  command.query['quotaUser'] = quota_user unless quota_user.nil?
512
520
  execute_or_queue_command(command, &block)
@@ -1020,6 +1028,127 @@ module Google
1020
1028
  execute_or_queue_command(command, &block)
1021
1029
  end
1022
1030
 
1031
+ # Gets the access control policy for a resource. Returns an empty policy if the
1032
+ # resource exists and does not have a policy set.
1033
+ # @param [String] resource
1034
+ # REQUIRED: The resource for which the policy is being requested. See Resource
1035
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1036
+ # appropriate value for this field.
1037
+ # @param [Fixnum] options_requested_policy_version
1038
+ # Optional. The maximum policy version that will be used to format the policy.
1039
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
1040
+ # rejected.Requests for policies with any conditional role bindings must specify
1041
+ # version 3. Policies with no conditional role bindings may specify any valid
1042
+ # value or leave the field unset.The policy in the response might use the policy
1043
+ # version that you specified, or it might use a lower policy version. For
1044
+ # example, if you specify version 3, but the policy has no conditional role
1045
+ # bindings, the response uses version 1.To learn which resources support
1046
+ # conditions in their IAM policies, see the IAM documentation (https://cloud.
1047
+ # google.com/iam/help/conditions/resource-policies).
1048
+ # @param [String] fields
1049
+ # Selector specifying which fields to include in a partial response.
1050
+ # @param [String] quota_user
1051
+ # Available to use for quota purposes for server-side applications. Can be any
1052
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1053
+ # @param [Google::Apis::RequestOptions] options
1054
+ # Request-specific options
1055
+ #
1056
+ # @yield [result, err] Result & error if block supplied
1057
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleIamV1Policy] parsed result object
1058
+ # @yieldparam err [StandardError] error object if request failed
1059
+ #
1060
+ # @return [Google::Apis::DataplexV1::GoogleIamV1Policy]
1061
+ #
1062
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1063
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1064
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1065
+ def get_project_location_change_request_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
1066
+ command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
1067
+ command.response_representation = Google::Apis::DataplexV1::GoogleIamV1Policy::Representation
1068
+ command.response_class = Google::Apis::DataplexV1::GoogleIamV1Policy
1069
+ command.params['resource'] = resource unless resource.nil?
1070
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
1071
+ command.query['fields'] = fields unless fields.nil?
1072
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1073
+ execute_or_queue_command(command, &block)
1074
+ end
1075
+
1076
+ # Sets the access control policy on the specified resource. Replaces any
1077
+ # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
1078
+ # errors.
1079
+ # @param [String] resource
1080
+ # REQUIRED: The resource for which the policy is being specified. See Resource
1081
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1082
+ # appropriate value for this field.
1083
+ # @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
1084
+ # @param [String] fields
1085
+ # Selector specifying which fields to include in a partial response.
1086
+ # @param [String] quota_user
1087
+ # Available to use for quota purposes for server-side applications. Can be any
1088
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1089
+ # @param [Google::Apis::RequestOptions] options
1090
+ # Request-specific options
1091
+ #
1092
+ # @yield [result, err] Result & error if block supplied
1093
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleIamV1Policy] parsed result object
1094
+ # @yieldparam err [StandardError] error object if request failed
1095
+ #
1096
+ # @return [Google::Apis::DataplexV1::GoogleIamV1Policy]
1097
+ #
1098
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1099
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1100
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1101
+ def set_project_location_change_request_iam_policy(resource, google_iam_v1_set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1102
+ command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
1103
+ command.request_representation = Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest::Representation
1104
+ command.request_object = google_iam_v1_set_iam_policy_request_object
1105
+ command.response_representation = Google::Apis::DataplexV1::GoogleIamV1Policy::Representation
1106
+ command.response_class = Google::Apis::DataplexV1::GoogleIamV1Policy
1107
+ command.params['resource'] = resource unless resource.nil?
1108
+ command.query['fields'] = fields unless fields.nil?
1109
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1110
+ execute_or_queue_command(command, &block)
1111
+ end
1112
+
1113
+ # Returns permissions that a caller has on the specified resource. If the
1114
+ # resource does not exist, this will return an empty set of permissions, not a
1115
+ # NOT_FOUND error.Note: This operation is designed to be used for building
1116
+ # permission-aware UIs and command-line tools, not for authorization checking.
1117
+ # This operation may "fail open" without warning.
1118
+ # @param [String] resource
1119
+ # REQUIRED: The resource for which the policy detail is being requested. See
1120
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
1121
+ # appropriate value for this field.
1122
+ # @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
1123
+ # @param [String] fields
1124
+ # Selector specifying which fields to include in a partial response.
1125
+ # @param [String] quota_user
1126
+ # Available to use for quota purposes for server-side applications. Can be any
1127
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1128
+ # @param [Google::Apis::RequestOptions] options
1129
+ # Request-specific options
1130
+ #
1131
+ # @yield [result, err] Result & error if block supplied
1132
+ # @yieldparam result [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse] parsed result object
1133
+ # @yieldparam err [StandardError] error object if request failed
1134
+ #
1135
+ # @return [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse]
1136
+ #
1137
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1138
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1139
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1140
+ def test_project_location_change_request_iam_permissions(resource, google_iam_v1_test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1141
+ command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
1142
+ command.request_representation = Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest::Representation
1143
+ command.request_object = google_iam_v1_test_iam_permissions_request_object
1144
+ command.response_representation = Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse::Representation
1145
+ command.response_class = Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse
1146
+ command.params['resource'] = resource unless resource.nil?
1147
+ command.query['fields'] = fields unless fields.nil?
1148
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1149
+ execute_or_queue_command(command, &block)
1150
+ end
1151
+
1023
1152
  # Create a DataAttributeBinding resource.
1024
1153
  # @param [String] parent
1025
1154
  # Required. The resource name of the parent data taxonomy projects/`
@@ -8024,6 +8153,13 @@ module Google
8024
8153
  # The standard list page size.
8025
8154
  # @param [String] page_token
8026
8155
  # The standard list page token.
8156
+ # @param [Boolean] return_partial_success
8157
+ # When set to true, operations that are reachable are returned as normal, and
8158
+ # those that are unreachable are returned in the ListOperationsResponse.
8159
+ # unreachable field.This can only be true when reading across collections e.g.
8160
+ # when parent is set to "projects/example/locations/-".This field is not by
8161
+ # default supported and will result in an UNIMPLEMENTED error if set unless
8162
+ # explicitly documented otherwise in service or product specific documentation.
8027
8163
  # @param [String] fields
8028
8164
  # Selector specifying which fields to include in a partial response.
8029
8165
  # @param [String] quota_user
@@ -8041,7 +8177,7 @@ module Google
8041
8177
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8042
8178
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8043
8179
  # @raise [Google::Apis::AuthorizationError] Authorization is required
8044
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
8180
+ 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)
8045
8181
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
8046
8182
  command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse::Representation
8047
8183
  command.response_class = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse
@@ -8049,6 +8185,7 @@ module Google
8049
8185
  command.query['filter'] = filter unless filter.nil?
8050
8186
  command.query['pageSize'] = page_size unless page_size.nil?
8051
8187
  command.query['pageToken'] = page_token unless page_token.nil?
8188
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
8052
8189
  command.query['fields'] = fields unless fields.nil?
8053
8190
  command.query['quotaUser'] = quota_user unless quota_user.nil?
8054
8191
  execute_or_queue_command(command, &block)
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.86.0
4
+ version: 0.88.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.86.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.88.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: