tencentcloud-sdk-wedata 3.0.1117 → 3.0.1123

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 +70 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31f8b0205026b4ec292e14c16e02fe666a517e7b
4
- data.tar.gz: 1de9c70f902672e17bcc186d6b2d431e0ba3c26a
3
+ metadata.gz: e774c48bbfabd502bd4b2f1c230b4548e6d3d79b
4
+ data.tar.gz: 30bc4981acca257c616d3a0a7e5888504fa0df60
5
5
  SHA512:
6
- metadata.gz: f01be28d5eccb9dbdcb257537102701c8444896e697a79ab763fa855fefd01e552a52d4c6ebcc82a44c84aa9a6669d25a005ed3ce4a55d48e2fad0a5825c40ec
7
- data.tar.gz: 2e9eb47a2be707396894ed8208a4fd5032988a07c593f9750756903867178ea7e5b1767dfbfd700dfed596922857b7bcbe2e27c545fbce64bd8e40e243121003
6
+ metadata.gz: 876552ab9fa5a7460c575a166c3e3915c46166d7b14f2c2245eaa1edb2327d7f74152c971f8d578e92ddc93dcabfbb5828dcecda585856ab88e99d42efdfa8e7
7
+ data.tar.gz: 712e77d22871f1617db24457331a683a5796ed3e45f6b06f85391e7940aa06fe6534f98485310a05ac49d6b3e82b23eb1c374b7d6b853e7c0ea2b5c7a400b65e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1117
1
+ 3.0.1123
@@ -3940,14 +3940,18 @@ module TencentCloud
3940
3940
  # @param TriggerRows: 检测不通过行数
3941
3941
  # 注意:此字段可能返回 null,表示取不到有效值。
3942
3942
  # @type TriggerRows: Integer
3943
+ # @param ComputeExpression: 比较关系
3944
+ # 注意:此字段可能返回 null,表示取不到有效值。
3945
+ # @type ComputeExpression: String
3943
3946
 
3944
- attr_accessor :Items, :TotalRows, :PassRows, :TriggerRows
3947
+ attr_accessor :Items, :TotalRows, :PassRows, :TriggerRows, :ComputeExpression
3945
3948
 
3946
- def initialize(items=nil, totalrows=nil, passrows=nil, triggerrows=nil)
3949
+ def initialize(items=nil, totalrows=nil, passrows=nil, triggerrows=nil, computeexpression=nil)
3947
3950
  @Items = items
3948
3951
  @TotalRows = totalrows
3949
3952
  @PassRows = passrows
3950
3953
  @TriggerRows = triggerrows
3954
+ @ComputeExpression = computeexpression
3951
3955
  end
3952
3956
 
3953
3957
  def deserialize(params)
@@ -3962,6 +3966,7 @@ module TencentCloud
3962
3966
  @TotalRows = params['TotalRows']
3963
3967
  @PassRows = params['PassRows']
3964
3968
  @TriggerRows = params['TriggerRows']
3969
+ @ComputeExpression = params['ComputeExpression']
3965
3970
  end
3966
3971
  end
3967
3972
 
@@ -5588,6 +5593,8 @@ module TencentCloud
5588
5593
  # @type TaskName: String
5589
5594
  # @param TaskType: 26离线同步,30Python,31PySpark,32DLC,33Impala,34Hive SQL,35Shell,36Spark SQL,39Spark,40CDW PG,92MapReduce
5590
5595
  # @type TaskType: Integer
5596
+ # @param Content: (必填参数)指定脚本内容,base64编码
5597
+ # @type Content: String
5591
5598
  # @param TaskExt: 扩展属性
5592
5599
  # @type TaskExt: Array
5593
5600
  # @param ProductName: 产品名称
@@ -5600,25 +5607,23 @@ module TencentCloud
5600
5607
  # @type TopCoordinate: Float
5601
5608
  # @param TaskFolderId: 工作流目录ID
5602
5609
  # @type TaskFolderId: String
