class Google::Apis::ClouddeployV1::PipelineReadyCondition
PipelineReadyCondition
contains information around the status of the Pipeline.
Attributes
True if the Pipeline is in a valid state. Otherwise at least one condition in ‘ PipelineCondition` is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. Corresponds to the JSON property `status` @return [Boolean]
True if the Pipeline is in a valid state. Otherwise at least one condition in ‘ PipelineCondition` is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. Corresponds to the JSON property `status` @return [Boolean]
Last time the condition was updated. Corresponds to the JSON property ‘updateTime` @return [String]
Public Class Methods
# File lib/google/apis/clouddeploy_v1/classes.rb, line 998 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/clouddeploy_v1/classes.rb, line 1003 def update!(**args) @status = args[:status] if args.key?(:status) @update_time = args[:update_time] if args.key?(:update_time) end