Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionSnapshot
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionSnapshot
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Contains the snapshot of the execution for a given checkpoint.
Instance Attribute Summary collapse
-
#checkpoint_task_number ⇒ String
Indicates "after which checkpoint task's execution" this snapshot is taken.
-
#execution_snapshot_metadata ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
Metadata of the execution snapshot.
-
#params ⇒ Hash<String,Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType>
Parameters used during the execution.
-
#task_execution_details ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTaskExecutionDetails>
All of the task execution details at the given point of time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionSnapshot
constructor
A new instance of GoogleCloudIntegrationsV1alphaExecutionSnapshot.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionSnapshot
Returns a new instance of GoogleCloudIntegrationsV1alphaExecutionSnapshot.
6545 6546 6547 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6545 def initialize(**args) update!(**args) end |
Instance Attribute Details
#checkpoint_task_number ⇒ String
Indicates "after which checkpoint task's execution" this snapshot is taken.
Corresponds to the JSON property checkpointTaskNumber
6528 6529 6530 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6528 def checkpoint_task_number @checkpoint_task_number end |
#execution_snapshot_metadata ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
Metadata of the execution snapshot.
Corresponds to the JSON property executionSnapshotMetadata
6533 6534 6535 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6533 def @execution_snapshot_metadata end |
#params ⇒ Hash<String,Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType>
Parameters used during the execution.
Corresponds to the JSON property params
6538 6539 6540 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6538 def params @params end |
#task_execution_details ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTaskExecutionDetails>
All of the task execution details at the given point of time.
Corresponds to the JSON property taskExecutionDetails
6543 6544 6545 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6543 def task_execution_details @task_execution_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6550 6551 6552 6553 6554 6555 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6550 def update!(**args) @checkpoint_task_number = args[:checkpoint_task_number] if args.key?(:checkpoint_task_number) @execution_snapshot_metadata = args[:execution_snapshot_metadata] if args.key?(:execution_snapshot_metadata) @params = args[:params] if args.key?(:params) @task_execution_details = args[:task_execution_details] if args.key?(:task_execution_details) end |