google-apis-dataplex_v1 0.42.0 → 0.44.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: 45df14e96f10bf74e9b2604332dc84292f4187a48b373e38ec8a74ed2d888539
4
- data.tar.gz: f73fc7e45baf44865d3cde06ae504ad7bda59dcd78246cc2771a9b1a5a8fd0bc
3
+ metadata.gz: be4bfddaa7254b7e670f7e233a4f5e5d81a054674a073a27eb06f0eb53f28467
4
+ data.tar.gz: 1f0303defc01ff7e0628383963960eb6be6912d89398e8d523489b665cd853fa
5
5
  SHA512:
6
- metadata.gz: 71daf31cf7ea1ef81b9dff6f8ce4549ae17e2b6f469c539cc6ccd088545090d41cc7cbbd7ba87cee0819f76ea3d0e9ff2f082d600cd01b85753f944c0fa829d0
7
- data.tar.gz: acdf057c6b44cec1fee1e7a44ef0cd1666fca72de811759b809a01e92dd4ea2abb90c797de069eec6320bf01a955bd3c7c6ddfb3265da8912212469f65e8370a
6
+ metadata.gz: 3159c7a3a4161f8dfa789a17aad7e5bd31ddef2de09054052bf422d94120417e09ce9dce4a35d87da29a6bfa8ef10436e5402001c909deaac82e11551c16ea5d
7
+ data.tar.gz: a9fe1ba488ffa973b7f3f5105bb025e1e0d1c2cab7fdd3d2be926846b711911cd68fc300de90217cec0f4bd57ca11a1d14315d8622ba7e3f90f5da2469132944
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.44.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231208
6
+
7
+ ### v0.43.0 (2023-11-19)
8
+
9
+ * Regenerated from discovery document revision 20231110
10
+
3
11
  ### v0.42.0 (2023-11-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20231103
@@ -1636,6 +1636,34 @@ module Google
1636
1636
  end
1637
1637
  end
1638
1638
 
1639
+ # DataQualityColumnResult provides a more detailed, per-column view of the
1640
+ # results.
1641
+ class GoogleCloudDataplexV1DataQualityColumnResult
1642
+ include Google::Apis::Core::Hashable
1643
+
1644
+ # Output only. The column specified in the DataQualityRule.
1645
+ # Corresponds to the JSON property `column`
1646
+ # @return [String]
1647
+ attr_accessor :column
1648
+
1649
+ # Output only. The column-level data quality score for this data scan job if and
1650
+ # only if the 'column' field is set.The score ranges between between 0, 100 (up
1651
+ # to two decimal points).
1652
+ # Corresponds to the JSON property `score`
1653
+ # @return [Float]
1654
+ attr_accessor :score
1655
+
1656
+ def initialize(**args)
1657
+ update!(**args)
1658
+ end
1659
+
1660
+ # Update properties of this object
1661
+ def update!(**args)
1662
+ @column = args[:column] if args.key?(:column)
1663
+ @score = args[:score] if args.key?(:score)
1664
+ end
1665
+ end
1666
+
1639
1667
  # A dimension captures data quality intent about a defined subset of the rules
1640
1668
  # specified.
1641
1669
  class GoogleCloudDataplexV1DataQualityDimension
@@ -1674,6 +1702,13 @@ module Google
1674
1702
  attr_accessor :passed
1675
1703
  alias_method :passed?, :passed
1676
1704
 
1705
+ # Output only. The dimension-level data quality score for this data scan job if
1706
+ # and only if the 'dimension' field is set.The score ranges between 0, 100 (up
1707
+ # to two decimal points).
1708
+ # Corresponds to the JSON property `score`
1709
+ # @return [Float]
1710
+ attr_accessor :score
1711
+
1677
1712
  def initialize(**args)
1678
1713
  update!(**args)
1679
1714
  end
@@ -1682,6 +1717,7 @@ module Google
1682
1717
  def update!(**args)
1683
1718
  @dimension = args[:dimension] if args.key?(:dimension)
1684
1719
  @passed = args[:passed] if args.key?(:passed)
1720
+ @score = args[:score] if args.key?(:score)
1685
1721
  end
1686
1722
  end
1687
1723
 
@@ -1689,6 +1725,13 @@ module Google
1689
1725
  class GoogleCloudDataplexV1DataQualityResult
1690
1726
  include Google::Apis::Core::Hashable
1691
1727
 
