tencentcloud-sdk-wedata 3.0.584 → 3.0.585

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210820/models.rb +357 -35
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4fc09958b9008cd98a09879030c6a24da3f5f331
4
- data.tar.gz: 329bc2e81e39f04968f066a62547fc358856decc
3
+ metadata.gz: 3f4acd00fd84b93b72b330ece7814063bf7a6740
4
+ data.tar.gz: 2ec4750fb2c14041009d9c3ceb91fcdba3a8681f
5
5
  SHA512:
6
- metadata.gz: 8c323984ac1e4c31ca346b817c0fd3ede1f8c966a738f918b487326f85f4c430b4cba6da1a74e61f3996078cf666c474863fcdaea0d606e9e188460469cc51ff
7
- data.tar.gz: a8d65ed36c22d03f35379e3407af354ca08c2acc49639ec064fe6fb50542f670e84ac36f7bb6c93f52528acc842a539e102bbf4da4ecb7a6b11516a5929fb445
6
+ metadata.gz: b88c1cd49cc5fcfdda0d51d4f08b0414999f66cc252990b4dabd94f0bf0fe3657a502b9412ed68b0eaec92f508181e32c33b72e5540facde29cc1d1265e0df5e
7
+ data.tar.gz: ea810dccd78ed1cece800ab93d823e8f2d8779429de6c6f4bd28d86650eb734e933c53130b392a08861b2296d2f114bca95062483adeea9879e42e6d488f382d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.584
1
+ 3.0.585
@@ -61,10 +61,13 @@ module TencentCloud
61
61
  # @param Operator: 阈值计算算子,1 : 大于 2 :小于
62
62
  # 注意:此字段可能返回 null,表示取不到有效值。
63
63
  # @type Operator: Integer
64
+ # @param RegularId: 告警规则ID
65
+ # 注意:此字段可能返回 null,表示取不到有效值。
66
+ # @type RegularId: String
64
67
 
65
- attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :MessageId, :Operator
68
+ attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :MessageId, :Operator, :RegularId
66
69
 
67
- def initialize(alarmid=nil, alarmtime=nil, taskid=nil, regularname=nil, alarmlevel=nil, alarmway=nil, alarmrecipientid=nil, projectid=nil, alarmindicator=nil, alarmindicatordesc=nil, triggertype=nil, estimatedtime=nil, instanceid=nil, taskname=nil, issendsuccess=nil, messageid=nil, operator=nil)
70
+ def initialize(alarmid=nil, alarmtime=nil, taskid=nil, regularname=nil, alarmlevel=nil, alarmway=nil, alarmrecipientid=nil, projectid=nil, alarmindicator=nil, alarmindicatordesc=nil, triggertype=nil, estimatedtime=nil, instanceid=nil, taskname=nil, issendsuccess=nil, messageid=nil, operator=nil, regularid=nil)
68
71
  @AlarmId = alarmid
69
72
  @AlarmTime = alarmtime
70
73
  @TaskId = taskid
@@ -82,6 +85,7 @@ module TencentCloud
82
85
  @IsSendSuccess = issendsuccess
83
86
  @MessageId = messageid
84
87
  @Operator = operator
88
+ @RegularId = regularid
85
89
  end
86
90
 
87
91
  def deserialize(params)
@@ -102,6 +106,7 @@ module TencentCloud
102
106
  @IsSendSuccess = params['IsSendSuccess']
103
107
  @MessageId = params['MessageId']
104
108
  @Operator = params['Operator']
109
+ @RegularId = params['RegularId']
105
110
  end
106
111
  end
107
112
 
@@ -1148,27 +1153,31 @@ module TencentCloud
1148
1153
  class CheckAlarmRegularNameExistRequest < TencentCloud::Common::AbstractModel
1149
1154
  # @param ProjectId: 项目名称
1150
1155
  # @type ProjectId: String
1151
- # @param TaskId: 任务ID
1152
- # @type TaskId: String
1153
1156
  # @param AlarmRegularName: 规则名称
1154
1157
  # @type AlarmRegularName: String
1158
+ # @param TaskId: 任务ID
1159
+ # @type TaskId: String
1155
1160
  # @param Id: 主键ID
1156
1161
  # @type Id: String
1162
+ # @param TaskType: 任务类型:201.实时,202.离线
1163
+ # @type TaskType: Integer
1157
1164
 
