Class: Google::Apis::RunV1alpha1::JobCondition
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::JobCondition
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1alpha1/classes.rb,
lib/google/apis/run_v1alpha1/representations.rb,
lib/google/apis/run_v1alpha1/representations.rb
Overview
JobCondition defines a readiness condition for a Revision.
Instance Attribute Summary collapse
-
#last_transition_time ⇒ String
Optional.
-
#message ⇒ String
Optional.
-
#reason ⇒ String
Optional.
-
#severity ⇒ String
Optional.
-
#status ⇒ String
Required.
-
#type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobCondition
constructor
A new instance of JobCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobCondition
Returns a new instance of JobCondition.
2275 2276 2277 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_transition_time ⇒ String
Optional. Last time the condition transitioned from one status to another.
Corresponds to the JSON property lastTransitionTime
2242 2243 2244 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2242 def last_transition_time @last_transition_time end |
#message ⇒ String
Optional. Human readable message indicating details about the current status.
Corresponds to the JSON property message
2247 2248 2249 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2247 def @message end |
#reason ⇒ String
Optional. One-word CamelCase reason for the condition's last transition.
Corresponds to the JSON property reason
2252 2253 2254 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2252 def reason @reason end |
#severity ⇒ String
Optional. How to interpret failures of this condition, one of Error, Warning,
Info
Corresponds to the JSON property severity
2258 2259 2260 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2258 def severity @severity end |
#status ⇒ String
Required. Status of the condition, one of True, False, Unknown.
Corresponds to the JSON property status
2263 2264 2265 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2263 def status @status end |
#type ⇒ String
Required. Type is used to communicate the status of the reconciliation process.
See also: https://github.com/knative/serving/blob/master/docs/spec/errors.md#
error-conditions-and-reporting Types include: * "Completed": True when the Job
has successfully completed. * "Started": True when the Job has successfully
started running. * "ResourcesAvailable": True when underlying resources have
been provisioned.
Corresponds to the JSON property type
2273 2274 2275 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2273 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2280 2281 2282 2283 2284 2285 2286 2287 |
# File 'lib/google/apis/run_v1alpha1/classes.rb', line 2280 def update!(**args) @last_transition_time = args[:last_transition_time] if args.key?(:last_transition_time) @message = args[:message] if args.key?(:message) @reason = args[:reason] if args.key?(:reason) @severity = args[:severity] if args.key?(:severity) @status = args[:status] if args.key?(:status) @type = args[:type] if args.key?(:type) end |