tencentcloud-sdk-wedata 3.0.1016 → 3.0.1018

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88fa79415a6f9df226d290b114cea9ddc5c77ddb
4
- data.tar.gz: 36fa574896369945d6f73ec4e983cc835c4ffffe
3
+ metadata.gz: baaf76cd09c15de423a511350f1349f8ea92e410
4
+ data.tar.gz: 608b130f9f83f012ec0ad077860b1f345da4be4a
5
5
  SHA512:
6
- metadata.gz: b1f3eb8f5c2bf068f65d94768db384e02e8387f4420053cfb5c798f54e2c85dbc75cf48b128626f8721e6e3cb08760156eaed6805d76d21c00addf81766e3806
7
- data.tar.gz: c65db5210fec13180b372ba7313129f71346c9fc24b55a0d42e451e6021d13cb475a8f51550c733961846bf01ca1c69f02f10034b4ab6a33fb4897edeacb9441
6
+ metadata.gz: 1849b1db91192a2c990452a488cdc5bdb13a4406d7ead9ecb51262727930bc8951d329c7aa97740355939c7cdbcf11cc274c124bbaad4c2531c420cc3e597e73
7
+ data.tar.gz: 22c6eb5fe374d1c19b5d3af668501d9601635bb61a39320771f9b4bf512d9c24e4d0f4aef6e0b492e3f970ac243169425648ebadb083a6248a5a35a46a265211
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1016
1
+ 3.0.1018
@@ -3079,6 +3079,54 @@ module TencentCloud
3079
3079
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3080
3080
  end
3081
3081
 
3082
+ # 查询上报任务详情
3083
+
3084
+ # @param request: Request instance for DescribeReportTaskDetail.
3085
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeReportTaskDetailRequest`
3086
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeReportTaskDetailResponse`
3087
+ def DescribeReportTaskDetail(request)
3088
+ body = send_request('DescribeReportTaskDetail', request.serialize)
3089
+ response = JSON.parse(body)
3090
+ if response['Response'].key?('Error') == false
3091
+ model = DescribeReportTaskDetailResponse.new
3092
+ model.deserialize(response['Response'])
3093
+ model
3094
+ else
3095
+ code = response['Response']['Error']['Code']
3096
+ message = response['Response']['Error']['Message']
3097
+ reqid = response['Response']['RequestId']
3098
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3099
+ end
3100
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3101
+ raise e
3102
+ rescue StandardError => e
3103
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3104
+ end
3105
+
3106
+ # 查询上报任务列表
3107
+
3108
+ # @param request: Request instance for DescribeReportTaskList.
3109
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeReportTaskListRequest`
3110
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeReportTaskListResponse`
3111
+ def DescribeReportTaskList(request)
3112
+ body = send_request('DescribeReportTaskList', request.serialize)
3113
+ response = JSON.parse(body)
3114
+ if response['Response'].key?('Error') == false
3115
+ model = DescribeReportTaskListResponse.new
3116
+ model.deserialize(response['Response'])
3117
+ model
3118
+ else
3119
+ code = response['Response']['Error']['Code']
3120
+ message = response['Response']['Error']['Message']
3121
+ reqid = response['Response']['RequestId']
3122
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3123
+ end
3124
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3125
+ raise e
3126
+ rescue StandardError => e
3127
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3128
+ end
3129
+
3082
3130
  # 获取资源管理目录树
3083
3131
 
3084
3132
  # @param request: Request instance for DescribeResourceManagePathTrees.
@@ -5734,6 +5782,30 @@ module TencentCloud
5734
5782
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5735
5783
  end
5736
5784
 
5785
+ # 手动任务触发运行
5786
+
5787
+ # @param request: Request instance for TriggerManualTasks.
5788
+ # @type request: :class:`Tencentcloud::wedata::V20210820::TriggerManualTasksRequest`
5789
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::TriggerManualTasksResponse`
5790
+ def TriggerManualTasks(request)
5791
+ body = send_request('TriggerManualTasks', request.serialize)
5792
+ response = JSON.parse(body)
5793
+ if response['Response'].key?('Error') == false
5794
+ model = TriggerManualTasksResponse.new
5795
+ model.deserialize(response['Response'])
5796
+ model
5797
+ else
5798
+ code = response['Response']['Error']['Code']
5799
+ message = response['Response']['Error']['Message']
5800
+ reqid = response['Response']['RequestId']
5801
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5802
+ end
5803
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5804
+ raise e
5805
+ rescue StandardError => e
5806
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5807
+ end
5808
+
5737
5809
  # 解锁集成任务
5738
5810
 
5739
5811
  # @param request: Request instance for UnlockIntegrationTask.
@@ -7533,7 +7533,11 @@ module TencentCloud
7533
7533
 
7534
7534
  # DescribeColumnLineage请求参数结构体
7535
7535
  class DescribeColumnLineageRequest < TencentCloud::Common::AbstractModel
7536
- # @param Direction: 查询方向,INPUT,OUTPUT,BOTH枚举值
7536
+ # @param Direction: 查询方向枚举值
7537
+
7538
+ # - INPUT
7539
+ # - OUTPUT
7540
+ # - BOTH
7537
7541
  # @type Direction: String
7538
7542
  # @param Data: 字段信息
7539
7543
  # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.ColumnLineageInfo`
@@ -11735,6 +11739,173 @@ module TencentCloud
11735
11739
  end
11736
11740
  end
11737
11741
 
