tencentcloud-sdk-wedata 3.0.790 → 3.0.792
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/models.rb +186 -26
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8594b2a0a319b642a8883d413a18dc2b3a179d71
|
4
|
+
data.tar.gz: 71065570837d545ba112486de767ebe1940de6e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cdf59ca5ae7f2e3a4aa905cd26ab7f1d9e89caad0f248202914f811c64b6efd37c1eae99ca4dae558fae6a7dfd30e12cf11f097f5502f9ad8a9303d882bc425
|
7
|
+
data.tar.gz: 03558734e66ee41eb6784959ca8c5de6da5685abfd7586546e9f93317e68260e7ec829fca7e520c44715e6d20f71c18420bf3a187d22f2ee862f68caf4dbd908
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.792
|
data/lib/v20210820/models.rb
CHANGED
@@ -246,6 +246,12 @@ module TencentCloud
|
|
246
246
|
# @param IsSendSuccess: 0:部分成功,1:全部成功,2:全部失败
|
247
247
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
248
248
|
# @type IsSendSuccess: Integer
|
249
|
+
# @param InQuitePeriods: 是否在免打扰时间内,0:否, 1:是
|
250
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
251
|
+
# @type InQuitePeriods: Integer
|
252
|
+
# @param RecordId: 告警记录id
|
253
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
254
|
+
# @type RecordId: Integer
|
249
255
|
# @param MessageId: 消息ID
|
250
256
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
251
257
|
# @type MessageId: String
|
@@ -274,9 +280,9 @@ module TencentCloud
|
|
274
280
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
275
281
|
# @type Threshold: Float
|
276
282
|
|
277
|
-
attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :MessageId, :Operator, :RegularId, :AlarmRecipientName, :TaskType, :SendResult, :MonitorObjectId, :MonitorObjectName, :Threshold
|
283
|
+
attr_accessor :AlarmId, :AlarmTime, :TaskId, :RegularName, :AlarmLevel, :AlarmWay, :AlarmRecipientId, :ProjectId, :AlarmIndicator, :AlarmIndicatorDesc, :TriggerType, :EstimatedTime, :InstanceId, :TaskName, :IsSendSuccess, :InQuitePeriods, :RecordId, :MessageId, :Operator, :RegularId, :AlarmRecipientName, :TaskType, :SendResult, :MonitorObjectId, :MonitorObjectName, :Threshold
|
278
284
|
|
279
|
-
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, alarmrecipientname=nil, tasktype=nil, sendresult=nil, monitorobjectid=nil, monitorobjectname=nil, threshold=nil)
|
285
|
+
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, inquiteperiods=nil, recordid=nil, messageid=nil, operator=nil, regularid=nil, alarmrecipientname=nil, tasktype=nil, sendresult=nil, monitorobjectid=nil, monitorobjectname=nil, threshold=nil)
|
280
286
|
@AlarmId = alarmid
|
281
287
|
@AlarmTime = alarmtime
|
282
288
|
@TaskId = taskid
|
@@ -292,6 +298,8 @@ module TencentCloud
|
|
292
298
|
@InstanceId = instanceid
|
293
299
|
@TaskName = taskname
|
294
300
|
@IsSendSuccess = issendsuccess
|
301
|
+
@InQuitePeriods = inquiteperiods
|
302
|
+
@RecordId = recordid
|
295
303
|
@MessageId = messageid
|
296
304
|
@Operator = operator
|
297
305
|
@RegularId = regularid
|
@@ -319,6 +327,8 @@ module TencentCloud
|
|
319
327
|
@InstanceId = params['InstanceId']
|
320
328
|
@TaskName = params['TaskName']
|
321
329
|
@IsSendSuccess = params['IsSendSuccess']
|
330
|
+
@InQuitePeriods = params['InQuitePeriods']
|
331
|
+
@RecordId = params['RecordId']
|
322
332
|
@MessageId = params['MessageId']
|
323
333
|
@Operator = params['Operator']
|
324
334
|
@RegularId = params['RegularId']
|
@@ -1864,15 +1874,19 @@ module TencentCloud
|
|
1864
1874
|
# @type FailedCount: Integer
|
1865
1875
|
# @param TotalCount: 任务总数
|
1866
1876
|
# @type TotalCount: Integer
|
1877
|
+
# @param TaskNames: 实际传的为taskId
|
1878
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1879
|
+
# @type TaskNames: Array
|
1867
1880
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1868
1881
|
# @type RequestId: String
|
1869
1882
|
|
1870
|
-
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :RequestId
|
1883
|
+
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :TaskNames, :RequestId
|
1871
1884
|
|
1872
|
-
def initialize(successcount=nil, failedcount=nil, totalcount=nil, requestid=nil)
|
1885
|
+
def initialize(successcount=nil, failedcount=nil, totalcount=nil, tasknames=nil, requestid=nil)
|
1873
1886
|
@SuccessCount = successcount
|
1874
1887
|
@FailedCount = failedcount
|
1875
1888
|
@TotalCount = totalcount
|
1889
|
+
@TaskNames = tasknames
|
1876
1890
|
@RequestId = requestid
|
1877
1891
|
end
|
1878
1892
|
|
@@ -1880,6 +1894,7 @@ module TencentCloud
|
|
1880
1894
|
@SuccessCount = params['SuccessCount']
|
1881
1895
|
@FailedCount = params['FailedCount']
|
1882
1896
|
@TotalCount = params['TotalCount']
|
1897
|
+
@TaskNames = params['TaskNames']
|
1883
1898
|
@RequestId = params['RequestId']
|
1884
1899
|
end
|
1885
1900
|
end
|
@@ -2218,15 +2233,18 @@ module TencentCloud
|
|
2218
2233
|
# @type FailedCount: Integer
|
2219
2234
|
# @param TotalCount: 任务总数
|
2220
2235
|
# @type TotalCount: Integer
|
2236
|
+
# @param TaskNames: 实际传的为taskId
|
2237
|
+
# @type TaskNames: Array
|
2221
2238
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2222
2239
|
# @type RequestId: String
|
2223
2240
|
|
2224
|
-
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :RequestId
|
2241
|
+
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :TaskNames, :RequestId
|
2225
2242
|
|
2226
|
-
def initialize(successcount=nil, failedcount=nil, totalcount=nil, requestid=nil)
|
2243
|
+
def initialize(successcount=nil, failedcount=nil, totalcount=nil, tasknames=nil, requestid=nil)
|
2227
2244
|
@SuccessCount = successcount
|
2228
2245
|
@FailedCount = failedcount
|
2229
2246
|
@TotalCount = totalcount
|
2247
|
+
@TaskNames = tasknames
|
2230
2248
|
@RequestId = requestid
|
2231
2249
|
end
|
2232
2250
|
|
@@ -2234,6 +2252,7 @@ module TencentCloud
|
|
2234
2252
|
@SuccessCount = params['SuccessCount']
|
2235
2253
|
@FailedCount = params['FailedCount']
|
2236
2254
|
@TotalCount = params['TotalCount']
|
2255
|
+
@TaskNames = params['TaskNames']
|
2237
2256
|
@RequestId = params['RequestId']
|
2238
2257
|
end
|
2239
2258
|
end
|
@@ -4500,10 +4519,12 @@ module TencentCloud
|
|
4500
4519
|
# @type COSRegion: String
|
4501
4520
|
# @param ConnectResult: 连接测试结果
|
4502
4521
|
# @type ConnectResult: String
|
4522
|
+
# @param DevelopmentParams: 开发环境数据源配置
|
4523
|
+
# @type DevelopmentParams: String
|
4503
4524
|
|
4504
|
-
attr_accessor :Name, :Category, :Type, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :BizParams, :Params, :Description, :Display, :DatabaseName, :Instance, :Status, :ClusterId, :Collect, :COSBucket, :COSRegion, :ConnectResult
|
4525
|
+
attr_accessor :Name, :Category, :Type, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :BizParams, :Params, :Description, :Display, :DatabaseName, :Instance, :Status, :ClusterId, :Collect, :COSBucket, :COSRegion, :ConnectResult, :DevelopmentParams
|
4505
4526
|
|
4506
|
-
def initialize(name=nil, category=nil, type=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, bizparams=nil, params=nil, description=nil, display=nil, databasename=nil, instance=nil, status=nil, clusterid=nil, collect=nil, cosbucket=nil, cosregion=nil, connectresult=nil)
|
4527
|
+
def initialize(name=nil, category=nil, type=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, bizparams=nil, params=nil, description=nil, display=nil, databasename=nil, instance=nil, status=nil, clusterid=nil, collect=nil, cosbucket=nil, cosregion=nil, connectresult=nil, developmentparams=nil)
|
4507
4528
|
@Name = name
|
4508
4529
|
@Category = category
|
4509
4530
|
@Type = type
|
@@ -4522,6 +4543,7 @@ module TencentCloud
|
|
4522
4543
|
@COSBucket = cosbucket
|
4523
4544
|
@COSRegion = cosregion
|
4524
4545
|
@ConnectResult = connectresult
|
4546
|
+
@DevelopmentParams = developmentparams
|
4525
4547
|
end
|
4526
4548
|
|
4527
4549
|
def deserialize(params)
|
@@ -4543,6 +4565,7 @@ module TencentCloud
|
|
4543
4565
|
@COSBucket = params['COSBucket']
|
4544
4566
|
@COSRegion = params['COSRegion']
|
4545
4567
|
@ConnectResult = params['ConnectResult']
|
4568
|
+
@DevelopmentParams = params['DevelopmentParams']
|
4546
4569
|
end
|
4547
4570
|
end
|
4548
4571
|
|
@@ -6017,10 +6040,19 @@ module TencentCloud
|
|
6017
6040
|
# @param ShowType: 数据源页面展示类型,与Type对应
|
6018
6041
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6019
6042
|
# @type ShowType: String
|
6043
|
+
# @param ProductId: 当前数据源生产源Id
|
6044
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6045
|
+
# @type ProductId: Integer
|
6046
|
+
# @param DevelopmentId: 当前数据源开发源Id
|
6047
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6048
|
+
# @type DevelopmentId: Integer
|
6049
|
+
# @param DevelopmentParams: 同params 内容为开发数据源的数据
|
6050
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6051
|
+
# @type DevelopmentParams: String
|
6020
6052
|
|
6021
|
-
attr_accessor :DatabaseName, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :AppId, :BizParams, :Category, :Display, :OwnerAccount, :Params, :Status, :OwnerAccountName, :ClusterName, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :AuthorityProjectName, :AuthorityUserName, :Edit, :Author, :Deliver, :DataSourceStatus, :CreateTime, :ParamsString, :BizParamsString, :ModifiedTime, :ShowType
|
6053
|
+
attr_accessor :DatabaseName, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :AppId, :BizParams, :Category, :Display, :OwnerAccount, :Params, :Status, :OwnerAccountName, :ClusterName, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :AuthorityProjectName, :AuthorityUserName, :Edit, :Author, :Deliver, :DataSourceStatus, :CreateTime, :ParamsString, :BizParamsString, :ModifiedTime, :ShowType, :ProductId, :DevelopmentId, :DevelopmentParams
|
6022
6054
|
|
6023
|
-
def initialize(databasename=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, appid=nil, bizparams=nil, category=nil, display=nil, owneraccount=nil, params=nil, status=nil, owneraccountname=nil, clustername=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, authorityprojectname=nil, authorityusername=nil, edit=nil, author=nil, deliver=nil, datasourcestatus=nil, createtime=nil, paramsstring=nil, bizparamsstring=nil, modifiedtime=nil, showtype=nil)
|
6055
|
+
def initialize(databasename=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, appid=nil, bizparams=nil, category=nil, display=nil, owneraccount=nil, params=nil, status=nil, owneraccountname=nil, clustername=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, authorityprojectname=nil, authorityusername=nil, edit=nil, author=nil, deliver=nil, datasourcestatus=nil, createtime=nil, paramsstring=nil, bizparamsstring=nil, modifiedtime=nil, showtype=nil, productid=nil, developmentid=nil, developmentparams=nil)
|
6024
6056
|
@DatabaseName = databasename
|
6025
6057
|
@Description = description
|
6026
6058
|
@ID = id
|
@@ -6052,6 +6084,9 @@ module TencentCloud
|
|
6052
6084
|
@BizParamsString = bizparamsstring
|
6053
6085
|
@ModifiedTime = modifiedtime
|
6054
6086
|
@ShowType = showtype
|
6087
|
+
@ProductId = productid
|
6088
|
+
@DevelopmentId = developmentid
|
6089
|
+
@DevelopmentParams = developmentparams
|
6055
6090
|
end
|
6056
6091
|
|
6057
6092
|
def deserialize(params)
|
@@ -6086,6 +6121,9 @@ module TencentCloud
|
|
6086
6121
|
@BizParamsString = params['BizParamsString']
|
6087
6122
|
@ModifiedTime = params['ModifiedTime']
|
6088
6123
|
@ShowType = params['ShowType']
|
6124
|
+
@ProductId = params['ProductId']
|
6125
|
+
@DevelopmentId = params['DevelopmentId']
|
6126
|
+
@DevelopmentParams = params['DevelopmentParams']
|
6089
6127
|
end
|
6090
6128
|
end
|
6091
6129
|
|
@@ -7598,8 +7636,6 @@ module TencentCloud
|
|
7598
7636
|
# @type PageSize: Integer
|
7599
7637
|
# @param ProjectId: 项目ID
|
7600
7638
|
# @type ProjectId: String
|
7601
|
-
# @param MessageId: 消息ID
|
7602
|
-
# @type MessageId: String
|
7603
7639
|
# @param TaskType: 类型
|
7604
7640
|
# @type TaskType: Integer
|
7605
7641
|
# @param AlarmRecipient: 告警接收人ID(逗号分隔)
|
@@ -7608,21 +7644,26 @@ module TencentCloud
|
|
7608
7644
|
# @type AlarmRecipientName: String
|
7609
7645
|
# @param AlarmTime: 告警时间
|
7610
7646
|
# @type AlarmTime: String
|
7647
|
+
# @param MessageId: 消息ID
|
7648
|
+
# @type MessageId: String
|
7649
|
+
# @param RecordId: 告警记录id
|
7650
|
+
# @type RecordId: Integer
|
7611
7651
|
# @param MonitorType: 监控对象类型(1:所有任务,2:指定任务,3:指定责任人,4:指定资源组)
|
7612
7652
|
# @type MonitorType: Integer
|
7613
7653
|
|
7614
|
-
attr_accessor :AlarmId, :PageNumber, :PageSize, :ProjectId, :
|
7654
|
+
attr_accessor :AlarmId, :PageNumber, :PageSize, :ProjectId, :TaskType, :AlarmRecipient, :AlarmRecipientName, :AlarmTime, :MessageId, :RecordId, :MonitorType
|
7615
7655
|
|
7616
|
-
def initialize(alarmid=nil, pagenumber=nil, pagesize=nil, projectid=nil,
|
7656
|
+
def initialize(alarmid=nil, pagenumber=nil, pagesize=nil, projectid=nil, tasktype=nil, alarmrecipient=nil, alarmrecipientname=nil, alarmtime=nil, messageid=nil, recordid=nil, monitortype=nil)
|
7617
7657
|
@AlarmId = alarmid
|
7618
7658
|
@PageNumber = pagenumber
|
7619
7659
|
@PageSize = pagesize
|
7620
7660
|
@ProjectId = projectid
|
7621
|
-
@MessageId = messageid
|
7622
7661
|
@TaskType = tasktype
|
7623
7662
|
@AlarmRecipient = alarmrecipient
|
7624
7663
|
@AlarmRecipientName = alarmrecipientname
|
7625
7664
|
@AlarmTime = alarmtime
|
7665
|
+
@MessageId = messageid
|
7666
|
+
@RecordId = recordid
|
7626
7667
|
@MonitorType = monitortype
|
7627
7668
|
end
|
7628
7669
|
|
@@ -7631,11 +7672,12 @@ module TencentCloud
|
|
7631
7672
|
@PageNumber = params['PageNumber']
|
7632
7673
|
@PageSize = params['PageSize']
|
7633
7674
|
@ProjectId = params['ProjectId']
|
7634
|
-
@MessageId = params['MessageId']
|
7635
7675
|
@TaskType = params['TaskType']
|
7636
7676
|
@AlarmRecipient = params['AlarmRecipient']
|
7637
7677
|
@AlarmRecipientName = params['AlarmRecipientName']
|
7638
7678
|
@AlarmTime = params['AlarmTime']
|
7679
|
+
@MessageId = params['MessageId']
|
7680
|
+
@RecordId = params['RecordId']
|
7639
7681
|
@MonitorType = params['MonitorType']
|
7640
7682
|
end
|
7641
7683
|
end
|
@@ -9283,7 +9325,7 @@ module TencentCloud
|
|
9283
9325
|
|
9284
9326
|
# DescribeDataTypes请求参数结构体
|
9285
9327
|
class DescribeDataTypesRequest < TencentCloud::Common::AbstractModel
|
9286
|
-
# @param DatasourceType: 数据源类型,MYSQL|HIVE|KAFKA|POSTGRE|
|
9328
|
+
# @param DatasourceType: 数据源类型,MYSQL|HIVE|KAFKA|POSTGRE|TCHouse-P|ORACLE|SQLSERVER|FTP|HDFS|ICEBERG|HBASE|TDSQL|TDSQLC|SPARK|VIRTUAL|TBASE|DB2|DM|GAUSSDB|GBASE|IMPALA|ES|S3_DATAINSIGHT|GREENPLUM|PHOENIX|SAP_HANA|SFTP|OCEANBASE|CLICKHOUSE|KUDU|VERTICA|REDIS|COS|DLC|DORIS|CKAFKA|MONGODB|FTP_FILE|HDFS_FILE|DTS_KAFKA|REST_API|FILE|TIDB|SYBASE|TCHOUSE_X 等
|
9287
9329
|
# @type DatasourceType: String
|
9288
9330
|
# @param ProjectId: 项目ID。
|
9289
9331
|
# @type ProjectId: String
|
@@ -23448,7 +23490,7 @@ module TencentCloud
|
|
23448
23490
|
# @param TaskBaseInfo: 任务基本信息
|
23449
23491
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23450
23492
|
# @type TaskBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.TaskOpsDto`
|
23451
|
-
# @param InstanceCount:
|
23493
|
+
# @param InstanceCount: 补录该任务当前已生成的实例数
|
23452
23494
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23453
23495
|
# @type InstanceCount: Integer
|
23454
23496
|
# @param CompletePercent: 补录任务实例完成百分数
|
@@ -23457,14 +23499,18 @@ module TencentCloud
|
|
23457
23499
|
# @param SuccessPercent: 补录任务实例成功百分数
|
23458
23500
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23459
23501
|
# @type SuccessPercent: Integer
|
23502
|
+
# @param InstanceTotalCount: 预计生成的总实例个数,由于是异步生成,-1代表实例还未完完全生成
|
23503
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23504
|
+
# @type InstanceTotalCount: Integer
|
23460
23505
|
|
23461
|
-
attr_accessor :TaskBaseInfo, :InstanceCount, :CompletePercent, :SuccessPercent
|
23506
|
+
attr_accessor :TaskBaseInfo, :InstanceCount, :CompletePercent, :SuccessPercent, :InstanceTotalCount
|
23462
23507
|
|
23463
|
-
def initialize(taskbaseinfo=nil, instancecount=nil, completepercent=nil, successpercent=nil)
|
23508
|
+
def initialize(taskbaseinfo=nil, instancecount=nil, completepercent=nil, successpercent=nil, instancetotalcount=nil)
|
23464
23509
|
@TaskBaseInfo = taskbaseinfo
|
23465
23510
|
@InstanceCount = instancecount
|
23466
23511
|
@CompletePercent = completepercent
|
23467
23512
|
@SuccessPercent = successpercent
|
23513
|
+
@InstanceTotalCount = instancetotalcount
|
23468
23514
|
end
|
23469
23515
|
|
23470
23516
|
def deserialize(params)
|
@@ -23475,6 +23521,7 @@ module TencentCloud
|
|
23475
23521
|
@InstanceCount = params['InstanceCount']
|
23476
23522
|
@CompletePercent = params['CompletePercent']
|
23477
23523
|
@SuccessPercent = params['SuccessPercent']
|
23524
|
+
@InstanceTotalCount = params['InstanceTotalCount']
|
23478
23525
|
end
|
23479
23526
|
end
|
23480
23527
|
|
@@ -23983,10 +24030,12 @@ module TencentCloud
|
|
23983
24030
|
# @type COSRegion: String
|
23984
24031
|
# @param ProjectId: 操作项目id
|
23985
24032
|
# @type ProjectId: String
|
24033
|
+
# @param DevelopmentParams: 数据源开发环境配置
|
24034
|
+
# @type DevelopmentParams: String
|
23986
24035
|
|
23987
|
-
attr_accessor :Name, :Category, :Type, :ID, :BizParams, :Params, :Description, :Display, :DatabaseName, :Instance, :Status, :ClusterId, :Collect, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :COSBucket, :COSRegion, :ProjectId
|
24036
|
+
attr_accessor :Name, :Category, :Type, :ID, :BizParams, :Params, :Description, :Display, :DatabaseName, :Instance, :Status, :ClusterId, :Collect, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :COSBucket, :COSRegion, :ProjectId, :DevelopmentParams
|
23988
24037
|
|
23989
|
-
def initialize(name=nil, category=nil, type=nil, id=nil, bizparams=nil, params=nil, description=nil, display=nil, databasename=nil, instance=nil, status=nil, clusterid=nil, collect=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, cosbucket=nil, cosregion=nil, projectid=nil)
|
24038
|
+
def initialize(name=nil, category=nil, type=nil, id=nil, bizparams=nil, params=nil, description=nil, display=nil, databasename=nil, instance=nil, status=nil, clusterid=nil, collect=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, cosbucket=nil, cosregion=nil, projectid=nil, developmentparams=nil)
|
23990
24039
|
@Name = name
|
23991
24040
|
@Category = category
|
23992
24041
|
@Type = type
|
@@ -24006,6 +24055,7 @@ module TencentCloud
|
|
24006
24055
|
@COSBucket = cosbucket
|
24007
24056
|
@COSRegion = cosregion
|
24008
24057
|
@ProjectId = projectid
|
24058
|
+
@DevelopmentParams = developmentparams
|
24009
24059
|
end
|
24010
24060
|
|
24011
24061
|
def deserialize(params)
|
@@ -24028,6 +24078,7 @@ module TencentCloud
|
|
24028
24078
|
@COSBucket = params['COSBucket']
|
24029
24079
|
@COSRegion = params['COSRegion']
|
24030
24080
|
@ProjectId = params['ProjectId']
|
24081
|
+
@DevelopmentParams = params['DevelopmentParams']
|
24031
24082
|
end
|
24032
24083
|
end
|
24033
24084
|
|
@@ -26565,6 +26616,33 @@ module TencentCloud
|
|
26565
26616
|
end
|
26566
26617
|
end
|
26567
26618
|
|
26619
|
+
# 数据集成 - 告警免打扰时间
|
26620
|
+
class QuietPeriod < TencentCloud::Common::AbstractModel
|
26621
|
+
# @param DaysOfWeek: 代表一周里的哪些天,1代表周一,7代表周日,以此类推
|
26622
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
26623
|
+
# @type DaysOfWeek: Array
|
26624
|
+
# @param StartTime: 开始时间
|
26625
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
26626
|
+
# @type StartTime: String
|
26627
|
+
# @param EndTime: 结束时间
|
26628
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
26629
|
+
# @type EndTime: String
|
26630
|
+
|
26631
|
+
attr_accessor :DaysOfWeek, :StartTime, :EndTime
|
26632
|
+
|
26633
|
+
def initialize(daysofweek=nil, starttime=nil, endtime=nil)
|
26634
|
+
@DaysOfWeek = daysofweek
|
26635
|
+
@StartTime = starttime
|
26636
|
+
@EndTime = endtime
|
26637
|
+
end
|
26638
|
+
|
26639
|
+
def deserialize(params)
|
26640
|
+
@DaysOfWeek = params['DaysOfWeek']
|
26641
|
+
@StartTime = params['StartTime']
|
26642
|
+
@EndTime = params['EndTime']
|
26643
|
+
end
|
26644
|
+
end
|
26645
|
+
|
26568
26646
|
# 实时任务实例当前的节点信息
|
26569
26647
|
class RealTimeTaskInstanceNodeInfo < TencentCloud::Common::AbstractModel
|
26570
26648
|
# @param TaskName: 任务名
|
@@ -32453,6 +32531,9 @@ module TencentCloud
|
|
32453
32531
|
# @param AlarmRecipientType: 告警接收人类型,0指定人员;1任务责任人
|
32454
32532
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
32455
32533
|
# @type AlarmRecipientType: Integer
|
32534
|
+
# @param QuietPeriods: 免打扰时间
|
32535
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32536
|
+
# @type QuietPeriods: Array
|
32456
32537
|
# @param WeComHook: 企业微信群Hook地址,多个hook地址使用,隔开
|
32457
32538
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
32458
32539
|
# @type WeComHook: String
|
@@ -32484,9 +32565,9 @@ module TencentCloud
|
|
32484
32565
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
32485
32566
|
# @type LarkWebHooks: String
|
32486
32567
|
|
32487
|
-
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, :LarkWebHooks
|
32568
|
+
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :QuietPeriods, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description, :LarkWebHooks
|
32488
32569
|
|
32489
|
-
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, larkwebhooks=nil)
|
32570
|
+
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, quietperiods=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil, larkwebhooks=nil)
|
32490
32571
|
@TaskId = taskid
|
32491
32572
|
@RegularName = regularname
|
32492
32573
|
@RegularStatus = regularstatus
|
@@ -32508,6 +32589,7 @@ module TencentCloud
|
|
32508
32589
|
@NodeName = nodename
|
32509
32590
|
@AlarmIndicatorInfos = alarmindicatorinfos
|
32510
32591
|
@AlarmRecipientType = alarmrecipienttype
|
32592
|
+
@QuietPeriods = quietperiods
|
32511
32593
|
@WeComHook = wecomhook
|
32512
32594
|
@UpdateTime = updatetime
|
32513
32595
|
@OperatorUin = operatoruin
|
@@ -32549,6 +32631,14 @@ module TencentCloud
|
|
32549
32631
|
end
|
32550
32632
|
end
|
32551
32633
|
@AlarmRecipientType = params['AlarmRecipientType']
|
32634
|
+
unless params['QuietPeriods'].nil?
|
32635
|
+
@QuietPeriods = []
|
32636
|
+
params['QuietPeriods'].each do |i|
|
32637
|
+
quietperiod_tmp = QuietPeriod.new
|
32638
|
+
quietperiod_tmp.deserialize(i)
|
32639
|
+
@QuietPeriods << quietperiod_tmp
|
32640
|
+
end
|
32641
|
+
end
|
32552
32642
|
@WeComHook = params['WeComHook']
|
32553
32643
|
@UpdateTime = params['UpdateTime']
|
32554
32644
|
@OperatorUin = params['OperatorUin']
|
@@ -32784,10 +32874,52 @@ module TencentCloud
|
|
32784
32874
|
|
32785
32875
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
32786
32876
|
# @type TenantId: String
|
32877
|
+
# @param SelfDepend: 自依赖类型
|
32878
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32879
|
+
# @type SelfDepend: Integer
|
32880
|
+
# @param ExecutorGroupId: 资源组id
|
32881
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32882
|
+
# @type ExecutorGroupId: String
|
32883
|
+
# @param ExecutorGroupName: 资源组名称
|
32884
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32885
|
+
# @type ExecutorGroupName: String
|
32886
|
+
# @param RunPriority: 优先级
|
32887
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32888
|
+
# @type RunPriority: String
|
32889
|
+
# @param TryLimit: 可充实次数
|
32890
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32891
|
+
# @type TryLimit: String
|
32892
|
+
# @param RetryAble: 可充实
|
32893
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32894
|
+
# @type RetryAble: String
|
32895
|
+
# @param RetryWait: 重试等待事件
|
32896
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32897
|
+
# @type RetryWait: String
|
32898
|
+
# @param LastSchedulerCommitTime: 最近提交时间
|
32899
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32900
|
+
# @type LastSchedulerCommitTime: String
|
32901
|
+
# @param Notes: 备注
|
32902
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32903
|
+
# @type Notes: String
|
32904
|
+
# @param Creator: 创建人
|
32905
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32906
|
+
# @type Creator: String
|
32907
|
+
# @param UpdateUser: 创建人id
|
32908
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32909
|
+
# @type UpdateUser: String
|
32910
|
+
# @param UpdateUserId: 更新人id
|
32911
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32912
|
+
# @type UpdateUserId: String
|
32913
|
+
# @param YarnQueue: yarn队列
|
32914
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32915
|
+
# @type YarnQueue: String
|
32916
|
+
# @param ExecutionTTL: 可执行的timeToLive
|
32917
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
32918
|
+
# @type ExecutionTTL: Integer
|
32787
32919
|
|
32788
|
-
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :ProjectName, :ProjectIdent, :Status, :TaskTypeId, :TaskTypeDesc, :ProjectId, :FolderName, :FolderId, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :InCharge, :CycleUnit, :LeftCoordinate, :TopCoordinate, :VirtualFlag, :TaskAction, :DelayTime, :ExecutionStartTime, :ExecutionEndTime, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :CreateTime, :UserId, :OwnerId, :TenantId
|
32920
|
+
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :ProjectName, :ProjectIdent, :Status, :TaskTypeId, :TaskTypeDesc, :ProjectId, :FolderName, :FolderId, :FirstSubmitTime, :FirstRunTime, :ScheduleDesc, :InCharge, :CycleUnit, :LeftCoordinate, :TopCoordinate, :VirtualFlag, :TaskAction, :DelayTime, :ExecutionStartTime, :ExecutionEndTime, :Layer, :SourceServiceId, :SourceServiceType, :TargetServiceId, :TargetServiceType, :AlarmType, :CreateTime, :UserId, :OwnerId, :TenantId, :SelfDepend, :ExecutorGroupId, :ExecutorGroupName, :RunPriority, :TryLimit, :RetryAble, :RetryWait, :LastSchedulerCommitTime, :Notes, :Creator, :UpdateUser, :UpdateUserId, :YarnQueue, :ExecutionTTL
|
32789
32921
|
|
32790
|
-
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, projectname=nil, projectident=nil, status=nil, tasktypeid=nil, tasktypedesc=nil, projectid=nil, foldername=nil, folderid=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, incharge=nil, cycleunit=nil, leftcoordinate=nil, topcoordinate=nil, virtualflag=nil, taskaction=nil, delaytime=nil, executionstarttime=nil, executionendtime=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, alarmtype=nil, createtime=nil, userid=nil, ownerid=nil, tenantid=nil)
|
32922
|
+
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, projectname=nil, projectident=nil, status=nil, tasktypeid=nil, tasktypedesc=nil, projectid=nil, foldername=nil, folderid=nil, firstsubmittime=nil, firstruntime=nil, scheduledesc=nil, incharge=nil, cycleunit=nil, leftcoordinate=nil, topcoordinate=nil, virtualflag=nil, taskaction=nil, delaytime=nil, executionstarttime=nil, executionendtime=nil, layer=nil, sourceserviceid=nil, sourceservicetype=nil, targetserviceid=nil, targetservicetype=nil, alarmtype=nil, createtime=nil, userid=nil, ownerid=nil, tenantid=nil, selfdepend=nil, executorgroupid=nil, executorgroupname=nil, runpriority=nil, trylimit=nil, retryable=nil, retrywait=nil, lastschedulercommittime=nil, notes=nil, creator=nil, updateuser=nil, updateuserid=nil, yarnqueue=nil, executionttl=nil)
|
32791
32923
|
@TaskId = taskid
|
32792
32924
|
@TaskName = taskname
|
32793
32925
|
@WorkflowId = workflowid
|
@@ -32822,6 +32954,20 @@ module TencentCloud
|
|
32822
32954
|
@UserId = userid
|
32823
32955
|
@OwnerId = ownerid
|
32824
32956
|
@TenantId = tenantid
|
32957
|
+
@SelfDepend = selfdepend
|
32958
|
+
@ExecutorGroupId = executorgroupid
|
32959
|
+
@ExecutorGroupName = executorgroupname
|
32960
|
+
@RunPriority = runpriority
|
32961
|
+
@TryLimit = trylimit
|
32962
|
+
@RetryAble = retryable
|
32963
|
+
@RetryWait = retrywait
|
32964
|
+
@LastSchedulerCommitTime = lastschedulercommittime
|
32965
|
+
@Notes = notes
|
32966
|
+
@Creator = creator
|
32967
|
+
@UpdateUser = updateuser
|
32968
|
+
@UpdateUserId = updateuserid
|
32969
|
+
@YarnQueue = yarnqueue
|
32970
|
+
@ExecutionTTL = executionttl
|
32825
32971
|
end
|
32826
32972
|
|
32827
32973
|
def deserialize(params)
|
@@ -32859,6 +33005,20 @@ module TencentCloud
|
|
32859
33005
|
@UserId = params['UserId']
|
32860
33006
|
@OwnerId = params['OwnerId']
|
32861
33007
|
@TenantId = params['TenantId']
|
33008
|
+
@SelfDepend = params['SelfDepend']
|
33009
|
+
@ExecutorGroupId = params['ExecutorGroupId']
|
33010
|
+
@ExecutorGroupName = params['ExecutorGroupName']
|
33011
|
+
@RunPriority = params['RunPriority']
|
33012
|
+
@TryLimit = params['TryLimit']
|
33013
|
+
@RetryAble = params['RetryAble']
|
33014
|
+
@RetryWait = params['RetryWait']
|
33015
|
+
@LastSchedulerCommitTime = params['LastSchedulerCommitTime']
|
33016
|
+
@Notes = params['Notes']
|
33017
|
+
@Creator = params['Creator']
|
33018
|
+
@UpdateUser = params['UpdateUser']
|
33019
|
+
@UpdateUserId = params['UpdateUserId']
|
33020
|
+
@YarnQueue = params['YarnQueue']
|
33021
|
+
@ExecutionTTL = params['ExecutionTTL']
|
32862
33022
|
end
|
32863
33023
|
end
|
32864
33024
|
|
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.
|
4
|
+
version: 3.0.792
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|