Skip to content

Commit d445279

Browse files
feat: Automated regeneration of dataplex v1 client
1 parent e7452c8 commit d445279

File tree

6 files changed

+81
-4
lines changed

6 files changed

+81
-4
lines changed

api_names_out.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157026,6 +157026,7 @@
157026157026
"/dataplex:v1/GoogleCloudDataplexV1DataQualityDimensionResult/passed": passed
157027157027
"/dataplex:v1/GoogleCloudDataplexV1DataQualityDimensionResult/score": score
157028157028
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult": google_cloud_dataplex_v1_data_quality_result
157029+
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/anomalyDetectionGeneratedAssets": anomaly_detection_generated_assets
157029157030
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/catalogPublishingStatus": catalog_publishing_status
157030157031
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/columns": columns
157031157032
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/columns/column": column
@@ -157038,6 +157039,11 @@
157038157039
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/rules/rule": rule
157039157040
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/scannedData": scanned_data
157040157041
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/score": score
157042+
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets": google_cloud_dataplex_v1_data_quality_result_anomaly_detection_generated_assets
157043+
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/dataIntermediateTable": data_intermediate_table
157044+
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/freshnessIntermediateTable": freshness_intermediate_table
157045+
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/resultTable": result_table
157046+
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/volumeIntermediateTable": volume_intermediate_table
157041157047
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultPostScanActionsResult": google_cloud_dataplex_v1_data_quality_result_post_scan_actions_result
157042157048
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultPostScanActionsResult/bigqueryExportResult": bigquery_export_result
157043157049
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult": google_cloud_dataplex_v1_data_quality_result_post_scan_actions_result_big_query_export_result

generated/google-apis-dataplex_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dataplex_v1
22

3+
### v0.90.0 (2025-11-02)
4+
5+
* Regenerated from discovery document revision 20251027
6+
37
### v0.89.0 (2025-10-19)
48

59
* Regenerated from discovery document revision 20251012

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/classes.rb

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2652,6 +2652,11 @@ def update!(**args)
26522652
class GoogleCloudDataplexV1DataQualityResult
26532653
include Google::Apis::Core::Hashable
26542654

2655+
# The assets generated by Anomaly Detection Data Scan.
2656+
# Corresponds to the JSON property `anomalyDetectionGeneratedAssets`
2657+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets]
2658+
attr_accessor :anomaly_detection_generated_assets
2659+
26552660
# The status of publishing the data scan result as Dataplex Universal Catalog
26562661
# metadata.
26572662
# Corresponds to the JSON property `catalogPublishingStatus`
@@ -2710,6 +2715,7 @@ def initialize(**args)
27102715

27112716
# Update properties of this object
27122717
def update!(**args)
2718+
@anomaly_detection_generated_assets = args[:anomaly_detection_generated_assets] if args.key?(:anomaly_detection_generated_assets)
27132719
@catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
27142720
@columns = args[:columns] if args.key?(:columns)
27152721
@dimensions = args[:dimensions] if args.key?(:dimensions)
@@ -2722,6 +2728,49 @@ def update!(**args)
27222728
end
27232729
end
27242730

