Class: Google::Apis::ClouddeployV1::PipelineCondition
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::PipelineCondition
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
PipelineCondition contains all conditions relevant to a Delivery Pipeline.
Instance Attribute Summary collapse
-
#pipeline_ready_condition ⇒ Google::Apis::ClouddeployV1::PipelineReadyCondition
PipelineReadyCondition contains information around the status of the Pipeline.
-
#targets_present_condition ⇒ Google::Apis::ClouddeployV1::TargetsPresentCondition
TargetsPresentCondition contains information on any Targets defined in the Delivery Pipeline that do not actually exist.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PipelineCondition
constructor
A new instance of PipelineCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PipelineCondition
Returns a new instance of PipelineCondition.
1119 1120 1121 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1119 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pipeline_ready_condition ⇒ Google::Apis::ClouddeployV1::PipelineReadyCondition
PipelineReadyCondition contains information around the status of the Pipeline.
Corresponds to the JSON property pipelineReadyCondition
1111 1112 1113 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1111 def pipeline_ready_condition @pipeline_ready_condition end |
#targets_present_condition ⇒ Google::Apis::ClouddeployV1::TargetsPresentCondition
TargetsPresentCondition contains information on any Targets defined in the
Delivery Pipeline that do not actually exist.
Corresponds to the JSON property targetsPresentCondition
1117 1118 1119 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1117 def targets_present_condition @targets_present_condition end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1124 1125 1126 1127 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1124 def update!(**args) @pipeline_ready_condition = args[:pipeline_ready_condition] if args.key?(:pipeline_ready_condition) @targets_present_condition = args[:targets_present_condition] if args.key?(:targets_present_condition) end |