Class: TencentCloud::Iss::V20230517::AddRecordBackupPlanData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::AddRecordBackupPlanData
- Defined in:
- lib/v20230517/models.rb
Overview
新增录像上云计划返回数据
Instance Attribute Summary collapse
- #ChannelCount ⇒ Object
- #CreateAt ⇒ Object
- #Describe ⇒ Object
- #LifeCycle ⇒ Object
- #PlanId ⇒ Object
- #PlanName ⇒ Object
- #Status ⇒ Object
- #TemplateId ⇒ Object
- #UpdateAt ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(planid = nil, planname = nil, templateid = nil, describe = nil, lifecycle = nil, status = nil, channelcount = nil, createat = nil, updateat = nil) ⇒ AddRecordBackupPlanData
constructor
A new instance of AddRecordBackupPlanData.
Constructor Details
#initialize(planid = nil, planname = nil, templateid = nil, describe = nil, lifecycle = nil, status = nil, channelcount = nil, createat = nil, updateat = nil) ⇒ AddRecordBackupPlanData
Returns a new instance of AddRecordBackupPlanData.
532 533 534 535 536 537 538 539 540 541 542 |
# File 'lib/v20230517/models.rb', line 532 def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, status=nil, channelcount=nil, createat=nil, updateat=nil) @PlanId = planid @PlanName = planname @TemplateId = templateid @Describe = describe @LifeCycle = lifecycle @Status = status @ChannelCount = channelcount @CreateAt = createat @UpdateAt = updateat end |
Instance Attribute Details
#ChannelCount ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def ChannelCount @ChannelCount end |
#CreateAt ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def CreateAt @CreateAt end |
#Describe ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def Describe @Describe end |
#LifeCycle ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def LifeCycle @LifeCycle end |
#PlanId ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def PlanId @PlanId end |
#PlanName ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def PlanName @PlanName end |
#Status ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def Status @Status end |
#TemplateId ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def TemplateId @TemplateId end |
#UpdateAt ⇒ Object
530 531 532 |
# File 'lib/v20230517/models.rb', line 530 def UpdateAt @UpdateAt end |
Instance Method Details
#deserialize(params) ⇒ Object
544 545 546 547 548 549 550 551 552 553 554 555 556 557 |
# File 'lib/v20230517/models.rb', line 544 def deserialize(params) @PlanId = params['PlanId'] @PlanName = params['PlanName'] @TemplateId = params['TemplateId'] @Describe = params['Describe'] unless params['LifeCycle'].nil? @LifeCycle = LifeCycleData.new @LifeCycle.deserialize(params['LifeCycle']) end @Status = params['Status'] @ChannelCount = params['ChannelCount'] @CreateAt = params['CreateAt'] @UpdateAt = params['UpdateAt'] end |