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.
6431 6432 6433 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6431 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
6419 6420 6421 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6419 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
6424 6425 6426 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6424 def execution_snapshots @execution_snapshots end |
#state ⇒ String
Status of the execution.
Corresponds to the JSON property state
6429 6430 6431 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6429 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6436 6437 6438 6439 6440 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6436 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 |