tencentcloud-sdk-wedata 3.0.1189 → 3.0.1192

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/v20250806/models.rb +48 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e11b23c18c6aa806e51b817e93c345bad4b248c
4
- data.tar.gz: 42b1ed64dc06fffd4c20f99d11a5200abe5bd23d
3
+ metadata.gz: 9380cc092dfba095a128165cd59ea18685b2a267
4
+ data.tar.gz: 1eda192fb1316aab6f625eeb3ea73e14cf10d4be
5
5
  SHA512:
6
- metadata.gz: 858f4c4db7020da03049f727bb39423326314333413c924541ec4be82d67c768657a253affbdd7be7299b9a6e174d82a0e3cab98b97391c4bf4b88f9af5939d0
7
- data.tar.gz: 09a1888e0468f62fbab2756e864c5e7559c42b7c1ca2685ccd1db9e309b4203d11e5c94050f007bd3efc32e6bc2141069e59d1eecd3e8c2d409abc113dd8ff44
6
+ metadata.gz: dfbb913e5eaf0abc04894b7e427a431a6cdb625b086e1389325841fe37e590f9fd8a2bd3df06dd737a6d08a7f7baa8d64965676ebb8ef9b7587013910c35cc04
7
+ data.tar.gz: 20b2a2815ae021ee632b291d9a9402c682e409ed469fe6b02f25b334b376c086740810937a14289631c7d4af0b0defa9b2034c1fa0e0db5447c2d46ee2a9464c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1189
1
+ 3.0.1192
@@ -303,10 +303,22 @@ module TencentCloud
303
303
  # @type ReconciliationExtInfo: Array
304
304
  # @param MonitorWhiteTasks: 监控对象的白名单配置
305
305
  # @type MonitorWhiteTasks: Array
306
+ # @param WorkflowCompletionTimeCycleExtInfo: 3.0 Workflow 完成时间(周期)告警策略
307
+ # 注意:此字段可能返回 null,表示取不到有效值。
308
+ # @type WorkflowCompletionTimeCycleExtInfo: Array
309
+ # @param WorkflowExecutionTrigger: 工作流执行触发告警条件
310
+ # 注意:此字段可能返回 null,表示取不到有效值。
311
+ # @type WorkflowExecutionTrigger: Integer
312
+ # @param WorkflowExecutionFailureTrigger: 工作流执行失败告警条件
313
+ # 注意:此字段可能返回 null,表示取不到有效值。
314
+ # @type WorkflowExecutionFailureTrigger: Integer
315
+ # @param WorkflowExecutionSuccessTrigger: 工作流执行成功告警条件
316
+ # 注意:此字段可能返回 null,表示取不到有效值。
317
+ # @type WorkflowExecutionSuccessTrigger: Integer
306
318
 
307
- attr_accessor :Trigger, :DataBackfillOrRerunTrigger, :TimeOutExtInfo, :DataBackfillOrRerunTimeOutExtInfo, :ProjectInstanceStatisticsAlarmInfoList, :ReconciliationExtInfo, :MonitorWhiteTasks
319
+ attr_accessor :Trigger, :DataBackfillOrRerunTrigger, :TimeOutExtInfo, :DataBackfillOrRerunTimeOutExtInfo, :ProjectInstanceStatisticsAlarmInfoList, :ReconciliationExtInfo, :MonitorWhiteTasks, :WorkflowCompletionTimeCycleExtInfo, :WorkflowExecutionTrigger, :WorkflowExecutionFailureTrigger, :WorkflowExecutionSuccessTrigger
308
320
 
309
- def initialize(trigger=nil, databackfillorreruntrigger=nil, timeoutextinfo=nil, databackfillorreruntimeoutextinfo=nil, projectinstancestatisticsalarminfolist=nil, reconciliationextinfo=nil, monitorwhitetasks=nil)
321
+ def initialize(trigger=nil, databackfillorreruntrigger=nil, timeoutextinfo=nil, databackfillorreruntimeoutextinfo=nil, projectinstancestatisticsalarminfolist=nil, reconciliationextinfo=nil, monitorwhitetasks=nil, workflowcompletiontimecycleextinfo=nil, workflowexecutiontrigger=nil, workflowexecutionfailuretrigger=nil, workflowexecutionsuccesstrigger=nil)
310
322
  @Trigger = trigger
311
323
  @DataBackfillOrRerunTrigger = databackfillorreruntrigger
312
324
  @TimeOutExtInfo = timeoutextinfo