1158
- attr_accessor :ProjectId, :TaskId, :AlarmRegularName, :Id
1165
+ attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType
1159
1166
 
1160
- def initialize(projectid=nil, taskid=nil, alarmregularname=nil, id=nil)
1167
+ def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil)
1161
1168
  @ProjectId = projectid
1162
- @TaskId = taskid
1163
1169
  @AlarmRegularName = alarmregularname
1170
+ @TaskId = taskid
1164
1171
  @Id = id
1172
+ @TaskType = tasktype
1165
1173
  end
1166
1174
 
1167
1175
  def deserialize(params)
1168
1176
  @ProjectId = params['ProjectId']
1169
- @TaskId = params['TaskId']
1170
1177
  @AlarmRegularName = params['AlarmRegularName']
1178
+ @TaskId = params['TaskId']
1171
1179
  @Id = params['Id']
1180
+ @TaskType = params['TaskType']
1172
1181
  end
1173
1182
  end
1174
1183
 
@@ -2404,11 +2413,11 @@ module TencentCloud
2404
2413
 
2405
2414
  # CreateOrUpdateResource请求参数结构体
2406
2415
  class CreateOrUpdateResourceRequest < TencentCloud::Common::AbstractModel
2407
- # @param ProjectId: 项目ID
2416
+ # @param ProjectId: 项目ID,必填项
2408
2417
  # @type ProjectId: String
2409
- # @param Files: 文件名
2418
+ # @param Files: 文件名,必填项
2410
2419
  # @type Files: Array
2411
- # @param FilePath: 文件所属路径,资源管理根路径为 /datastudio/resouce
2420
+ # @param FilePath: 必填项,文件所属路径,资源管理根路径为 /datastudio/resource/项目ID/文件夹名
2412
2421
  # @type FilePath: String
2413
2422
  # @param CosBucketName: cos存储桶名字
2414
2423
  # @type CosBucketName: String
@@ -2416,7 +2425,7 @@ module TencentCloud
2416
2425
  # @type CosRegion: String
2417
2426
  # @param NewFile: 是否为新文件,新增为 true,更新为 false
2418
2427
  # @type NewFile: Boolean
2419
- # @param FilesSize: 文件大小
2428
+ # @param FilesSize: 必填项,文件大小,与 Files 字段对应
2420
2429
  # @type FilesSize: Array
2421
2430
 
2422
2431
  attr_accessor :ProjectId, :Files, :FilePath, :CosBucketName, :CosRegion, :NewFile, :FilesSize
@@ -5334,18 +5343,35 @@ module TencentCloud
5334
5343
  class DescribeInstanceListResponse < TencentCloud::Common::AbstractModel
5335
5344
  # @param Data: 结果
5336
5345
  # @type Data: String
5346
+ # @param InstanceList: 实例列表
5347
+ # 注意:此字段可能返回 null,表示取不到有效值。
5348
+ # @type InstanceList: Array
5349
+ # @param TotalCount: 总条数
5350
+ # 注意:此字段可能返回 null,表示取不到有效值。
5351
+ # @type TotalCount: Integer
5337
5352
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5338
5353
  # @type RequestId: String
5339
5354
 
5340
- attr_accessor :Data, :RequestId
5355
+ attr_accessor :Data, :InstanceList, :TotalCount, :RequestId
5341
5356
 
5342
- def initialize(data=nil, requestid=nil)
5357
+ def initialize(data=nil, instancelist=nil, totalcount=nil, requestid=nil)
5343
5358
  @Data = data
5359
+ @InstanceList = instancelist
5360
+ @TotalCount = totalcount
5344
5361
  @RequestId = requestid
5345
5362
  end
5346
5363
 
5347
5364
  def deserialize(params)
5348
5365
  @Data = params['Data']
5366
+ unless params['InstanceList'].nil?
5367
+ @InstanceList = []
5368
+ params['InstanceList'].each do |i|
5369
+ instancelist_tmp = InstanceList.new
5370
+ instancelist_tmp.deserialize(i)
5371
+ @InstanceList << instancelist_tmp
5372
+ end
5373
+ end
5374
+ @TotalCount = params['TotalCount']
5349
5375
  @RequestId = params['RequestId']
5350
5376
  end
5351
5377
  end