1728
+ # Output only. A list of results at the column level.A column will have a
1729
+ # corresponding DataQualityColumnResult if and only if there is at least one
1730
+ # rule with the 'column' field set to it.
1731
+ # Corresponds to the JSON property `columns`
1732
+ # @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult>]
1733
+ attr_accessor :columns
1734
+
1692
1735
  # A list of results at the dimension level.A dimension will have a corresponding
1693
1736
  # DataQualityDimensionResult if and only if there is at least one rule with the '
1694
1737
  # dimension' field set to it.
@@ -1722,18 +1765,26 @@ module Google
1722
1765
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData]
1723
1766
  attr_accessor :scanned_data
1724
1767
 
1768
+ # Output only. The overall data quality score.The score ranges between 0, 100 (
1769
+ # up to two decimal points).
1770
+ # Corresponds to the JSON property `score`
1771
+ # @return [Float]
1772
+ attr_accessor :score
1773
+
1725
1774
  def initialize(**args)
1726
1775
  update!(**args)
1727
1776
  end
1728
1777
 
1729
1778
  # Update properties of this object
1730
1779
  def update!(**args)
1780
+ @columns = args[:columns] if args.key?(:columns)
1731
1781
  @dimensions = args[:dimensions] if args.key?(:dimensions)
1732
1782
  @passed = args[:passed] if args.key?(:passed)
1733
1783
  @post_scan_actions_result = args[:post_scan_actions_result] if args.key?(:post_scan_actions_result)
1734
1784
  @row_count = args[:row_count] if args.key?(:row_count)
1735
1785
  @rules = args[:rules] if args.key?(:rules)
1736
1786
  @scanned_data = args[:scanned_data] if args.key?(:scanned_data)
1787
+ @score = args[:score] if args.key?(:score)
1737
1788
  end
1738
1789
  end
1739
1790
 
@@ -1804,7 +1855,8 @@ module Google
1804
1855
 
1805
1856
  # Optional. Rows with null values will automatically fail a rule, unless
1806
1857
  # ignore_null is true. In that case, such null rows are trivially considered
1807
- # passing.This field is only valid for row-level type rules.
1858
+ # passing.This field is only valid for the following type of rules:
1859
+ # RangeExpectation RegexExpectation SetExpectation UniquenessExpectation
1808
1860
  # Corresponds to the JSON property `ignoreNull`
1809
1861
  # @return [Boolean]
1810
1862
  attr_accessor :ignore_null
@@ -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.42.0"
19
+ GEM_VERSION = "0.44.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 = "20231103"
25
+ REVISION = "20231208"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class GoogleCloudDataplexV1DataQualityColumnResult
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class GoogleCloudDataplexV1DataQualityDimension
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -1447,6 +1453,14 @@ module Google
1447
1453
  end
1448
1454
  end
1449
1455
 
1456
+ class GoogleCloudDataplexV1DataQualityColumnResult
1457
+ # @private
1458
+ class Representation < Google::Apis::Core::JsonRepresentation
1459
+ property :column, as: 'column'
1460
+ property :score, as: 'score'
1461
+ end
1462
+ end
1463
+
1450
1464
  class GoogleCloudDataplexV1DataQualityDimension
1451
1465
  # @private
1452
1466
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1460,12 +1474,15 @@ module Google
1460
1474
  property :dimension, as: 'dimension', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension::Representation
1461
1475
 
1462
1476
  property :passed, as: 'passed'
1477
+ property :score, as: 'score'
1463
1478
  end
1464
1479
  end
1465
1480
 
1466
1481
  class GoogleCloudDataplexV1DataQualityResult
1467
1482
  # @private
1468
1483
  class Representation < Google::Apis::Core::JsonRepresentation
1484
+ collection :columns, as: 'columns', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult::Representation
1485
+
1469
1486
  collection :dimensions, as: 'dimensions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult::Representation
1470
1487
 
1471
1488
  property :passed, as: 'passed'
@@ -1476,6 +1493,7 @@ module Google
1476
1493
 
1477
1494
  property :scanned_data, as: 'scannedData', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData::Representation
1478
1495
 
1496
+ property :score, as: 'score'
1479
1497
  end
1480
1498
  end
1481
1499
 
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.42.0
4
+ version: 0.44.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-11-12 00:00:00.000000000 Z
11
+ date: 2023-12-17 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.44.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: []