Class: Google::Apis::ClouddeployV1::ReleaseCondition
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::ReleaseCondition
- 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
ReleaseCondition contains all conditions relevant to a Release.
Instance Attribute Summary collapse
-
#release_ready_condition ⇒ Google::Apis::ClouddeployV1::ReleaseReadyCondition
ReleaseReadyCondition contains information around the status of the Release.
-
#skaffold_supported_condition ⇒ Google::Apis::ClouddeployV1::SkaffoldSupportedCondition
SkaffoldSupportedCondition contains information about when support for the release's version of Skaffold ends.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReleaseCondition
constructor
A new instance of ReleaseCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReleaseCondition
Returns a new instance of ReleaseCondition.
4253 4254 4255 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#release_ready_condition ⇒ Google::Apis::ClouddeployV1::ReleaseReadyCondition
ReleaseReadyCondition contains information around the status of the Release.
If a release is not ready, you cannot create a rollout with the release.
Corresponds to the JSON property releaseReadyCondition
4245 4246 4247 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4245 def release_ready_condition @release_ready_condition end |
#skaffold_supported_condition ⇒ Google::Apis::ClouddeployV1::SkaffoldSupportedCondition
SkaffoldSupportedCondition contains information about when support for the
release's version of Skaffold ends.
Corresponds to the JSON property skaffoldSupportedCondition
4251 4252 4253 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4251 def skaffold_supported_condition @skaffold_supported_condition end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4258 4259 4260 4261 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4258 def update!(**args) @release_ready_condition = args[:release_ready_condition] if args.key?(:release_ready_condition) @skaffold_supported_condition = args[:skaffold_supported_condition] if args.key?(:skaffold_supported_condition) end |