google-apis-dataplex_v1 0.41.0 → 0.43.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: d7440adc7ca6ffa442a011bc944c183415c8b27efc85eec650fa65f3dca800a8
|
4
|
+
data.tar.gz: 90d7e181fedf2cb79b0bbc70c58e8dfba1b9a7a2498400565a52029a685826a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7284e98f9b75d545f3ab86eb39b0fbfa48d615ee32e616d7f15d45a978d1eaf7a3cdba73a42f5559c738ce50bae83923e614429e0bfbcd3e6e4e574c35854e1a
|
7
|
+
data.tar.gz: 388457e75b54559172ee821505e42498f69a76c779428346892753657f88ec1ab1275909ae4d0fedbe35ac114495b3b303b2a5c8fe913f14738d486ddc3c185d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.43.0 (2023-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231110
|
6
|
+
|
7
|
+
### v0.42.0 (2023-11-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231103
|
10
|
+
|
3
11
|
### v0.41.0 (2023-10-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231018
|
@@ -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
|
|
@@ -2642,6 +2693,13 @@ module Google
|
|
2642
2693
|
class GoogleCloudDataplexV1DataScanEventDataQualityResult
|
2643
2694
|
include Google::Apis::Core::Hashable
|
2644
2695
|
|
2696
|
+
# The score of each column scanned in the data scan job. The key of the map is
|
2697
|
+
# the name of the column. The value is the data quality score for the column.The
|
2698
|
+
# score ranges between 0, 100 (up to two decimal points).
|
2699
|
+
# Corresponds to the JSON property `columnScore`
|
2700
|
+
# @return [Hash<String,Float>]
|
2701
|
+
attr_accessor :column_score
|
2702
|
+
|
2645
2703
|
# The result of each dimension for data quality result. The key of the map is
|
2646
2704
|
# the name of the dimension. The value is the bool value depicting whether the
|
2647
2705
|
# dimension result was pass or not.
|
@@ -2649,6 +2707,13 @@ module Google
|
|
2649
2707
|
# @return [Hash<String,Boolean>]
|
2650
2708
|
attr_accessor :dimension_passed
|
2651
2709
|
|
2710
|
+
# The score of each dimension for data quality result. The key of the map is the
|
2711
|
+
# name of the dimension. The value is the data quality score for the dimension.
|
2712
|
+
# The score ranges between 0, 100 (up to two decimal points).
|
2713
|
+
# Corresponds to the JSON property `dimensionScore`
|
2714
|
+
# @return [Hash<String,Float>]
|
2715
|
+
attr_accessor :dimension_score
|
2716
|
+
|
2652
2717
|
# Whether the data quality result was pass or not.
|
2653
2718
|
# Corresponds to the JSON property `passed`
|
2654
2719
|
# @return [Boolean]
|
@@ -2660,15 +2725,24 @@ module Google
|
|
2660
2725
|
# @return [Fixnum]
|
2661
2726
|
attr_accessor :row_count
|
2662
2727
|
|
2728
|
+
# The table-level data quality score for the data scan job.The data quality
|
2729
|
+
# score ranges between 0, 100 (up to two decimal points).
|
2730
|
+
# Corresponds to the JSON property `score`
|
2731
|
+
# @return [Float]
|
2732
|
+
attr_accessor :score
|
2733
|
+
|
2663
2734
|
def initialize(**args)
|
2664
2735
|
update!(**args)
|
2665
2736
|
end
|
2666
2737
|
|
2667
2738
|
# Update properties of this object
|
2668
2739
|
def update!(**args)
|
2740
|
+
@column_score = args[:column_score] if args.key?(:column_score)
|
2669
2741
|
@dimension_passed = args[:dimension_passed] if args.key?(:dimension_passed)
|
2742
|
+
@dimension_score = args[:dimension_score] if args.key?(:dimension_score)
|
2670
2743
|
@passed = args[:passed] if args.key?(:passed)
|
2671
2744
|
@row_count = args[:row_count] if args.key?(:row_count)
|
2745
|
+
@score = args[:score] if args.key?(:score)
|
2672
2746
|
end
|
2673
2747
|
end
|
2674
2748
|
|
@@ -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.43.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 = "
|
25
|
+
REVISION = "20231110"
|
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
|
|
@@ -1726,9 +1744,12 @@ module Google
|
|
1726
1744
|
class GoogleCloudDataplexV1DataScanEventDataQualityResult
|
1727
1745
|
# @private
|
1728
1746
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1747
|
+
hash :column_score, as: 'columnScore'
|
1729
1748
|
hash :dimension_passed, as: 'dimensionPassed'
|
1749
|
+
hash :dimension_score, as: 'dimensionScore'
|
1730
1750
|
property :passed, as: 'passed'
|
1731
1751
|
property :row_count, :numeric_string => true, as: 'rowCount'
|
1752
|
+
property :score, as: 'score'
|
1732
1753
|
end
|
1733
1754
|
end
|
1734
1755
|
|
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.
|
4
|
+
version: 0.43.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
|
+
date: 2023-11-19 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.43.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: []
|