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.
27239 27240 27241 27242 27243 27244 |
# File 'lib/v20210820/models.rb', line 27239 def initialize(nodeinfo=nil, projectid=nil, tasktype=nil, taskmode=nil) @NodeInfo = nodeinfo @ProjectId = projectid @TaskType = tasktype @TaskMode = taskmode end |
Instance Attribute Details
#NodeInfo ⇒ Object
27237 27238 27239 |
# File 'lib/v20210820/models.rb', line 27237 def NodeInfo @NodeInfo end |
#ProjectId ⇒ Object
27237 27238 27239 |
# File 'lib/v20210820/models.rb', line 27237 def ProjectId @ProjectId end |
#TaskMode ⇒ Object
27237 27238 27239 |
# File 'lib/v20210820/models.rb', line 27237 def TaskMode @TaskMode end |
#TaskType ⇒ Object
27237 27238 27239 |
# File 'lib/v20210820/models.rb', line 27237 def TaskType @TaskType end |
Instance Method Details
#deserialize(params) ⇒ Object
27246 27247 27248 27249 27250 27251 27252 27253 27254 |
# File 'lib/v20210820/models.rb', line 27246 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 |