11742
+ # DescribeReportTaskDetail请求参数结构体
11743
+ class DescribeReportTaskDetailRequest < TencentCloud::Common::AbstractModel
11744
+ # @param PageNum: 页码
11745
+ # @type PageNum: Integer
11746
+ # @param PageSize: 每页条数
11747
+ # @type PageSize: Integer
11748
+ # @param TenantId: 租户id
11749
+ # @type TenantId: String
11750
+ # @param ProjectId: 项目id
11751
+ # @type ProjectId: String
11752
+ # @param TaskId: 任务id
11753
+ # @type TaskId: String
11754
+ # @param InstanceId: 实例id
11755
+ # @type InstanceId: String
11756
+ # @param JobId: 作业id
11757
+ # @type JobId: String
11758
+ # @param EngineTaskId: 引擎任务id
11759
+ # @type EngineTaskId: String
11760
+ # @param ProductSource: 产品模块
11761
+ # @type ProductSource: String
11762
+ # @param OnwerUid: 主账号
11763
+ # @type OnwerUid: String
11764
+ # @param StartTime: 开始时间
11765
+ # @type StartTime: String
11766
+ # @param EndTime: 结束时间
11767
+ # @type EndTime: String
11768
+
11769
+ attr_accessor :PageNum, :PageSize, :TenantId, :ProjectId, :TaskId, :InstanceId, :JobId, :EngineTaskId, :ProductSource, :OnwerUid, :StartTime, :EndTime
11770
+
11771
+ def initialize(pagenum=nil, pagesize=nil, tenantid=nil, projectid=nil, taskid=nil, instanceid=nil, jobid=nil, enginetaskid=nil, productsource=nil, onweruid=nil, starttime=nil, endtime=nil)
11772
+ @PageNum = pagenum
11773
+ @PageSize = pagesize
11774
+ @TenantId = tenantid
11775
+ @ProjectId = projectid
11776
+ @TaskId = taskid
11777
+ @InstanceId = instanceid
11778
+ @JobId = jobid
11779
+ @EngineTaskId = enginetaskid
11780
+ @ProductSource = productsource
11781
+ @OnwerUid = onweruid
11782
+ @StartTime = starttime
11783
+ @EndTime = endtime
11784
+ end
11785
+
11786
+ def deserialize(params)
11787
+ @PageNum = params['PageNum']
11788
+ @PageSize = params['PageSize']
11789
+ @TenantId = params['TenantId']
11790
+ @ProjectId = params['ProjectId']
11791
+ @TaskId = params['TaskId']
11792
+ @InstanceId = params['InstanceId']
11793
+ @JobId = params['JobId']
11794
+ @EngineTaskId = params['EngineTaskId']
11795
+ @ProductSource = params['ProductSource']
11796
+ @OnwerUid = params['OnwerUid']
11797
+ @StartTime = params['StartTime']
11798
+ @EndTime = params['EndTime']
11799
+ end
11800
+ end
11801
+
11802
+ # DescribeReportTaskDetail返回参数结构体
11803
+ class DescribeReportTaskDetailResponse < TencentCloud::Common::AbstractModel
11804
+ # @param Data: 1
11805
+ # 注意:此字段可能返回 null,表示取不到有效值。
11806
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.ReportTaskDetail`
11807
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11808
+ # @type RequestId: String
11809
+
11810
+ attr_accessor :Data, :RequestId
11811
+
11812
+ def initialize(data=nil, requestid=nil)
11813
+ @Data = data
11814
+ @RequestId = requestid
11815
+ end
11816
+
11817
+ def deserialize(params)
11818
+ unless params['Data'].nil?
11819
+ @Data = ReportTaskDetail.new
11820
+ @Data.deserialize(params['Data'])
11821
+ end
11822
+ @RequestId = params['RequestId']
11823
+ end
11824
+ end
11825
+
11826
+ # DescribeReportTaskList请求参数结构体
11827
+ class DescribeReportTaskListRequest < TencentCloud::Common::AbstractModel
11828
+ # @param PageNum: 页码
11829
+ # @type PageNum: Integer
11830
+ # @param PageSize: 每页条数
11831
+ # @type PageSize: Integer
11832
+ # @param TenantId: 租户id
11833
+ # @type TenantId: String
11834
+ # @param ProjectId: 项目id
11835
+ # @type ProjectId: String
11836
+ # @param TaskId: 任务id
11837
+ # @type TaskId: String
11838
+ # @param InstanceId: 实例id
11839
+ # @type InstanceId: String
11840
+ # @param JobId: 作业id
11841
+ # @type JobId: String
11842
+ # @param EngineTaskId: 引擎任务id
11843
+ # @type EngineTaskId: String
11844
+ # @param ProductSource: 产品模块
11845
+ # @type ProductSource: String
11846
+ # @param OnwerUid: 主账号
11847
+ # @type OnwerUid: String
11848
+ # @param StartTime: 开始时间
11849
+ # @type StartTime: String
11850
+ # @param EndTime: 结束时间
11851
+ # @type EndTime: String
11852
+
11853
+ attr_accessor :PageNum, :PageSize, :TenantId, :ProjectId, :TaskId, :InstanceId, :JobId, :EngineTaskId, :ProductSource, :OnwerUid, :StartTime, :EndTime
11854
+
11855
+ def initialize(pagenum=nil, pagesize=nil, tenantid=nil, projectid=nil, taskid=nil, instanceid=nil, jobid=nil, enginetaskid=nil, productsource=nil, onweruid=nil, starttime=nil, endtime=nil)
11856
+ @PageNum = pagenum
11857
+ @PageSize = pagesize
11858
+ @TenantId = tenantid
11859
+ @ProjectId = projectid
11860
+ @TaskId = taskid
11861
+ @InstanceId = instanceid
11862
+ @JobId = jobid
11863
+ @EngineTaskId = enginetaskid
11864
+ @ProductSource = productsource
11865
+ @OnwerUid = onweruid
11866
+ @StartTime = starttime
11867
+ @EndTime = endtime
11868
+ end
11869
+
11870
+ def deserialize(params)
11871
+ @PageNum = params['PageNum']
11872
+ @PageSize = params['PageSize']
11873
+ @TenantId = params['TenantId']
11874
+ @ProjectId = params['ProjectId']
11875
+ @TaskId = params['TaskId']
11876
+ @InstanceId = params['InstanceId']
11877
+ @JobId = params['JobId']
11878
+ @EngineTaskId = params['EngineTaskId']
11879
+ @ProductSource = params['ProductSource']
11880
+ @OnwerUid = params['OnwerUid']
11881
+ @StartTime = params['StartTime']
11882
+ @EndTime = params['EndTime']
11883
+ end
11884
+ end
11885
+
11886
+ # DescribeReportTaskList返回参数结构体
11887
+ class DescribeReportTaskListResponse < TencentCloud::Common::AbstractModel
11888
+ # @param Data: 1
11889
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.ReportTaskListInfo`
11890
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11891
+ # @type RequestId: String
11892
+
11893
+ attr_accessor :Data, :RequestId
11894
+
11895
+ def initialize(data=nil, requestid=nil)
11896
+ @Data = data
11897
+ @RequestId = requestid
11898
+ end
11899
+
11900
+ def deserialize(params)
11901
+ unless params['Data'].nil?
11902
+ @Data = ReportTaskListInfo.new
11903
+ @Data.deserialize(params['Data'])
11904
+ end
11905
+ @RequestId = params['RequestId']
11906
+ end
11907
+ end
11908
+
11738
11909
  # DescribeResourceManagePathTrees请求参数结构体
