Class: TencentCloud::Iss::V20230517::RecordPlanBaseInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::RecordPlanBaseInfo
- Defined in:
- lib/v20230517/models.rb
Overview
实时上云计划基础信息
Instance Attribute Summary collapse
- #ChannelCount ⇒ Object
- #Describe ⇒ Object
- #LifeCycle ⇒ Object
- #PlanId ⇒ Object
- #PlanName ⇒ Object
- #RepairMode ⇒ Object
- #Status ⇒ Object
- #StreamType ⇒ Object
- #TemplateId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(planid = nil, planname = nil, templateid = nil, describe = nil, streamtype = nil, lifecycle = nil, status = nil, channelcount = nil, repairmode = nil) ⇒ RecordPlanBaseInfo
constructor
A new instance of RecordPlanBaseInfo.
Constructor Details
#initialize(planid = nil, planname = nil, templateid = nil, describe = nil, streamtype = nil, lifecycle = nil, status = nil, channelcount = nil, repairmode = nil) ⇒ RecordPlanBaseInfo
Returns a new instance of RecordPlanBaseInfo.
6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 |
# File 'lib/v20230517/models.rb', line 6388 def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, streamtype=nil, lifecycle=nil, status=nil, channelcount=nil, repairmode=nil) @PlanId = planid @PlanName = planname @TemplateId = templateid @Describe = describe @StreamType = streamtype @LifeCycle = lifecycle @Status = status @ChannelCount = channelcount @RepairMode = repairmode end |
Instance Attribute Details
#ChannelCount ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def ChannelCount @ChannelCount end |
#Describe ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def Describe @Describe end |
#LifeCycle ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def LifeCycle @LifeCycle end |
#PlanId ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def PlanId @PlanId end |
#PlanName ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def PlanName @PlanName end |
#RepairMode ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def RepairMode @RepairMode end |
#Status ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def Status @Status end |
#StreamType ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def StreamType @StreamType end |
#TemplateId ⇒ Object
6386 6387 6388 |
# File 'lib/v20230517/models.rb', line 6386 def TemplateId @TemplateId end |
Instance Method Details
#deserialize(params) ⇒ Object
6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 |
# File 'lib/v20230517/models.rb', line 6400 def deserialize(params) @PlanId = params['PlanId'] @PlanName = params['PlanName'] @TemplateId = params['TemplateId'] @Describe = params['Describe'] @StreamType = params['StreamType'] unless params['LifeCycle'].nil? @LifeCycle = LifeCycleData.new @LifeCycle.deserialize(params['LifeCycle']) end @Status = params['Status'] @ChannelCount = params['ChannelCount'] @RepairMode = params['RepairMode'] end |