5603
- # @param Content: (必填参数)指定脚本内容,base64编码
5604
- # @type Content: String
5605
5610
  # @param CodeTemplateId: 代码模板ID
5606
5611
  # @type CodeTemplateId: String
5607
5612
 
5608
- attr_accessor :ProjectId, :WorkflowId, :TaskName, :TaskType, :TaskExt, :ProductName, :InstanceInitStrategy, :LeftCoordinate, :TopCoordinate, :TaskFolderId, :Content, :CodeTemplateId
5613
+ attr_accessor :ProjectId, :WorkflowId, :TaskName, :TaskType, :Content, :TaskExt, :ProductName, :InstanceInitStrategy, :LeftCoordinate, :TopCoordinate, :TaskFolderId, :CodeTemplateId
5609
5614
 
5610
- def initialize(projectid=nil, workflowid=nil, taskname=nil, tasktype=nil, taskext=nil, productname=nil, instanceinitstrategy=nil, leftcoordinate=nil, topcoordinate=nil, taskfolderid=nil, content=nil, codetemplateid=nil)
5615
+ def initialize(projectid=nil, workflowid=nil, taskname=nil, tasktype=nil, content=nil, taskext=nil, productname=nil, instanceinitstrategy=nil, leftcoordinate=nil, topcoordinate=nil, taskfolderid=nil, codetemplateid=nil)
5611
5616
  @ProjectId = projectid
5612
5617
  @WorkflowId = workflowid
5613
5618
  @TaskName = taskname
5614
5619
  @TaskType = tasktype
5620
+ @Content = content
5615
5621
  @TaskExt = taskext
5616
5622
  @ProductName = productname
5617
5623
  @InstanceInitStrategy = instanceinitstrategy
5618
5624
  @LeftCoordinate = leftcoordinate
5619
5625
  @TopCoordinate = topcoordinate
5620
5626
  @TaskFolderId = taskfolderid
5621
- @Content = content
5622
5627
  @CodeTemplateId = codetemplateid
5623
5628
  end
5624
5629
 
@@ -5627,6 +5632,7 @@ module TencentCloud
5627
5632
  @WorkflowId = params['WorkflowId']
5628
5633
  @TaskName = params['TaskName']
5629
5634
  @TaskType = params['TaskType']
5635
+ @Content = params['Content']
5630
5636
  unless params['TaskExt'].nil?
5631
5637
  @TaskExt = []
5632
5638
  params['TaskExt'].each do |i|
@@ -5640,7 +5646,6 @@ module TencentCloud
5640
5646
  @LeftCoordinate = params['LeftCoordinate']
5641
5647
  @TopCoordinate = params['TopCoordinate']
5642
5648
  @TaskFolderId = params['TaskFolderId']
5643
- @Content = params['Content']
5644
5649
  @CodeTemplateId = params['CodeTemplateId']
5645
5650
  end
5646
5651
  end
@@ -31106,10 +31111,43 @@ module TencentCloud
31106
31111
  # @param TriggerCondition: 触发条件
31107
31112
  # 注意:此字段可能返回 null,表示取不到有效值。
31108
31113
  # @type TriggerCondition: String
