google-apis-dataplex_v1 0.64.0 → 0.65.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: 93514a103b896018ceea31a7c3fa9d5ca63500ecd1b2eed7e7f4b8d495ae5067
4
- data.tar.gz: e4fd66ec1bc12e7a8d066d403d05cbc1466ea8f3b27915540d2cbcdea29ed86d
3
+ metadata.gz: '047891c1e27c07fd78c98df4a75514c241dee09f75278a629ea321e8c81cad1f'
4
+ data.tar.gz: e8006db4501587fc02d739a3bca4bd4eed9912b40d992415d6876557f39f95b4
5
5
  SHA512:
6
- metadata.gz: f7e699af29181a18b65dd16235ad2ab2c8acc50607ae4240258d3a92187ce160c4a90018b0b97dc79e8927f97dadafb3460ac564718d9524cb0bc680d8314059
7
- data.tar.gz: d3a6a81648dfac6411ebc3371ee2d715ae6f328ad6cc7dda5a5caba85c290455a21533fd687ea4705b017f338b6dcbd6b738f04add326577cbb63dc3d3eba038
6
+ metadata.gz: 0bfee8364347e5279df65c1bfd328dfd05db43c6c31de356aa85a02adf189d9ada0eeb8de58c2b7efa18d4b772291a24d4e498790b3a48f6c275f79244b01e7e
7
+ data.tar.gz: 73744205da1deea3a4f95b7b09f150572d0ff1bd3975e10e2072668fb2e1667ab7311c3418ed9d3b7bc7fda113b85fec42fe257fb542564922c2ac38f2bb9c29
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.65.0 (2024-10-20)
4
+
5
+ * Regenerated from discovery document revision 20241001
6
+
3
7
  ### v0.64.0 (2024-10-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20240925
@@ -392,6 +392,13 @@ module Google
392
392
  # @return [String]
393
393
  attr_accessor :create_time
394
394
 
395
+ # The version of the data format used to produce this data. This field is used
396
+ # to indicated when the underlying data format changes (e.g., schema
397
+ # modifications, changes to the source URL format definition, etc).
398
+ # Corresponds to the JSON property `dataVersion`
399
+ # @return [String]
400
+ attr_accessor :data_version
401
+
395
402
  # The time the aspect was last updated in the source system.
396
403
  # Corresponds to the JSON property `updateTime`
397
404
  # @return [String]
@@ -404,6 +411,7 @@ module Google
404
411
  # Update properties of this object
405
412
  def update!(**args)
406
413
  @create_time = args[:create_time] if args.key?(:create_time)
414
+ @data_version = args[:data_version] if args.key?(:data_version)
407
415
  @update_time = args[:update_time] if args.key?(:update_time)
408
416
  end
409
417
  end
@@ -2065,7 +2073,7 @@ module Google
2065
2073
  include Google::Apis::Core::Hashable
2066
2074
 
2067
2075
  # The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS",
2068
- # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
2076
+ # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
2069
2077
  # Corresponds to the JSON property `name`
2070
2078
  # @return [String]
2071
2079
  attr_accessor :name
@@ -2243,7 +2251,7 @@ module Google
2243
2251
 
2244
2252
  # Required. The dimension a rule belongs to. Results are also aggregated at the
2245
2253
  # dimension level. Supported dimensions are "COMPLETENESS", "ACCURACY", "
2246
- # CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
2254
+ # CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
2247
2255
  # Corresponds to the JSON property `dimension`
2248
2256
  # @return [String]
2249
2257
  attr_accessor :dimension
@@ -3711,6 +3719,11 @@ module Google
3711
3719
  class GoogleCloudDataplexV1DiscoveryEventActionDetails
3712
3720
  include Google::Apis::Core::Hashable
3713
3721
 
3722
+ # The human readable issue associated with the action.
3723
+ # Corresponds to the JSON property `issue`
3724
+ # @return [String]
3725
+ attr_accessor :issue
3726
+
3714
3727
  # The type of action. Eg. IncompatibleDataSchema, InvalidDataFormat
3715
3728
  # Corresponds to the JSON property `type`
3716
3729
  # @return [String]
@@ -3722,6 +3735,7 @@ module Google
3722
3735
 
3723
3736
  # Update properties of this object
3724
3737
  def update!(**args)
3738
+ @issue = args[:issue] if args.key?(:issue)
3725
3739
  @type = args[:type] if args.key?(:type)
3726
3740
  end
3727
3741
  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.64.0"
19
+ GEM_VERSION = "0.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240925"
25
+ REVISION = "20241001"
26
26
  end
27
27
  end
28
28
  end
@@ -1357,6 +1357,7 @@ module Google
1357
1357
  # @private
1358
1358
  class Representation < Google::Apis::Core::JsonRepresentation
1359
1359
  property :create_time, as: 'createTime'
1360
+ property :data_version, as: 'dataVersion'
1360
1361
  property :update_time, as: 'updateTime'
1361
1362
  end
1362
1363
  end
@@ -2251,6 +2252,7 @@ module Google
2251
2252
  class GoogleCloudDataplexV1DiscoveryEventActionDetails
2252
2253
  # @private
2253
2254
  class Representation < Google::Apis::Core::JsonRepresentation
2255
+ property :issue, as: 'issue'
2254
2256
  property :type, as: 'type'
2255
2257
  end
2256
2258
  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.64.0
4
+ version: 0.65.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-10-06 00:00:00.000000000 Z
11
+ date: 2024-10-27 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.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.65.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Dataplex API V1