google-apis-dataplex_v1 0.70.0 → 0.71.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: 53074dc780f6e875649d00426535f64b0a5e6e8a4363164b25751e10c3ae1436
|
4
|
+
data.tar.gz: 8d72a12eeb7185e80a2e003214a99ef9975e9efca5ee4a4dab108ebf795c1559
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9121fd38351b9b0c4d2f665978241182c84f6c1c27a1fd6ec195424e8e545e384fcc30e9cfec2ca3f09419f539b5b076fad2eea500f573c310ba07660ea5a72
|
7
|
+
data.tar.gz: be76652d2d13de5a684c6856f892af251768a86afd4916ff54d6eabe6da5809f82257717e1e17c78675e6bd603e8350cb981a84e8469aed814173133c98139c5
|
data/CHANGELOG.md
CHANGED
@@ -2338,8 +2338,8 @@ module Google
|
|
2338
2338
|
class GoogleCloudDataplexV1DataQualityDimension
|
2339
2339
|
include Google::Apis::Core::Hashable
|
2340
2340
|
|
2341
|
-
# The dimension name a rule belongs to.
|
2342
|
-
#
|
2341
|
+
# Optional. The dimension name a rule belongs to. Custom dimension name is
|
2342
|
+
# supported with all uppercase letters and maximum length of 30 characters.
|
2343
2343
|
# Corresponds to the JSON property `name`
|
2344
2344
|
# @return [String]
|
2345
2345
|
attr_accessor :name
|
@@ -2365,7 +2365,7 @@ module Google
|
|
2365
2365
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension]
|
2366
2366
|
attr_accessor :dimension
|
2367
2367
|
|
2368
|
-
# Whether the dimension passed or failed.
|
2368
|
+
# Output only. Whether the dimension passed or failed.
|
2369
2369
|
# Corresponds to the JSON property `passed`
|
2370
2370
|
# @return [Boolean]
|
2371
2371
|
attr_accessor :passed
|
@@ -2401,14 +2401,14 @@ module Google
|
|
2401
2401
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult>]
|
2402
2402
|
attr_accessor :columns
|
2403
2403
|
|
2404
|
-
# A list of results at the dimension level.A dimension will have a
|
2405
|
-
# DataQualityDimensionResult if and only if there is at least one
|
2406
|
-
# dimension' field set to it.
|
2404
|
+
# Output only. A list of results at the dimension level.A dimension will have a
|
2405
|
+
# corresponding DataQualityDimensionResult if and only if there is at least one
|
2406
|
+
# rule with the 'dimension' field set to it.
|
2407
2407
|
# Corresponds to the JSON property `dimensions`
|
2408
2408
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>]
|
2409
2409
|
attr_accessor :dimensions
|
2410
2410
|
|
2411
|
-
# Overall data quality result -- true if all rules passed.
|
2411
|
+
# Output only. Overall data quality result -- true if all rules passed.
|
2412
2412
|
# Corresponds to the JSON property `passed`
|
2413
2413
|
# @return [Boolean]
|
2414
2414
|
attr_accessor :passed
|
@@ -2419,12 +2419,12 @@ module Google
|
|
2419
2419
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResult]
|
2420
2420
|
attr_accessor :post_scan_actions_result
|
2421
2421
|
|
2422
|
-
# The count of rows processed.
|
2422
|
+
# Output only. The count of rows processed.
|
2423
2423
|
# Corresponds to the JSON property `rowCount`
|
2424
2424
|
# @return [Fixnum]
|
2425
2425
|
attr_accessor :row_count
|
2426
2426
|
|
2427
|
-
# A list of all the rules in a job, and their results.
|
2427
|
+
# Output only. A list of all the rules in a job, and their results.
|
2428
2428
|
# Corresponds to the JSON property `rules`
|
2429
2429
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult>]
|
2430
2430
|
attr_accessor :rules
|
@@ -2724,39 +2724,41 @@ module Google
|
|
2724
2724
|
# @return [Fixnum]
|
2725
2725
|
attr_accessor :assertion_row_count
|
2726
2726
|
|
2727
|
-
# The number of rows a rule was evaluated against.This field is
|
2728
|
-
# row-level type rules.Evaluated count can be configured to
|
2729
|
-
# rows (default) - with null rows automatically failing rule
|
2730
|
-
# exclude null rows from the evaluated_count, by setting
|
2731
|
-
# This field is not set for rule SqlAssertion.
|
2727
|
+
# Output only. The number of rows a rule was evaluated against.This field is
|
2728
|
+
# only valid for row-level type rules.Evaluated count can be configured to
|
2729
|
+
# either include all rows (default) - with null rows automatically failing rule
|
2730
|
+
# evaluation, or exclude null rows from the evaluated_count, by setting
|
2731
|
+
# ignore_nulls = true.This field is not set for rule SqlAssertion.
|
2732
2732
|
# Corresponds to the JSON property `evaluatedCount`
|
2733
2733
|
# @return [Fixnum]
|
2734
2734
|
attr_accessor :evaluated_count
|
2735
2735
|
|
2736
|
-
# The query to find rows that did not pass this rule.This field is
|
2737
|
-
# for row-level type rules.
|
2736
|
+
# Output only. The query to find rows that did not pass this rule.This field is
|
2737
|
+
# only valid for row-level type rules.
|
2738
2738
|
# Corresponds to the JSON property `failingRowsQuery`
|
2739
2739
|
# @return [String]
|
2740
2740
|
attr_accessor :failing_rows_query
|
2741
2741
|
|
2742
|
-
# The number of rows with null values in the specified column.
|
2742
|
+
# Output only. The number of rows with null values in the specified column.
|
2743
2743
|
# Corresponds to the JSON property `nullCount`
|
2744
2744
|
# @return [Fixnum]
|
2745
2745
|
attr_accessor :null_count
|
2746
2746
|
|
2747
|
-
# The ratio of passed_count / evaluated_count.This field is only
|
2748
|
-
# level type rules.
|
2747
|
+
# Output only. The ratio of passed_count / evaluated_count.This field is only
|
2748
|
+
# valid for row-level type rules.
|
2749
2749
|
# Corresponds to the JSON property `passRatio`
|
2750
2750
|
# @return [Float]
|
2751
2751
|
attr_accessor :pass_ratio
|
2752
2752
|
|
2753
|
-
# Whether the rule passed or failed.
|
2753
|
+
# Output only. Whether the rule passed or failed.
|
2754
2754
|
# Corresponds to the JSON property `passed`
|
2755
2755
|
# @return [Boolean]
|
2756
2756
|
attr_accessor :passed
|
2757
2757
|
alias_method :passed?, :passed
|
2758
2758
|
|
2759
|
-
#
|
2759
|
+
# Output only. The number of rows which passed a rule evaluation.This field is
|
2760
|
+
# only valid for row-level type rules.This field is not set for rule
|
2761
|
+
# SqlAssertion.
|
2760
2762
|
# Corresponds to the JSON property `passedCount`
|
2761
2763
|
# @return [Fixnum]
|
2762
2764
|
attr_accessor :passed_count
|
@@ -4492,6 +4494,37 @@ module Google
|
|
4492
4494
|
end
|
4493
4495
|
end
|
4494
4496
|
|
4497
|
+
# Payload associated with Entry related log events.
|
4498
|
+
class GoogleCloudDataplexV1EntryLinkEvent
|
4499
|
+
include Google::Apis::Core::Hashable
|
4500
|
+
|
4501
|
+
# The type of the event.
|
4502
|
+
# Corresponds to the JSON property `eventType`
|
4503
|
+
# @return [String]
|
4504
|
+
attr_accessor :event_type
|
4505
|
+
|
4506
|
+
# The log message.
|
4507
|
+
# Corresponds to the JSON property `message`
|
4508
|
+
# @return [String]
|
4509
|
+
attr_accessor :message
|
4510
|
+
|
4511
|
+
# Name of the resource.
|
4512
|
+
# Corresponds to the JSON property `resource`
|
4513
|
+
# @return [String]
|
4514
|
+
attr_accessor :resource
|
4515
|
+
|
4516
|
+
def initialize(**args)
|
4517
|
+
update!(**args)
|
4518
|
+
end
|
4519
|
+
|
4520
|
+
# Update properties of this object
|
4521
|
+
def update!(**args)
|
4522
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
4523
|
+
@message = args[:message] if args.key?(:message)
|
4524
|
+
@resource = args[:resource] if args.key?(:resource)
|
4525
|
+
end
|
4526
|
+
end
|
4527
|
+
|
4495
4528
|
# Information related to the source system of the data resource that is
|
4496
4529
|
# represented by the entry.
|
4497
4530
|
class GoogleCloudDataplexV1EntrySource
|
@@ -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.71.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250313"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -676,6 +676,12 @@ module Google
|
|
676
676
|
include Google::Apis::Core::JsonObjectSupport
|
677
677
|
end
|
678
678
|
|
679
|
+
class GoogleCloudDataplexV1EntryLinkEvent
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
679
685
|
class GoogleCloudDataplexV1EntrySource
|
680
686
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
687
|
|
@@ -2497,6 +2503,15 @@ module Google
|
|
2497
2503
|
end
|
2498
2504
|
end
|
2499
2505
|
|
2506
|
+
class GoogleCloudDataplexV1EntryLinkEvent
|
2507
|
+
# @private
|
2508
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2509
|
+
property :event_type, as: 'eventType'
|
2510
|
+
property :message, as: 'message'
|
2511
|
+
property :resource, as: 'resource'
|
2512
|
+
end
|
2513
|
+
end
|
2514
|
+
|
2500
2515
|
class GoogleCloudDataplexV1EntrySource
|
2501
2516
|
# @private
|
2502
2517
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.71.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.71.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|