Class: TencentCloud::Postgres::V20170312::DescribeTasksRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::DescribeTasksRequest
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeTasks请求参数结构体
Instance Attribute Summary collapse
- #DBInstanceId ⇒ Object
- #Limit ⇒ Object
- #MaxStartTime ⇒ Object
- #MinStartTime ⇒ Object
- #Offset ⇒ Object
- #OrderBy ⇒ Object
- #OrderByType ⇒ Object
- #TaskId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskid = nil, dbinstanceid = nil, minstarttime = nil, maxstarttime = nil, limit = nil, offset = nil, orderby = nil, orderbytype = nil) ⇒ DescribeTasksRequest
constructor
A new instance of DescribeTasksRequest.
Constructor Details
#initialize(taskid = nil, dbinstanceid = nil, minstarttime = nil, maxstarttime = nil, limit = nil, offset = nil, orderby = nil, orderbytype = nil) ⇒ DescribeTasksRequest
Returns a new instance of DescribeTasksRequest.
4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 |
# File 'lib/v20170312/models.rb', line 4504 def initialize(taskid=nil, dbinstanceid=nil, minstarttime=nil, maxstarttime=nil, limit=nil, offset=nil, orderby=nil, orderbytype=nil) @TaskId = taskid @DBInstanceId = dbinstanceid @MinStartTime = minstarttime @MaxStartTime = maxstarttime @Limit = limit @Offset = offset @OrderBy = orderby @OrderByType = orderbytype end |
Instance Attribute Details
#DBInstanceId ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def DBInstanceId @DBInstanceId end |
#Limit ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def Limit @Limit end |
#MaxStartTime ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def MaxStartTime @MaxStartTime end |
#MinStartTime ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def MinStartTime @MinStartTime end |
#Offset ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def Offset @Offset end |
#OrderBy ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def OrderBy @OrderBy end |
#OrderByType ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def OrderByType @OrderByType end |
#TaskId ⇒ Object
4502 4503 4504 |
# File 'lib/v20170312/models.rb', line 4502 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 |
# File 'lib/v20170312/models.rb', line 4515 def deserialize(params) @TaskId = params['TaskId'] @DBInstanceId = params['DBInstanceId'] @MinStartTime = params['MinStartTime'] @MaxStartTime = params['MaxStartTime'] @Limit = params['Limit'] @Offset = params['Offset'] @OrderBy = params['OrderBy'] @OrderByType = params['OrderByType'] end |