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.
-
#event_execution_snapshots_size ⇒ Fixnum
Total size of all event_execution_snapshots for an execution Corresponds to the JSON property
eventExecutionSnapshotsSize
. -
#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.
7914 7915 7916 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7914 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
7897 7898 7899 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7897 def attempt_stats @attempt_stats end |
#event_execution_snapshots_size ⇒ Fixnum
Total size of all event_execution_snapshots for an execution
Corresponds to the JSON property eventExecutionSnapshotsSize
7902 7903 7904 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7902 def event_execution_snapshots_size @event_execution_snapshots_size end |
#execution_snapshots ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshot>
List of snapshots taken during the execution.
Corresponds to the JSON property executionSnapshots
7907 7908 7909 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7907 def execution_snapshots @execution_snapshots end |
#state ⇒ String
Status of the execution.
Corresponds to the JSON property state
7912 7913 7914 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7912 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7919 7920 7921 7922 7923 7924 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7919 def update!(**args) @attempt_stats = args[:attempt_stats] if args.key?(:attempt_stats) @event_execution_snapshots_size = args[:event_execution_snapshots_size] if args.key?(:event_execution_snapshots_size) @execution_snapshots = args[:execution_snapshots] if args.key?(:execution_snapshots) @state = args[:state] if args.key?(:state) end |