Class: TencentCloud::Tke::V20180525::CreateRollOutSequenceRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::CreateRollOutSequenceRequest
- Defined in:
- lib/v20180525/models.rb
Overview
CreateRollOutSequence请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, sequenceflows = nil, enabled = nil) ⇒ CreateRollOutSequenceRequest
constructor
A new instance of CreateRollOutSequenceRequest.
Constructor Details
#initialize(name = nil, sequenceflows = nil, enabled = nil) ⇒ CreateRollOutSequenceRequest
4028 4029 4030 4031 4032 |
# File 'lib/v20180525/models.rb', line 4028 def initialize(name=nil, sequenceflows=nil, enabled=nil) @Name = name @SequenceFlows = sequenceflows @Enabled = enabled end |
Instance Attribute Details
#Enabled ⇒ Object
4026 4027 4028 |
# File 'lib/v20180525/models.rb', line 4026 def Enabled @Enabled end |
#Name ⇒ Object
4026 4027 4028 |
# File 'lib/v20180525/models.rb', line 4026 def Name @Name end |
#SequenceFlows ⇒ Object
4026 4027 4028 |
# File 'lib/v20180525/models.rb', line 4026 def SequenceFlows @SequenceFlows end |
Instance Method Details
#deserialize(params) ⇒ Object
4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 |
# File 'lib/v20180525/models.rb', line 4034 def deserialize(params) @Name = params['Name'] unless params['SequenceFlows'].nil? @SequenceFlows = [] params['SequenceFlows'].each do |i| sequenceflow_tmp = SequenceFlow.new sequenceflow_tmp.deserialize(i) @SequenceFlows << sequenceflow_tmp end end @Enabled = params['Enabled'] end |