Class: TencentCloud::Dts::V20211206::ModifySyncRateLimitRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::ModifySyncRateLimitRequest
- Defined in:
- lib/v20211206/models.rb
Overview
ModifySyncRateLimit请求参数结构体
Instance Attribute Summary collapse
- #DumpRps ⇒ Object
- #DumpThread ⇒ Object
- #JobId ⇒ Object
- #LoadRps ⇒ Object
- #LoadThread ⇒ Object
- #SinkerThread ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(jobid = nil, dumpthread = nil, dumprps = nil, loadthread = nil, sinkerthread = nil, loadrps = nil) ⇒ ModifySyncRateLimitRequest
constructor
A new instance of ModifySyncRateLimitRequest.
Constructor Details
#initialize(jobid = nil, dumpthread = nil, dumprps = nil, loadthread = nil, sinkerthread = nil, loadrps = nil) ⇒ ModifySyncRateLimitRequest
Returns a new instance of ModifySyncRateLimitRequest.
5619 5620 5621 5622 5623 5624 5625 5626 |
# File 'lib/v20211206/models.rb', line 5619 def initialize(jobid=nil, dumpthread=nil, dumprps=nil, loadthread=nil, sinkerthread=nil, loadrps=nil) @JobId = jobid @DumpThread = dumpthread @DumpRps = dumprps @LoadThread = loadthread @SinkerThread = sinkerthread @LoadRps = loadrps end |
Instance Attribute Details
#DumpRps ⇒ Object
5617 5618 5619 |
# File 'lib/v20211206/models.rb', line 5617 def DumpRps @DumpRps end |
#DumpThread ⇒ Object
5617 5618 5619 |
# File 'lib/v20211206/models.rb', line 5617 def DumpThread @DumpThread end |
#JobId ⇒ Object
5617 5618 5619 |
# File 'lib/v20211206/models.rb', line 5617 def JobId @JobId end |
#LoadRps ⇒ Object
5617 5618 5619 |
# File 'lib/v20211206/models.rb', line 5617 def LoadRps @LoadRps end |
#LoadThread ⇒ Object
5617 5618 5619 |
# File 'lib/v20211206/models.rb', line 5617 def LoadThread @LoadThread end |
#SinkerThread ⇒ Object
5617 5618 5619 |
# File 'lib/v20211206/models.rb', line 5617 def SinkerThread @SinkerThread end |
Instance Method Details
#deserialize(params) ⇒ Object
5628 5629 5630 5631 5632 5633 5634 5635 |
# File 'lib/v20211206/models.rb', line 5628 def deserialize(params) @JobId = params['JobId'] @DumpThread = params['DumpThread'] @DumpRps = params['DumpRps'] @LoadThread = params['LoadThread'] @SinkerThread = params['SinkerThread'] @LoadRps = params['LoadRps'] end |