2731+
# The assets generated by Anomaly Detection Data Scan.
2732+
class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
2733+
include Google::Apis::Core::Hashable
2734+
2735+
# Output only. The intermediate table for data anomaly detection. Format:
2736+
# PROJECT_ID.DATASET_ID.TABLE_ID
2737+
# Corresponds to the JSON property `dataIntermediateTable`
2738+
# @return [String]
2739+
attr_accessor :data_intermediate_table
2740+
2741+
# Output only. The intermediate table for freshness anomaly detection. Format:
2742+
# PROJECT_ID.DATASET_ID.TABLE_ID
2743+
# Corresponds to the JSON property `freshnessIntermediateTable`
2744+
# @return [String]
2745+
attr_accessor :freshness_intermediate_table
2746+
2747+
# Output only. The result table for anomaly detection. Format: PROJECT_ID.
2748+
# DATASET_ID.TABLE_ID If the result table is set at AnomalyDetectionAssets, the
2749+
# result table here would be the same as the one set in the
2750+
# AnomalyDetectionAssets.result_table.
2751+
# Corresponds to the JSON property `resultTable`
2752+
# @return [String]
2753+
attr_accessor :result_table
2754+
2755+
# Output only. The intermediate table for volume anomaly detection. Format:
2756+
# PROJECT_ID.DATASET_ID.TABLE_ID
2757+
# Corresponds to the JSON property `volumeIntermediateTable`
2758+
# @return [String]
2759+
attr_accessor :volume_intermediate_table
2760+
2761+
def initialize(**args)
2762+
update!(**args)
2763+
end
2764+
2765+
# Update properties of this object
2766+
def update!(**args)
2767+
@data_intermediate_table = args[:data_intermediate_table] if args.key?(:data_intermediate_table)
2768+
@freshness_intermediate_table = args[:freshness_intermediate_table] if args.key?(:freshness_intermediate_table)
2769+
@result_table = args[:result_table] if args.key?(:result_table)
2770+
@volume_intermediate_table = args[:volume_intermediate_table] if args.key?(:volume_intermediate_table)
2771+
end
2772+
end
2773+
27252774
# The result of post scan actions of DataQualityScan job.
27262775
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
27272776
include Google::Apis::Core::Hashable

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DataplexV1
1818
# Version of the google-apis-dataplex_v1 gem
19-
GEM_VERSION = "0.89.0"
19+
GEM_VERSION = "0.90.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20251012"
25+
REVISION = "20251027"
2626
end
2727
end
2828
end

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/representations.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
442442
include Google::Apis::Core::JsonObjectSupport
443443
end
444444

445+
class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
446+
class Representation < Google::Apis::Core::JsonRepresentation; end
447+
448+
include Google::Apis::Core::JsonObjectSupport
449+
end
450+
445451
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
446452
class Representation < Google::Apis::Core::JsonRepresentation; end
447453

@@ -2155,6 +2161,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
21552161
class GoogleCloudDataplexV1DataQualityResult
21562162
# @private
21572163
class Representation < Google::Apis::Core::JsonRepresentation
2164+
property :anomaly_detection_generated_assets, as: 'anomalyDetectionGeneratedAssets', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets::Representation
2165+
21582166
property :catalog_publishing_status, as: 'catalogPublishingStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus::Representation
21592167

21602168
collection :columns, as: 'columns', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult::Representation
@@ -2173,6 +2181,16 @@ class Representation < Google::Apis::Core::JsonRepresentation
21732181
end
21742182
end
21752183

2184+
class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
2185+
# @private
2186+
class Representation < Google::Apis::Core::JsonRepresentation
2187+
property :data_intermediate_table, as: 'dataIntermediateTable'
2188+
property :freshness_intermediate_table, as: 'freshnessIntermediateTable'
2189+
property :result_table, as: 'resultTable'
2190+
property :volume_intermediate_table, as: 'volumeIntermediateTable'
2191+
end
2192+
end
2193+
21762194
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
21772195
# @private
21782196
class Representation < Google::Apis::Core::JsonRepresentation

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/service.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -554,8 +554,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
554554
# @param [String] name
555555
# The resource that owns the locations collection, if applicable.
556556
# @param [Array<String>, String] extra_location_types
557-
# Optional. Unless explicitly documented otherwise, don't use this unsupported
558-
# field which is primarily intended for internal usage.
557+
# Optional. Do not use this field. It is unsupported and is ignored unless
558+
# explicitly documented otherwise. This is primarily for internal usage.
559559
# @param [String] filter
560560
# A filter to narrow down results to a preferred subset. The filtering language
561561
# accepts strings like "displayName=tokyo", and is documented in more detail in

0 commit comments

Comments
 (0)