Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionDetails

Inherits:
Object
  • Object
show all
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 details of the execution info: this includes the tasks execution details plus the event execution statistics.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionDetails

Returns a new instance of GoogleCloudIntegrationsV1alphaExecutionDetails.



6183
6184
6185
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6183

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

Instance Attribute Details

#attempt_statsArray<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAttemptStats>

List of Start and end time of the execution attempts. Corresponds to the JSON property attemptStats



6171
6172
6173
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6171

def attempt_stats
  @attempt_stats
end

#execution_snapshotsArray<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionSnapshot>

List of snapshots taken during the execution. Corresponds to the JSON property executionSnapshots



6176
6177
6178
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6176

def execution_snapshots
  @execution_snapshots
end

#stateString

Status of the execution. Corresponds to the JSON property state

Returns:

  • (String)


6181
6182
6183
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6181

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6188
6189
6190
6191
6192
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6188

def update!(**args)
  @attempt_stats = args[:attempt_stats] if args.key?(:attempt_stats)
  @execution_snapshots = args[:execution_snapshots] if args.key?(:execution_snapshots)
  @state = args[:state] if args.key?(:state)
end