Skip to content

Commit 06bcfb0

Browse files
feat: Automated regeneration of dataform v1beta1 client (#19958)
Auto-created at 2024-07-25 20:25:46 +0000 using the toys pull request generator.
1 parent dacf6c0 commit 06bcfb0

5 files changed

Lines changed: 30 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130090,6 +130090,7 @@
130090130090
"/dataform:v1beta1/CompilationResult/codeCompilationConfig": code_compilation_config
130091130091
"/dataform:v1beta1/CompilationResult/compilationErrors": compilation_errors
130092130092
"/dataform:v1beta1/CompilationResult/compilationErrors/compilation_error": compilation_error
130093+
"/dataform:v1beta1/CompilationResult/createTime": create_time
130093130094
"/dataform:v1beta1/CompilationResult/dataEncryptionState": data_encryption_state
130094130095
"/dataform:v1beta1/CompilationResult/dataformCoreVersion": dataform_core_version
130095130096
"/dataform:v1beta1/CompilationResult/gitCommitish": git_commitish
@@ -130394,13 +130395,15 @@
130394130395
"/dataform:v1beta1/UncommittedFileChange/path": path
130395130396
"/dataform:v1beta1/UncommittedFileChange/state": state
130396130397
"/dataform:v1beta1/WorkflowConfig": workflow_config
130398+
"/dataform:v1beta1/WorkflowConfig/createTime": create_time
130397130399
"/dataform:v1beta1/WorkflowConfig/cronSchedule": cron_schedule
130398130400
"/dataform:v1beta1/WorkflowConfig/invocationConfig": invocation_config
130399130401
"/dataform:v1beta1/WorkflowConfig/name": name
130400130402
"/dataform:v1beta1/WorkflowConfig/recentScheduledExecutionRecords": recent_scheduled_execution_records
130401130403
"/dataform:v1beta1/WorkflowConfig/recentScheduledExecutionRecords/recent_scheduled_execution_record": recent_scheduled_execution_record
130402130404
"/dataform:v1beta1/WorkflowConfig/releaseConfig": release_config
130403130405
"/dataform:v1beta1/WorkflowConfig/timeZone": time_zone
130406+
"/dataform:v1beta1/WorkflowConfig/updateTime": update_time
130404130407
"/dataform:v1beta1/WorkflowInvocation": workflow_invocation
130405130408
"/dataform:v1beta1/WorkflowInvocation/compilationResult": compilation_result
130406130409
"/dataform:v1beta1/WorkflowInvocation/dataEncryptionState": data_encryption_state

generated/google-apis-dataform_v1beta1/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-dataform_v1beta1
22

3+
### v0.32.0 (2024-07-25)
4+
5+
* Regenerated from discovery document revision 20240629
6+
37
### v0.31.0 (2024-06-16)
48

59
* Regenerated from discovery document revision 20240608

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,11 @@ class CompilationResult
543543
# @return [Array<Google::Apis::DataformV1beta1::CompilationError>]
544544
attr_accessor :compilation_errors
545545

546+
# Output only. The timestamp of when the compilation result was created.
547+
# Corresponds to the JSON property `createTime`
548+
# @return [String]
549+
attr_accessor :create_time
550+
546551
# Describes encryption state of a resource.
547552
# Corresponds to the JSON property `dataEncryptionState`
548553
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
@@ -591,6 +596,7 @@ def initialize(**args)
591596
def update!(**args)
592597
@code_compilation_config = args[:code_compilation_config] if args.key?(:code_compilation_config)
593598
@compilation_errors = args[:compilation_errors] if args.key?(:compilation_errors)
599+
@create_time = args[:create_time] if args.key?(:create_time)
594600
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
595601
@dataform_core_version = args[:dataform_core_version] if args.key?(:dataform_core_version)
596602
@git_commitish = args[:git_commitish] if args.key?(:git_commitish)
@@ -2781,6 +2787,11 @@ def update!(**args)
27812787
class WorkflowConfig
27822788
include Google::Apis::Core::Hashable
27832789

2790+
# Output only. The timestamp of when the WorkflowConfig was created.
2791+
# Corresponds to the JSON property `createTime`
2792+
# @return [String]
2793+
attr_accessor :create_time
2794+
27842795
# Optional. Optional schedule (in cron format) for automatic execution of this
27852796
# workflow config.
27862797
# Corresponds to the JSON property `cronSchedule`
@@ -2819,18 +2830,25 @@ class WorkflowConfig
28192830
# @return [String]
28202831
attr_accessor :time_zone
28212832

2833+
# Output only. The timestamp of when the WorkflowConfig was last updated.
2834+
# Corresponds to the JSON property `updateTime`
2835+
# @return [String]
2836+
attr_accessor :update_time
2837+
28222838
def initialize(**args)
28232839
update!(**args)
28242840
end
28252841

28262842
# Update properties of this object
28272843
def update!(**args)
2844+
@create_time = args[:create_time] if args.key?(:create_time)
28282845
@cron_schedule = args[:cron_schedule] if args.key?(:cron_schedule)
28292846
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
28302847
@name = args[:name] if args.key?(:name)
28312848
@recent_scheduled_execution_records = args[:recent_scheduled_execution_records] if args.key?(:recent_scheduled_execution_records)
28322849
@release_config = args[:release_config] if args.key?(:release_config)
28332850
@time_zone = args[:time_zone] if args.key?(:time_zone)
2851+
@update_time = args[:update_time] if args.key?(:update_time)
28342852
end
28352853
end
28362854

generated/google-apis-dataform_v1beta1/lib/google/apis/dataform_v1beta1/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 DataformV1beta1
1818
# Version of the google-apis-dataform_v1beta1 gem
19-
GEM_VERSION = "0.31.0"
19+
GEM_VERSION = "0.32.0"
2020

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

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
700700

701701
collection :compilation_errors, as: 'compilationErrors', class: Google::Apis::DataformV1beta1::CompilationError, decorator: Google::Apis::DataformV1beta1::CompilationError::Representation
702702

703+
property :create_time, as: 'createTime'
703704
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
704705

705706
property :dataform_core_version, as: 'dataformCoreVersion'
@@ -1343,6 +1344,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
13431344
class WorkflowConfig
13441345
# @private
13451346
class Representation < Google::Apis::Core::JsonRepresentation
1347+
property :create_time, as: 'createTime'
13461348
property :cron_schedule, as: 'cronSchedule'
13471349
property :invocation_config, as: 'invocationConfig', class: Google::Apis::DataformV1beta1::InvocationConfig, decorator: Google::Apis::DataformV1beta1::InvocationConfig::Representation
13481350

@@ -1351,6 +1353,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
13511353

13521354
property :release_config, as: 'releaseConfig'
13531355
property :time_zone, as: 'timeZone'
1356+
property :update_time, as: 'updateTime'
13541357
end
13551358
end
13561359

0 commit comments

Comments
 (0)