Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of dataplex v1 client #20423

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135704,6 +135704,7 @@
"/dataplex:v1/GoogleCloudDataplexV1Aspect/updateTime": update_time
"/dataplex:v1/GoogleCloudDataplexV1AspectSource": google_cloud_dataplex_v1_aspect_source
"/dataplex:v1/GoogleCloudDataplexV1AspectSource/createTime": create_time
"/dataplex:v1/GoogleCloudDataplexV1AspectSource/dataVersion": data_version
"/dataplex:v1/GoogleCloudDataplexV1AspectSource/updateTime": update_time
"/dataplex:v1/GoogleCloudDataplexV1AspectType": google_cloud_dataplex_v1_aspect_type
"/dataplex:v1/GoogleCloudDataplexV1AspectType/authorization": authorization
Expand Down Expand Up @@ -136156,6 +136157,7 @@
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEvent/type": type
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEvent/zoneId": zone_id
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventActionDetails": google_cloud_dataplex_v1_discovery_event_action_details
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventActionDetails/issue": issue
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventActionDetails/type": type
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventConfigDetails": google_cloud_dataplex_v1_discovery_event_config_details
"/dataplex:v1/GoogleCloudDataplexV1DiscoveryEventConfigDetails/parameters": parameters
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-dataplex_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-dataplex_v1

### v0.65.0 (2024-10-20)

* Regenerated from discovery document revision 20241001

### v0.64.0 (2024-10-06)

* Regenerated from discovery document revision 20240925
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,13 @@ class GoogleCloudDataplexV1AspectSource
# @return [String]
attr_accessor :create_time

# The version of the data format used to produce this data. This field is used
# to indicated when the underlying data format changes (e.g., schema
# modifications, changes to the source URL format definition, etc).
# Corresponds to the JSON property `dataVersion`
# @return [String]
attr_accessor :data_version

# The time the aspect was last updated in the source system.
# Corresponds to the JSON property `updateTime`
# @return [String]
Expand All @@ -404,6 +411,7 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@create_time = args[:create_time] if args.key?(:create_time)
@data_version = args[:data_version] if args.key?(:data_version)
@update_time = args[:update_time] if args.key?(:update_time)
end
end
Expand Down Expand Up @@ -2065,7 +2073,7 @@ class GoogleCloudDataplexV1DataQualityDimension
include Google::Apis::Core::Hashable

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

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

# The human readable issue associated with the action.
# Corresponds to the JSON property `issue`
# @return [String]
attr_accessor :issue

# The type of action. Eg. IncompatibleDataSchema, InvalidDataFormat
# Corresponds to the JSON property `type`
# @return [String]
Expand All @@ -3722,6 +3735,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@issue = args[:issue] if args.key?(:issue)
@type = args[:type] if args.key?(:type)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DataplexV1
# Version of the google-apis-dataplex_v1 gem
GEM_VERSION = "0.64.0"
GEM_VERSION = "0.65.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20240925"
REVISION = "20241001"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,7 @@ class GoogleCloudDataplexV1AspectSource
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :create_time, as: 'createTime'
property :data_version, as: 'dataVersion'
property :update_time, as: 'updateTime'
end
end
Expand Down Expand Up @@ -2251,6 +2252,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class GoogleCloudDataplexV1DiscoveryEventActionDetails
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :issue, as: 'issue'
property :type, as: 'type'
end
end
Expand Down
Loading