31114
+ # @param RuleGroupName: 任务名称
31115
+ # 注意:此字段可能返回 null,表示取不到有效值。
31116
+ # @type RuleGroupName: String
31117
+ # @param DatasourceId: 数据源ID
31118
+ # 注意:此字段可能返回 null,表示取不到有效值。
31119
+ # @type DatasourceId: String
31120
+ # @param DatasourceName: 数据源名称
31121
+ # 注意:此字段可能返回 null,表示取不到有效值。
31122
+ # @type DatasourceName: String
31123
+ # @param DatabaseName: 数据库名称
31124
+ # 注意:此字段可能返回 null,表示取不到有效值。
31125
+ # @type DatabaseName: String
31126
+ # @param SchemaName: 模式名称
31127
+ # 注意:此字段可能返回 null,表示取不到有效值。
31128
+ # @type SchemaName: String
31129
+ # @param TableName: 表名称
31130
+ # 注意:此字段可能返回 null,表示取不到有效值。
31131
+ # @type TableName: String
31132
+ # @param RuleGroupExist: 判断是否屏蔽监控 0.屏蔽 1.不屏蔽
31133
+ # 注意:此字段可能返回 null,表示取不到有效值。
31134
+ # @type RuleGroupExist: Integer
31135
+ # @param DatasourceType: 数据源类型
31136
+ # 注意:此字段可能返回 null,表示取不到有效值。
31137
+ # @type DatasourceType: Integer
31138
+ # @param RuleGroupTableId: 数据表id
31139
+ # 注意:此字段可能返回 null,表示取不到有效值。
31140
+ # @type RuleGroupTableId: Integer
31141
+ # @param MonitorType: 监控方式 1.未配置, 2.关联生产调度, 3.离线周期检测
31142
+ # 注意:此字段可能返回 null,表示取不到有效值。
31143
+ # @type MonitorType: Integer
31144
+ # @param FinishTime: 执行结束时间
31145
+ # 注意:此字段可能返回 null,表示取不到有效值。
31146
+ # @type FinishTime: String
31109
31147
 
31110
- attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel, :TriggerCondition
31148
+ attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel, :TriggerCondition, :RuleGroupName, :DatasourceId, :DatasourceName, :DatabaseName, :SchemaName, :TableName, :RuleGroupExist, :DatasourceType, :RuleGroupTableId, :MonitorType, :FinishTime
31111
31149
 
31112
- def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil, triggercondition=nil)
31150
+ def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil, triggercondition=nil, rulegroupname=nil, datasourceid=nil, datasourcename=nil, databasename=nil, schemaname=nil, tablename=nil, rulegroupexist=nil, datasourcetype=nil, rulegrouptableid=nil, monitortype=nil, finishtime=nil)
31113
31151
  @RuleExecId = ruleexecid
31114
31152
  @RuleGroupExecId = rulegroupexecid
31115
31153
  @RuleGroupId = rulegroupid
@@ -31132,6 +31170,17 @@ module TencentCloud
31132
31170
  @StartTime = starttime
31133
31171
  @AlarmLevel = alarmlevel
31134
31172
  @TriggerCondition = triggercondition
31173
+ @RuleGroupName = rulegroupname
31174
+ @DatasourceId = datasourceid
31175
+ @DatasourceName = datasourcename
31176
+ @DatabaseName = databasename
31177
+ @SchemaName = schemaname
31178
+ @TableName = tablename
31179
+ @RuleGroupExist = rulegroupexist
31180
+ @DatasourceType = datasourcetype
31181
+ @RuleGroupTableId = rulegrouptableid
31182
+ @MonitorType = monitortype
31183
+ @FinishTime = finishtime
31135
31184
  end
31136
31185
 
31137
31186
  def deserialize(params)
@@ -31163,6 +31212,17 @@ module TencentCloud
31163
31212
  @StartTime = params['StartTime']
31164
31213
  @AlarmLevel = params['AlarmLevel']
31165
31214
  @TriggerCondition = params['TriggerCondition']
31215
+ @RuleGroupName = params['RuleGroupName']
31216
+ @DatasourceId = params['DatasourceId']
31217
+ @DatasourceName = params['DatasourceName']
31218
+ @DatabaseName = params['DatabaseName']
31219
+ @SchemaName = params['SchemaName']
31220
+ @TableName = params['TableName']
31221
+ @RuleGroupExist = params['RuleGroupExist']
31222
+ @DatasourceType = params['DatasourceType']
31223
+ @RuleGroupTableId = params['RuleGroupTableId']
31224
+ @MonitorType = params['MonitorType']
31225
+ @FinishTime = params['FinishTime']
31166
31226
  end
31167
31227
  end
31168
31228
 
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.1117
4
+ version: 3.0.1123
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-08-05 00:00:00.000000000 Z
11
+ date: 2025-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common