Skip to content

Commit c64b367

Browse files
feat: Automated regeneration of dataplex v1 client (googleapis#20423)
Auto-created at 2024-10-20 09:39:44 +0000 using the toys pull request generator.
1 parent b4ded61 commit c64b367

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136436,6 +136436,7 @@
136436136436
"/dataplex:v1/GoogleCloudDataplexV1Aspect/updateTime": update_time
136437136437
"/dataplex:v1/GoogleCloudDataplexV1AspectSource": google_cloud_dataplex_v1_aspect_source
136438136438
"/dataplex:v1/GoogleCloudDataplexV1AspectSource/createTime": create_time
136439+
"/dataplex:v1/GoogleCloudDataplexV1AspectSource/dataVersion": data_version
136439136440
"/dataplex:v1/GoogleCloudDataplexV1AspectSource/updateTime": update_time
136440136441
"/dataplex:v1/GoogleCloudDataplexV1AspectType": google_cloud_dataplex_v1_aspect_type
136441136442
"/dataplex:v1/GoogleCloudDataplexV1AspectType/authorization": authorization
@@ -136888,6 +136889,7 @@
136888136889
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEvent/type": type
136889136890
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEvent/zoneId": zone_id
136890136891
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventActionDetails": google_cloud_dataplex_v1_discovery_event_action_details
136892+
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventActionDetails/issue": issue
136891136893
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventActionDetails/type": type
136892136894
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventConfigDetails": google_cloud_dataplex_v1_discovery_event_config_details
136893136895
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventConfigDetails/parameters": parameters

generated/google-apis-dataplex_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dataplex_v1
22

3+
### v0.65.0 (2024-10-20)
4+
5+
* Regenerated from discovery document revision 20241001
6+
37
### v0.64.0 (2024-10-06)
48

59
* Regenerated from discovery document revision 20240925

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/classes.rb

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,13 @@ class GoogleCloudDataplexV1AspectSource
392392
# @return [String]
393393
attr_accessor :create_time
394394

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+
395402
# The time the aspect was last updated in the source system.
396403
# Corresponds to the JSON property `updateTime`
397404
# @return [String]
@@ -404,6 +411,7 @@ def initialize(**args)
404411
# Update properties of this object
405412
def update!(**args)
406413
@create_time = args[:create_time] if args.key?(:create_time)
414+
@data_version = args[:data_version] if args.key?(:data_version)
407415
@update_time = args[:update_time] if args.key?(:update_time)
408416
end
409417
end
@@ -2065,7 +2073,7 @@ class GoogleCloudDataplexV1DataQualityDimension
20652073
include Google::Apis::Core::Hashable
20662074

20672075
# The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS",
2068-
# "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
2076+
# "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
20692077
# Corresponds to the JSON property `name`
20702078
# @return [String]
20712079
attr_accessor :name
@@ -2243,7 +2251,7 @@ class GoogleCloudDataplexV1DataQualityRule
22432251

22442252
# Required. The dimension a rule belongs to. Results are also aggregated at the
22452253
# dimension level. Supported dimensions are "COMPLETENESS", "ACCURACY", "
2246-
# CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
2254+
# CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
22472255
# Corresponds to the JSON property `dimension`
22482256
# @return [String]
22492257
attr_accessor :dimension
@@ -3711,6 +3719,11 @@ def update!(**args)
37113719
class GoogleCloudDataplexV1DiscoveryEventActionDetails
37123720
include Google::Apis::Core::Hashable
37133721

3722+
# The human readable issue associated with the action.
3723+
# Corresponds to the JSON property `issue`
3724+
# @return [String]
3725+
attr_accessor :issue
3726+
37143727
# The type of action. Eg. IncompatibleDataSchema, InvalidDataFormat
37153728
# Corresponds to the JSON property `type`
37163729
# @return [String]
@@ -3722,6 +3735,7 @@ def initialize(**args)
37223735

37233736
# Update properties of this object
37243737
def update!(**args)
3738+
@issue = args[:issue] if args.key?(:issue)
37253739
@type = args[:type] if args.key?(:type)
37263740
end
37273741
end

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DataplexV1
1818
# Version of the google-apis-dataplex_v1 gem
19-
GEM_VERSION = "0.64.0"
19+
GEM_VERSION = "0.65.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.15.1"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20240925"
25+
REVISION = "20241001"
2626
end
2727
end
2828
end

generated/google-apis-dataplex_v1/lib/google/apis/dataplex_v1/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,6 +1357,7 @@ class GoogleCloudDataplexV1AspectSource
13571357
# @private
13581358
class Representation < Google::Apis::Core::JsonRepresentation
13591359
property :create_time, as: 'createTime'
1360+
property :data_version, as: 'dataVersion'
13601361
property :update_time, as: 'updateTime'
13611362
end
13621363
end
@@ -2251,6 +2252,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
22512252
class GoogleCloudDataplexV1DiscoveryEventActionDetails
22522253
# @private
22532254
class Representation < Google::Apis::Core::JsonRepresentation
2255+
property :issue, as: 'issue'
22542256
property :type, as: 'type'
22552257
end
22562258
end

0 commit comments

Comments
 (0)