google-apis-dataplex_v1 0.33.0 → 0.34.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: de0e4c8747451a556e931d7d1cfe53b633283d577ee2094a76e3a9ce1e71e0bb
|
4
|
+
data.tar.gz: 8f7c2a682716a7a068351f2205f291737ea2eb8d6b53a6476c9a23d8fd9ada8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c89a2ec2d45d896dfc3a291cc19f0c904142f87e87db68a96d9a6a52be9437ff9398010520cd808cd35b2143fa473f08ba6791a05492de716e456ecd1536538
|
7
|
+
data.tar.gz: 7736ed5248fd793bac3c9b24bbb35713dc42a4b09273ca002be8024db24cff9bd18b7b08f40d5cde2d5100b2769305a8bcda2828429b83ea4e0ddd65e7a4cd38
|
data/CHANGELOG.md
CHANGED
@@ -1981,6 +1981,94 @@ module Google
|
|
1981
1981
|
end
|
1982
1982
|
end
|
1983
1983
|
|
1984
|
+
# Information about the result of a data quality rule for data quality scan. The
|
1985
|
+
# monitored resource is 'DataScan'.
|
1986
|
+
class GoogleCloudDataplexV1DataQualityScanRuleResult
|
1987
|
+
include Google::Apis::Core::Hashable
|
1988
|
+
|
1989
|
+
# The column which this rule is evaluated against.
|
1990
|
+
# Corresponds to the JSON property `column`
|
1991
|
+
# @return [String]
|
1992
|
+
attr_accessor :column
|
1993
|
+
|
1994
|
+
# The data source of the data scan (e.g. BigQuery table name).
|
1995
|
+
# Corresponds to the JSON property `dataSource`
|
1996
|
+
# @return [String]
|
1997
|
+
attr_accessor :data_source
|
1998
|
+
|
1999
|
+
# The number of rows evaluated against the data quality rule. This field is only
|
2000
|
+
# valid for rules of PER_ROW evaluation type.
|
2001
|
+
# Corresponds to the JSON property `evaluatedRowCount`
|
2002
|
+
# @return [Fixnum]
|
2003
|
+
attr_accessor :evaluated_row_count
|
2004
|
+
|
2005
|
+
# The evaluation type of the data quality rule.
|
2006
|
+
# Corresponds to the JSON property `evalutionType`
|
2007
|
+
# @return [String]
|
2008
|
+
attr_accessor :evalution_type
|
2009
|
+
|
2010
|
+
# Identifier of the specific data scan job this log entry is for.
|
2011
|
+
# Corresponds to the JSON property `jobId`
|
2012
|
+
# @return [String]
|
2013
|
+
attr_accessor :job_id
|
2014
|
+
|
2015
|
+
# The number of rows with null values in the specified column.
|
2016
|
+
# Corresponds to the JSON property `nullRowCount`
|
2017
|
+
# @return [Fixnum]
|
2018
|
+
attr_accessor :null_row_count
|
2019
|
+
|
2020
|
+
# The number of rows which passed a rule evaluation. This field is only valid
|
2021
|
+
# for rules of PER_ROW evaluation type.
|
2022
|
+
# Corresponds to the JSON property `passedRowCount`
|
2023
|
+
# @return [Fixnum]
|
2024
|
+
attr_accessor :passed_row_count
|
2025
|
+
|
2026
|
+
# The result of the data quality rule.
|
2027
|
+
# Corresponds to the JSON property `result`
|
2028
|
+
# @return [String]
|
2029
|
+
attr_accessor :result
|
2030
|
+
|
2031
|
+
# The dimension of the data quality rule.
|
2032
|
+
# Corresponds to the JSON property `ruleDimension`
|
2033
|
+
# @return [String]
|
2034
|
+
attr_accessor :rule_dimension
|
2035
|
+
|
2036
|
+
# The name of the data quality rule.
|
2037
|
+
# Corresponds to the JSON property `ruleName`
|
2038
|
+
# @return [String]
|
2039
|
+
attr_accessor :rule_name
|
2040
|
+
|
2041
|
+
# The type of the data quality rule.
|
2042
|
+
# Corresponds to the JSON property `ruleType`
|
2043
|
+
# @return [String]
|
2044
|
+
attr_accessor :rule_type
|
2045
|
+
|
2046
|
+
# The passing threshold (0.0, 100.0) of the data quality rule.
|
2047
|
+
# Corresponds to the JSON property `thresholdPercent`
|
2048
|
+
# @return [Float]
|
2049
|
+
attr_accessor :threshold_percent
|
2050
|
+
|
2051
|
+
def initialize(**args)
|
2052
|
+
update!(**args)
|
2053
|
+
end
|
2054
|
+
|
2055
|
+
# Update properties of this object
|
2056
|
+
def update!(**args)
|
2057
|
+
@column = args[:column] if args.key?(:column)
|
2058
|
+
@data_source = args[:data_source] if args.key?(:data_source)
|
2059
|
+
@evaluated_row_count = args[:evaluated_row_count] if args.key?(:evaluated_row_count)
|
2060
|
+
@evalution_type = args[:evalution_type] if args.key?(:evalution_type)
|
2061
|
+
@job_id = args[:job_id] if args.key?(:job_id)
|
2062
|
+
@null_row_count = args[:null_row_count] if args.key?(:null_row_count)
|
2063
|
+
@passed_row_count = args[:passed_row_count] if args.key?(:passed_row_count)
|
2064
|
+
@result = args[:result] if args.key?(:result)
|
2065
|
+
@rule_dimension = args[:rule_dimension] if args.key?(:rule_dimension)
|
2066
|
+
@rule_name = args[:rule_name] if args.key?(:rule_name)
|
2067
|
+
@rule_type = args[:rule_type] if args.key?(:rule_type)
|
2068
|
+
@threshold_percent = args[:threshold_percent] if args.key?(:threshold_percent)
|
2069
|
+
end
|
2070
|
+
end
|
2071
|
+
|
1984
2072
|
# DataQualityScan related setting.
|
1985
2073
|
class GoogleCloudDataplexV1DataQualitySpec
|
1986
2074
|
include Google::Apis::Core::Hashable
|
@@ -3007,7 +3095,7 @@ module Google
|
|
3007
3095
|
end
|
3008
3096
|
|
3009
3097
|
# Environment represents a user-visible compute infrastructure for analytics
|
3010
|
-
# within a lake.
|
3098
|
+
# within a lake.
|
3011
3099
|
class GoogleCloudDataplexV1Environment
|
3012
3100
|
include Google::Apis::Core::Hashable
|
3013
3101
|
|
@@ -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.34.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 = "20230628"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -322,6 +322,12 @@ module Google
|
|
322
322
|
include Google::Apis::Core::JsonObjectSupport
|
323
323
|
end
|
324
324
|
|
325
|
+
class GoogleCloudDataplexV1DataQualityScanRuleResult
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
325
331
|
class GoogleCloudDataplexV1DataQualitySpec
|
326
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
333
|
|
@@ -1464,6 +1470,24 @@ module Google
|
|
1464
1470
|
end
|
1465
1471
|
end
|
1466
1472
|
|
1473
|
+
class GoogleCloudDataplexV1DataQualityScanRuleResult
|
1474
|
+
# @private
|
1475
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1476
|
+
property :column, as: 'column'
|
1477
|
+
property :data_source, as: 'dataSource'
|
1478
|
+
property :evaluated_row_count, :numeric_string => true, as: 'evaluatedRowCount'
|
1479
|
+
property :evalution_type, as: 'evalutionType'
|
1480
|
+
property :job_id, as: 'jobId'
|
1481
|
+
property :null_row_count, :numeric_string => true, as: 'nullRowCount'
|
1482
|
+
property :passed_row_count, :numeric_string => true, as: 'passedRowCount'
|
1483
|
+
property :result, as: 'result'
|
1484
|
+
property :rule_dimension, as: 'ruleDimension'
|
1485
|
+
property :rule_name, as: 'ruleName'
|
1486
|
+
property :rule_type, as: 'ruleType'
|
1487
|
+
property :threshold_percent, as: 'thresholdPercent'
|
1488
|
+
end
|
1489
|
+
end
|
1490
|
+
|
1467
1491
|
class GoogleCloudDataplexV1DataQualitySpec
|
1468
1492
|
# @private
|
1469
1493
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.34.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-07-
|
11
|
+
date: 2023-07-09 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.34.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: []
|