google-apis-dataplex_v1 0.89.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: 8eef13d3836da5ec5396df8f949df752a13655a9307a6be8aabb3ed1ef973892
4
- data.tar.gz: 838ac8cbe60bff6d258aa1b58caa6b78147a3c4a02215b9d9d07932ff1704a7c
3
+ metadata.gz: 0b499558d1491179fff9c5f840f2cdc65d88f578f346eaff05576378ac295016
4
+ data.tar.gz: f15ba07a924fc5f84ed482c67cee9b3ce4c6df1b57629c377d5bb85e993e2c12
5
5
  SHA512:
6
- metadata.gz: e4dfba5deae2dd1bae3b145f79ef5cb0ecf1bc1f69bbfb8a79322de767b87157f0357e5def1a82c2d2a0e54ec8b9244bfbb7e1d14eefcf4c746b82447ff7eddf
7
- data.tar.gz: f93d09f9927feb317e977f56287657a6c178270c7791379d620a2c77db568005468bfb624d354f25c04d21ebc7811320e72115e2d754bc4a50d80b25fda093b7
6
+ metadata.gz: 3dc329c7bdbb5b6079ebd3a5f6bccbaf7f6e9561dc64d783f9f87eb30fc034931a00af4e2a8adb36ceabd13ef2ece5c6465bde9be20b7f19ae1fb1120c07ec70
7
+ data.tar.gz: 950e460f1a62e3d7a3577abe52590822e1c8c0033a66b2e6cacf3c0a02db6007bf7cca2fb78735fb870c7a19d80556eb5f75f320e735b0ed52b7b56e056b5f75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.89.0 (2025-10-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20251012
@@ -2652,6 +2652,11 @@ module Google
2652
2652
  class GoogleCloudDataplexV1DataQualityResult
2653
2653
  include Google::Apis::Core::Hashable
2654
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
+
2655
2660
  # The status of publishing the data scan result as Dataplex Universal Catalog
2656
2661
  # metadata.
2657
2662
  # Corresponds to the JSON property `catalogPublishingStatus`
@@ -2710,6 +2715,7 @@ module Google
2710
2715
 
2711
2716
  # Update properties of this object
2712
2717
  def update!(**args)
2718
+ @anomaly_detection_generated_assets = args[:anomaly_detection_generated_assets] if args.key?(:anomaly_detection_generated_assets)
2713
2719
  @catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
2714
2720
  @columns = args[:columns] if args.key?(:columns)
2715
2721
  @dimensions = args[:dimensions] if args.key?(:dimensions)
@@ -2722,6 +2728,49 @@ module Google
2722
2728
  end
2723
2729
  end
2724
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
+
2725
2774
  # The result of post scan actions of DataQualityScan job.
2726
2775
  class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
2727
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.89.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 = "20251012"
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
 
@@ -2155,6 +2161,8 @@ module Google
2155
2161
  class GoogleCloudDataplexV1DataQualityResult
2156
2162
  # @private
2157
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
+
2158
2166
  property :catalog_publishing_status, as: 'catalogPublishingStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus::Representation
2159
2167
 
2160
2168
  collection :columns, as: 'columns', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult::Representation
@@ -2173,6 +2181,16 @@ module Google
2173
2181
  end
2174
2182
  end
2175
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
+
2176
2194
  class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
2177
2195
  # @private
2178
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. 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.
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.89.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.89.0
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: