Class: TencentCloud::Ess::V20201111::DescribeFlowTemplatesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeFlowTemplatesRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeFlowTemplates请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#ApplicationId ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#ContentType ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#Filters ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#GenerateSource ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#IsChannel ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#Limit ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#Offset ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#Operator ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#Organization ⇒ Object
- false:不获取(默认)
- true:需要获取
-
#WithPreviewUrl ⇒ Object
- false:不获取(默认)
- true:需要获取
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, agent = nil, contenttype = nil, filters = nil, offset = nil, limit = nil, applicationid = nil, ischannel = nil, organization = nil, generatesource = nil, withpreviewurl = nil) ⇒ DescribeFlowTemplatesRequest
constructor
A new instance of DescribeFlowTemplatesRequest.
Constructor Details
#initialize(operator = nil, agent = nil, contenttype = nil, filters = nil, offset = nil, limit = nil, applicationid = nil, ischannel = nil, organization = nil, generatesource = nil, withpreviewurl = nil) ⇒ DescribeFlowTemplatesRequest
Returns a new instance of DescribeFlowTemplatesRequest.
10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 |
# File 'lib/v20201111/models.rb', line 10583 def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil, withpreviewurl=nil) @Operator = operator @Agent = agent @ContentType = contenttype @Filters = filters @Offset = offset @Limit = limit @ApplicationId = applicationid @IsChannel = ischannel @Organization = organization @GenerateSource = generatesource @WithPreviewUrl = withpreviewurl end |
Instance Attribute Details
#Agent ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def Agent @Agent end |
#ApplicationId ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def ApplicationId @ApplicationId end |
#ContentType ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def ContentType @ContentType end |
#Filters ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def Filters @Filters end |
#GenerateSource ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def GenerateSource @GenerateSource end |
#IsChannel ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def IsChannel @IsChannel end |
#Limit ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def Limit @Limit end |
#Offset ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def Offset @Offset end |
#Operator ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def Operator @Operator end |
#Organization ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def Organization @Organization end |
#WithPreviewUrl ⇒ Object
- false:不获取(默认)
- true:需要获取
10574 10575 10576 |
# File 'lib/v20201111/models.rb', line 10574 def WithPreviewUrl @WithPreviewUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 |
# File 'lib/v20201111/models.rb', line 10597 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @ContentType = params['ContentType'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end @Offset = params['Offset'] @Limit = params['Limit'] @ApplicationId = params['ApplicationId'] @IsChannel = params['IsChannel'] unless params['Organization'].nil? @Organization = OrganizationInfo.new @Organization.deserialize(params['Organization']) end @GenerateSource = params['GenerateSource'] @WithPreviewUrl = params['WithPreviewUrl'] end |