google-apis-dataplex_v1 0.32.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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.34.0 (2023-07-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230628
|
6
|
+
|
7
|
+
### v0.33.0 (2023-07-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230626
|
10
|
+
|
3
11
|
### v0.32.0 (2023-06-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230616
|
@@ -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
|
@@ -2181,6 +2269,11 @@ module Google
|
|
2181
2269
|
# @return [String]
|
2182
2270
|
attr_accessor :message
|
2183
2271
|
|
2272
|
+
# Post scan actions result for data scan job.
|
2273
|
+
# Corresponds to the JSON property `postScanActionsResult`
|
2274
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventPostScanActionsResult]
|
2275
|
+
attr_accessor :post_scan_actions_result
|
2276
|
+
|
2184
2277
|
# The scope of the data scan (e.g. full, incremental).
|
2185
2278
|
# Corresponds to the JSON property `scope`
|
2186
2279
|
# @return [String]
|
@@ -2225,6 +2318,7 @@ module Google
|
|
2225
2318
|
@end_time = args[:end_time] if args.key?(:end_time)
|
2226
2319
|
@job_id = args[:job_id] if args.key?(:job_id)
|
2227
2320
|
@message = args[:message] if args.key?(:message)
|
2321
|
+
@post_scan_actions_result = args[:post_scan_actions_result] if args.key?(:post_scan_actions_result)
|
2228
2322
|
@scope = args[:scope] if args.key?(:scope)
|
2229
2323
|
@spec_version = args[:spec_version] if args.key?(:spec_version)
|
2230
2324
|
@start_time = args[:start_time] if args.key?(:start_time)
|
@@ -2350,6 +2444,50 @@ module Google
|
|
2350
2444
|
end
|
2351
2445
|
end
|
2352
2446
|
|
2447
|
+
# Post scan actions result for data scan job.
|
2448
|
+
class GoogleCloudDataplexV1DataScanEventPostScanActionsResult
|
2449
|
+
include Google::Apis::Core::Hashable
|
2450
|
+
|
2451
|
+
# The result of BigQuery export post scan action.
|
2452
|
+
# Corresponds to the JSON property `bigqueryExportResult`
|
2453
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventPostScanActionsResultBigQueryExportResult]
|
2454
|
+
attr_accessor :bigquery_export_result
|
2455
|
+
|
2456
|
+
def initialize(**args)
|
2457
|
+
update!(**args)
|
2458
|
+
end
|
2459
|
+
|
2460
|
+
# Update properties of this object
|
2461
|
+
def update!(**args)
|
2462
|
+
@bigquery_export_result = args[:bigquery_export_result] if args.key?(:bigquery_export_result)
|
2463
|
+
end
|
2464
|
+
end
|
2465
|
+
|
2466
|
+
# The result of BigQuery export post scan action.
|
2467
|
+
class GoogleCloudDataplexV1DataScanEventPostScanActionsResultBigQueryExportResult
|
2468
|
+
include Google::Apis::Core::Hashable
|
2469
|
+
|
2470
|
+
# Additional information about the BigQuery exporting.
|
2471
|
+
# Corresponds to the JSON property `message`
|
2472
|
+
# @return [String]
|
2473
|
+
attr_accessor :message
|
2474
|
+
|
2475
|
+
# Execution state for the BigQuery exporting.
|
2476
|
+
# Corresponds to the JSON property `state`
|
2477
|
+
# @return [String]
|
2478
|
+
attr_accessor :state
|
2479
|
+
|
2480
|
+
def initialize(**args)
|
2481
|
+
update!(**args)
|
2482
|
+
end
|
2483
|
+
|
2484
|
+
# Update properties of this object
|
2485
|
+
def update!(**args)
|
2486
|
+
@message = args[:message] if args.key?(:message)
|
2487
|
+
@state = args[:state] if args.key?(:state)
|
2488
|
+
end
|
2489
|
+
end
|
2490
|
+
|
2353
2491
|
# DataScan execution settings.
|
2354
2492
|
class GoogleCloudDataplexV1DataScanExecutionSpec
|
2355
2493
|
include Google::Apis::Core::Hashable
|
@@ -2957,7 +3095,7 @@ module Google
|
|
2957
3095
|
end
|
2958
3096
|
|
2959
3097
|
# Environment represents a user-visible compute infrastructure for analytics
|
2960
|
-
# within a lake.
|
3098
|
+
# within a lake.
|
2961
3099
|
class GoogleCloudDataplexV1Environment
|
2962
3100
|
include Google::Apis::Core::Hashable
|
2963
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
|
|
@@ -364,6 +370,18 @@ module Google
|
|
364
370
|
include Google::Apis::Core::JsonObjectSupport
|
365
371
|
end
|
366
372
|
|
373
|
+
class GoogleCloudDataplexV1DataScanEventPostScanActionsResult
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
379
|
+
class GoogleCloudDataplexV1DataScanEventPostScanActionsResultBigQueryExportResult
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
367
385
|
class GoogleCloudDataplexV1DataScanExecutionSpec
|
368
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
387
|
|
@@ -1452,6 +1470,24 @@ module Google
|
|
1452
1470
|
end
|
1453
1471
|
end
|
1454
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
|
+
|
1455
1491
|
class GoogleCloudDataplexV1DataQualitySpec
|
1456
1492
|
# @private
|
1457
1493
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1506,6 +1542,8 @@ module Google
|
|
1506
1542
|
property :end_time, as: 'endTime'
|
1507
1543
|
property :job_id, as: 'jobId'
|
1508
1544
|
property :message, as: 'message'
|
1545
|
+
property :post_scan_actions_result, as: 'postScanActionsResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventPostScanActionsResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventPostScanActionsResult::Representation
|
1546
|
+
|
1509
1547
|
property :scope, as: 'scope'
|
1510
1548
|
property :spec_version, as: 'specVersion'
|
1511
1549
|
property :start_time, as: 'startTime'
|
@@ -1548,6 +1586,22 @@ module Google
|
|
1548
1586
|
end
|
1549
1587
|
end
|
1550
1588
|
|
1589
|
+
class GoogleCloudDataplexV1DataScanEventPostScanActionsResult
|
1590
|
+
# @private
|
1591
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1592
|
+
property :bigquery_export_result, as: 'bigqueryExportResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventPostScanActionsResultBigQueryExportResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventPostScanActionsResultBigQueryExportResult::Representation
|
1593
|
+
|
1594
|
+
end
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
class GoogleCloudDataplexV1DataScanEventPostScanActionsResultBigQueryExportResult
|
1598
|
+
# @private
|
1599
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1600
|
+
property :message, as: 'message'
|
1601
|
+
property :state, as: 'state'
|
1602
|
+
end
|
1603
|
+
end
|
1604
|
+
|
1551
1605
|
class GoogleCloudDataplexV1DataScanExecutionSpec
|
1552
1606
|
# @private
|
1553
1607
|
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-
|
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: []
|