google-apis-dataplex_v1 0.40.0 → 0.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d06452bfda868eb31dada1b4607a047b4517de1daf041b9b00252e3e1f16dcf4
4
- data.tar.gz: '085df8dd314bb179dd3ca4977f6032ef65e83ff4bc618e808662301a4b28b795'
3
+ metadata.gz: 45df14e96f10bf74e9b2604332dc84292f4187a48b373e38ec8a74ed2d888539
4
+ data.tar.gz: f73fc7e45baf44865d3cde06ae504ad7bda59dcd78246cc2771a9b1a5a8fd0bc
5
5
  SHA512:
6
- metadata.gz: 6e75baf3fa147226083e608e1308389c4dc32a0f4b2083507e8683e5cf665629bc1b00480a2767d9c3073a5e13522ea3976ed9537c46819e10a0fbcd7e0303e3
7
- data.tar.gz: 8a7d27b6e239d9a62410653073da09ccfe63923703e5020a63d4fe08993c9051d666f734d6cbe1fac3db8a560b3180557cab14950d618be74780095d39383daf
6
+ metadata.gz: 71daf31cf7ea1ef81b9dff6f8ce4549ae17e2b6f469c539cc6ccd088545090d41cc7cbbd7ba87cee0819f76ea3d0e9ff2f082d600cd01b85753f944c0fa829d0
7
+ data.tar.gz: acdf057c6b44cec1fee1e7a44ef0cd1666fca72de811759b809a01e92dd4ea2abb90c797de069eec6320bf01a955bd3c7c6ddfb3265da8912212469f65e8370a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.41.0 (2023-10-29)
8
+
9
+ * Regenerated from discovery document revision 20231018
10
+
3
11
  ### v0.40.0 (2023-10-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20231007
@@ -1689,7 +1689,9 @@ module Google
1689
1689
  class GoogleCloudDataplexV1DataQualityResult
1690
1690
  include Google::Apis::Core::Hashable
1691
1691
 
1692
- # A list of results at the dimension level.
1692
+ # A list of results at the dimension level.A dimension will have a corresponding
1693
+ # DataQualityDimensionResult if and only if there is at least one rule with the '
1694
+ # dimension' field set to it.
1693
1695
  # Corresponds to the JSON property `dimensions`
1694
1696
  # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>]
1695
1697
  attr_accessor :dimensions
@@ -2640,6 +2642,13 @@ module Google
2640
2642
  class GoogleCloudDataplexV1DataScanEventDataQualityResult
2641
2643
  include Google::Apis::Core::Hashable
2642
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
+
2643
2652
  # The result of each dimension for data quality result. The key of the map is
2644
2653
  # the name of the dimension. The value is the bool value depicting whether the
2645
2654
  # dimension result was pass or not.
@@ -2647,6 +2656,13 @@ module Google
2647
2656
  # @return [Hash<String,Boolean>]
2648
2657
  attr_accessor :dimension_passed
2649
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
+
2650
2666
  # Whether the data quality result was pass or not.
2651
2667
  # Corresponds to the JSON property `passed`
2652
2668
  # @return [Boolean]
@@ -2658,15 +2674,24 @@ module Google
2658
2674
  # @return [Fixnum]
2659
2675
  attr_accessor :row_count
2660
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
+
2661
2683
  def initialize(**args)
2662
2684
  update!(**args)
2663
2685
  end
2664
2686
 
2665
2687
  # Update properties of this object
2666
2688
  def update!(**args)
2689
+ @column_score = args[:column_score] if args.key?(:column_score)
2667
2690
  @dimension_passed = args[:dimension_passed] if args.key?(:dimension_passed)
2691
+ @dimension_score = args[:dimension_score] if args.key?(:dimension_score)
2668
2692
  @passed = args[:passed] if args.key?(:passed)
2669
2693
  @row_count = args[:row_count] if args.key?(:row_count)
2694
+ @score = args[:score] if args.key?(:score)
2670
2695
  end
2671
2696
  end
2672
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.40.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 = "20231007"
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.40.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-15 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.40.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: []