11739
11910
  class DescribeResourceManagePathTreesRequest < TencentCloud::Common::AbstractModel
11740
11911
  # @param ProjectId: 项目ID
@@ -13498,7 +13669,11 @@ module TencentCloud
13498
13669
 
13499
13670
  # DescribeTableLineage请求参数结构体
13500
13671
  class DescribeTableLineageRequest < TencentCloud::Common::AbstractModel
13501
- # @param Direction: 查询方向,INPUT,OUTPUT,BOTH枚举值
13672
+ # @param Direction: 查询方向枚举值
13673
+
13674
+ # - INPUT
13675
+ # - OUTPUT
13676
+ # - BOTH
13502
13677
  # @type Direction: String
13503
13678
  # @param Data: 表信息
13504
13679
  # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.TableLineageInfo`
@@ -15874,6 +16049,118 @@ module TencentCloud
15874
16049
  end
15875
16050
  end
15876
16051
 
16052
+ # 引擎任务信息
16053
+ class EngineTaskInfo < TencentCloud::Common::AbstractModel
16054
+ # @param EngineSubmitTime: 1
16055
+ # 注意:此字段可能返回 null,表示取不到有效值。
16056
+ # @type EngineSubmitTime: String
16057
+ # @param EngineExeTime: 1
16058
+ # 注意:此字段可能返回 null,表示取不到有效值。
16059
+ # @type EngineExeTime: String
16060
+ # @param EngineExeTimes: 1
16061
+ # 注意:此字段可能返回 null,表示取不到有效值。
16062
+ # @type EngineExeTimes: Integer
16063
+ # @param CuConsume: 1
16064
+ # 注意:此字段可能返回 null,表示取不到有效值。
16065
+ # @type CuConsume: Integer
16066
+ # @param ResourceUsage: 1
16067
+ # 注意:此字段可能返回 null,表示取不到有效值。
16068
+ # @type ResourceUsage: Integer
16069
+ # @param EngineName: 1
16070
+ # 注意:此字段可能返回 null,表示取不到有效值。
16071
+ # @type EngineName: String
16072
+ # @param EngineExeStatus: 1
16073
+ # 注意:此字段可能返回 null,表示取不到有效值。
16074
+ # @type EngineExeStatus: String
16075
+ # @param TaskKind: 1
16076
+ # 注意:此字段可能返回 null,表示取不到有效值。
16077
+ # @type TaskKind: String
16078
+ # @param TaskType: 1
16079
+ # 注意:此字段可能返回 null,表示取不到有效值。
16080
+ # @type TaskType: String
16081
+ # @param TaskContent: 1
16082
+ # 注意:此字段可能返回 null,表示取不到有效值。
16083
+ # @type TaskContent: String
16084
+ # @param InputBytesSum: 1
16085
+ # 注意:此字段可能返回 null,表示取不到有效值。
16086
+ # @type InputBytesSum: Integer
16087
+ # @param ShuffleReadBytesSum: 1
16088
+ # 注意:此字段可能返回 null,表示取不到有效值。
16089
+ # @type ShuffleReadBytesSum: Integer
16090
+ # @param ShuffleReadRecordsSum: 1
16091
+ # 注意:此字段可能返回 null,表示取不到有效值。
16092
+ # @type ShuffleReadRecordsSum: Integer
16093
+ # @param OutputRecordsSum: 1
16094
+ # 注意:此字段可能返回 null,表示取不到有效值。
16095
+ # @type OutputRecordsSum: Integer
16096
+ # @param OutputBytesSum: 1
16097
+ # 注意:此字段可能返回 null,表示取不到有效值。
16098
+ # @type OutputBytesSum: Integer
16099
+ # @param OutputFilesNum: 1
16100
+ # 注意:此字段可能返回 null,表示取不到有效值。
16101
+ # @type OutputFilesNum: Integer
16102
+ # @param OutputSmallFilesNum: 1
16103
+ # 注意:此字段可能返回 null,表示取不到有效值。
16104
+ # @type OutputSmallFilesNum: Integer
16105
+ # @param WaitTime: 1
16106
+ # 注意:此字段可能返回 null,表示取不到有效值。
16107
+ # @type WaitTime: Integer
16108
+ # @param QueryResultTime: 1
16109
+ # 注意:此字段可能返回 null,表示取不到有效值。
16110
+ # @type QueryResultTime: Integer
16111
+ # @param CmdArgs: 1
16112
+ # 注意:此字段可能返回 null,表示取不到有效值。
16113
+ # @type CmdArgs: String
16114
+
16115
+ attr_accessor :EngineSubmitTime, :EngineExeTime, :EngineExeTimes, :CuConsume, :ResourceUsage, :EngineName, :EngineExeStatus, :TaskKind, :TaskType, :TaskContent, :InputBytesSum, :ShuffleReadBytesSum, :ShuffleReadRecordsSum, :OutputRecordsSum, :OutputBytesSum, :OutputFilesNum, :OutputSmallFilesNum, :WaitTime, :QueryResultTime, :CmdArgs
16116
+
16117
+ def initialize(enginesubmittime=nil, engineexetime=nil, engineexetimes=nil, cuconsume=nil, resourceusage=nil, enginename=nil, engineexestatus=nil, taskkind=nil, tasktype=nil, taskcontent=nil, inputbytessum=nil, shufflereadbytessum=nil, shufflereadrecordssum=nil, outputrecordssum=nil, outputbytessum=nil, outputfilesnum=nil, outputsmallfilesnum=nil, waittime=nil, queryresulttime=nil, cmdargs=nil)
16118
+ @EngineSubmitTime = enginesubmittime
16119
+ @EngineExeTime = engineexetime
16120
+ @EngineExeTimes = engineexetimes
16121
+ @CuConsume = cuconsume
16122
+ @ResourceUsage = resourceusage
16123
+ @EngineName = enginename
16124
+ @EngineExeStatus = engineexestatus
16125
+ @TaskKind = taskkind
16126
+ @TaskType = tasktype
16127
+ @TaskContent = taskcontent
16128
+ @InputBytesSum = inputbytessum
16129
+ @ShuffleReadBytesSum = shufflereadbytessum
16130
+ @ShuffleReadRecordsSum = shufflereadrecordssum
16131
+ @OutputRecordsSum = outputrecordssum
16132
+ @OutputBytesSum = outputbytessum
16133
+ @OutputFilesNum = outputfilesnum
16134
+ @OutputSmallFilesNum = outputsmallfilesnum
16135
+ @WaitTime = waittime
16136
+ @QueryResultTime = queryresulttime
16137
+ @CmdArgs = cmdargs
16138
+ end
16139
+
16140
+ def deserialize(params)
16141
+ @EngineSubmitTime = params['EngineSubmitTime']
16142
+ @EngineExeTime = params['EngineExeTime']
16143
+ @EngineExeTimes = params['EngineExeTimes']
16144
+ @CuConsume = params['CuConsume']
16145
+ @ResourceUsage = params['ResourceUsage']
16146
+ @EngineName = params['EngineName']
16147
+ @EngineExeStatus = params['EngineExeStatus']
16148
+ @TaskKind = params['TaskKind']
16149
+ @TaskType = params['TaskType']
16150
+ @TaskContent = params['TaskContent']
16151
+ @InputBytesSum = params['InputBytesSum']
16152
+ @ShuffleReadBytesSum = params['ShuffleReadBytesSum']
16153
+ @ShuffleReadRecordsSum = params['ShuffleReadRecordsSum']
16154
+ @OutputRecordsSum = params['OutputRecordsSum']
16155
+ @OutputBytesSum = params['OutputBytesSum']
16156
+ @OutputFilesNum = params['OutputFilesNum']
16157
+ @OutputSmallFilesNum = params['OutputSmallFilesNum']
16158
+ @WaitTime = params['WaitTime']
16159
+ @QueryResultTime = params['QueryResultTime']
16160
+ @CmdArgs = params['CmdArgs']
16161
+ end
16162
+ end
16163
+
15877
16164
  # 事件连续时间实例信息