@@ -5374,18 +5400,30 @@ module TencentCloud
5374
5400
  class DescribeInstanceLogListResponse < TencentCloud::Common::AbstractModel
5375
5401
  # @param Data: 日志列表
5376
5402
  # @type Data: String
5403
+ # @param InstanceLogList: 日志列表
5404
+ # 注意:此字段可能返回 null,表示取不到有效值。
5405
+ # @type InstanceLogList: Array
5377
5406
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5378
5407
  # @type RequestId: String
5379
5408
 
5380
- attr_accessor :Data, :RequestId
5409
+ attr_accessor :Data, :InstanceLogList, :RequestId
5381
5410
 
5382
- def initialize(data=nil, requestid=nil)
5411
+ def initialize(data=nil, instanceloglist=nil, requestid=nil)
5383
5412
  @Data = data
5413
+ @InstanceLogList = instanceloglist
5384
5414
  @RequestId = requestid
5385
5415
  end
5386
5416
 
5387
5417
  def deserialize(params)
5388
5418
  @Data = params['Data']
5419
+ unless params['InstanceLogList'].nil?
5420
+ @InstanceLogList = []
5421
+ params['InstanceLogList'].each do |i|
5422
+ instanceloglist_tmp = InstanceLogList.new
5423
+ instanceloglist_tmp.deserialize(i)
5424
+ @InstanceLogList << instanceloglist_tmp
5425
+ end
5426
+ end
5389
5427
  @RequestId = params['RequestId']
5390
5428
  end
5391
5429
  end
@@ -5422,18 +5460,26 @@ module TencentCloud
5422
5460
  class DescribeInstanceLogResponse < TencentCloud::Common::AbstractModel
5423
5461
  # @param Data: 返回结果
5424
5462
  # @type Data: String
5463
+ # @param InstanceLogInfo: 返回结果
5464
+ # 注意:此字段可能返回 null,表示取不到有效值。
5465
+ # @type InstanceLogInfo: :class:`Tencentcloud::Wedata.v20210820.models.IntegrationInstanceLog`
5425
5466
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5426
5467
  # @type RequestId: String
5427
5468
 
5428
- attr_accessor :Data, :RequestId
5469
+ attr_accessor :Data, :InstanceLogInfo, :RequestId
5429
5470
 
5430
- def initialize(data=nil, requestid=nil)
5471
+ def initialize(data=nil, instanceloginfo=nil, requestid=nil)
5431
5472
  @Data = data
5473
+ @InstanceLogInfo = instanceloginfo
5432
5474
  @RequestId = requestid
5433
5475
  end
5434
5476
 
5435
5477
  def deserialize(params)
5436
5478
  @Data = params['Data']
5479
+ unless params['InstanceLogInfo'].nil?
5480
+ @InstanceLogInfo = IntegrationInstanceLog.new
5481
+ @InstanceLogInfo.deserialize(params['InstanceLogInfo'])
5482
+ end
5437
5483
  @RequestId = params['RequestId']
5438
5484
  end
5439
5485
  end
@@ -6072,13 +6118,17 @@ module TencentCloud
6072
6118
  # @param TaskInfoSet: 任务列表
6073
6119
  # 注意:此字段可能返回 null,表示取不到有效值。
6074
6120
  # @type TaskInfoSet: Array
6121
+ # @param TotalCount: 任务总数
6122
+ # 注意:此字段可能返回 null,表示取不到有效值。
6123
+ # @type TotalCount: Integer
6075
6124
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6076
6125
  # @type RequestId: String
6077
6126
 
6078
- attr_accessor :TaskInfoSet, :RequestId
6127
+ attr_accessor :TaskInfoSet, :TotalCount, :RequestId
6079
6128
 
6080
- def initialize(taskinfoset=nil, requestid=nil)
6129
+ def initialize(taskinfoset=nil, totalcount=nil, requestid=nil)
6081
6130
  @TaskInfoSet = taskinfoset
6131
+ @TotalCount = totalcount
6082
6132
  @RequestId = requestid
6083
6133
  end
6084
6134
 
@@ -6091,6 +6141,7 @@ module TencentCloud
6091
6141
  @TaskInfoSet << integrationtaskinfo_tmp
6092
6142
  end
6093
6143
  end
6144
+ @TotalCount = params['TotalCount']
6094
6145
  @RequestId = params['RequestId']
