Class: TencentCloud::Dlc::V20210125::DescribeTaskLogRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeTaskLogRequest
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeTaskLog请求参数结构体
Instance Attribute Summary collapse
- #Asc ⇒ Object
- #BatchId ⇒ Object
- #Context ⇒ Object
- #EndTime ⇒ Object
- #Filters ⇒ Object
- #Limit ⇒ Object
- #StartTime ⇒ Object
- #TaskId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskid = nil, starttime = nil, endtime = nil, limit = nil, context = nil, asc = nil, filters = nil, batchid = nil) ⇒ DescribeTaskLogRequest
constructor
A new instance of DescribeTaskLogRequest.
Constructor Details
#initialize(taskid = nil, starttime = nil, endtime = nil, limit = nil, context = nil, asc = nil, filters = nil, batchid = nil) ⇒ DescribeTaskLogRequest
Returns a new instance of DescribeTaskLogRequest.
9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 |
# File 'lib/v20210125/models.rb', line 9225 def initialize(taskid=nil, starttime=nil, endtime=nil, limit=nil, context=nil, asc=nil, filters=nil, batchid=nil) @TaskId = taskid @StartTime = starttime @EndTime = endtime @Limit = limit @Context = context @Asc = asc @Filters = filters @BatchId = batchid end |
Instance Attribute Details
#Asc ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def Asc @Asc end |
#BatchId ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def BatchId @BatchId end |
#Context ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def Context @Context end |
#EndTime ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def EndTime @EndTime end |
#Filters ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def Filters @Filters end |
#Limit ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def Limit @Limit end |
#StartTime ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def StartTime @StartTime end |
#TaskId ⇒ Object
9223 9224 9225 |
# File 'lib/v20210125/models.rb', line 9223 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 |
# File 'lib/v20210125/models.rb', line 9236 def deserialize(params) @TaskId = params['TaskId'] @StartTime = params['StartTime'] @EndTime = params['EndTime'] @Limit = params['Limit'] @Context = params['Context'] @Asc = params['Asc'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end @BatchId = params['BatchId'] end |