google-apis-dataplex_v1 0.33.0 → 0.35.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: 583ae4ecfa854d7e92a88772679dfa0341bf7b43b68821b338359dd06d343bfc
4
- data.tar.gz: 8f53c9e5ea3f0ef6678c7afbb9e5ac3759445405d11140e2cd49b3d8ae1a085a
3
+ metadata.gz: 92675f0cc533e901d54d842e435c160daf3b9ad59675d7bd03d550c7e5430241
4
+ data.tar.gz: eb22d1e2491698d7cf9e69e2645cba03c336c35915831b7f6f5aec6f4cb85846
5
5
  SHA512:
6
- metadata.gz: 044f93ad6948daedbce8ac173d611dd6e5e0b81ae716b1a40b6c241283df4972e2f37ae00825b99da47fbe7fca2d7afca19e3b4acdf27a3aa5693fe693242970
7
- data.tar.gz: 59bb0ef7d0b845563a215ba9030b54875fc7863545e41113878fa0015a1e36a634e3a1b43bce5f9fa898f86f8047a0db422ed0bb567cfc08cfa3035fda61ed6e
6
+ metadata.gz: f1c1ec500c29c4da239bb2116b7f2331dfbb47889d12a1ca9ec44f9d32a399c9708bd936937ee7caaad4cefda43785a447618bc5a200e5abc4a4241d88994077
7
+ data.tar.gz: c7b601468068d71682fb6c399880ec2e847cbe896363a7b533326a682ac9762723470aca884632800221eca858945ef823bd0c187c5bc1b38203fa7a59d01683
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.35.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230712
6
+
7
+ ### v0.34.0 (2023-07-09)
8
+
9
+ * Regenerated from discovery document revision 20230628
10
+
3
11
  ### v0.33.0 (2023-07-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230626
@@ -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
@@ -2137,10 +2225,15 @@ module Google
2137
2225
  end
2138
2226
 
2139
2227
  # These messages contain information about the execution of a datascan. The
2140
- # monitored resource is 'DataScan'
2228
+ # monitored resource is 'DataScan' Next ID: 13
2141
2229
  class GoogleCloudDataplexV1DataScanEvent
2142
2230
  include Google::Apis::Core::Hashable
2143
2231
 
2232
+ # The time when the data scan job was created.
2233
+ # Corresponds to the JSON property `createTime`
2234
+ # @return [String]
2235
+ attr_accessor :create_time
2236
+
2144
2237
  # Data profile result for data scan job.
2145
2238
  # Corresponds to the JSON property `dataProfile`
2146
2239
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult]
@@ -2222,6 +2315,7 @@ module Google
2222
2315
 
2223
2316
  # Update properties of this object
2224
2317
  def update!(**args)
2318
+ @create_time = args[:create_time] if args.key?(:create_time)
2225
2319
  @data_profile = args[:data_profile] if args.key?(:data_profile)
2226
2320
  @data_profile_configs = args[:data_profile_configs] if args.key?(:data_profile_configs)
2227
2321
  @data_quality = args[:data_quality] if args.key?(:data_quality)
@@ -3007,7 +3101,7 @@ module Google
3007
3101
  end
3008
3102
 
3009
3103
  # Environment represents a user-visible compute infrastructure for analytics
3010
- # within a lake. LINT.IfChange
3104
+ # within a lake.
3011
3105
  class GoogleCloudDataplexV1Environment
3012
3106
  include Google::Apis::Core::Hashable
3013
3107
 
@@ -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.33.0"
19
+ GEM_VERSION = "0.35.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 = "20230626"
25
+ REVISION = "20230712"
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
@@ -1506,6 +1530,7 @@ module Google
1506
1530
  class GoogleCloudDataplexV1DataScanEvent
1507
1531
  # @private
1508
1532
  class Representation < Google::Apis::Core::JsonRepresentation
1533
+ property :create_time, as: 'createTime'
1509
1534
  property :data_profile, as: 'dataProfile', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult::Representation
1510
1535
 
1511
1536
  property :data_profile_configs, as: 'dataProfileConfigs', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs::Representation
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.33.0
4
+ version: 0.35.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-02 00:00:00.000000000 Z
11
+ date: 2023-07-23 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.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.35.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: []