6095
6146
  end
6096
6147
  end
@@ -8637,12 +8688,8 @@ module TencentCloud
8637
8688
 
8638
8689
  # DescribeTaskAlarmRegulations请求参数结构体
8639
8690
  class DescribeTaskAlarmRegulationsRequest < TencentCloud::Common::AbstractModel
8640
- # @param TaskId: 任务ID
8641
- # @type TaskId: String
8642
8691
  # @param ProjectId: 项目ID
8643
8692
  # @type ProjectId: String
8644
- # @param TaskType: 任务类型(201代表实时任务,202代表离线任务)
8645
- # @type TaskType: Integer
8646
8693
  # @param PageNumber: 当前页
8647
8694
  # @type PageNumber: Integer
8648
8695
  # @param PageSize: 每页记录数
@@ -8651,23 +8698,25 @@ module TencentCloud
8651
8698
  # @type Filters: Array
8652
8699
  # @param OrderFields: 排序条件(RegularId)
8653
8700
  # @type OrderFields: Array
8701
+ # @param TaskId: 任务ID
8702
+ # @type TaskId: String
8703
+ # @param TaskType: 任务类型(201代表实时任务,202代表离线任务)
8704
+ # @type TaskType: Integer
8654
8705
 
8655
- attr_accessor :TaskId, :ProjectId, :TaskType, :PageNumber, :PageSize, :Filters, :OrderFields
8706
+ attr_accessor :ProjectId, :PageNumber, :PageSize, :Filters, :OrderFields, :TaskId, :TaskType
8656
8707
 
8657
- def initialize(taskid=nil, projectid=nil, tasktype=nil, pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil)
8658
- @TaskId = taskid
8708
+ def initialize(projectid=nil, pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, taskid=nil, tasktype=nil)
8659
8709
  @ProjectId = projectid
8660
- @TaskType = tasktype
8661
8710
  @PageNumber = pagenumber
8662
8711
  @PageSize = pagesize
8663
8712
  @Filters = filters
8664
8713
  @OrderFields = orderfields
8714
+ @TaskId = taskid
8715
+ @TaskType = tasktype
8665
8716
  end
8666
8717
 
8667
8718
  def deserialize(params)
8668
- @TaskId = params['TaskId']
8669
8719
  @ProjectId = params['ProjectId']
8670
- @TaskType = params['TaskType']
8671
8720
  @PageNumber = params['PageNumber']
8672
8721
  @PageSize = params['PageSize']
8673
8722
  unless params['Filters'].nil?
@@ -8686,12 +8735,14 @@ module TencentCloud
8686
8735
  @OrderFields << orderfield_tmp
8687
8736
  end
8688
8737
  end
8738
+ @TaskId = params['TaskId']
8739
+ @TaskType = params['TaskType']
8689
8740
  end
8690
8741
  end
8691
8742
 
8692
8743
  # DescribeTaskAlarmRegulations返回参数结构体
8693
8744
  class DescribeTaskAlarmRegulationsResponse < TencentCloud::Common::AbstractModel
8694
- # @param TaskAlarmInfos: 任务告警规则信息
8745
+ # @param TaskAlarmInfos: 告警规则信息
8695
8746
  # 注意:此字段可能返回 null,表示取不到有效值。
8696
8747
  # @type TaskAlarmInfos: Array
8697
8748
  # @param TotalCount: 总记录数
@@ -10570,6 +10621,78 @@ module TencentCloud
10570
10621
  end
10571
10622
  end
10572
10623
 
