Class: TencentCloud::Wedata::V20210820::CreateIntegrationNodeRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::CreateIntegrationNodeRequest
- Defined in:
- lib/v20210820/models.rb
Overview
CreateIntegrationNode请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nodeinfo = nil, projectid = nil, tasktype = nil) ⇒ CreateIntegrationNodeRequest
constructor
A new instance of CreateIntegrationNodeRequest.
Constructor Details
#initialize(nodeinfo = nil, projectid = nil, tasktype = nil) ⇒ CreateIntegrationNodeRequest
Returns a new instance of CreateIntegrationNodeRequest.
5003 5004 5005 5006 5007 |
# File 'lib/v20210820/models.rb', line 5003 def initialize(nodeinfo=nil, projectid=nil, tasktype=nil) @NodeInfo = nodeinfo @ProjectId = projectid @TaskType = tasktype end |
Instance Attribute Details
#NodeInfo ⇒ Object
5001 5002 5003 |
# File 'lib/v20210820/models.rb', line 5001 def NodeInfo @NodeInfo end |
#ProjectId ⇒ Object
5001 5002 5003 |
# File 'lib/v20210820/models.rb', line 5001 def ProjectId @ProjectId end |
#TaskType ⇒ Object
5001 5002 5003 |
# File 'lib/v20210820/models.rb', line 5001 def TaskType @TaskType end |
Instance Method Details
#deserialize(params) ⇒ Object
5009 5010 5011 5012 5013 5014 5015 5016 |
# File 'lib/v20210820/models.rb', line 5009 def deserialize(params) unless params['NodeInfo'].nil? @NodeInfo = IntegrationNodeInfo.new @NodeInfo.deserialize(params['NodeInfo']) end @ProjectId = params['ProjectId'] @TaskType = params['TaskType'] end |