15878
16165
  class EventBatchCaseDTO < TencentCloud::Common::AbstractModel
15879
16166
  # @param CaseId: 事件实例id
@@ -19244,6 +19531,28 @@ module TencentCloud
19244
19531
  end
19245
19532
  end
19246
19533
 
19534
+ # 键值对
19535
+ class KVPair < TencentCloud::Common::AbstractModel
19536
+ # @param K: 键名
19537
+ # 注意:此字段可能返回 null,表示取不到有效值。
19538
+ # @type K: String
19539
+ # @param V: 值
19540
+ # 注意:此字段可能返回 null,表示取不到有效值。
19541
+ # @type V: String
19542
+
19543
+ attr_accessor :K, :V
19544
+
19545
+ def initialize(k=nil, v=nil)
19546
+ @K = k
19547
+ @V = v
19548
+ end
19549
+
19550
+ def deserialize(params)
19551
+ @K = params['K']
19552
+ @V = params['V']
19553
+ end
19554
+ end
19555
+
19247
19556
  # KillOpsMakePlanInstances请求参数结构体
19248
19557
  class KillOpsMakePlanInstancesRequest < TencentCloud::Common::AbstractModel
19249
19558
  # @param ProjectId: 项目ID
@@ -19993,6 +20302,104 @@ module TencentCloud
19993
20302
  end
19994
20303
  end
19995
20304
 
