tencentcloud-sdk-wedata 3.0.751 → 3.0.753
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 +193 -18
- 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: 78a0894c574eda2b71021392c190316c094a0531
|
4
|
+
data.tar.gz: a94758023398115821d628742a60e4c462fd3d3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 582efc604a5eb8949b64cb6fc09ea75220596c24ba3d8a137ec283371b6a4142338628d082d25945d5b68957e8081406050035846d4edea2e018edbf7689e84b
|
7
|
+
data.tar.gz: 2f49dd2b158f068d1938cc774912703a07b0eac50f418bb32d95692a29e1c0b4abf83ee45bede62e12961fefeaf5cf7b0648340b5b3f1037c6ec38dcc344e5bc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.753
|
data/lib/v20210820/models.rb
CHANGED
@@ -2710,19 +2710,24 @@ module TencentCloud
|
|
2710
2710
|
# @param BaselineId: 基线Id
|
2711
2711
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2712
2712
|
# @type BaselineId: Integer
|
2713
|
+
# @param Code: 错误码
|
2714
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2715
|
+
# @type Code: String
|
2713
2716
|
|
2714
|
-
attr_accessor :Success, :Message, :BaselineId
|
2717
|
+
attr_accessor :Success, :Message, :BaselineId, :Code
|
2715
2718
|
|
2716
|
-
def initialize(success=nil, message=nil, baselineid=nil)
|
2719
|
+
def initialize(success=nil, message=nil, baselineid=nil, code=nil)
|
2717
2720
|
@Success = success
|
2718
2721
|
@Message = message
|
2719
2722
|
@BaselineId = baselineid
|
2723
|
+
@Code = code
|
2720
2724
|
end
|
2721
2725
|
|
2722
2726
|
def deserialize(params)
|
2723
2727
|
@Success = params['Success']
|
2724
2728
|
@Message = params['Message']
|
2725
2729
|
@BaselineId = params['BaselineId']
|
2730
|
+
@Code = params['Code']
|
2726
2731
|
end
|
2727
2732
|
end
|
2728
2733
|
|
@@ -6322,19 +6327,39 @@ module TencentCloud
|
|
6322
6327
|
# @type FunctionId: String
|
6323
6328
|
# @param ProjectId: 项目ID,必须填
|
6324
6329
|
# @type ProjectId: String
|
6330
|
+
# @param FunctionName: 函数名称
|
6331
|
+
# @type FunctionName: String
|
6332
|
+
# @param FunctionType: 函数类型,HIVE,SPARK,DLC,CDW_POSTGRESQL
|
6333
|
+
# @type FunctionType: String
|
6334
|
+
# @param DatabaseName: 数据库名
|
6335
|
+
# @type DatabaseName: String
|
6336
|
+
# @param SchemaName: 模式名
|
6337
|
+
# @type SchemaName: String
|
6338
|
+
# @param CommandFormat: 函数命令格式
|
6339
|
+
# @type CommandFormat: String
|
6325
6340
|
|
6326
|
-
attr_accessor :ClusterIdentifier, :FunctionId, :ProjectId
|
6341
|
+
attr_accessor :ClusterIdentifier, :FunctionId, :ProjectId, :FunctionName, :FunctionType, :DatabaseName, :SchemaName, :CommandFormat
|
6327
6342
|
|
6328
|
-
def initialize(clusteridentifier=nil, functionid=nil, projectid=nil)
|
6343
|
+
def initialize(clusteridentifier=nil, functionid=nil, projectid=nil, functionname=nil, functiontype=nil, databasename=nil, schemaname=nil, commandformat=nil)
|
6329
6344
|
@ClusterIdentifier = clusteridentifier
|
6330
6345
|
@FunctionId = functionid
|
6331
6346
|
@ProjectId = projectid
|
6347
|
+
@FunctionName = functionname
|
6348
|
+
@FunctionType = functiontype
|
6349
|
+
@DatabaseName = databasename
|
6350
|
+
@SchemaName = schemaname
|
6351
|
+
@CommandFormat = commandformat
|
6332
6352
|
end
|
6333
6353
|
|
6334
6354
|
def deserialize(params)
|
6335
6355
|
@ClusterIdentifier = params['ClusterIdentifier']
|
6336
6356
|
@FunctionId = params['FunctionId']
|
6337
6357
|
@ProjectId = params['ProjectId']
|
6358
|
+
@FunctionName = params['FunctionName']
|
6359
|
+
@FunctionType = params['FunctionType']
|
6360
|
+
@DatabaseName = params['DatabaseName']
|
6361
|
+
@SchemaName = params['SchemaName']
|
6362
|
+
@CommandFormat = params['CommandFormat']
|
6338
6363
|
end
|
6339
6364
|
end
|
6340
6365
|
|
@@ -21540,10 +21565,13 @@ module TencentCloud
|
|
21540
21565
|
# @type ByteSpeed: Float
|
21541
21566
|
# @param TotalErrorRecords: 脏数据条数
|
21542
21567
|
# @type TotalErrorRecords: Integer
|
21568
|
+
# @param WaitWriterTime: 等待数据发送到下游的时间
|
21569
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21570
|
+
# @type WaitWriterTime: Float
|
21543
21571
|
|
21544
|
-
attr_accessor :NodeName, :DataSource, :TotalReadRecords, :TotalReadBytes, :RecordSpeed, :ByteSpeed, :TotalErrorRecords
|
21572
|
+
attr_accessor :NodeName, :DataSource, :TotalReadRecords, :TotalReadBytes, :RecordSpeed, :ByteSpeed, :TotalErrorRecords, :WaitWriterTime
|
21545
21573
|
|
21546
|
-
def initialize(nodename=nil, datasource=nil, totalreadrecords=nil, totalreadbytes=nil, recordspeed=nil, bytespeed=nil, totalerrorrecords=nil)
|
21574
|
+
def initialize(nodename=nil, datasource=nil, totalreadrecords=nil, totalreadbytes=nil, recordspeed=nil, bytespeed=nil, totalerrorrecords=nil, waitwritertime=nil)
|
21547
21575
|
@NodeName = nodename
|
21548
21576
|
@DataSource = datasource
|
21549
21577
|
@TotalReadRecords = totalreadrecords
|
@@ -21551,6 +21579,7 @@ module TencentCloud
|
|
21551
21579
|
@RecordSpeed = recordspeed
|
21552
21580
|
@ByteSpeed = bytespeed
|
21553
21581
|
@TotalErrorRecords = totalerrorrecords
|
21582
|
+
@WaitWriterTime = waitwritertime
|
21554
21583
|
end
|
21555
21584
|
|
21556
21585
|
def deserialize(params)
|
@@ -21561,6 +21590,7 @@ module TencentCloud
|
|
21561
21590
|
@RecordSpeed = params['RecordSpeed']
|
21562
21591
|
@ByteSpeed = params['ByteSpeed']
|
21563
21592
|
@TotalErrorRecords = params['TotalErrorRecords']
|
21593
|
+
@WaitWriterTime = params['WaitWriterTime']
|
21564
21594
|
end
|
21565
21595
|
end
|
21566
21596
|
|
@@ -21636,10 +21666,13 @@ module TencentCloud
|
|
21636
21666
|
# @type ByteSpeed: Float
|
21637
21667
|
# @param TotalErrorRecords: 脏数据条数
|
21638
21668
|
# @type TotalErrorRecords: Integer
|
21669
|
+
# @param WaitReaderTime: 等待上游数据发送过来的时间
|
21670
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21671
|
+
# @type WaitReaderTime: Float
|
21639
21672
|
|
21640
|
-
attr_accessor :NodeName, :DataSource, :TotalWriteRecords, :TotalWriteBytes, :RecordSpeed, :ByteSpeed, :TotalErrorRecords
|
21673
|
+
attr_accessor :NodeName, :DataSource, :TotalWriteRecords, :TotalWriteBytes, :RecordSpeed, :ByteSpeed, :TotalErrorRecords, :WaitReaderTime
|
21641
21674
|
|
21642
|
-
def initialize(nodename=nil, datasource=nil, totalwriterecords=nil, totalwritebytes=nil, recordspeed=nil, bytespeed=nil, totalerrorrecords=nil)
|
21675
|
+
def initialize(nodename=nil, datasource=nil, totalwriterecords=nil, totalwritebytes=nil, recordspeed=nil, bytespeed=nil, totalerrorrecords=nil, waitreadertime=nil)
|
21643
21676
|
@NodeName = nodename
|
21644
21677
|
@DataSource = datasource
|
21645
21678
|
@TotalWriteRecords = totalwriterecords
|
@@ -21647,6 +21680,7 @@ module TencentCloud
|
|
21647
21680
|
@RecordSpeed = recordspeed
|
21648
21681
|
@ByteSpeed = bytespeed
|
21649
21682
|
@TotalErrorRecords = totalerrorrecords
|
21683
|
+
@WaitReaderTime = waitreadertime
|
21650
21684
|
end
|
21651
21685
|
|
21652
21686
|
def deserialize(params)
|
@@ -21657,6 +21691,7 @@ module TencentCloud
|
|
21657
21691
|
@RecordSpeed = params['RecordSpeed']
|
21658
21692
|
@ByteSpeed = params['ByteSpeed']
|
21659
21693
|
@TotalErrorRecords = params['TotalErrorRecords']
|
21694
|
+
@WaitReaderTime = params['WaitReaderTime']
|
21660
21695
|
end
|
21661
21696
|
end
|
21662
21697
|
|
@@ -22264,10 +22299,16 @@ module TencentCloud
|
|
22264
22299
|
# @param InstanceVersion: 版本号
|
22265
22300
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22266
22301
|
# @type InstanceVersion: Integer
|
22302
|
+
# @param ArrangeSpaceTaskId: 离线任务导入到编排空间的任务id
|
22303
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22304
|
+
# @type ArrangeSpaceTaskId: String
|
22305
|
+
# @param OfflineTaskStatus: 离线任务状态区分1.未提交2.已提交3.已导出
|
22306
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22307
|
+
# @type OfflineTaskStatus: Integer
|
22267
22308
|
|
22268
|
-
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, :SwitchResource, :ReadPhase, :InstanceVersion
|
22309
|
+
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, :SwitchResource, :ReadPhase, :InstanceVersion, :ArrangeSpaceTaskId, :OfflineTaskStatus
|
22269
22310
|
|
22270
|
-
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, switchresource=nil, readphase=nil, instanceversion=nil)
|
22311
|
+
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, switchresource=nil, readphase=nil, instanceversion=nil, arrangespacetaskid=nil, offlinetaskstatus=nil)
|
22271
22312
|
@TaskName = taskname
|
22272
22313
|
@Description = description
|
22273
22314
|
@SyncType = synctype
|
@@ -22315,6 +22356,8 @@ module TencentCloud
|
|
22315
22356
|
@SwitchResource = switchresource
|
22316
22357
|
@ReadPhase = readphase
|
22317
22358
|
@InstanceVersion = instanceversion
|
22359
|
+
@ArrangeSpaceTaskId = arrangespacetaskid
|
22360
|
+
@OfflineTaskStatus = offlinetaskstatus
|
22318
22361
|
end
|
22319
22362
|
|
22320
22363
|
def deserialize(params)
|
@@ -22403,6 +22446,8 @@ module TencentCloud
|
|
22403
22446
|
@SwitchResource = params['SwitchResource']
|
22404
22447
|
@ReadPhase = params['ReadPhase']
|
22405
22448
|
@InstanceVersion = params['InstanceVersion']
|
22449
|
+
@ArrangeSpaceTaskId = params['ArrangeSpaceTaskId']
|
22450
|
+
@OfflineTaskStatus = params['OfflineTaskStatus']
|
22406
22451
|
end
|
22407
22452
|
end
|
22408
22453
|
|
@@ -27052,10 +27097,34 @@ module TencentCloud
|
|
27052
27097
|
# @param SourceEngineTypes: 源端对应的引擎类型
|
27053
27098
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
27054
27099
|
# @type SourceEngineTypes: Array
|
27100
|
+
# @param TableName: 表名称
|
27101
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27102
|
+
# @type TableName: String
|
27103
|
+
# @param TableOwnerName: 表负责人名称
|
27104
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27105
|
+
# @type TableOwnerName: String
|
27106
|
+
# @param ExecStrategy: 执行策略信息
|
27107
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27108
|
+
# @type ExecStrategy: :class:`Tencentcloud::Wedata.v20210820.models.RuleGroupExecStrategy`
|
27109
|
+
# @param Subscription: 订阅信息
|
27110
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27111
|
+
# @type Subscription: :class:`Tencentcloud::Wedata.v20210820.models.RuleGroupSubscribe`
|
27112
|
+
# @param CreateTime: 创建时间
|
27113
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27114
|
+
# @type CreateTime: String
|
27115
|
+
# @param DatasourceId: 数据源 id
|
27116
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27117
|
+
# @type DatasourceId: Integer
|
27118
|
+
# @param DatabaseId: 数据库 id
|
27119
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27120
|
+
# @type DatabaseId: String
|
27121
|
+
# @param MonitorStatus: 监控是否开启.0false,1true
|
27122
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27123
|
+
# @type MonitorStatus: Integer
|
27055
27124
|
|
27056
|
-
attr_accessor :RuleId, :RuleGroupId, :TableId, :Name, :Type, :RuleTemplateId, :RuleTemplateContent, :QualityDim, :SourceObjectType, :SourceObjectDataType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :Operator, :TargetDatabaseId, :TargetDatabaseName, :TargetTableId, :TargetTableName, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :MultiSourceFlag, :WhereFlag, :TemplateSql, :SubQualityDim, :TargetObjectType, :TargetObjectDataType, :TargetObjectDataTypeName, :TargetObjectValue, :SourceEngineTypes
|
27125
|
+
attr_accessor :RuleId, :RuleGroupId, :TableId, :Name, :Type, :RuleTemplateId, :RuleTemplateContent, :QualityDim, :SourceObjectType, :SourceObjectDataType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :Operator, :TargetDatabaseId, :TargetDatabaseName, :TargetTableId, :TargetTableName, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :MultiSourceFlag, :WhereFlag, :TemplateSql, :SubQualityDim, :TargetObjectType, :TargetObjectDataType, :TargetObjectDataTypeName, :TargetObjectValue, :SourceEngineTypes, :TableName, :TableOwnerName, :ExecStrategy, :Subscription, :CreateTime, :DatasourceId, :DatabaseId, :MonitorStatus
|
27057
27126
|
|
27058
|
-
def initialize(ruleid=nil, rulegroupid=nil, tableid=nil, name=nil, type=nil, ruletemplateid=nil, ruletemplatecontent=nil, qualitydim=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, operator=nil, targetdatabaseid=nil, targetdatabasename=nil, targettableid=nil, targettablename=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, multisourceflag=nil, whereflag=nil, templatesql=nil, subqualitydim=nil, targetobjecttype=nil, targetobjectdatatype=nil, targetobjectdatatypename=nil, targetobjectvalue=nil, sourceenginetypes=nil)
|
27127
|
+
def initialize(ruleid=nil, rulegroupid=nil, tableid=nil, name=nil, type=nil, ruletemplateid=nil, ruletemplatecontent=nil, qualitydim=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, operator=nil, targetdatabaseid=nil, targetdatabasename=nil, targettableid=nil, targettablename=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, multisourceflag=nil, whereflag=nil, templatesql=nil, subqualitydim=nil, targetobjecttype=nil, targetobjectdatatype=nil, targetobjectdatatypename=nil, targetobjectvalue=nil, sourceenginetypes=nil, tablename=nil, tableownername=nil, execstrategy=nil, subscription=nil, createtime=nil, datasourceid=nil, databaseid=nil, monitorstatus=nil)
|
27059
27128
|
@RuleId = ruleid
|
27060
27129
|
@RuleGroupId = rulegroupid
|
27061
27130
|
@TableId = tableid
|
@@ -27091,6 +27160,14 @@ module TencentCloud
|
|
27091
27160
|
@TargetObjectDataTypeName = targetobjectdatatypename
|
27092
27161
|
@TargetObjectValue = targetobjectvalue
|
27093
27162
|
@SourceEngineTypes = sourceenginetypes
|
27163
|
+
@TableName = tablename
|
27164
|
+
@TableOwnerName = tableownername
|
27165
|
+
@ExecStrategy = execstrategy
|
27166
|
+
@Subscription = subscription
|
27167
|
+
@CreateTime = createtime
|
27168
|
+
@DatasourceId = datasourceid
|
27169
|
+
@DatabaseId = databaseid
|
27170
|
+
@MonitorStatus = monitorstatus
|
27094
27171
|
end
|
27095
27172
|
|
27096
27173
|
def deserialize(params)
|
@@ -27135,6 +27212,20 @@ module TencentCloud
|
|
27135
27212
|
@TargetObjectDataTypeName = params['TargetObjectDataTypeName']
|
27136
27213
|
@TargetObjectValue = params['TargetObjectValue']
|
27137
27214
|
@SourceEngineTypes = params['SourceEngineTypes']
|
27215
|
+
@TableName = params['TableName']
|
27216
|
+
@TableOwnerName = params['TableOwnerName']
|
27217
|
+
unless params['ExecStrategy'].nil?
|
27218
|
+
@ExecStrategy = RuleGroupExecStrategy.new
|
27219
|
+
@ExecStrategy.deserialize(params['ExecStrategy'])
|
27220
|
+
end
|
27221
|
+
unless params['Subscription'].nil?
|
27222
|
+
@Subscription = RuleGroupSubscribe.new
|
27223
|
+
@Subscription.deserialize(params['Subscription'])
|
27224
|
+
end
|
27225
|
+
@CreateTime = params['CreateTime']
|
27226
|
+
@DatasourceId = params['DatasourceId']
|
27227
|
+
@DatabaseId = params['DatabaseId']
|
27228
|
+
@MonitorStatus = params['MonitorStatus']
|
27138
27229
|
end
|
27139
27230
|
end
|
27140
27231
|
|
@@ -27928,10 +28019,16 @@ module TencentCloud
|
|
27928
28019
|
# @param ExecPlan: 执行计划
|
27929
28020
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
27930
28021
|
# @type ExecPlan: String
|
28022
|
+
# @param RuleId: 规则id
|
28023
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28024
|
+
# @type RuleId: Integer
|
28025
|
+
# @param RuleName: 规则名称
|
28026
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28027
|
+
# @type RuleName: String
|
27931
28028
|
|
27932
|
-
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan
|
28029
|
+
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName
|
27933
28030
|
|
27934
|
-
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil)
|
28031
|
+
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil)
|
27935
28032
|
@RuleGroupId = rulegroupid
|
27936
28033
|
@MonitorType = monitortype
|
27937
28034
|
@ExecQueue = execqueue
|
@@ -27946,6 +28043,8 @@ module TencentCloud
|
|
27946
28043
|
@TaskAction = taskaction
|
27947
28044
|
@ExecEngineType = execenginetype
|
27948
28045
|
@ExecPlan = execplan
|
28046
|
+
@RuleId = ruleid
|
28047
|
+
@RuleName = rulename
|
27949
28048
|
end
|
27950
28049
|
|
27951
28050
|
def deserialize(params)
|
@@ -27970,6 +28069,8 @@ module TencentCloud
|
|
27970
28069
|
@TaskAction = params['TaskAction']
|
27971
28070
|
@ExecEngineType = params['ExecEngineType']
|
27972
28071
|
@ExecPlan = params['ExecPlan']
|
28072
|
+
@RuleId = params['RuleId']
|
28073
|
+
@RuleName = params['RuleName']
|
27973
28074
|
end
|
27974
28075
|
end
|
27975
28076
|
|
@@ -28169,14 +28270,22 @@ module TencentCloud
|
|
28169
28270
|
# @param WebHooks: 群机器人配置的webhook信息
|
28170
28271
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
28171
28272
|
# @type WebHooks: Array
|
28273
|
+
# @param RuleId: 规则Id
|
28274
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28275
|
+
# @type RuleId: Integer
|
28276
|
+
# @param RuleName: 规则名称
|
28277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28278
|
+
# @type RuleName: String
|
28172
28279
|
|
28173
|
-
attr_accessor :RuleGroupId, :Receivers, :SubscribeType, :WebHooks
|
28280
|
+
attr_accessor :RuleGroupId, :Receivers, :SubscribeType, :WebHooks, :RuleId, :RuleName
|
28174
28281
|
|
28175
|
-
def initialize(rulegroupid=nil, receivers=nil, subscribetype=nil, webhooks=nil)
|
28282
|
+
def initialize(rulegroupid=nil, receivers=nil, subscribetype=nil, webhooks=nil, ruleid=nil, rulename=nil)
|
28176
28283
|
@RuleGroupId = rulegroupid
|
28177
28284
|
@Receivers = receivers
|
28178
28285
|
@SubscribeType = subscribetype
|
28179
28286
|
@WebHooks = webhooks
|
28287
|
+
@RuleId = ruleid
|
28288
|
+
@RuleName = rulename
|
28180
28289
|
end
|
28181
28290
|
|
28182
28291
|
def deserialize(params)
|
@@ -28198,6 +28307,8 @@ module TencentCloud
|
|
28198
28307
|
@WebHooks << subscribewebhook_tmp
|
28199
28308
|
end
|
28200
28309
|
end
|
28310
|
+
@RuleId = params['RuleId']
|
28311
|
+
@RuleName = params['RuleName']
|
28201
28312
|
end
|
28202
28313
|
end
|
28203
28314
|
|
@@ -28452,10 +28563,16 @@ module TencentCloud
|
|
28452
28563
|
# @param SubQualityDim: 模版子维度,0.父维度类型,1.一致性: 枚举范围一致性,2.一致性:数值范围一致性,3.一致性:字段数据相关性
|
28453
28564
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
28454
28565
|
# @type SubQualityDim: Integer
|
28566
|
+
# @param ResolvedSqlExpression: sql表达式解析对象
|
28567
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28568
|
+
# @type ResolvedSqlExpression: :class:`Tencentcloud::Wedata.v20210820.models.SqlExpression`
|
28569
|
+
# @param DatasourceTypes: 支持的数据源类型
|
28570
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
28571
|
+
# @type DatasourceTypes: Array
|
28455
28572
|
|
28456
|
-
attr_accessor :RuleTemplateId, :Name, :Description, :Type, :SourceObjectType, :SourceObjectDataType, :SourceContent, :SourceEngineTypes, :QualityDim, :CompareType, :CitationCount, :UserId, :UserName, :UpdateTime, :WhereFlag, :MultiSourceFlag, :SqlExpression, :SubQualityDim
|
28573
|
+
attr_accessor :RuleTemplateId, :Name, :Description, :Type, :SourceObjectType, :SourceObjectDataType, :SourceContent, :SourceEngineTypes, :QualityDim, :CompareType, :CitationCount, :UserId, :UserName, :UpdateTime, :WhereFlag, :MultiSourceFlag, :SqlExpression, :SubQualityDim, :ResolvedSqlExpression, :DatasourceTypes
|
28457
28574
|
|
28458
|
-
def initialize(ruletemplateid=nil, name=nil, description=nil, type=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourcecontent=nil, sourceenginetypes=nil, qualitydim=nil, comparetype=nil, citationcount=nil, userid=nil, username=nil, updatetime=nil, whereflag=nil, multisourceflag=nil, sqlexpression=nil, subqualitydim=nil)
|
28575
|
+
def initialize(ruletemplateid=nil, name=nil, description=nil, type=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourcecontent=nil, sourceenginetypes=nil, qualitydim=nil, comparetype=nil, citationcount=nil, userid=nil, username=nil, updatetime=nil, whereflag=nil, multisourceflag=nil, sqlexpression=nil, subqualitydim=nil, resolvedsqlexpression=nil, datasourcetypes=nil)
|
28459
28576
|
@RuleTemplateId = ruletemplateid
|
28460
28577
|
@Name = name
|
28461
28578
|
@Description = description
|
@@ -28474,6 +28591,8 @@ module TencentCloud
|
|
28474
28591
|
@MultiSourceFlag = multisourceflag
|
28475
28592
|
@SqlExpression = sqlexpression
|
28476
28593
|
@SubQualityDim = subqualitydim
|
28594
|
+
@ResolvedSqlExpression = resolvedsqlexpression
|
28595
|
+
@DatasourceTypes = datasourcetypes
|
28477
28596
|
end
|
28478
28597
|
|
28479
28598
|
def deserialize(params)
|
@@ -28495,6 +28614,11 @@ module TencentCloud
|
|
28495
28614
|
@MultiSourceFlag = params['MultiSourceFlag']
|
28496
28615
|
@SqlExpression = params['SqlExpression']
|
28497
28616
|
@SubQualityDim = params['SubQualityDim']
|
28617
|
+
unless params['ResolvedSqlExpression'].nil?
|
28618
|
+
@ResolvedSqlExpression = SqlExpression.new
|
28619
|
+
@ResolvedSqlExpression.deserialize(params['ResolvedSqlExpression'])
|
28620
|
+
end
|
28621
|
+
@DatasourceTypes = params['DatasourceTypes']
|
28498
28622
|
end
|
28499
28623
|
end
|
28500
28624
|
|
@@ -29983,6 +30107,57 @@ module TencentCloud
|
|
29983
30107
|
end
|
29984
30108
|
end
|
29985
30109
|
|
30110
|
+
# 数据质量自定义规则时的sql表达式解析对象
|
30111
|
+
class SqlExpression < TencentCloud::Common::AbstractModel
|
30112
|
+
# @param TableExpressions: sql表达式表名
|
30113
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30114
|
+
# @type TableExpressions: Array
|
30115
|
+
# @param ParamExpressions: sql表达式字段名
|
30116
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30117
|
+
# @type ParamExpressions: Array
|
30118
|
+
|
30119
|
+
attr_accessor :TableExpressions, :ParamExpressions
|
30120
|
+
|
30121
|
+
def initialize(tableexpressions=nil, paramexpressions=nil)
|
30122
|
+
@TableExpressions = tableexpressions
|
30123
|
+
@ParamExpressions = paramexpressions
|
30124
|
+
end
|
30125
|
+
|
30126
|
+
def deserialize(params)
|
30127
|
+
unless params['TableExpressions'].nil?
|
30128
|
+
@TableExpressions = []
|
30129
|
+
params['TableExpressions'].each do |i|
|
30130
|
+
sqlexpressiontable_tmp = SqlExpressionTable.new
|
30131
|
+
sqlexpressiontable_tmp.deserialize(i)
|
30132
|
+
@TableExpressions << sqlexpressiontable_tmp
|
30133
|
+
end
|
30134
|
+
end
|
30135
|
+
@ParamExpressions = params['ParamExpressions']
|
30136
|
+
end
|
30137
|
+
end
|
30138
|
+
|
30139
|
+
# 数据质量自定义规则时的sql表达式解析表对象
|
30140
|
+
class SqlExpressionTable < TencentCloud::Common::AbstractModel
|
30141
|
+
# @param TableExpression: sql表达式表名
|
30142
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30143
|
+
# @type TableExpression: String
|
30144
|
+
# @param ColumnExpression: sql表达式字段名
|
30145
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30146
|
+
# @type ColumnExpression: Array
|
30147
|
+
|
30148
|
+
attr_accessor :TableExpression, :ColumnExpression
|
30149
|
+
|
30150
|
+
def initialize(tableexpression=nil, columnexpression=nil)
|
30151
|
+
@TableExpression = tableexpression
|
30152
|
+
@ColumnExpression = columnexpression
|
30153
|
+
end
|
30154
|
+
|
30155
|
+
def deserialize(params)
|
30156
|
+
@TableExpression = params['TableExpression']
|
30157
|
+
@ColumnExpression = params['ColumnExpression']
|
30158
|
+
end
|
30159
|
+
end
|
30160
|
+
|
29986
30161
|
# 无
|
29987
30162
|
class StageCloudApiRequest < TencentCloud::Common::AbstractModel
|
29988
30163
|
# @param ClusterId: 无
|
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.753
|
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-01-
|
11
|
+
date: 2024-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|