10624
+ # 离线运维实例列表
10625
+ class InstanceList < TencentCloud::Common::AbstractModel
10626
+ # @param CostTime: 耗费时间
10627
+ # 注意:此字段可能返回 null,表示取不到有效值。
10628
+ # @type CostTime: String
10629
+ # @param CurRunDate: 数据时间
10630
+ # 注意:此字段可能返回 null,表示取不到有效值。
10631
+ # @type CurRunDate: String
10632
+ # @param CycleType: 周期类型
10633
+ # 注意:此字段可能返回 null,表示取不到有效值。
10634
+ # @type CycleType: String
10635
+ # @param DoFlag: 是否补录
10636
+ # 注意:此字段可能返回 null,表示取不到有效值。
10637
+ # @type DoFlag: Integer
10638
+ # @param InCharge: 责任人
10639
+ # 注意:此字段可能返回 null,表示取不到有效值。
10640
+ # @type InCharge: String
10641
+ # @param LastLog: 日志
10642
+ # 注意:此字段可能返回 null,表示取不到有效值。
10643
+ # @type LastLog: String
10644
+ # @param SchedulerDesc: 调度计划
10645
+ # 注意:此字段可能返回 null,表示取不到有效值。
10646
+ # @type SchedulerDesc: String
10647
+ # @param StartTime: 开始启动时间
10648
+ # 注意:此字段可能返回 null,表示取不到有效值。
10649
+ # @type StartTime: String
10650
+ # @param State: 实例状态
10651
+ # 注意:此字段可能返回 null,表示取不到有效值。
10652
+ # @type State: String
10653
+ # @param TaskId: 任务ID
10654
+ # 注意:此字段可能返回 null,表示取不到有效值。
10655
+ # @type TaskId: String
10656
+ # @param TaskName: 任务名称
10657
+ # 注意:此字段可能返回 null,表示取不到有效值。
10658
+ # @type TaskName: String
10659
+ # @param TryLimit: 尝试运行次数
10660
+ # 注意:此字段可能返回 null,表示取不到有效值。
10661
+ # @type TryLimit: Integer
10662
+
10663
+ attr_accessor :CostTime, :CurRunDate, :CycleType, :DoFlag, :InCharge, :LastLog, :SchedulerDesc, :StartTime, :State, :TaskId, :TaskName, :TryLimit
10664
+
10665
+ def initialize(costtime=nil, currundate=nil, cycletype=nil, doflag=nil, incharge=nil, lastlog=nil, schedulerdesc=nil, starttime=nil, state=nil, taskid=nil, taskname=nil, trylimit=nil)
10666
+ @CostTime = costtime
10667
+ @CurRunDate = currundate
10668
+ @CycleType = cycletype
10669
+ @DoFlag = doflag
10670
+ @InCharge = incharge
10671
+ @LastLog = lastlog
10672
+ @SchedulerDesc = schedulerdesc
10673
+ @StartTime = starttime
10674
+ @State = state
10675
+ @TaskId = taskid
10676
+ @TaskName = taskname
10677
+ @TryLimit = trylimit
10678
+ end
10679
+
10680
+ def deserialize(params)
10681
+ @CostTime = params['CostTime']
10682
+ @CurRunDate = params['CurRunDate']
10683
+ @CycleType = params['CycleType']
10684
+ @DoFlag = params['DoFlag']
10685
+ @InCharge = params['InCharge']
10686
+ @LastLog = params['LastLog']
10687
+ @SchedulerDesc = params['SchedulerDesc']
10688
+ @StartTime = params['StartTime']
10689
+ @State = params['State']
10690
+ @TaskId = params['TaskId']
10691
+ @TaskName = params['TaskName']
10692
+ @TryLimit = params['TryLimit']
10693
+ end
10694
+ end
10695
+
10573
10696
  # 实例日志实体
10574
10697
  class InstanceLog < TencentCloud::Common::AbstractModel
10575
10698
  # @param TaskId: 任务ID
@@ -10620,6 +10743,73 @@ module TencentCloud
10620
10743
  end
10621
10744
  end
10622
10745
 
