tencentcloud-sdk-wedata 3.0.1016 → 3.0.1017

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: 619b0e87fafcaccdf3d520d4423c1aad0d309588
4
+ data.tar.gz: c154ca118c2b93bdffbeb8472c8eea4ce8657e39
5
5
  SHA512:
6
- metadata.gz: b1f3eb8f5c2bf068f65d94768db384e02e8387f4420053cfb5c798f54e2c85dbc75cf48b128626f8721e6e3cb08760156eaed6805d76d21c00addf81766e3806
7
- data.tar.gz: c65db5210fec13180b372ba7313129f71346c9fc24b55a0d42e451e6021d13cb475a8f51550c733961846bf01ca1c69f02f10034b4ab6a33fb4897edeacb9441
6
+ metadata.gz: d2f96041a42bdac5711df46ec7a8f8ad42743eb702f11273772d3a8c101c7fd7cd001dd44c5bb5fd8c2ed81bbab30cafcb5304c525e66b9decec0834ade5f045
7
+ data.tar.gz: 7dc4f14ca36dc53b07a897346dec5286cecf5d31756e2c24306374b3850886196e30d5ed34c578ab13f4c4f0dc6394dcd42ebf8b26cf0d575dfff75a0e20c8ae
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1016
1
+ 3.0.1017
@@ -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.
@@ -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
@@ -23228,6 +23515,100 @@ module TencentCloud
23228
23515
  end
23229
23516
  end
23230
23517
 
23518
+ # 上报任务详情
23519
+ class ReportTaskDetail < TencentCloud::Common::AbstractModel
23520
+ # @param EngineTaskId: 1
23521
+ # 注意:此字段可能返回 null,表示取不到有效值。
23522
+ # @type EngineTaskId: String
23523
+ # @param EngineExeStatus: 1
23524
+ # 注意:此字段可能返回 null,表示取不到有效值。
23525
+ # @type EngineExeStatus: String
23526
+ # @param EngineExeStartTime: 1
23527
+ # 注意:此字段可能返回 null,表示取不到有效值。
23528
+ # @type EngineExeStartTime: String
23529
+ # @param EngineExeEndTime: 1
23530
+ # 注意:此字段可能返回 null,表示取不到有效值。
23531
+ # @type EngineExeEndTime: String
23532
+ # @param TaskTypeId: 1
23533
+ # 注意:此字段可能返回 null,表示取不到有效值。
23534
+ # @type TaskTypeId: Integer
23535
+ # @param BusinessInfo: 1
23536
+ # 注意:此字段可能返回 null,表示取不到有效值。
23537
+ # @type BusinessInfo: String
23538
+ # @param EngineTaskInfo: 1
23539
+ # 注意:此字段可能返回 null,表示取不到有效值。
23540
+ # @type EngineTaskInfo: :class:`Tencentcloud::Wedata.v20210820.models.EngineTaskInfo`
23541
+
23542
+ attr_accessor :EngineTaskId, :EngineExeStatus, :EngineExeStartTime, :EngineExeEndTime, :TaskTypeId, :BusinessInfo, :EngineTaskInfo
23543
+
23544
+ def initialize(enginetaskid=nil, engineexestatus=nil, engineexestarttime=nil, engineexeendtime=nil, tasktypeid=nil, businessinfo=nil, enginetaskinfo=nil)
23545
+ @EngineTaskId = enginetaskid
23546
+ @EngineExeStatus = engineexestatus
23547
+ @EngineExeStartTime = engineexestarttime
23548
+ @EngineExeEndTime = engineexeendtime
23549
+ @TaskTypeId = tasktypeid
23550
+ @BusinessInfo = businessinfo
23551
+ @EngineTaskInfo = enginetaskinfo
23552
+ end
23553
+
23554
+ def deserialize(params)
23555
+ @EngineTaskId = params['EngineTaskId']
23556
+ @EngineExeStatus = params['EngineExeStatus']
23557
+ @EngineExeStartTime = params['EngineExeStartTime']
23558
+ @EngineExeEndTime = params['EngineExeEndTime']
23559
+ @TaskTypeId = params['TaskTypeId']
23560
+ @BusinessInfo = params['BusinessInfo']
23561
+ unless params['EngineTaskInfo'].nil?
23562
+ @EngineTaskInfo = EngineTaskInfo.new
23563
+ @EngineTaskInfo.deserialize(params['EngineTaskInfo'])
23564
+ end
23565
+ end
23566
+ end
23567
+
23568
+ # 上报任务信息
23569
+ class ReportTaskListInfo < TencentCloud::Common::AbstractModel
23570
+ # @param Rows: 1
23571
+ # 注意:此字段可能返回 null,表示取不到有效值。
23572
+ # @type Rows: Array
23573
+ # @param PageNum: 1
23574
+ # 注意:此字段可能返回 null,表示取不到有效值。
23575
+ # @type PageNum: Integer
23576
+ # @param PageSize: 1
23577
+ # 注意:此字段可能返回 null,表示取不到有效值。
23578
+ # @type PageSize: Integer
23579
+ # @param TotalCount: 1
23580
+ # 注意:此字段可能返回 null,表示取不到有效值。
23581
+ # @type TotalCount: Integer
23582
+ # @param TotalPageNumber: 1
23583
+ # 注意:此字段可能返回 null,表示取不到有效值。
23584
+ # @type TotalPageNumber: Integer
23585
+
23586
+ attr_accessor :Rows, :PageNum, :PageSize, :TotalCount, :TotalPageNumber
23587
+
23588
+ def initialize(rows=nil, pagenum=nil, pagesize=nil, totalcount=nil, totalpagenumber=nil)
23589
+ @Rows = rows
23590
+ @PageNum = pagenum
23591
+ @PageSize = pagesize
23592
+ @TotalCount = totalcount
23593
+ @TotalPageNumber = totalpagenumber
23594
+ end
23595
+
23596
+ def deserialize(params)
23597
+ unless params['Rows'].nil?
23598
+ @Rows = []
23599
+ params['Rows'].each do |i|
23600
+ taskinfovo_tmp = TaskInfoVo.new
23601
+ taskinfovo_tmp.deserialize(i)
23602
+ @Rows << taskinfovo_tmp
23603
+ end
23604
+ end
23605
+ @PageNum = params['PageNum']
23606
+ @PageSize = params['PageSize']
23607
+ @TotalCount = params['TotalCount']
23608
+ @TotalPageNumber = params['TotalPageNumber']
23609
+ end
23610
+ end
23611
+
23231
23612
  # 资源管理目录树节点
