@@ -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
0 commit comments