20305
+ # 手动工作流触发运行记录实体
20306
+ class ManualTriggerRecordOpsDto < TencentCloud::Common::AbstractModel
20307
+ # @param TriggerId: 运行触发记录ID
20308
+ # 注意:此字段可能返回 null,表示取不到有效值。
20309
+ # @type TriggerId: String
20310
+ # @param TriggerName: 用户提交运行时配置的运行名称
20311
+ # 注意:此字段可能返回 null,表示取不到有效值。
20312
+ # @type TriggerName: String
20313
+ # @param Remark: 用户提交运行的备注
20314
+ # 注意:此字段可能返回 null,表示取不到有效值。
20315
+ # @type Remark: String
20316
+ # @param DatetimeList: 数据时间列表
20317
+ # 注意:此字段可能返回 null,表示取不到有效值。
20318
+ # @type DatetimeList: Array
20319
+ # @param TaskCnt: 任务数
20320
+ # 注意:此字段可能返回 null,表示取不到有效值。
20321
+ # @type TaskCnt: Integer
20322
+ # @param InstanceCnt: 实例数
20323
+ # 注意:此字段可能返回 null,表示取不到有效值。
20324
+ # @type InstanceCnt: Integer
20325
+ # @param FinishedInstanceCnt: 已完成的实例数
20326
+ # 注意:此字段可能返回 null,表示取不到有效值。
20327
+ # @type FinishedInstanceCnt: Integer
20328
+ # @param SuccessInstanceCnt: 成功的实例数
20329
+ # 注意:此字段可能返回 null,表示取不到有效值。
20330
+ # @type SuccessInstanceCnt: Integer
20331
+ # @param Status: 记录运行状态
20332
+ # INIT, RUNNING, FINISHED
20333
+ # 注意:此字段可能返回 null,表示取不到有效值。
20334
+ # @type Status: String
20335
+ # @param TriggerParams: 用户提交运行时的入参,主要用于前端反显和记录原始提交信息
20336
+ # 注意:此字段可能返回 null,表示取不到有效值。
20337
+ # @type TriggerParams: String
20338
+ # @param OwnerUin: 用户主账号ID
20339
+ # 注意:此字段可能返回 null,表示取不到有效值。
20340
+ # @type OwnerUin: String
20341
+ # @param UserUin: 用户ID
20342
+ # 注意:此字段可能返回 null,表示取不到有效值。
20343
+ # @type UserUin: String
20344
+ # @param UserName: 用户展示名
20345
+ # 注意:此字段可能返回 null,表示取不到有效值。
20346
+ # @type UserName: String
20347
+ # @param TenantId: 租户ID
20348
+ # 注意:此字段可能返回 null,表示取不到有效值。
20349
+ # @type TenantId: String
20350
+ # @param ProjectId: 项目ID
20351
+ # 注意:此字段可能返回 null,表示取不到有效值。
20352
+ # @type ProjectId: String
20353
+ # @param CreateTime: 创建时间
20354
+ # 注意:此字段可能返回 null,表示取不到有效值。
20355
+ # @type CreateTime: String
20356
+ # @param ScheduleTimeZone: 数据实例时间的时区
20357
+ # 注意:此字段可能返回 null,表示取不到有效值。
20358
+ # @type ScheduleTimeZone: String
20359
+
20360
+ attr_accessor :TriggerId, :TriggerName, :Remark, :DatetimeList, :TaskCnt, :InstanceCnt, :FinishedInstanceCnt, :SuccessInstanceCnt, :Status, :TriggerParams, :OwnerUin, :UserUin, :UserName, :TenantId, :ProjectId, :CreateTime, :ScheduleTimeZone
20361
+
20362
+ def initialize(triggerid=nil, triggername=nil, remark=nil, datetimelist=nil, taskcnt=nil, instancecnt=nil, finishedinstancecnt=nil, successinstancecnt=nil, status=nil, triggerparams=nil, owneruin=nil, useruin=nil, username=nil, tenantid=nil, projectid=nil, createtime=nil, scheduletimezone=nil)
20363
+ @TriggerId = triggerid
20364
+ @TriggerName = triggername
20365
+ @Remark = remark
20366
+ @DatetimeList = datetimelist
20367
+ @TaskCnt = taskcnt
20368
+ @InstanceCnt = instancecnt
20369
+ @FinishedInstanceCnt = finishedinstancecnt
20370
+ @SuccessInstanceCnt = successinstancecnt
20371
+ @Status = status
20372
+ @TriggerParams = triggerparams
20373
+ @OwnerUin = owneruin
20374
+ @UserUin = useruin
20375
+ @UserName = username
20376
+ @TenantId = tenantid
20377
+ @ProjectId = projectid
20378
+ @CreateTime = createtime
20379
+ @ScheduleTimeZone = scheduletimezone
20380
+ end
20381
+
20382
+ def deserialize(params)
20383
+ @TriggerId = params['TriggerId']
20384
+ @TriggerName = params['TriggerName']
20385
+ @Remark = params['Remark']
20386
+ @DatetimeList = params['DatetimeList']
20387
+ @TaskCnt = params['TaskCnt']
20388
+ @InstanceCnt = params['InstanceCnt']
20389
+ @FinishedInstanceCnt = params['FinishedInstanceCnt']
20390
+ @SuccessInstanceCnt = params['SuccessInstanceCnt']
20391
+ @Status = params['Status']
20392
+ @TriggerParams = params['TriggerParams']
20393
+ @OwnerUin = params['OwnerUin']
20394
+ @UserUin = params['UserUin']
20395
+ @UserName = params['UserName']
20396
+ @TenantId = params['TenantId']
20397
+ @ProjectId = params['ProjectId']
20398
+ @CreateTime = params['CreateTime']
20399
+ @ScheduleTimeZone = params['ScheduleTimeZone']
20400
+ end
20401
+ end
20402
+
19996
20403
  # ModifyApproveStatus请求参数结构体
19997
20404
  class ModifyApproveStatusRequest < TencentCloud::Common::AbstractModel
19998
20405
  # @param ApproveIds: 审批单ids
@@ -23228,6 +23635,100 @@ module TencentCloud
23228
23635
  end
23229
23636
  end
23230
23637
 