23232
23613
  class ResourcePathTree < TencentCloud::Common::AbstractModel
23233
23614
  # @param Name: 资源名字
@@ -27704,10 +28085,16 @@ module TencentCloud
27704
28085
  # @param DatabaseId: DatabaseId
27705
28086
  # 注意:此字段可能返回 null,表示取不到有效值。
27706
28087
  # @type DatabaseId: String
28088
+ # @param DataFromType: 数据来源
28089
+ # 注意:此字段可能返回 null,表示取不到有效值。
28090
+ # @type DataFromType: String
28091
+ # @param CollectJobId: 采集id
28092
+ # 注意:此字段可能返回 null,表示取不到有效值。
28093
+ # @type CollectJobId: String
27707
28094
 
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
28095
+ 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
28096
 
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)
28097
+ 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
28098
  @MetastoreType = metastoretype
27712
28099
  @ProjectId = projectid
27713
28100
  @DatasourceId = datasourceid
@@ -27734,6 +28121,8 @@ module TencentCloud
27734
28121
  @DatasourceName = datasourcename
27735
28122
  @DatabaseName = databasename
27736
28123
  @DatabaseId = databaseid
28124
+ @DataFromType = datafromtype
28125
+ @CollectJobId = collectjobid
27737
28126
  end
27738
28127
 
27739
28128
  def deserialize(params)
@@ -27777,6 +28166,8 @@ module TencentCloud
27777
28166
  @DatasourceName = params['DatasourceName']
27778
28167
  @DatabaseName = params['DatabaseName']
27779
28168
  @DatabaseId = params['DatabaseId']
28169
+ @DataFromType = params['DataFromType']
28170
+ @CollectJobId = params['CollectJobId']
27780
28171
  end
27781
28172
  end
27782
28173
 
@@ -28765,6 +29156,108 @@ module TencentCloud
28765
29156
  end
28766
29157
  end
28767
29158
 
