Class: TencentCloud::Iss::V20230517::UpdateRecordBackupPlanData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::UpdateRecordBackupPlanData
- 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) ⇒ UpdateRecordBackupPlanData
constructor
A new instance of UpdateRecordBackupPlanData.
Constructor Details
#initialize(planid = nil, planname = nil, templateid = nil, describe = nil, lifecycle = nil, status = nil, channelcount = nil, createat = nil, updateat = nil) ⇒ UpdateRecordBackupPlanData
Returns a new instance of UpdateRecordBackupPlanData.
7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 |
# File 'lib/v20230517/models.rb', line 7529 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
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def ChannelCount @ChannelCount end |
#CreateAt ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def CreateAt @CreateAt end |
#Describe ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def Describe @Describe end |
#LifeCycle ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def LifeCycle @LifeCycle end |
#PlanId ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def PlanId @PlanId end |
#PlanName ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def PlanName @PlanName end |
#Status ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def Status @Status end |
#TemplateId ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def TemplateId @TemplateId end |
#UpdateAt ⇒ Object
7527 7528 7529 |
# File 'lib/v20230517/models.rb', line 7527 def UpdateAt @UpdateAt end |
Instance Method Details
#deserialize(params) ⇒ Object
7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 |
# File 'lib/v20230517/models.rb', line 7541 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 |