google-apis-dataplex_v1 0.56.0 → 0.57.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: 60cc2f0610aaa90a42f79d308c401f76daa13dfe7766f6794e49b8f0e7eafc3a
4
- data.tar.gz: 5de90b0f63ea59c4a4510dcfe80244d034c80bea36b911d7616585ffd5f7df16
3
+ metadata.gz: 2684536c796761aa407a2c46be116c5758e9f40a070d8efd023c2d455637f4ab
4
+ data.tar.gz: e16d43da403a58cb46e47f696552c3b003c33bd9bd422e3a57d676e751470365
5
5
  SHA512:
6
- metadata.gz: cb0356510b3edfab359902b1b7db9c9667d0851ad8e288ca2454a0a45269078c10c99cd25bffda2c1793b99049d87528c1a8ebf8b9dc957aa1ed14b5747d2278
7
- data.tar.gz: cf1ee59e5d06cf8092a3e3fc65d9728db56c82ac5f8bc86a74392e1a9f48f07c05a594ec0efec4d7277db9322713859e97073a917e8070bc2417f3a69b6bda7e
6
+ metadata.gz: 046c0369883154b5bfb13557457af458b17ac8c6613ae78b1e71760f4a67f0db5578d34b95c29fc65bf500bf1f90e40396eced3466eae7a5654f526730198b97
7
+ data.tar.gz: 7b7cb5bd01f77c10a599b517343ea03902252960b6a0f339668354f618bf3793081894008a8f1bd2f11cc2a5b153c507130d2a06e25845989d6b7459c2265271
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.57.0 (2024-06-02)
4
+
5
+ * Regenerated from discovery document revision 20240523
6
+
3
7
  ### v0.56.0 (2024-05-19)
4
8
 
5
9
  * Regenerated using generator version 0.15.0
@@ -2280,12 +2280,15 @@ module Google
2280
2280
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleSetExpectation]
2281
2281
  attr_accessor :set_expectation
2282
2282
 
2283
- # Queries for rows returned by the provided SQL statement. If any rows are are
2284
- # returned, this rule fails.The SQL statement needs to use BigQuery standard SQL
2285
- # syntax, and must not contain any semicolons.$`data()` can be used to reference
2286
- # the rows being evaluated, i.e. the table after all additional filters (row
2287
- # filters, incremental data filters, sampling) are applied.Example: SELECT *
2288
- # FROM $`data()` WHERE price < 0
2283
+ # A SQL statement that is evaluated to return rows that match an invalid state.
2284
+ # If any rows are are returned, this rule fails.The SQL statement must use
2285
+ # BigQuery standard SQL syntax, and must not contain any semicolons.You can use
2286
+ # the data reference parameter $`data()` to reference the source table with all
2287
+ # of its precondition filters applied. Examples of precondition filters include
2288
+ # row filters, incremental data filters, and sampling. For more information, see
2289
+ # Data reference parameter (https://cloud.google.com/dataplex/docs/auto-data-
2290
+ # quality-overview#data-reference-parameter).Example: SELECT * FROM $`data()`
2291
+ # WHERE price < 0
2289
2292
  # Corresponds to the JSON property `sqlAssertion`
2290
2293
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleSqlAssertion]
2291
2294
  attr_accessor :sql_assertion
@@ -2420,8 +2423,8 @@ module Google
2420
2423
  class GoogleCloudDataplexV1DataQualityRuleResult
2421
2424
  include Google::Apis::Core::Hashable
2422
2425
 
2423
- # Output only. The number of rows returned by the sql statement in the
2424
- # SqlAssertion rule.This field is only valid for SqlAssertion rules.
2426
+ # Output only. The number of rows returned by the SQL statement in a SQL
2427
+ # assertion rule.This field is only valid for SQL assertion rules.
2425
2428
  # Corresponds to the JSON property `assertionRowCount`
2426
2429
  # @return [Fixnum]
2427
2430
  attr_accessor :assertion_row_count
@@ -2525,12 +2528,15 @@ module Google
2525
2528
  end
2526
2529
  end
2527
2530
 
2528
- # Queries for rows returned by the provided SQL statement. If any rows are are
2529
- # returned, this rule fails.The SQL statement needs to use BigQuery standard SQL
2530
- # syntax, and must not contain any semicolons.$`data()` can be used to reference
2531
- # the rows being evaluated, i.e. the table after all additional filters (row
2532
- # filters, incremental data filters, sampling) are applied.Example: SELECT *
2533
- # FROM $`data()` WHERE price < 0
2531
+ # A SQL statement that is evaluated to return rows that match an invalid state.
2532
+ # If any rows are are returned, this rule fails.The SQL statement must use
2533
+ # BigQuery standard SQL syntax, and must not contain any semicolons.You can use
2534
+ # the data reference parameter $`data()` to reference the source table with all
2535
+ # of its precondition filters applied. Examples of precondition filters include
2536
+ # row filters, incremental data filters, and sampling. For more information, see
2537
+ # Data reference parameter (https://cloud.google.com/dataplex/docs/auto-data-
2538
+ # quality-overview#data-reference-parameter).Example: SELECT * FROM $`data()`
2539
+ # WHERE price < 0
2534
2540
  class GoogleCloudDataplexV1DataQualityRuleSqlAssertion
2535
2541
  include Google::Apis::Core::Hashable
2536
2542
 
@@ -2640,8 +2646,8 @@ module Google
2640
2646
  class GoogleCloudDataplexV1DataQualityScanRuleResult
2641
2647
  include Google::Apis::Core::Hashable
2642
2648
 
2643
- # The number of rows returned by the sql statement in the SqlAssertion rule.
2644
- # This field is only valid for SqlAssertion rules.
2649
+ # The number of rows returned by the SQL statement in a SQL assertion rule. This
2650
+ # field is only valid for SQL assertion rules.
2645
2651
  # Corresponds to the JSON property `assertionRowCount`
2646
2652
  # @return [Fixnum]
2647
2653
  attr_accessor :assertion_row_count
@@ -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.56.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240419"
25
+ REVISION = "20240523"
26
26
  end
27
27
  end
28
28
  end
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.56.0
4
+ version: 0.57.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: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-02 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.56.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.57.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: []