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.



6440
6441
6442
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6440

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



6428
6429
6430
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6428

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



6433
6434
6435
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6433

def execution_snapshots
  @execution_snapshots
end

#stateString

Status of the execution. Corresponds to the JSON property state

Returns:

  • (String)


6438
6439
6440
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6438

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6445
6446
6447
6448
6449
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6445

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