@@ -314,6 +326,10 @@ module TencentCloud
314
326
  @ProjectInstanceStatisticsAlarmInfoList = projectinstancestatisticsalarminfolist
315
327
  @ReconciliationExtInfo = reconciliationextinfo
316
328
  @MonitorWhiteTasks = monitorwhitetasks
329
+ @WorkflowCompletionTimeCycleExtInfo = workflowcompletiontimecycleextinfo
330
+ @WorkflowExecutionTrigger = workflowexecutiontrigger
331
+ @WorkflowExecutionFailureTrigger = workflowexecutionfailuretrigger
332
+ @WorkflowExecutionSuccessTrigger = workflowexecutionsuccesstrigger
317
333
  end
318
334
 
319
335
  def deserialize(params)
@@ -359,6 +375,17 @@ module TencentCloud
359
375
  @MonitorWhiteTasks << monitorwhitetask_tmp
360
376
  end
361
377
  end
378
+ unless params['WorkflowCompletionTimeCycleExtInfo'].nil?
379
+ @WorkflowCompletionTimeCycleExtInfo = []
380
+ params['WorkflowCompletionTimeCycleExtInfo'].each do |i|
381
+ timeoutstrategyinfo_tmp = TimeOutStrategyInfo.new
382
+ timeoutstrategyinfo_tmp.deserialize(i)
383
+ @WorkflowCompletionTimeCycleExtInfo << timeoutstrategyinfo_tmp
384
+ end
385
+ end
386
+ @WorkflowExecutionTrigger = params['WorkflowExecutionTrigger']
387
+ @WorkflowExecutionFailureTrigger = params['WorkflowExecutionFailureTrigger']
388
+ @WorkflowExecutionSuccessTrigger = params['WorkflowExecutionSuccessTrigger']
362
389
  end
363
390
  end
364
391
 
@@ -13035,15 +13062,29 @@ module TencentCloud
13035
13062
  # @param ScheduleTimeZone: 超时时间对应的时区配置, 如 UTC+7, 默认为UTC+8
13036
13063
  # 注意:此字段可能返回 null,表示取不到有效值。
13037
13064
  # @type ScheduleTimeZone: String
13065
+ # @param Second: 秒(用于 Spark Streaming 策略)
13066
+ # 注意:此字段可能返回 null,表示取不到有效值。
13067
+ # @type Second: Integer
13068
+ # @param Times: 次数(用于 Spark Streaming 重试次数超限策略,ruleType=10)
13069
+ # 注意:此字段可能返回 null,表示取不到有效值。
13070
+ # @type Times: Integer
13071
+ # @param AlarmTriggerFrequency: 告警触发频率(用于 Spark Streaming 策略 ruleType=8/9/10)
13072
+ # * 单位:分钟,范围:5-1440
13073
+ # * 告警触发后,在该时间内暂停检测,避免告警风暴
13074
+ # 注意:此字段可能返回 null,表示取不到有效值。
13075
+ # @type AlarmTriggerFrequency: Integer
13038
13076
 
13039
- attr_accessor :RuleType, :Type, :Hour, :Min, :ScheduleTimeZone
13077
+ attr_accessor :RuleType, :Type, :Hour, :Min, :ScheduleTimeZone, :Second, :Times, :AlarmTriggerFrequency
13040
13078
 
13041
- def initialize(ruletype=nil, type=nil, hour=nil, min=nil, scheduletimezone=nil)
13079
+ def initialize(ruletype=nil, type=nil, hour=nil, min=nil, scheduletimezone=nil, second=nil, times=nil, alarmtriggerfrequency=nil)
13042
13080
  @RuleType = ruletype
13043
13081
  @Type = type
13044
13082
  @Hour = hour
13045
13083
  @Min = min
13046
13084
  @ScheduleTimeZone = scheduletimezone
13085
+ @Second = second
13086
+ @Times = times
13087
+ @AlarmTriggerFrequency = alarmtriggerfrequency
13047
13088
  end
13048
13089
 
13049
13090
  def deserialize(params)
@@ -13052,6 +13093,9 @@ module TencentCloud
13052
13093
  @Hour = params['Hour']
13053
13094
  @Min = params['Min']
13054
13095
  @ScheduleTimeZone = params['ScheduleTimeZone']
13096
+ @Second = params['Second']
13097
+ @Times = params['Times']
13098
+ @AlarmTriggerFrequency = params['AlarmTriggerFrequency']
13055
13099
  end
13056
13100
  end
13057
13101
 
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.1189
4
+ version: 3.0.1192
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-12-24 00:00:00.000000000 Z
11
+ date: 2025-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common