google-apis-dataplex_v1 0.38.0 → 0.39.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: 5349aff1ecc8bdec5d80e15bb9618e2b50813b5d74295232b325895059f44639
4
- data.tar.gz: 712a267137d3af30bc27f70041f18f2ec471b54979e1368a4a139bcaf4a0942d
3
+ metadata.gz: afe1e521c39b1e77f919de2d48888355c55d64999ea73c7d50bd1b58043a3704
4
+ data.tar.gz: a90820227b5d9269fd0fea9af349c1bb2cca44549c664120d20f3bc0144847be
5
5
  SHA512:
6
- metadata.gz: 5df53b813703c11669a98e253138246f0d1ccc0b4f2674ac90dddfd150db4d4c15a4685b237148fdb3ff4f367ac7b8ef1225134010ee4d106e1d4ba1287b1863
7
- data.tar.gz: 02e541c3db7017bade0287d6edf4a71198fad764a16765c0664e806306acd253e7b4905e7ed702595aa12081c397fc276d60e86568fa4a886f0a8d3f5d81f71b
6
+ metadata.gz: a804ea7b528e9b41d0ff39d43de8dce05c40bd5cb409f0b7b4e3bf9c95baf19eab16c9b381a71dcf4a44f73493a75f370f855a5ed28951cd49ae8a5cc7fdb689
7
+ data.tar.gz: 32f9fb2f5c399aef0809b9886513b56c70ae0a83f16049a7f51a7d880a3caf9e5cfa2dc430b8795e386ba3e7ca14f20049988dee96d1fea58e95a01823f5a8b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.39.0 (2023-10-01)
4
+
5
+ * Regenerated from discovery document revision 20230922
6
+
3
7
  ### v0.38.0 (2023-09-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20230831
@@ -1636,11 +1636,38 @@ module Google
1636
1636
  end
1637
1637
  end
1638
1638
 
1639
+ # A dimension captures data quality intent about a defined subset of the rules
1640
+ # specified.
1641
+ class GoogleCloudDataplexV1DataQualityDimension
1642
+ include Google::Apis::Core::Hashable
1643
+
1644
+ # The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS",
1645
+ # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
1646
+ # Corresponds to the JSON property `name`
1647
+ # @return [String]
1648
+ attr_accessor :name
1649
+
1650
+ def initialize(**args)
1651
+ update!(**args)
1652
+ end
1653
+
1654
+ # Update properties of this object
1655
+ def update!(**args)
1656
+ @name = args[:name] if args.key?(:name)
1657
+ end
1658
+ end
1659
+
1639
1660
  # DataQualityDimensionResult provides a more detailed, per-dimension view of the
1640
1661
  # results.
1641
1662
  class GoogleCloudDataplexV1DataQualityDimensionResult
1642
1663
  include Google::Apis::Core::Hashable
1643
1664
 
1665
+ # A dimension captures data quality intent about a defined subset of the rules
1666
+ # specified.
1667
+ # Corresponds to the JSON property `dimension`
1668
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension]
1669
+ attr_accessor :dimension
1670
+
1644
1671
  # Whether the dimension passed or failed.
1645
1672
  # Corresponds to the JSON property `passed`
1646
1673
  # @return [Boolean]
@@ -1653,6 +1680,7 @@ module Google
1653
1680
 
1654
1681
  # Update properties of this object
1655
1682
  def update!(**args)
1683
+ @dimension = args[:dimension] if args.key?(:dimension)
1656
1684
  @passed = args[:passed] if args.key?(:passed)
1657
1685
  end
1658
1686
  end
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.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 = "20230831"
25
+ REVISION = "20230922"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class GoogleCloudDataplexV1DataQualityDimension
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class GoogleCloudDataplexV1DataQualityDimensionResult
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -1429,9 +1435,18 @@ module Google
1429
1435
  end
1430
1436
  end
1431
1437
 
1438
+ class GoogleCloudDataplexV1DataQualityDimension
1439
+ # @private
1440
+ class Representation < Google::Apis::Core::JsonRepresentation
1441
+ property :name, as: 'name'
1442
+ end
1443
+ end
1444
+
1432
1445
  class GoogleCloudDataplexV1DataQualityDimensionResult
1433
1446
  # @private
1434
1447
  class Representation < Google::Apis::Core::JsonRepresentation
1448
+ property :dimension, as: 'dimension', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension::Representation
1449
+
1435
1450
  property :passed, as: 'passed'
1436
1451
  end
1437
1452
  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.38.0
4
+ version: 0.39.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-09-03 00:00:00.000000000 Z
11
+ date: 2023-10-01 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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.39.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: []