10746
+ # 实例日志信息
10747
+ class InstanceLogList < TencentCloud::Common::AbstractModel
10748
+ # @param TaskId: 任务ID
10749
+ # 注意:此字段可能返回 null,表示取不到有效值。
10750
+ # @type TaskId: String
10751
+ # @param CurRunDate: 数据时间
10752
+ # 注意:此字段可能返回 null,表示取不到有效值。
10753
+ # @type CurRunDate: String
10754
+ # @param Tries: 重试次数
10755
+ # 注意:此字段可能返回 null,表示取不到有效值。
10756
+ # @type Tries: String
10757
+ # @param LastUpdate: 最后更新事件
10758
+ # 注意:此字段可能返回 null,表示取不到有效值。
10759
+ # @type LastUpdate: String
10760
+ # @param BrokerIp: 节点ip
10761
+ # 注意:此字段可能返回 null,表示取不到有效值。
10762
+ # @type BrokerIp: String
10763
+ # @param FileSize: 文件大小
10764
+ # 注意:此字段可能返回 null,表示取不到有效值。
10765
+ # @type FileSize: String
10766
+ # @param OriginFileName: 原始文件名
10767
+ # 注意:此字段可能返回 null,表示取不到有效值。
10768
+ # @type OriginFileName: String
10769
+ # @param CreateTime: 创建时间
10770
+ # 注意:此字段可能返回 null,表示取不到有效值。
10771
+ # @type CreateTime: String
10772
+ # @param InstanceLogType: 实例日志类型
10773
+ # 注意:此字段可能返回 null,表示取不到有效值。
10774
+ # @type InstanceLogType: String
10775
+ # @param TaskName: 任务名称
10776
+ # 注意:此字段可能返回 null,表示取不到有效值。
10777
+ # @type TaskName: String
10778
+ # @param CostTime: 耗费时间
10779
+ # 注意:此字段可能返回 null,表示取不到有效值。
10780
+ # @type CostTime: String
10781
+
10782
+ attr_accessor :TaskId, :CurRunDate, :Tries, :LastUpdate, :BrokerIp, :FileSize, :OriginFileName, :CreateTime, :InstanceLogType, :TaskName, :CostTime
10783
+
10784
+ def initialize(taskid=nil, currundate=nil, tries=nil, lastupdate=nil, brokerip=nil, filesize=nil, originfilename=nil, createtime=nil, instancelogtype=nil, taskname=nil, costtime=nil)
10785
+ @TaskId = taskid
10786
+ @CurRunDate = currundate
10787
+ @Tries = tries
10788
+ @LastUpdate = lastupdate
10789
+ @BrokerIp = brokerip
10790
+ @FileSize = filesize
10791
+ @OriginFileName = originfilename
10792
+ @CreateTime = createtime
10793
+ @InstanceLogType = instancelogtype
10794
+ @TaskName = taskname
10795
+ @CostTime = costtime
10796
+ end
10797
+
10798
+ def deserialize(params)
10799
+ @TaskId = params['TaskId']
10800
+ @CurRunDate = params['CurRunDate']
10801
+ @Tries = params['Tries']
10802
+ @LastUpdate = params['LastUpdate']
10803
+ @BrokerIp = params['BrokerIp']
10804
+ @FileSize = params['FileSize']
10805
+ @OriginFileName = params['OriginFileName']
10806
+ @CreateTime = params['CreateTime']
10807
+ @InstanceLogType = params['InstanceLogType']
10808
+ @TaskName = params['TaskName']
10809
+ @CostTime = params['CostTime']
10810
+ end
10811
+ end
10812
+
10623
10813
  # 查询实时任务实例当前的节点信息
10624
10814
  class InstanceNodeInfo < TencentCloud::Common::AbstractModel
10625
10815
  # @param NodeType: 读取节点SOURCE 写入节点SINK
@@ -10783,6 +10973,23 @@ module TencentCloud
10783
10973
  end
10784
10974
  end
10785
10975
 
10976
+ # 实例日志信息
10977
+ class IntegrationInstanceLog < TencentCloud::Common::AbstractModel
10978
+ # @param LogInfo: 任务日志信息
10979
+ # 注意:此字段可能返回 null,表示取不到有效值。
10980
+ # @type LogInfo: String
10981
+
10982
+ attr_accessor :LogInfo
10983
+
10984
+ def initialize(loginfo=nil)
10985
+ @LogInfo = loginfo
10986
+ end
10987
+
10988
+ def deserialize(params)
10989
+ @LogInfo = params['LogInfo']
10990
+ end
10991
+ end
10992
+
10786
10993
  # 集成节点详情
10787
10994
  class IntegrationNodeDetail < TencentCloud::Common::AbstractModel
10788
10995
  # @param Name: 集成节点名称
@@ -11219,10 +11426,55 @@ module TencentCloud
11219
11426
  # @param Submit: 任务版本是否已提交运维
11220
11427
  # 注意:此字段可能返回 null,表示取不到有效值。
11221
11428
  # @type Submit: Boolean
