Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
- 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
Metadata of the execution snapshot.
Instance Attribute Summary collapse
-
#execution_attempt ⇒ Fixnum
the execution attempt number this snapshot belongs to.
-
#task ⇒ String
the task name associated with this snapshot.
-
#task_attempt ⇒ Fixnum
the task attempt number this snapshot belongs to.
-
#task_number ⇒ String
The task number associated with this snapshot.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
constructor
A new instance of GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
Returns a new instance of GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata.
6815 6816 6817 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6815 def initialize(**args) update!(**args) end |
Instance Attribute Details
#execution_attempt ⇒ Fixnum
the execution attempt number this snapshot belongs to.
Corresponds to the JSON property executionAttempt
6798 6799 6800 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6798 def execution_attempt @execution_attempt end |
#task ⇒ String
the task name associated with this snapshot.
Corresponds to the JSON property task
6803 6804 6805 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6803 def task @task end |
#task_attempt ⇒ Fixnum
the task attempt number this snapshot belongs to.
Corresponds to the JSON property taskAttempt
6808 6809 6810 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6808 def task_attempt @task_attempt end |
#task_number ⇒ String
The task number associated with this snapshot.
Corresponds to the JSON property taskNumber
6813 6814 6815 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6813 def task_number @task_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6820 6821 6822 6823 6824 6825 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6820 def update!(**args) @execution_attempt = args[:execution_attempt] if args.key?(:execution_attempt) @task = args[:task] if args.key?(:task) @task_attempt = args[:task_attempt] if args.key?(:task_attempt) @task_number = args[:task_number] if args.key?(:task_number) end |