Class: Google::Apis::RunV1::TaskStatus
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::TaskStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
TaskStatus represents the status of a task of a job execution.
Instance Attribute Summary collapse
-
#completion_time ⇒ String
Optional.
-
#conditions ⇒ Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>
Optional.
-
#index ⇒ Fixnum
Required.
-
#last_attempt_result ⇒ Google::Apis::RunV1::TaskAttemptResult
Result of a task attempt.
-
#log_uri ⇒ String
Optional.
-
#observed_generation ⇒ Fixnum
Optional.
-
#retried ⇒ Fixnum
Optional.
-
#start_time ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TaskStatus
constructor
A new instance of TaskStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TaskStatus
Returns a new instance of TaskStatus.
3644 3645 3646 |
# File 'lib/google/apis/run_v1/classes.rb', line 3644 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completion_time ⇒ String
Optional. Represents time when the task was completed. It is not guaranteed to
be set in happens-before order across separate operations. It is represented
in RFC3339 form and is in UTC. +optional
Corresponds to the JSON property completionTime
3601 3602 3603 |
# File 'lib/google/apis/run_v1/classes.rb', line 3601 def completion_time @completion_time end |
#conditions ⇒ Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>
Optional. The latest available observations of a task's current state. More
info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-
completion/ +optional
Corresponds to the JSON property conditions
3608 3609 3610 |
# File 'lib/google/apis/run_v1/classes.rb', line 3608 def conditions @conditions end |
#index ⇒ Fixnum
Required. Index of the task, unique per execution, and beginning at 0.
Corresponds to the JSON property index
3613 3614 3615 |
# File 'lib/google/apis/run_v1/classes.rb', line 3613 def index @index end |
#last_attempt_result ⇒ Google::Apis::RunV1::TaskAttemptResult
Result of a task attempt.
Corresponds to the JSON property lastAttemptResult
3618 3619 3620 |
# File 'lib/google/apis/run_v1/classes.rb', line 3618 def last_attempt_result @last_attempt_result end |
#log_uri ⇒ String
Optional. URI where logs for this task can be found in Cloud Console.
Corresponds to the JSON property logUri
3623 3624 3625 |
# File 'lib/google/apis/run_v1/classes.rb', line 3623 def log_uri @log_uri end |
#observed_generation ⇒ Fixnum
Optional. The 'generation' of the execution that was last processed by the
controller.
Corresponds to the JSON property observedGeneration
3629 3630 3631 |
# File 'lib/google/apis/run_v1/classes.rb', line 3629 def observed_generation @observed_generation end |
#retried ⇒ Fixnum
Optional. The number of times this task was retried. Instances are retried
when they fail up to the maxRetries limit. +optional
Corresponds to the JSON property retried
3635 3636 3637 |
# File 'lib/google/apis/run_v1/classes.rb', line 3635 def retried @retried end |
#start_time ⇒ String
Optional. Represents time when the task started to run. It is not guaranteed
to be set in happens-before order across separate operations. It is
represented in RFC3339 form and is in UTC. +optional
Corresponds to the JSON property startTime
3642 3643 3644 |
# File 'lib/google/apis/run_v1/classes.rb', line 3642 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 |
# File 'lib/google/apis/run_v1/classes.rb', line 3649 def update!(**args) @completion_time = args[:completion_time] if args.key?(:completion_time) @conditions = args[:conditions] if args.key?(:conditions) @index = args[:index] if args.key?(:index) @last_attempt_result = args[:last_attempt_result] if args.key?(:last_attempt_result) @log_uri = args[:log_uri] if args.key?(:log_uri) @observed_generation = args[:observed_generation] if args.key?(:observed_generation) @retried = args[:retried] if args.key?(:retried) @start_time = args[:start_time] if args.key?(:start_time) end |