23638
+ # 上报任务详情
23639
+ class ReportTaskDetail < TencentCloud::Common::AbstractModel
23640
+ # @param EngineTaskId: 1
23641
+ # 注意:此字段可能返回 null,表示取不到有效值。
23642
+ # @type EngineTaskId: String
23643
+ # @param EngineExeStatus: 1
23644
+ # 注意:此字段可能返回 null,表示取不到有效值。
23645
+ # @type EngineExeStatus: String
23646
+ # @param EngineExeStartTime: 1
23647
+ # 注意:此字段可能返回 null,表示取不到有效值。
23648
+ # @type EngineExeStartTime: String
23649
+ # @param EngineExeEndTime: 1
23650
+ # 注意:此字段可能返回 null,表示取不到有效值。
23651
+ # @type EngineExeEndTime: String
23652
+ # @param TaskTypeId: 1
23653
+ # 注意:此字段可能返回 null,表示取不到有效值。
23654
+ # @type TaskTypeId: Integer
23655
+ # @param BusinessInfo: 1
23656
+ # 注意:此字段可能返回 null,表示取不到有效值。
23657
+ # @type BusinessInfo: String
23658
+ # @param EngineTaskInfo: 1
23659
+ # 注意:此字段可能返回 null,表示取不到有效值。
23660
+ # @type EngineTaskInfo: :class:`Tencentcloud::Wedata.v20210820.models.EngineTaskInfo`
23661
+
23662
+ attr_accessor :EngineTaskId, :EngineExeStatus, :EngineExeStartTime, :EngineExeEndTime, :TaskTypeId, :BusinessInfo, :EngineTaskInfo
23663
+
23664
+ def initialize(enginetaskid=nil, engineexestatus=nil, engineexestarttime=nil, engineexeendtime=nil, tasktypeid=nil, businessinfo=nil, enginetaskinfo=nil)
23665
+ @EngineTaskId = enginetaskid
23666
+ @EngineExeStatus = engineexestatus
23667
+ @EngineExeStartTime = engineexestarttime
23668
+ @EngineExeEndTime = engineexeendtime
23669
+ @TaskTypeId = tasktypeid
23670
+ @BusinessInfo = businessinfo
23671
+ @EngineTaskInfo = enginetaskinfo
23672
+ end
23673
+
23674
+ def deserialize(params)
23675
+ @EngineTaskId = params['EngineTaskId']
23676
+ @EngineExeStatus = params['EngineExeStatus']
23677
+ @EngineExeStartTime = params['EngineExeStartTime']
23678
+ @EngineExeEndTime = params['EngineExeEndTime']
23679
+ @TaskTypeId = params['TaskTypeId']
23680
+ @BusinessInfo = params['BusinessInfo']
23681
+ unless params['EngineTaskInfo'].nil?
23682
+ @EngineTaskInfo = EngineTaskInfo.new
23683
+ @EngineTaskInfo.deserialize(params['EngineTaskInfo'])
23684
+ end
23685
+ end
23686
+ end
23687
+
23688
+ # 上报任务信息
23689
+ class ReportTaskListInfo < TencentCloud::Common::AbstractModel
23690
+ # @param Rows: 1
23691
+ # 注意:此字段可能返回 null,表示取不到有效值。
23692
+ # @type Rows: Array
23693
+ # @param PageNum: 1
23694
+ # 注意:此字段可能返回 null,表示取不到有效值。
23695
+ # @type PageNum: Integer
23696
+ # @param PageSize: 1
23697
+ # 注意:此字段可能返回 null,表示取不到有效值。
23698
+ # @type PageSize: Integer
23699
+ # @param TotalCount: 1
23700
+ # 注意:此字段可能返回 null,表示取不到有效值。
23701
+ # @type TotalCount: Integer
23702
+ # @param TotalPageNumber: 1
23703
+ # 注意:此字段可能返回 null,表示取不到有效值。
23704
+ # @type TotalPageNumber: Integer
23705
+
23706
+ attr_accessor :Rows, :PageNum, :PageSize, :TotalCount, :TotalPageNumber
23707
+
23708
+ def initialize(rows=nil, pagenum=nil, pagesize=nil, totalcount=nil, totalpagenumber=nil)
23709
+ @Rows = rows
23710
+ @PageNum = pagenum
23711
+ @PageSize = pagesize
23712
+ @TotalCount = totalcount
23713
+ @TotalPageNumber = totalpagenumber
23714
+ end
23715
+
23716
+ def deserialize(params)
23717
+ unless params['Rows'].nil?
23718
+ @Rows = []
23719
+ params['Rows'].each do |i|
23720
+ taskinfovo_tmp = TaskInfoVo.new
23721
+ taskinfovo_tmp.deserialize(i)
23722
+ @Rows << taskinfovo_tmp
23723
+ end
23724
+ end
23725
+ @PageNum = params['PageNum']
23726
+ @PageSize = params['PageSize']
23727
+ @TotalCount = params['TotalCount']
23728
+ @TotalPageNumber = params['TotalPageNumber']
23729
+ end
23730
+ end
23731
+
23231
23732
  # 资源管理目录树节点
23232
23733
  class ResourcePathTree < TencentCloud::Common::AbstractModel
23233
23734
  # @param Name: 资源名字
@@ -27704,10 +28205,16 @@ module TencentCloud
27704
28205
  # @param DatabaseId: DatabaseId
27705
28206
  # 注意:此字段可能返回 null,表示取不到有效值。
27706
28207
  # @type DatabaseId: String
28208
+ # @param DataFromType: 数据来源
28209
+ # 注意:此字段可能返回 null,表示取不到有效值。
28210
+ # @type DataFromType: String
28211
+ # @param CollectJobId: 采集id
28212
+ # 注意:此字段可能返回 null,表示取不到有效值。
28213
+ # @type CollectJobId: String
27707
28214
 
27708
- attr_accessor :MetastoreType, :ProjectId, :DatasourceId, :TableId, :Params, :ParentSet, :ChildSet, :ExtParams, :Id, :MetastoreTypeName, :TableName, :QualifiedName, :DownStreamCount, :UpStreamCount, :Description, :PrefixPath, :CreateTime, :ModifyTime, :Tasks, :ChannelType, :DisplayType, :EngineType, :TableType, :DatasourceName, :DatabaseName, :DatabaseId
28215
+ attr_accessor :MetastoreType, :ProjectId, :DatasourceId, :TableId, :Params, :ParentSet, :ChildSet, :ExtParams, :Id, :MetastoreTypeName, :TableName, :QualifiedName, :DownStreamCount, :UpStreamCount, :Description, :PrefixPath, :CreateTime, :ModifyTime, :Tasks, :ChannelType, :DisplayType, :EngineType, :TableType, :DatasourceName, :DatabaseName, :DatabaseId, :DataFromType, :CollectJobId
27709
28216
 
27710
- def initialize(metastoretype=nil, projectid=nil, datasourceid=nil, tableid=nil, params=nil, parentset=nil, childset=nil, extparams=nil, id=nil, metastoretypename=nil, tablename=nil, qualifiedname=nil, downstreamcount=nil, upstreamcount=nil, description=nil, prefixpath=nil, createtime=nil, modifytime=nil, tasks=nil, channeltype=nil, displaytype=nil, enginetype=nil, tabletype=nil, datasourcename=nil, databasename=nil, databaseid=nil)
28217
+ def initialize(metastoretype=nil, projectid=nil, datasourceid=nil, tableid=nil, params=nil, parentset=nil, childset=nil, extparams=nil, id=nil, metastoretypename=nil, tablename=nil, qualifiedname=nil, downstreamcount=nil, upstreamcount=nil, description=nil, prefixpath=nil, createtime=nil, modifytime=nil, tasks=nil, channeltype=nil, displaytype=nil, enginetype=nil, tabletype=nil, datasourcename=nil, databasename=nil, databaseid=nil, datafromtype=nil, collectjobid=nil)
27711
28218
  @MetastoreType = metastoretype
27712
28219
  @ProjectId = projectid
27713
28220
  @DatasourceId = datasourceid
@@ -27734,6 +28241,8 @@ module TencentCloud
27734
28241
  @DatasourceName = datasourcename
27735
28242
  @DatabaseName = databasename
27736
28243
  @DatabaseId = databaseid
28244
+ @DataFromType = datafromtype
28245
+ @CollectJobId = collectjobid
27737
28246
  end
27738
28247
 
27739
28248
  def deserialize(params)
@@ -27777,6 +28286,8 @@ module TencentCloud
27777
28286
  @DatasourceName = params['DatasourceName']
27778
28287
  @DatabaseName = params['DatabaseName']
