Class: TencentCloud::Wedata::V20210820::ModifyIntegrationNodeRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::ModifyIntegrationNodeRequest
- Defined in:
- lib/v20210820/models.rb
Overview
ModifyIntegrationNode请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nodeinfo = nil, projectid = nil, tasktype = nil, taskmode = nil) ⇒ ModifyIntegrationNodeRequest
constructor
A new instance of ModifyIntegrationNodeRequest.
Constructor Details
#initialize(nodeinfo = nil, projectid = nil, tasktype = nil, taskmode = nil) ⇒ ModifyIntegrationNodeRequest
Returns a new instance of ModifyIntegrationNodeRequest.
26007 26008 26009 26010 26011 26012 |
# File 'lib/v20210820/models.rb', line 26007 def initialize(nodeinfo=nil, projectid=nil, tasktype=nil, taskmode=nil) @NodeInfo = nodeinfo @ProjectId = projectid @TaskType = tasktype @TaskMode = taskmode end |
Instance Attribute Details
#NodeInfo ⇒ Object
26005 26006 26007 |
# File 'lib/v20210820/models.rb', line 26005 def NodeInfo @NodeInfo end |
#ProjectId ⇒ Object
26005 26006 26007 |
# File 'lib/v20210820/models.rb', line 26005 def ProjectId @ProjectId end |
#TaskMode ⇒ Object
26005 26006 26007 |
# File 'lib/v20210820/models.rb', line 26005 def TaskMode @TaskMode end |
#TaskType ⇒ Object
26005 26006 26007 |
# File 'lib/v20210820/models.rb', line 26005 def TaskType @TaskType end |
Instance Method Details
#deserialize(params) ⇒ Object
26014 26015 26016 26017 26018 26019 26020 26021 26022 |
# File 'lib/v20210820/models.rb', line 26014 def deserialize(params) unless params['NodeInfo'].nil? @NodeInfo = IntegrationNodeInfo.new @NodeInfo.deserialize(params['NodeInfo']) end @ProjectId = params['ProjectId'] @TaskType = params['TaskType'] @TaskMode = params['TaskMode'] end |