11429
+ # @param InputDatasourceType: MYSQL
11430
+ # 注意:此字段可能返回 null,表示取不到有效值。
11431
+ # @type InputDatasourceType: String
11432
+ # @param OutputDatasourceType: DLC
11433
+ # 注意:此字段可能返回 null,表示取不到有效值。
11434
+ # @type OutputDatasourceType: String
11435
+ # @param NumRecordsIn: 读取条数
11436
+ # 注意:此字段可能返回 null,表示取不到有效值。
11437
+ # @type NumRecordsIn: Integer
11438
+ # @param NumRecordsOut: 写入条数
11439
+ # 注意:此字段可能返回 null,表示取不到有效值。
11440
+ # @type NumRecordsOut: Integer
11441
+ # @param ReaderDelay: 读取延迟
11442
+ # 注意:此字段可能返回 null,表示取不到有效值。
11443
+ # @type ReaderDelay: Float
11444
+ # @param NumRestarts: 重启次数
11445
+ # 注意:此字段可能返回 null,表示取不到有效值。
11446
+ # @type NumRestarts: Integer
11447
+ # @param CreateTime: 任务创建时间
11448
+ # 注意:此字段可能返回 null,表示取不到有效值。
11449
+ # @type CreateTime: String
11450
+ # @param UpdateTime: 任务更新时间
11451
+ # 注意:此字段可能返回 null,表示取不到有效值。
11452
+ # @type UpdateTime: String
11453
+ # @param LastRunTime: 任务最后一次运行时间
11454
+ # 注意:此字段可能返回 null,表示取不到有效值。
11455
+ # @type LastRunTime: String
11456
+ # @param StopTime: 任务停止时间
11457
+ # 注意:此字段可能返回 null,表示取不到有效值。
11458
+ # @type StopTime: String
11459
+ # @param HasVersion: 作业是否已提交
11460
+ # 注意:此字段可能返回 null,表示取不到有效值。
11461
+ # @type HasVersion: Boolean
11462
+ # @param Locked: 任务是否被锁定
11463
+ # 注意:此字段可能返回 null,表示取不到有效值。
11464
+ # @type Locked: Boolean
11465
+ # @param Locker: 任务锁定人
11466
+ # 注意:此字段可能返回 null,表示取不到有效值。
11467
+ # @type Locker: String
11468
+ # @param RunningCu: 耗费资源量
11469
+ # 注意:此字段可能返回 null,表示取不到有效值。
11470
+ # @type RunningCu: Float
11471
+ # @param TaskAlarmRegularList: 该任务关联的告警规则
11472
+ # 注意:此字段可能返回 null,表示取不到有效值。
11473
+ # @type TaskAlarmRegularList: Array
11222
11474
 
11223
- attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit
11475
+ attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList
11224
11476
 
11225
- def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil)
11477
+ def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil)
11226
11478
  @TaskName = taskname
11227
11479
  @Description = description
11228
11480
  @SyncType = synctype
@@ -11252,6 +11504,21 @@ module TencentCloud
11252
11504
  @InLongManagerVersion = inlongmanagerversion
11253
11505
  @DataProxyUrl = dataproxyurl
11254
11506
  @Submit = submit
11507
+ @InputDatasourceType = inputdatasourcetype
11508
+ @OutputDatasourceType = outputdatasourcetype
11509
+ @NumRecordsIn = numrecordsin
11510
+ @NumRecordsOut = numrecordsout
11511
+ @ReaderDelay = readerdelay
11512
+ @NumRestarts = numrestarts
11513
+ @CreateTime = createtime
11514
+ @UpdateTime = updatetime
11515
+ @LastRunTime = lastruntime
11516
+ @StopTime = stoptime
11517
+ @HasVersion = hasversion
11518
+ @Locked = locked
11519
+ @Locker = locker
11520
+ @RunningCu = runningcu
11521
+ @TaskAlarmRegularList = taskalarmregularlist
11255
11522
  end
11256
11523
 
11257
11524
  def deserialize(params)
@@ -11322,6 +11589,21 @@ module TencentCloud
11322
11589
  @InLongManagerVersion = params['InLongManagerVersion']
11323
11590
  @DataProxyUrl = params['DataProxyUrl']
11324
11591
  @Submit = params['Submit']
