lib/v20201016/models.rb in tencentcloud-sdk-cls-3.0.890 vs lib/v20201016/models.rb in tencentcloud-sdk-cls-3.0.891
- old
+ new
@@ -2559,22 +2559,25 @@
# @type DstResources: Array
# @param EnableFlag: 任务启动状态. 默认为1:开启, 2:关闭
# @type EnableFlag: Integer
# @param PreviewLogStatistics: 用于预览加工结果的测试数据
# @type PreviewLogStatistics: Array
+ # @param DataTransformType: 数据加工类型。0:标准加工任务; 1:前置加工任务。前置加工任务将采集的日志处理完成后,再写入日志主题。
+ # @type DataTransformType: Integer
- attr_accessor :FuncType, :SrcTopicId, :Name, :EtlContent, :TaskType, :DstResources, :EnableFlag, :PreviewLogStatistics
+ attr_accessor :FuncType, :SrcTopicId, :Name, :EtlContent, :TaskType, :DstResources, :EnableFlag, :PreviewLogStatistics, :DataTransformType
- def initialize(functype=nil, srctopicid=nil, name=nil, etlcontent=nil, tasktype=nil, dstresources=nil, enableflag=nil, previewlogstatistics=nil)
+ def initialize(functype=nil, srctopicid=nil, name=nil, etlcontent=nil, tasktype=nil, dstresources=nil, enableflag=nil, previewlogstatistics=nil, datatransformtype=nil)
@FuncType = functype
@SrcTopicId = srctopicid
@Name = name
@EtlContent = etlcontent
@TaskType = tasktype
@DstResources = dstresources
@EnableFlag = enableflag
@PreviewLogStatistics = previewlogstatistics
+ @DataTransformType = datatransformtype
end
def deserialize(params)
@FuncType = params['FuncType']
@SrcTopicId = params['SrcTopicId']
@@ -2596,9 +2599,10 @@
previewlogstatistic_tmp = PreviewLogStatistic.new
previewlogstatistic_tmp.deserialize(i)
@PreviewLogStatistics << previewlogstatistic_tmp
end
end
+ @DataTransformType = params['DataTransformType']
end
end
# CreateDataTransform返回参数结构体
class CreateDataTransformResponse < TencentCloud::Common::AbstractModel