Class: TencentCloud::Dts::V20211206::DescribeSyncJobsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::DescribeSyncJobsRequest
- Defined in:
- lib/v20211206/models.rb
Overview
DescribeSyncJobs请求参数结构体
Instance Attribute Summary collapse
- #DstInfoPattern ⇒ Object
- #JobId ⇒ Object
- #JobIds ⇒ Object
- #JobName ⇒ Object
- #JobType ⇒ Object
- #Limit ⇒ Object
- #Offset ⇒ Object
- #Order ⇒ Object
- #OrderSeq ⇒ Object
- #PayMode ⇒ Object
- #RunMode ⇒ Object
- #SrcInfoPattern ⇒ Object
- #Status ⇒ Object
- #TagFilters ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(jobid = nil, jobids = nil, jobname = nil, order = nil, orderseq = nil, offset = nil, limit = nil, status = nil, runmode = nil, jobtype = nil, paymode = nil, tagfilters = nil, srcinfopattern = nil, dstinfopattern = nil) ⇒ DescribeSyncJobsRequest
constructor
A new instance of DescribeSyncJobsRequest.
Constructor Details
#initialize(jobid = nil, jobids = nil, jobname = nil, order = nil, orderseq = nil, offset = nil, limit = nil, status = nil, runmode = nil, jobtype = nil, paymode = nil, tagfilters = nil, srcinfopattern = nil, dstinfopattern = nil) ⇒ DescribeSyncJobsRequest
Returns a new instance of DescribeSyncJobsRequest.
3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 |
# File 'lib/v20211206/models.rb', line 3470 def initialize(jobid=nil, jobids=nil, jobname=nil, order=nil, orderseq=nil, offset=nil, limit=nil, status=nil, runmode=nil, jobtype=nil, paymode=nil, tagfilters=nil, srcinfopattern=nil, dstinfopattern=nil) @JobId = jobid @JobIds = jobids @JobName = jobname @Order = order @OrderSeq = orderseq @Offset = offset @Limit = limit @Status = status @RunMode = runmode @JobType = jobtype @PayMode = paymode @TagFilters = tagfilters @SrcInfoPattern = srcinfopattern @DstInfoPattern = dstinfopattern end |
Instance Attribute Details
#DstInfoPattern ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def DstInfoPattern @DstInfoPattern end |
#JobId ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def JobId @JobId end |
#JobIds ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def JobIds @JobIds end |
#JobName ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def JobName @JobName end |
#JobType ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def JobType @JobType end |
#Limit ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def Limit @Limit end |
#Offset ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def Offset @Offset end |
#Order ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def Order @Order end |
#OrderSeq ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def OrderSeq @OrderSeq end |
#PayMode ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def PayMode @PayMode end |
#RunMode ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def RunMode @RunMode end |
#SrcInfoPattern ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def SrcInfoPattern @SrcInfoPattern end |
#Status ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def Status @Status end |
#TagFilters ⇒ Object
3468 3469 3470 |
# File 'lib/v20211206/models.rb', line 3468 def TagFilters @TagFilters end |
Instance Method Details
#deserialize(params) ⇒ Object
3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 |
# File 'lib/v20211206/models.rb', line 3487 def deserialize(params) @JobId = params['JobId'] @JobIds = params['JobIds'] @JobName = params['JobName'] @Order = params['Order'] @OrderSeq = params['OrderSeq'] @Offset = params['Offset'] @Limit = params['Limit'] @Status = params['Status'] @RunMode = params['RunMode'] @JobType = params['JobType'] @PayMode = params['PayMode'] unless params['TagFilters'].nil? @TagFilters = [] params['TagFilters'].each do |i| tagfilter_tmp = TagFilter.new tagfilter_tmp.deserialize(i) @TagFilters << tagfilter_tmp end end @SrcInfoPattern = params['SrcInfoPattern'] @DstInfoPattern = params['DstInfoPattern'] end |