class Google::Apis::ClouddeployV1::PipelineReadyCondition

PipelineReadyCondition contains information around the status of the Pipeline.

Attributes

status[RW]

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]

status?[RW]

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]

update_time[RW]

Last time the condition was updated. Corresponds to the JSON property ‘updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouddeploy_v1/classes.rb, line 998
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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