Class: TencentCloud::Iss::V20230517::UpdateRecordPlanData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::UpdateRecordPlanData
- Defined in:
- lib/v20230517/models.rb
Overview
修改实时上云录像计划的数据
Instance Attribute Summary collapse
- #Add ⇒ Object
- #Del ⇒ Object
- #Describe ⇒ Object
- #LifeCycle ⇒ Object
- #OrganizationId ⇒ Object
- #PlanName ⇒ Object
- #RepairMode ⇒ Object
- #StreamType ⇒ Object
- #TemplateId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(planname = nil, templateid = nil, describe = nil, streamtype = nil, lifecycle = nil, add = nil, del = nil, organizationid = nil, repairmode = nil) ⇒ UpdateRecordPlanData
constructor
A new instance of UpdateRecordPlanData.
Constructor Details
#initialize(planname = nil, templateid = nil, describe = nil, streamtype = nil, lifecycle = nil, add = nil, del = nil, organizationid = nil, repairmode = nil) ⇒ UpdateRecordPlanData
Returns a new instance of UpdateRecordPlanData.
7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 |
# File 'lib/v20230517/models.rb', line 7818 def initialize(planname=nil, templateid=nil, describe=nil, streamtype=nil, lifecycle=nil, add=nil, del=nil, organizationid=nil, repairmode=nil) @PlanName = planname @TemplateId = templateid @Describe = describe @StreamType = streamtype @LifeCycle = lifecycle @Add = add @Del = del @OrganizationId = organizationid @RepairMode = repairmode end |
Instance Attribute Details
#Add ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def Add @Add end |
#Del ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def Del @Del end |
#Describe ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def Describe @Describe end |
#LifeCycle ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def LifeCycle @LifeCycle end |
#OrganizationId ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def OrganizationId @OrganizationId end |
#PlanName ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def PlanName @PlanName end |
#RepairMode ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def RepairMode @RepairMode end |
#StreamType ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def StreamType @StreamType end |
#TemplateId ⇒ Object
7816 7817 7818 |
# File 'lib/v20230517/models.rb', line 7816 def TemplateId @TemplateId end |
Instance Method Details
#deserialize(params) ⇒ Object
7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 |
# File 'lib/v20230517/models.rb', line 7830 def deserialize(params) @PlanName = params['PlanName'] @TemplateId = params['TemplateId'] @Describe = params['Describe'] @StreamType = params['StreamType'] unless params['LifeCycle'].nil? @LifeCycle = LifeCycleData.new @LifeCycle.deserialize(params['LifeCycle']) end unless params['Add'].nil? @Add = [] params['Add'].each do |i| channelinfo_tmp = ChannelInfo.new channelinfo_tmp.deserialize(i) @Add << channelinfo_tmp end end @Del = params['Del'] @OrganizationId = params['OrganizationId'] @RepairMode = params['RepairMode'] end |