Class: Google::Apis::ClouddeployV1::AdvanceRolloutRequest
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::AdvanceRolloutRequest
- 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
The request object used by AdvanceRollout.
Instance Attribute Summary collapse
-
#phase_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AdvanceRolloutRequest
constructor
A new instance of AdvanceRolloutRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AdvanceRolloutRequest
Returns a new instance of AdvanceRolloutRequest.
101 102 103 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 101 def initialize(**args) update!(**args) end |
Instance Attribute Details
#phase_id ⇒ String
Required. The phase ID to advance the Rollout to.
Corresponds to the JSON property phaseId
99 100 101 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 99 def phase_id @phase_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
106 107 108 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 106 def update!(**args) @phase_id = args[:phase_id] if args.key?(:phase_id) end |