Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshot

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb

Overview

Contains the snapshot of the execution for a given checkpoint.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionSnapshot

Returns a new instance of GoogleCloudIntegrationsV1alphaExecutionSnapshot.



6778
6779
6780
# File 'lib/google/apis/integrations_v1/classes.rb', line 6778

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#checkpoint_task_numberString

Indicates "after which checkpoint task's execution" this snapshot is taken. Corresponds to the JSON property checkpointTaskNumber

Returns:

  • (String)


6761
6762
6763
# File 'lib/google/apis/integrations_v1/classes.rb', line 6761

def checkpoint_task_number
  @checkpoint_task_number
end

#execution_snapshot_metadataGoogle::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata

Metadata of the execution snapshot. Corresponds to the JSON property executionSnapshotMetadata



6766
6767
6768
# File 'lib/google/apis/integrations_v1/classes.rb', line 6766

def 
  @execution_snapshot_metadata
end

#paramsHash<String,Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaValueType>

Parameters used during the execution. Corresponds to the JSON property params



6771
6772
6773
# File 'lib/google/apis/integrations_v1/classes.rb', line 6771

def params
  @params
end

#task_execution_detailsArray<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaTaskExecutionDetails>

All of the task execution details at the given point of time. Corresponds to the JSON property taskExecutionDetails



6776
6777
6778
# File 'lib/google/apis/integrations_v1/classes.rb', line 6776

def task_execution_details
  @task_execution_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6783
6784
6785
6786
6787
6788
# File 'lib/google/apis/integrations_v1/classes.rb', line 6783

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