27779
28288
  @DatabaseId = params['DatabaseId']
28289
+ @DataFromType = params['DataFromType']
28290
+ @CollectJobId = params['CollectJobId']
27780
28291
  end
27781
28292
  end
27782
28293
 
@@ -28765,6 +29276,108 @@ module TencentCloud
28765
29276
  end
28766
29277
  end
28767
29278
 
29279
+ # 任务信息
29280
+ class TaskInfoVo < TencentCloud::Common::AbstractModel
29281
+ # @param AppID: 1
29282
+ # 注意:此字段可能返回 null,表示取不到有效值。
29283
+ # @type AppID: String
29284
+ # @param ProjectId: 1
29285
+ # 注意:此字段可能返回 null,表示取不到有效值。
29286
+ # @type ProjectId: String
29287
+ # @param TaskId: 1
29288
+ # 注意:此字段可能返回 null,表示取不到有效值。
29289
+ # @type TaskId: String
29290
+ # @param TaskName: 1
29291
+ # 注意:此字段可能返回 null,表示取不到有效值。
29292
+ # @type TaskName: String
29293
+ # @param TaskTypeId: 1
29294
+ # 注意:此字段可能返回 null,表示取不到有效值。
29295
+ # @type TaskTypeId: Integer
29296
+ # @param OnwerUid: 1
29297
+ # 注意:此字段可能返回 null,表示取不到有效值。
29298
+ # @type OnwerUid: String
29299
+ # @param InChargeId: 1
29300
+ # 注意:此字段可能返回 null,表示取不到有效值。
29301
+ # @type InChargeId: String
29302
+ # @param InstanceId: 1
29303
+ # 注意:此字段可能返回 null,表示取不到有效值。
29304
+ # @type InstanceId: String
29305
+ # @param JobId: 1
29306
+ # 注意:此字段可能返回 null,表示取不到有效值。
29307
+ # @type JobId: String
29308
+ # @param EngineType: 1
29309
+ # 注意:此字段可能返回 null,表示取不到有效值。
29310
+ # @type EngineType: String
29311
+ # @param EngineName: 1
29312
+ # 注意:此字段可能返回 null,表示取不到有效值。
29313
+ # @type EngineName: String
29314
+ # @param EngineSubType: 1
29315
+ # 注意:此字段可能返回 null,表示取不到有效值。
29316
+ # @type EngineSubType: String
29317
+ # @param EngineTaskId: 1
29318
+ # 注意:此字段可能返回 null,表示取不到有效值。
29319
+ # @type EngineTaskId: String
29320
+ # @param EngineExeStatus: 1
29321
+ # 注意:此字段可能返回 null,表示取不到有效值。
29322
+ # @type EngineExeStatus: String
29323
+ # @param EngineExeUser: 1
29324
+ # 注意:此字段可能返回 null,表示取不到有效值。
29325
+ # @type EngineExeUser: String
29326
+ # @param EngineExeStartTime: 1
29327
+ # 注意:此字段可能返回 null,表示取不到有效值。
29328
+ # @type EngineExeStartTime: String
29329
+ # @param EngineExeEndTime: 1
29330
+ # 注意:此字段可能返回 null,表示取不到有效值。
29331
+ # @type EngineExeEndTime: String
29332
+ # @param ProductSource: 1
29333
+ # 注意:此字段可能返回 null,表示取不到有效值。
29334
+ # @type ProductSource: String
29335
+
29336
+ attr_accessor :AppID, :ProjectId, :TaskId, :TaskName, :TaskTypeId, :OnwerUid, :InChargeId, :InstanceId, :JobId, :EngineType, :EngineName, :EngineSubType, :EngineTaskId, :EngineExeStatus, :EngineExeUser, :EngineExeStartTime, :EngineExeEndTime, :ProductSource
29337
+
29338
+ def initialize(appid=nil, projectid=nil, taskid=nil, taskname=nil, tasktypeid=nil, onweruid=nil, inchargeid=nil, instanceid=nil, jobid=nil, enginetype=nil, enginename=nil, enginesubtype=nil, enginetaskid=nil, engineexestatus=nil, engineexeuser=nil, engineexestarttime=nil, engineexeendtime=nil, productsource=nil)
29339
+ @AppID = appid
29340
+ @ProjectId = projectid
29341
+ @TaskId = taskid
29342
+ @TaskName = taskname
29343
+ @TaskTypeId = tasktypeid
29344
+ @OnwerUid = onweruid
29345
+ @InChargeId = inchargeid
29346
+ @InstanceId = instanceid
29347
+ @JobId = jobid
29348
+ @EngineType = enginetype
29349
+ @EngineName = enginename
29350
+ @EngineSubType = enginesubtype
29351
+ @EngineTaskId = enginetaskid
29352
+ @EngineExeStatus = engineexestatus
29353
+ @EngineExeUser = engineexeuser
29354
+ @EngineExeStartTime = engineexestarttime
29355
+ @EngineExeEndTime = engineexeendtime
29356
+ @ProductSource = productsource
29357
+ end
29358
+
29359
+ def deserialize(params)
29360
+ @AppID = params['AppID']
29361
+ @ProjectId = params['ProjectId']
29362
+ @TaskId = params['TaskId']
29363
+ @TaskName = params['TaskName']
29364
+ @TaskTypeId = params['TaskTypeId']
29365
+ @OnwerUid = params['OnwerUid']
29366
+ @InChargeId = params['InChargeId']
29367
+ @InstanceId = params['InstanceId']
29368
+ @JobId = params['JobId']
29369
+ @EngineType = params['EngineType']
29370
+ @EngineName = params['EngineName']
29371
+ @EngineSubType = params['EngineSubType']
29372
+ @EngineTaskId = params['EngineTaskId']
29373
+ @EngineExeStatus = params['EngineExeStatus']
29374
+ @EngineExeUser = params['EngineExeUser']
29375
+ @EngineExeStartTime = params['EngineExeStartTime']
29376
+ @EngineExeEndTime = params['EngineExeEndTime']
29377
+ @ProductSource = params['ProductSource']
29378
+ end
29379
+ end
29380
+
28768
29381
  # 任务属性
28769
29382
  class TaskInnerInfo < TencentCloud::Common::AbstractModel
