Class: TencentCloud::Dlc::V20210125::ListTaskJobLogDetailRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::ListTaskJobLogDetailRequest
- Defined in:
- lib/v20210125/models.rb
Overview
ListTaskJobLogDetail请求参数结构体
Instance Attribute Summary collapse
- #Asc ⇒ Object
- #BatchId ⇒ Object
- #Context ⇒ Object
- #DataEngineId ⇒ Object
- #EndTime ⇒ Object
- #Filters ⇒ Object
- #Limit ⇒ Object
- #ResourceGroupId ⇒ Object
- #StartTime ⇒ Object
- #TaskId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(starttime = nil, endtime = nil, limit = nil, context = nil, taskid = nil, asc = nil, filters = nil, batchid = nil, dataengineid = nil, resourcegroupid = nil) ⇒ ListTaskJobLogDetailRequest
constructor
A new instance of ListTaskJobLogDetailRequest.
Constructor Details
#initialize(starttime = nil, endtime = nil, limit = nil, context = nil, taskid = nil, asc = nil, filters = nil, batchid = nil, dataengineid = nil, resourcegroupid = nil) ⇒ ListTaskJobLogDetailRequest
Returns a new instance of ListTaskJobLogDetailRequest.
11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 |
# File 'lib/v20210125/models.rb', line 11822 def initialize(starttime=nil, endtime=nil, limit=nil, context=nil, taskid=nil, asc=nil, filters=nil, batchid=nil, dataengineid=nil, resourcegroupid=nil) @StartTime = starttime @EndTime = endtime @Limit = limit @Context = context @TaskId = taskid @Asc = asc @Filters = filters @BatchId = batchid @DataEngineId = dataengineid @ResourceGroupId = resourcegroupid end |
Instance Attribute Details
#Asc ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def Asc @Asc end |
#BatchId ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def BatchId @BatchId end |
#Context ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def Context @Context end |
#DataEngineId ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def DataEngineId @DataEngineId end |
#EndTime ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def EndTime @EndTime end |
#Filters ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def Filters @Filters end |
#Limit ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def Limit @Limit end |
#ResourceGroupId ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def ResourceGroupId @ResourceGroupId end |
#StartTime ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def StartTime @StartTime end |
#TaskId ⇒ Object
11820 11821 11822 |
# File 'lib/v20210125/models.rb', line 11820 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 |
# File 'lib/v20210125/models.rb', line 11835 def deserialize(params) @StartTime = params['StartTime'] @EndTime = params['EndTime'] @Limit = params['Limit'] @Context = params['Context'] @TaskId = params['TaskId'] @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'] @DataEngineId = params['DataEngineId'] @ResourceGroupId = params['ResourceGroupId'] end |