google-apis-dataplex_v1 0.88.0 → 0.90.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: 0b499558d1491179fff9c5f840f2cdc65d88f578f346eaff05576378ac295016
|
|
4
|
+
data.tar.gz: f15ba07a924fc5f84ed482c67cee9b3ce4c6df1b57629c377d5bb85e993e2c12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3dc329c7bdbb5b6079ebd3a5f6bccbaf7f6e9561dc64d783f9f87eb30fc034931a00af4e2a8adb36ceabd13ef2ece5c6465bde9be20b7f19ae1fb1120c07ec70
|
|
7
|
+
data.tar.gz: 950e460f1a62e3d7a3577abe52590822e1c8c0033a66b2e6cacf3c0a02db6007bf7cca2fb78735fb870c7a19d80556eb5f75f320e735b0ed52b7b56e056b5f75
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
|
2
2
|
|
|
3
|
+
### v0.90.0 (2025-11-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251027
|
|
6
|
+
|
|
7
|
+
### v0.89.0 (2025-10-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251012
|
|
10
|
+
|
|
3
11
|
### v0.88.0 (2025-10-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250924
|
|
@@ -431,6 +431,11 @@ module Google
|
|
|
431
431
|
# @return [String]
|
|
432
432
|
attr_accessor :create_time
|
|
433
433
|
|
|
434
|
+
# Optional. Immutable. Stores data classification of the aspect.
|
|
435
|
+
# Corresponds to the JSON property `dataClassification`
|
|
436
|
+
# @return [String]
|
|
437
|
+
attr_accessor :data_classification
|
|
438
|
+
|
|
434
439
|
# Optional. Description of the AspectType.
|
|
435
440
|
# Corresponds to the JSON property `description`
|
|
436
441
|
# @return [String]
|
|
@@ -489,6 +494,7 @@ module Google
|
|
|
489
494
|
def update!(**args)
|
|
490
495
|
@authorization = args[:authorization] if args.key?(:authorization)
|
|
491
496
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
497
|
+
@data_classification = args[:data_classification] if args.key?(:data_classification)
|
|
492
498
|
@description = args[:description] if args.key?(:description)
|
|
493
499
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
494
500
|
@etag = args[:etag] if args.key?(:etag)
|
|
@@ -2646,6 +2652,11 @@ module Google
|
|
|
2646
2652
|
class GoogleCloudDataplexV1DataQualityResult
|
|
2647
2653
|
include Google::Apis::Core::Hashable
|
|
2648
2654
|
|
|
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
|
+
|
|
2649
2660
|
# The status of publishing the data scan result as Dataplex Universal Catalog
|
|
2650
2661
|
# metadata.
|
|
2651
2662
|
# Corresponds to the JSON property `catalogPublishingStatus`
|
|
@@ -2704,6 +2715,7 @@ module Google
|
|
|
2704
2715
|
|
|
2705
2716
|
# Update properties of this object
|
|
2706
2717
|
def update!(**args)
|
|
2718
|
+
@anomaly_detection_generated_assets = args[:anomaly_detection_generated_assets] if args.key?(:anomaly_detection_generated_assets)
|
|
2707
2719
|
@catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
|
|
2708
2720
|
@columns = args[:columns] if args.key?(:columns)
|
|
2709
2721
|
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
|
@@ -2716,6 +2728,49 @@ module Google
|
|
|
2716
2728
|
end
|
|
2717
2729
|
end
|
|
2718
2730
|
|
|
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
|
+
|
|
2719
2774
|
# The result of post scan actions of DataQualityScan job.
|
|
2720
2775
|
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
|
|
2721
2776
|
include Google::Apis::Core::Hashable
|
|
@@ -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.90.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 = "20251027"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -442,6 +442,12 @@ module Google
|
|
|
442
442
|
include Google::Apis::Core::JsonObjectSupport
|
|
443
443
|
end
|
|
444
444
|
|
|
445
|
+
class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets
|
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
|
+
|
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
449
|
+
end
|
|
450
|
+
|
|
445
451
|
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
|
|
446
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
453
|
|
|
@@ -1554,6 +1560,7 @@ module Google
|
|
|
1554
1560
|
property :authorization, as: 'authorization', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AspectTypeAuthorization, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1AspectTypeAuthorization::Representation
|
|
1555
1561
|
|
|
1556
1562
|
property :create_time, as: 'createTime'
|
|
1563
|
+
property :data_classification, as: 'dataClassification'
|
|
1557
1564
|
property :description, as: 'description'
|
|
1558
1565
|
property :display_name, as: 'displayName'
|
|
1559
1566
|
property :etag, as: 'etag'
|
|
@@ -2154,6 +2161,8 @@ module Google
|
|
|
2154
2161
|
class GoogleCloudDataplexV1DataQualityResult
|
|
2155
2162
|
# @private
|
|
2156
2163
|
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
|
+
|
|
2157
2166
|
property :catalog_publishing_status, as: 'catalogPublishingStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus::Representation
|
|
2158
2167
|
|
|
2159
2168
|
collection :columns, as: 'columns', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult::Representation
|
|
@@ -2172,6 +2181,16 @@ module Google
|
|
|
2172
2181
|
end
|
|
2173
2182
|
end
|
|
2174
2183
|
|
|
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
|
+
|
|
2175
2194
|
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
|
|
2176
2195
|
# @private
|
|
2177
2196
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -554,8 +554,8 @@ module Google
|
|
|
554
554
|
# @param [String] name
|
|
555
555
|
# The resource that owns the locations collection, if applicable.
|
|
556
556
|
# @param [Array<String>, String] extra_location_types
|
|
557
|
-
# Optional.
|
|
558
|
-
#
|
|
557
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
558
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
559
559
|
# @param [String] filter
|
|
560
560
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
561
561
|
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
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.90.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.90.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:
|