11592
+ @InputDatasourceType = params['InputDatasourceType']
11593
+ @OutputDatasourceType = params['OutputDatasourceType']
11594
+ @NumRecordsIn = params['NumRecordsIn']
11595
+ @NumRecordsOut = params['NumRecordsOut']
11596
+ @ReaderDelay = params['ReaderDelay']
11597
+ @NumRestarts = params['NumRestarts']
11598
+ @CreateTime = params['CreateTime']
11599
+ @UpdateTime = params['UpdateTime']
11600
+ @LastRunTime = params['LastRunTime']
11601
+ @StopTime = params['StopTime']
11602
+ @HasVersion = params['HasVersion']
11603
+ @Locked = params['Locked']
11604
+ @Locker = params['Locker']
11605
+ @RunningCu = params['RunningCu']
11606
+ @TaskAlarmRegularList = params['TaskAlarmRegularList']
11325
11607
  end
11326
11608
  end
11327
11609
 
@@ -16678,10 +16960,34 @@ module TencentCloud
16678
16960
  # @param WeComHook: 企业微信群Hook地址,多个hook地址使用,隔开
16679
16961
  # 注意:此字段可能返回 null,表示取不到有效值。
16680
16962
  # @type WeComHook: String
16963
+ # @param UpdateTime: 最近操作时间
16964
+ # 注意:此字段可能返回 null,表示取不到有效值。
16965
+ # @type UpdateTime: String
16966
+ # @param OperatorUin: 最近操作人Uin
16967
+ # 注意:此字段可能返回 null,表示取不到有效值。
16968
+ # @type OperatorUin: String
16969
+ # @param TaskCount: 关联任务数
16970
+ # 注意:此字段可能返回 null,表示取不到有效值。
16971
+ # @type TaskCount: Integer
16972
+ # @param MonitorType: 监控对象类型,1:所有任务,2:指定任务,3:指定责任人
16973
+ # 注意:此字段可能返回 null,表示取不到有效值。
16974
+ # @type MonitorType: Integer
16975
+ # @param MonitorObjectIds: 监控对象列表
16976
+ # 注意:此字段可能返回 null,表示取不到有效值。
16977
+ # @type MonitorObjectIds: Array
16978
+ # @param LatestAlarmInstanceId: 最近一次告警的实例ID
16979
+ # 注意:此字段可能返回 null,表示取不到有效值。
16980
+ # @type LatestAlarmInstanceId: String
16981
+ # @param LatestAlarmTime: 最近一次告警时间
16982
+ # 注意:此字段可能返回 null,表示取不到有效值。
16983
+ # @type LatestAlarmTime: String
16984
+ # @param Description: 告警规则描述
16985
+ # 注意:此字段可能返回 null,表示取不到有效值。
16986
+ # @type Description: String
16681
16987
 
16682
- attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :WeComHook
16988
+ attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description
16683
16989
 
16684
- def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, wecomhook=nil)
16990
+ def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil)
16685
16991
  @TaskId = taskid
16686
16992
  @RegularName = regularname
16687
16993
  @RegularStatus = regularstatus
@@ -16704,6 +17010,14 @@ module TencentCloud
16704
17010
  @AlarmIndicatorInfos = alarmindicatorinfos
16705
17011
  @AlarmRecipientType = alarmrecipienttype
16706
17012
  @WeComHook = wecomhook
17013
+ @UpdateTime = updatetime
17014
+ @OperatorUin = operatoruin
17015
+ @TaskCount = taskcount
17016
+ @MonitorType = monitortype
17017
+ @MonitorObjectIds = monitorobjectids
17018
+ @LatestAlarmInstanceId = latestalarminstanceid
17019
+ @LatestAlarmTime = latestalarmtime
17020
+ @Description = description
16707
17021
  end
16708
17022
 
16709
17023
  def deserialize(params)
@@ -16736,6 +17050,14 @@ module TencentCloud
16736
17050
  end
16737
17051
  @AlarmRecipientType = params['AlarmRecipientType']
16738
17052
  @WeComHook = params['WeComHook']
17053
+ @UpdateTime = params['UpdateTime']
17054
+ @OperatorUin = params['OperatorUin']
17055
+ @TaskCount = params['TaskCount']
17056
+ @MonitorType = params['MonitorType']
17057
+ @MonitorObjectIds = params['MonitorObjectIds']
17058
+ @LatestAlarmInstanceId = params['LatestAlarmInstanceId']
17059
+ @LatestAlarmTime = params['LatestAlarmTime']
17060
+ @Description = params['Description']
16739
17061
  end
16740
17062
  end
16741
17063
 
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.584
4
+ version: 3.0.585
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-05 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common