28770
29383
  # @param TaskId: 任务ID
@@ -30068,6 +30681,107 @@ module TencentCloud
30068
30681
  end
30069
30682
  end
30070
30683
 
30684
+ # TriggerManualTasks请求参数结构体
30685
+ class TriggerManualTasksRequest < TencentCloud::Common::AbstractModel
30686
+ # @param ProjectId: 项目ID
30687
+ # @type ProjectId: String
30688
+ # @param TriggerName: 触发运行名称
30689
+ # @type TriggerName: String
30690
+ # @param TriggerScope: 运行范围 ENTIRE_WORKFLOW or SPECIFIED_TASK
30691
+ # @type TriggerScope: String
30692
+ # @param DataTimeList: 运行数据时间列表
30693
+ # @type DataTimeList: Array
30694
+ # @param WorkflowId: 工作流ID
30695
+ # @type WorkflowId: String
30696
+ # @param Remark: 备注
30697
+ # @type Remark: String
30698
+ # @param TaskIds: 需要运行的任务列表
30699
+ # TriggerScope=ENTIRE_WORKFLOW 时无需传此参数,TriggerScope=SPECIFIED_TASK此参数必传
30700
+ # @type TaskIds: Array
30701
+ # @param SchedulerResourceGroup: 用户提交运行时指定的调度资源组,未指定时使用任务配置的调度资源组
30702
+ # @type SchedulerResourceGroup: String
30703
+ # @param IntegrationResourceGroup: 用户提交运行时指定的集成资源组,未指定时使用任务配置的集成资源组
30704
+ # @type IntegrationResourceGroup: String
30705
+ # @param ExecOrder: 执行顺序 ASC、RAND、DESC
30706
+ # @type ExecOrder: String
30707
+ # @param CustomParams: 自定义参数,最高优先级
30708
+ # @type CustomParams: Array
30709
+ # @param ExtraParams: 页面反显使用,无业务含义
30710
+ # @type ExtraParams: String
30711
+ # @param ScheduleTimeZone: 实例时间的时区
30712
+ # @type ScheduleTimeZone: String
30713
+
30714
+ attr_accessor :ProjectId, :TriggerName, :TriggerScope, :DataTimeList, :WorkflowId, :Remark, :TaskIds, :SchedulerResourceGroup, :IntegrationResourceGroup, :ExecOrder, :CustomParams, :ExtraParams, :ScheduleTimeZone
30715
+
30716
+ def initialize(projectid=nil, triggername=nil, triggerscope=nil, datatimelist=nil, workflowid=nil, remark=nil, taskids=nil, schedulerresourcegroup=nil, integrationresourcegroup=nil, execorder=nil, customparams=nil, extraparams=nil, scheduletimezone=nil)
30717
+ @ProjectId = projectid
30718
+ @TriggerName = triggername
30719
+ @TriggerScope = triggerscope
30720
+ @DataTimeList = datatimelist
30721
+ @WorkflowId = workflowid
30722
+ @Remark = remark
30723
+ @TaskIds = taskids
30724
+ @SchedulerResourceGroup = schedulerresourcegroup
30725
+ @IntegrationResourceGroup = integrationresourcegroup
30726
+ @ExecOrder = execorder
30727
+ @CustomParams = customparams
30728
+ @ExtraParams = extraparams
30729
+ @ScheduleTimeZone = scheduletimezone
30730
+ end
30731
+
30732
+ def deserialize(params)
30733
+ @ProjectId = params['ProjectId']
30734
+ @TriggerName = params['TriggerName']
30735
+ @TriggerScope = params['TriggerScope']
30736
+ @DataTimeList = params['DataTimeList']
30737
+ @WorkflowId = params['WorkflowId']
30738
+ @Remark = params['Remark']
30739
+ @TaskIds = params['TaskIds']
30740
+ @SchedulerResourceGroup = params['SchedulerResourceGroup']
30741
+ @IntegrationResourceGroup = params['IntegrationResourceGroup']
30742
+ @ExecOrder = params['ExecOrder']
30743
+ unless params['CustomParams'].nil?
30744
+ @CustomParams = []
30745
+ params['CustomParams'].each do |i|
30746
+ kvpair_tmp = KVPair.new
30747
+ kvpair_tmp.deserialize(i)
30748
+ @CustomParams << kvpair_tmp
30749
+ end
30750
+ end
30751
+ @ExtraParams = params['ExtraParams']
30752
+ @ScheduleTimeZone = params['ScheduleTimeZone']
30753
+ end
30754
+ end
30755
+
30756
+ # TriggerManualTasks返回参数结构体
30757
+ class TriggerManualTasksResponse < TencentCloud::Common::AbstractModel
30758
+ # @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
30759
+ # 注意:此字段可能返回 null,表示取不到有效值。
30760
+ # @type RequestFromSource: String
30761
+ # @param Data: 详情结果
30762
+ # 注意:此字段可能返回 null,表示取不到有效值。
30763
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.ManualTriggerRecordOpsDto`
30764
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
30765
+ # @type RequestId: String
30766
+
30767
+ attr_accessor :RequestFromSource, :Data, :RequestId
30768
+
30769
+ def initialize(requestfromsource=nil, data=nil, requestid=nil)
30770
+ @RequestFromSource = requestfromsource
30771
+ @Data = data
30772
+ @RequestId = requestid
30773
+ end
30774
+
30775
+ def deserialize(params)
30776
+ @RequestFromSource = params['RequestFromSource']
30777
+ unless params['Data'].nil?
30778
+ @Data = ManualTriggerRecordOpsDto.new
30779
+ @Data.deserialize(params['Data'])
30780
+ end
30781
+ @RequestId = params['RequestId']
30782
+ end
30783
+ end
30784
+
30071
30785
  # UnlockIntegrationTask请求参数结构体
30072
30786
  class UnlockIntegrationTaskRequest < TencentCloud::Common::AbstractModel
30073
30787
  # @param TaskId: 任务id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1016
4
+ version: 3.0.1018
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-11 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20210820/models.rb
37
- - lib/v20210820/client.rb
38
36
  - lib/tencentcloud-sdk-wedata.rb
37
+ - lib/v20210820/client.rb
38
+ - lib/v20210820/models.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: