Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157026,6 +157026,7 @@
"/dataplex:v1/GoogleCloudDataplexV1DataQualityDimensionResult/passed": passed
"/dataplex:v1/GoogleCloudDataplexV1DataQualityDimensionResult/score": score
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult": google_cloud_dataplex_v1_data_quality_result
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/anomalyDetectionGeneratedAssets": anomaly_detection_generated_assets
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/catalogPublishingStatus": catalog_publishing_status
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/columns": columns
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/columns/column": column
Expand All @@ -157038,6 +157039,11 @@
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/rules/rule": rule
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/scannedData": scanned_data
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResult/score": score
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets": google_cloud_dataplex_v1_data_quality_result_anomaly_detection_generated_assets
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/dataIntermediateTable": data_intermediate_table
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/freshnessIntermediateTable": freshness_intermediate_table
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/resultTable": result_table
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets/volumeIntermediateTable": volume_intermediate_table
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultPostScanActionsResult": google_cloud_dataplex_v1_data_quality_result_post_scan_actions_result
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultPostScanActionsResult/bigqueryExportResult": bigquery_export_result
"/dataplex:v1/GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult": google_cloud_dataplex_v1_data_quality_result_post_scan_actions_result_big_query_export_result
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-dataplex_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-dataplex_v1

### v0.90.0 (2025-11-02)

* Regenerated from discovery document revision 20251027

### v0.89.0 (2025-10-19)

* Regenerated from discovery document revision 20251012
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2652,6 +2652,11 @@ def update!(**args)
class GoogleCloudDataplexV1DataQualityResult
include Google::Apis::Core::Hashable

# The assets generated by Anomaly Detection Data Scan.
# Corresponds to the JSON property `anomalyDetectionGeneratedAssets`
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets]
attr_accessor :anomaly_detection_generated_assets

# The status of publishing the data scan result as Dataplex Universal Catalog
# metadata.
# Corresponds to the JSON property `catalogPublishingStatus`
Expand Down Expand Up @@ -2710,6 +2715,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@anomaly_detection_generated_assets = args[:anomaly_detection_generated_assets] if args.key?(:anomaly_detection_generated_assets)
@catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
@columns = args[:columns] if args.key?(:columns)
@dimensions = args[:dimensions] if args.key?(:dimensions)
Expand All @@ -2722,6 +2728,49 @@ def update!(**args)
end
end

# The assets generated by Anomaly Detection Data Scan.
class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
include Google::Apis::Core::Hashable

# Output only. The intermediate table for data anomaly detection. Format:
# PROJECT_ID.DATASET_ID.TABLE_ID
# Corresponds to the JSON property `dataIntermediateTable`
# @return [String]
attr_accessor :data_intermediate_table

# Output only. The intermediate table for freshness anomaly detection. Format:
# PROJECT_ID.DATASET_ID.TABLE_ID
# Corresponds to the JSON property `freshnessIntermediateTable`
# @return [String]
attr_accessor :freshness_intermediate_table

# Output only. The result table for anomaly detection. Format: PROJECT_ID.
# DATASET_ID.TABLE_ID If the result table is set at AnomalyDetectionAssets, the
# result table here would be the same as the one set in the
# AnomalyDetectionAssets.result_table.
# Corresponds to the JSON property `resultTable`
# @return [String]
attr_accessor :result_table

# Output only. The intermediate table for volume anomaly detection. Format:
# PROJECT_ID.DATASET_ID.TABLE_ID
# Corresponds to the JSON property `volumeIntermediateTable`
# @return [String]
attr_accessor :volume_intermediate_table

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@data_intermediate_table = args[:data_intermediate_table] if args.key?(:data_intermediate_table)
@freshness_intermediate_table = args[:freshness_intermediate_table] if args.key?(:freshness_intermediate_table)
@result_table = args[:result_table] if args.key?(:result_table)
@volume_intermediate_table = args[:volume_intermediate_table] if args.key?(:volume_intermediate_table)
end
end

# The result of post scan actions of DataQualityScan job.
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
include Google::Apis::Core::Hashable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DataplexV1
# Version of the google-apis-dataplex_v1 gem
GEM_VERSION = "0.89.0"
GEM_VERSION = "0.90.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251012"
REVISION = "20251027"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -2155,6 +2161,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
class GoogleCloudDataplexV1DataQualityResult
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :anomaly_detection_generated_assets, as: 'anomalyDetectionGeneratedAssets', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets::Representation

property :catalog_publishing_status, as: 'catalogPublishingStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus::Representation

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

class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :data_intermediate_table, as: 'dataIntermediateTable'
property :freshness_intermediate_table, as: 'freshnessIntermediateTable'
property :result_table, as: 'resultTable'
property :volume_intermediate_table, as: 'volumeIntermediateTable'
end
end

class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
# @param [String] name
# The resource that owns the locations collection, if applicable.
# @param [Array<String>, String] extra_location_types
# Optional. Unless explicitly documented otherwise, don't use this unsupported
# field which is primarily intended for internal usage.
# Optional. Do not use this field. It is unsupported and is ignored unless
# explicitly documented otherwise. This is primarily for internal usage.
# @param [String] filter
# A filter to narrow down results to a preferred subset. The filtering language
# accepts strings like "displayName=tokyo", and is documented in more detail in
Expand Down