29159
+ # 任务信息
29160
+ class TaskInfoVo < TencentCloud::Common::AbstractModel
29161
+ # @param AppID: 1
29162
+ # 注意:此字段可能返回 null,表示取不到有效值。
29163
+ # @type AppID: String
29164
+ # @param ProjectId: 1
29165
+ # 注意:此字段可能返回 null,表示取不到有效值。
29166
+ # @type ProjectId: String
29167
+ # @param TaskId: 1
29168
+ # 注意:此字段可能返回 null,表示取不到有效值。
29169
+ # @type TaskId: String
29170
+ # @param TaskName: 1
29171
+ # 注意:此字段可能返回 null,表示取不到有效值。
29172
+ # @type TaskName: String
29173
+ # @param TaskTypeId: 1
29174
+ # 注意:此字段可能返回 null,表示取不到有效值。
29175
+ # @type TaskTypeId: Integer
29176
+ # @param OnwerUid: 1
29177
+ # 注意:此字段可能返回 null,表示取不到有效值。
29178
+ # @type OnwerUid: String
29179
+ # @param InChargeId: 1
29180
+ # 注意:此字段可能返回 null,表示取不到有效值。
29181
+ # @type InChargeId: String
29182
+ # @param InstanceId: 1
29183
+ # 注意:此字段可能返回 null,表示取不到有效值。
29184
+ # @type InstanceId: String
29185
+ # @param JobId: 1
29186
+ # 注意:此字段可能返回 null,表示取不到有效值。
29187
+ # @type JobId: String
29188
+ # @param EngineType: 1
29189
+ # 注意:此字段可能返回 null,表示取不到有效值。
29190
+ # @type EngineType: String
29191
+ # @param EngineName: 1
29192
+ # 注意:此字段可能返回 null,表示取不到有效值。
29193
+ # @type EngineName: String
29194
+ # @param EngineSubType: 1
29195
+ # 注意:此字段可能返回 null,表示取不到有效值。
29196
+ # @type EngineSubType: String
29197
+ # @param EngineTaskId: 1
29198
+ # 注意:此字段可能返回 null,表示取不到有效值。
29199
+ # @type EngineTaskId: String
29200
+ # @param EngineExeStatus: 1
29201
+ # 注意:此字段可能返回 null,表示取不到有效值。
29202
+ # @type EngineExeStatus: String
29203
+ # @param EngineExeUser: 1
29204
+ # 注意:此字段可能返回 null,表示取不到有效值。
29205
+ # @type EngineExeUser: String
29206
+ # @param EngineExeStartTime: 1
29207
+ # 注意:此字段可能返回 null,表示取不到有效值。
29208
+ # @type EngineExeStartTime: String
29209
+ # @param EngineExeEndTime: 1
29210
+ # 注意:此字段可能返回 null,表示取不到有效值。
29211
+ # @type EngineExeEndTime: String
29212
+ # @param ProductSource: 1
29213
+ # 注意:此字段可能返回 null,表示取不到有效值。
29214
+ # @type ProductSource: String
29215
+
29216
+ attr_accessor :AppID, :ProjectId, :TaskId, :TaskName, :TaskTypeId, :OnwerUid, :InChargeId, :InstanceId, :JobId, :EngineType, :EngineName, :EngineSubType, :EngineTaskId, :EngineExeStatus, :EngineExeUser, :EngineExeStartTime, :EngineExeEndTime, :ProductSource
29217
+
29218
+ 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)
29219
+ @AppID = appid
29220
+ @ProjectId = projectid
29221
+ @TaskId = taskid
29222
+ @TaskName = taskname
29223
+ @TaskTypeId = tasktypeid
29224
+ @OnwerUid = onweruid
29225
+ @InChargeId = inchargeid
29226
+ @InstanceId = instanceid
29227
+ @JobId = jobid
29228
+ @EngineType = enginetype
29229
+ @EngineName = enginename
29230
+ @EngineSubType = enginesubtype
29231
+ @EngineTaskId = enginetaskid
29232
+ @EngineExeStatus = engineexestatus
29233
+ @EngineExeUser = engineexeuser
29234
+ @EngineExeStartTime = engineexestarttime
29235
+ @EngineExeEndTime = engineexeendtime
29236
+ @ProductSource = productsource
29237
+ end
29238
+
29239
+ def deserialize(params)
29240
+ @AppID = params['AppID']
29241
+ @ProjectId = params['ProjectId']
29242
+ @TaskId = params['TaskId']
29243
+ @TaskName = params['TaskName']
29244
+ @TaskTypeId = params['TaskTypeId']
29245
+ @OnwerUid = params['OnwerUid']
29246
+ @InChargeId = params['InChargeId']
29247
+ @InstanceId = params['InstanceId']
29248
+ @JobId = params['JobId']
29249
+ @EngineType = params['EngineType']
29250
+ @EngineName = params['EngineName']
29251
+ @EngineSubType = params['EngineSubType']
29252
+ @EngineTaskId = params['EngineTaskId']
29253
+ @EngineExeStatus = params['EngineExeStatus']
29254
+ @EngineExeUser = params['EngineExeUser']
29255
+ @EngineExeStartTime = params['EngineExeStartTime']
29256
+ @EngineExeEndTime = params['EngineExeEndTime']
29257
+ @ProductSource = params['ProductSource']
29258
+ end
29259
+ end
29260
+
28768
29261
  # 任务属性
28769
29262
  class TaskInnerInfo < TencentCloud::Common::AbstractModel
28770
29263
  # @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.1017
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-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common