Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionDetails
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionDetails
- 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 details of the execution info: this includes the tasks execution details plus the event execution statistics.
Instance Attribute Summary collapse
-
#attempt_stats ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAttemptStats>
List of Start and end time of the execution attempts.
-
#execution_snapshots ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshot>
List of snapshots taken during the execution.
-
#state ⇒ String
Status of the execution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionDetails
constructor
A new instance of GoogleCloudIntegrationsV1alphaExecutionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionDetails
Returns a new instance of GoogleCloudIntegrationsV1alphaExecutionDetails.
6742 6743 6744 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6742 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attempt_stats ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAttemptStats>
List of Start and end time of the execution attempts.
Corresponds to the JSON property attemptStats
6730 6731 6732 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6730 def attempt_stats @attempt_stats end |
#execution_snapshots ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshot>
List of snapshots taken during the execution.
Corresponds to the JSON property executionSnapshots
6735 6736 6737 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6735 def execution_snapshots @execution_snapshots end |
#state ⇒ String
Status of the execution.
Corresponds to the JSON property state
6740 6741 6742 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6740 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6747 6748 6749 6750 6751 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6747 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 |