Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionDetails
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionDetails
- 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
-
#attempt_stats ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAttemptStats>
List of Start and end time of the execution attempts.
-
#execution_snapshots ⇒ Array<Google::Apis::IntegrationsV1alpha::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.
6337 6338 6339 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6337 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attempt_stats ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaAttemptStats>
List of Start and end time of the execution attempts.
Corresponds to the JSON property attemptStats
6325 6326 6327 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6325 def attempt_stats @attempt_stats end |
#execution_snapshots ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaExecutionSnapshot>
List of snapshots taken during the execution.
Corresponds to the JSON property executionSnapshots
6330 6331 6332 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6330 def execution_snapshots @execution_snapshots end |
#state ⇒ String
Status of the execution.
Corresponds to the JSON property state
6335 6336 6337 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6335 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6342 6343 6344 6345 6346 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6342 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 |