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.
25857 25858 25859 25860 25861 25862 |
# File 'lib/v20210820/models.rb', line 25857 def initialize(nodeinfo=nil, projectid=nil, tasktype=nil, taskmode=nil) @NodeInfo = nodeinfo @ProjectId = projectid @TaskType = tasktype @TaskMode = taskmode end |
Instance Attribute Details
#NodeInfo ⇒ Object
25855 25856 25857 |
# File 'lib/v20210820/models.rb', line 25855 def NodeInfo @NodeInfo end |
#ProjectId ⇒ Object
25855 25856 25857 |
# File 'lib/v20210820/models.rb', line 25855 def ProjectId @ProjectId end |
#TaskMode ⇒ Object
25855 25856 25857 |
# File 'lib/v20210820/models.rb', line 25855 def TaskMode @TaskMode end |
#TaskType ⇒ Object
25855 25856 25857 |
# File 'lib/v20210820/models.rb', line 25855 def TaskType @TaskType end |
Instance Method Details
#deserialize(params) ⇒ Object
25864 25865 25866 25867 25868 25869 25870 25871 25872 |
# File 'lib/v20210820/models.rb', line 25864 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 |