google-apis-dataplex_v1 0.41.0 → 0.42.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: 48e928f5e8d615cf4fc38e2f2a71c385173e2652411f3ca4c51d5730814d35b5
4
- data.tar.gz: 4f4140be71ca20d8f66693a869288b386777abebfcdb5431355e8091e1023127
3
+ metadata.gz: 45df14e96f10bf74e9b2604332dc84292f4187a48b373e38ec8a74ed2d888539
4
+ data.tar.gz: f73fc7e45baf44865d3cde06ae504ad7bda59dcd78246cc2771a9b1a5a8fd0bc
5
5
  SHA512:
6
- metadata.gz: 781017cebe6857b093fed8f9f86eabf0787958adf774da242d696857d4d0ab46f39340cf486e1b8bf48274ff6c617300f3c3d2bd56934f45112ffbc8ce842261
7
- data.tar.gz: 23e2fb172f2364ef2251535056bf9bc11e6d2df763aaa5849c3bcb9f7895c2bc3bb2aa0c0a6fbccf60ec3df78f5ee6e4cd999e8bb04933b64c281235500df74d
6
+ metadata.gz: 71daf31cf7ea1ef81b9dff6f8ce4549ae17e2b6f469c539cc6ccd088545090d41cc7cbbd7ba87cee0819f76ea3d0e9ff2f082d600cd01b85753f944c0fa829d0
7
+ data.tar.gz: acdf057c6b44cec1fee1e7a44ef0cd1666fca72de811759b809a01e92dd4ea2abb90c797de069eec6320bf01a955bd3c7c6ddfb3265da8912212469f65e8370a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.42.0 (2023-11-12)
4
+
5
+ * Regenerated from discovery document revision 20231103
6
+
3
7
  ### v0.41.0 (2023-10-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20231018
@@ -2642,6 +2642,13 @@ module Google
2642
2642
  class GoogleCloudDataplexV1DataScanEventDataQualityResult
2643
2643
  include Google::Apis::Core::Hashable
2644
2644
 
2645
+ # The score of each column scanned in the data scan job. The key of the map is
2646
+ # the name of the column. The value is the data quality score for the column.The
2647
+ # score ranges between 0, 100 (up to two decimal points).
2648
+ # Corresponds to the JSON property `columnScore`
2649
+ # @return [Hash<String,Float>]
2650
+ attr_accessor :column_score
2651
+
2645
2652
  # The result of each dimension for data quality result. The key of the map is
2646
2653
  # the name of the dimension. The value is the bool value depicting whether the
2647
2654
  # dimension result was pass or not.
@@ -2649,6 +2656,13 @@ module Google
2649
2656
  # @return [Hash<String,Boolean>]
2650
2657
  attr_accessor :dimension_passed
2651
2658
 
2659
+ # The score of each dimension for data quality result. The key of the map is the
2660
+ # name of the dimension. The value is the data quality score for the dimension.
2661
+ # The score ranges between 0, 100 (up to two decimal points).
2662
+ # Corresponds to the JSON property `dimensionScore`
2663
+ # @return [Hash<String,Float>]
2664
+ attr_accessor :dimension_score
2665
+
2652
2666
  # Whether the data quality result was pass or not.
2653
2667
  # Corresponds to the JSON property `passed`
2654
2668
  # @return [Boolean]
@@ -2660,15 +2674,24 @@ module Google
2660
2674
  # @return [Fixnum]
2661
2675
  attr_accessor :row_count
2662
2676
 
2677
+ # The table-level data quality score for the data scan job.The data quality
2678
+ # score ranges between 0, 100 (up to two decimal points).
2679
+ # Corresponds to the JSON property `score`
2680
+ # @return [Float]
2681
+ attr_accessor :score
2682
+
2663
2683
  def initialize(**args)
2664
2684
  update!(**args)
2665
2685
  end
2666
2686
 
2667
2687
  # Update properties of this object
2668
2688
  def update!(**args)
2689
+ @column_score = args[:column_score] if args.key?(:column_score)
2669
2690
  @dimension_passed = args[:dimension_passed] if args.key?(:dimension_passed)
2691
+ @dimension_score = args[:dimension_score] if args.key?(:dimension_score)
2670
2692
  @passed = args[:passed] if args.key?(:passed)
2671
2693
  @row_count = args[:row_count] if args.key?(:row_count)
2694
+ @score = args[:score] if args.key?(:score)
2672
2695
  end
2673
2696
  end
2674
2697
 
@@ -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.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231018"
25
+ REVISION = "20231103"
26
26
  end
27
27
  end
28
28
  end
@@ -1726,9 +1726,12 @@ module Google
1726
1726
  class GoogleCloudDataplexV1DataScanEventDataQualityResult
1727
1727
  # @private
1728
1728
  class Representation < Google::Apis::Core::JsonRepresentation
1729
+ hash :column_score, as: 'columnScore'
1729
1730
  hash :dimension_passed, as: 'dimensionPassed'
1731
+ hash :dimension_score, as: 'dimensionScore'
1730
1732
  property :passed, as: 'passed'
1731
1733
  property :row_count, :numeric_string => true, as: 'rowCount'
1734
+ property :score, as: 'score'
1732
1735
  end
1733
1736
  end
1734
1737
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-29 00:00:00.000000000 Z
11
+ date: 2023-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
63
63
  post_install_message:
64
64
  rdoc_options: []