Class: TencentCloud::Dts::V20211206::ModifySyncCompareTaskRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::ModifySyncCompareTaskRequest
- Defined in:
- lib/v20211206/models.rb
Overview
ModifySyncCompareTask请求参数结构体
Instance Attribute Summary collapse
- #CompareTaskId ⇒ Object
- #JobId ⇒ Object
- #ObjectMode ⇒ Object
- #Objects ⇒ Object
- #Options ⇒ Object
- #TaskName ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(jobid = nil, comparetaskid = nil, taskname = nil, objectmode = nil, objects = nil, options = nil) ⇒ ModifySyncCompareTaskRequest
constructor
A new instance of ModifySyncCompareTaskRequest.
Constructor Details
#initialize(jobid = nil, comparetaskid = nil, taskname = nil, objectmode = nil, objects = nil, options = nil) ⇒ ModifySyncCompareTaskRequest
Returns a new instance of ModifySyncCompareTaskRequest.
5515 5516 5517 5518 5519 5520 5521 5522 |
# File 'lib/v20211206/models.rb', line 5515 def initialize(jobid=nil, comparetaskid=nil, taskname=nil, objectmode=nil, objects=nil, =nil) @JobId = jobid @CompareTaskId = comparetaskid @TaskName = taskname @ObjectMode = objectmode @Objects = objects @Options = end |
Instance Attribute Details
#CompareTaskId ⇒ Object
5513 5514 5515 |
# File 'lib/v20211206/models.rb', line 5513 def CompareTaskId @CompareTaskId end |
#JobId ⇒ Object
5513 5514 5515 |
# File 'lib/v20211206/models.rb', line 5513 def JobId @JobId end |
#ObjectMode ⇒ Object
5513 5514 5515 |
# File 'lib/v20211206/models.rb', line 5513 def ObjectMode @ObjectMode end |
#Objects ⇒ Object
5513 5514 5515 |
# File 'lib/v20211206/models.rb', line 5513 def Objects @Objects end |
#Options ⇒ Object
5513 5514 5515 |
# File 'lib/v20211206/models.rb', line 5513 def Options @Options end |
#TaskName ⇒ Object
5513 5514 5515 |
# File 'lib/v20211206/models.rb', line 5513 def TaskName @TaskName end |
Instance Method Details
#deserialize(params) ⇒ Object
5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 |
# File 'lib/v20211206/models.rb', line 5524 def deserialize(params) @JobId = params['JobId'] @CompareTaskId = params['CompareTaskId'] @TaskName = params['TaskName'] @ObjectMode = params['ObjectMode'] unless params['Objects'].nil? @Objects = CompareObject.new @Objects.deserialize(params['Objects']) end unless params['Options'].nil? @Options = CompareOptions.new @Options.deserialize(params['Options']) end end |