tencentcloud-sdk-wedata 3.0.771 → 3.0.773
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 +110 -32
- 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: 52c5d6608ec8f68e909f647c8ed0904e248e3cee
|
4
|
+
data.tar.gz: 7800a1845c44b6fc677e74b88653ca8acc6867a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0a312e941acf20a7e32eacc6ca8e6353477c7c5f85b24c03efad5bd3478de64e9da184e8a81600702c16a6fc208736ff6eb929b21cb4a0b4bf72a66b5a83cef
|
7
|
+
data.tar.gz: adf8dd13a6c5a02ab7f39b16ea8d853763fe096119adbe886810fcd9196499dc74555855a438c0d28065bc4aa233114cff67202c7cec803b073c8354a213d2c4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.773
|
data/lib/v20210820/models.rb
CHANGED
@@ -1553,14 +1553,20 @@ module TencentCloud
|
|
1553
1553
|
# @type ProjectId: String
|
1554
1554
|
# @param DeleteKFFlag: 是否删除开发态任务。默认不删除开发态,为 0 不删除 , 为 1 删除
|
1555
1555
|
# @type DeleteKFFlag: Integer
|
1556
|
+
# @param Name: 操作名称
|
1557
|
+
# @type Name: String
|
1558
|
+
# @param TaskNames: 本次批量操作涉及任务,用于审计
|
1559
|
+
# @type TaskNames: Array
|
1556
1560
|
|
1557
|
-
attr_accessor :TaskIds, :TaskType, :ProjectId, :DeleteKFFlag
|
1561
|
+
attr_accessor :TaskIds, :TaskType, :ProjectId, :DeleteKFFlag, :Name, :TaskNames
|
1558
1562
|
|
1559
|
-
def initialize(taskids=nil, tasktype=nil, projectid=nil, deletekfflag=nil)
|
1563
|
+
def initialize(taskids=nil, tasktype=nil, projectid=nil, deletekfflag=nil, name=nil, tasknames=nil)
|
1560
1564
|
@TaskIds = taskids
|
1561
1565
|
@TaskType = tasktype
|
1562
1566
|
@ProjectId = projectid
|
1563
1567
|
@DeleteKFFlag = deletekfflag
|
1568
|
+
@Name = name
|
1569
|
+
@TaskNames = tasknames
|
1564
1570
|
end
|
1565
1571
|
|
1566
1572
|
def deserialize(params)
|
@@ -1568,6 +1574,8 @@ module TencentCloud
|
|
1568
1574
|
@TaskType = params['TaskType']
|
1569
1575
|
@ProjectId = params['ProjectId']
|
1570
1576
|
@DeleteKFFlag = params['DeleteKFFlag']
|
1577
|
+
@Name = params['Name']
|
1578
|
+
@TaskNames = params['TaskNames']
|
1571
1579
|
end
|
1572
1580
|
end
|
1573
1581
|
|
@@ -2290,15 +2298,18 @@ module TencentCloud
|
|
2290
2298
|
# @type FailedCount: Integer
|
2291
2299
|
# @param TotalCount: 任务总数
|
2292
2300
|
# @type TotalCount: Integer
|
2301
|
+
# @param TaskNames: 本次批量操作涉及任务,用于审计
|
2302
|
+
# @type TaskNames: Array
|
2293
2303
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2294
2304
|
# @type RequestId: String
|
2295
2305
|
|
2296
|
-
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :RequestId
|
2306
|
+
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :TaskNames, :RequestId
|
2297
2307
|
|
2298
|
-
def initialize(successcount=nil, failedcount=nil, totalcount=nil, requestid=nil)
|
2308
|
+
def initialize(successcount=nil, failedcount=nil, totalcount=nil, tasknames=nil, requestid=nil)
|
2299
2309
|
@SuccessCount = successcount
|
2300
2310
|
@FailedCount = failedcount
|
2301
2311
|
@TotalCount = totalcount
|
2312
|
+
@TaskNames = tasknames
|
2302
2313
|
@RequestId = requestid
|
2303
2314
|
end
|
2304
2315
|
|
@@ -2306,6 +2317,7 @@ module TencentCloud
|
|
2306
2317
|
@SuccessCount = params['SuccessCount']
|
2307
2318
|
@FailedCount = params['FailedCount']
|
2308
2319
|
@TotalCount = params['TotalCount']
|
2320
|
+
@TaskNames = params['TaskNames']
|
2309
2321
|
@RequestId = params['RequestId']
|
2310
2322
|
end
|
2311
2323
|
end
|
@@ -2383,25 +2395,36 @@ module TencentCloud
|
|
2383
2395
|
|
2384
2396
|
# BatchStartIntegrationTasks请求参数结构体
|
2385
2397
|
class BatchStartIntegrationTasksRequest < TencentCloud::Common::AbstractModel
|
2386
|
-
# @param TaskIds: 任务id
|
2387
|
-
# @type TaskIds: Array
|
2388
2398
|
# @param TaskType: 任务类型
|
2389
2399
|
# @type TaskType: Integer
|
2390
2400
|
# @param ProjectId: 项目id
|
2391
2401
|
# @type ProjectId: String
|
2402
|
+
# @param TaskIds: 任务id
|
2403
|
+
# @type TaskIds: Array
|
2404
|
+
# @param StartTaskInfoSet: 批量运行集成任务,目前仅实时集成用到了这个参数
|
2405
|
+
# @type StartTaskInfoSet: Array
|
2392
2406
|
|
2393
|
-
attr_accessor :
|
2407
|
+
attr_accessor :TaskType, :ProjectId, :TaskIds, :StartTaskInfoSet
|
2394
2408
|
|
2395
|
-
def initialize(
|
2396
|
-
@TaskIds = taskids
|
2409
|
+
def initialize(tasktype=nil, projectid=nil, taskids=nil, starttaskinfoset=nil)
|
2397
2410
|
@TaskType = tasktype
|
2398
2411
|
@ProjectId = projectid
|
2412
|
+
@TaskIds = taskids
|
2413
|
+
@StartTaskInfoSet = starttaskinfoset
|
2399
2414
|
end
|
2400
2415
|
|
2401
2416
|
def deserialize(params)
|
2402
|
-
@TaskIds = params['TaskIds']
|
2403
2417
|
@TaskType = params['TaskType']
|
2404
2418
|
@ProjectId = params['ProjectId']
|
2419
|
+
@TaskIds = params['TaskIds']
|
2420
|
+
unless params['StartTaskInfoSet'].nil?
|
2421
|
+
@StartTaskInfoSet = []
|
2422
|
+
params['StartTaskInfoSet'].each do |i|
|
2423
|
+
starttaskinfo_tmp = StartTaskInfo.new
|
2424
|
+
starttaskinfo_tmp.deserialize(i)
|
2425
|
+
@StartTaskInfoSet << starttaskinfo_tmp
|
2426
|
+
end
|
2427
|
+
end
|
2405
2428
|
end
|
2406
2429
|
end
|
2407
2430
|
|
@@ -2413,15 +2436,18 @@ module TencentCloud
|
|
2413
2436
|
# @type FailedCount: Integer
|
2414
2437
|
# @param TotalCount: 任务总数
|
2415
2438
|
# @type TotalCount: Integer
|
2439
|
+
# @param TaskNames: 本次批量操作成功任务id,用于审计
|
2440
|
+
# @type TaskNames: Array
|
2416
2441
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2417
2442
|
# @type RequestId: String
|
2418
2443
|
|
2419
|
-
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :RequestId
|
2444
|
+
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :TaskNames, :RequestId
|
2420
2445
|
|
2421
|
-
def initialize(successcount=nil, failedcount=nil, totalcount=nil, requestid=nil)
|
2446
|
+
def initialize(successcount=nil, failedcount=nil, totalcount=nil, tasknames=nil, requestid=nil)
|
2422
2447
|
@SuccessCount = successcount
|
2423
2448
|
@FailedCount = failedcount
|
2424
2449
|
@TotalCount = totalcount
|
2450
|
+
@TaskNames = tasknames
|
2425
2451
|
@RequestId = requestid
|
2426
2452
|
end
|
2427
2453
|
|
@@ -2429,6 +2455,7 @@ module TencentCloud
|
|
2429
2455
|
@SuccessCount = params['SuccessCount']
|
2430
2456
|
@FailedCount = params['FailedCount']
|
2431
2457
|
@TotalCount = params['TotalCount']
|
2458
|
+
@TaskNames = params['TaskNames']
|
2432
2459
|
@RequestId = params['RequestId']
|
2433
2460
|
end
|
2434
2461
|
end
|
@@ -2465,15 +2492,18 @@ module TencentCloud
|
|
2465
2492
|
# @type FailedCount: Integer
|
2466
2493
|
# @param TotalCount: 任务总数
|
2467
2494
|
# @type TotalCount: Integer
|
2495
|
+
# @param TaskNames: 本次批量操作涉及成功任务,用于审计
|
2496
|
+
# @type TaskNames: Array
|
2468
2497
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2469
2498
|
# @type RequestId: String
|
2470
2499
|
|
2471
|
-
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :RequestId
|
2500
|
+
attr_accessor :SuccessCount, :FailedCount, :TotalCount, :TaskNames, :RequestId
|
2472
2501
|
|
2473
|
-
def initialize(successcount=nil, failedcount=nil, totalcount=nil, requestid=nil)
|
2502
|
+
def initialize(successcount=nil, failedcount=nil, totalcount=nil, tasknames=nil, requestid=nil)
|
2474
2503
|
@SuccessCount = successcount
|
2475
2504
|
@FailedCount = failedcount
|
2476
2505
|
@TotalCount = totalcount
|
2506
|
+
@TaskNames = tasknames
|
2477
2507
|
@RequestId = requestid
|
2478
2508
|
end
|
2479
2509
|
|
@@ -2481,6 +2511,7 @@ module TencentCloud
|
|
2481
2511
|
@SuccessCount = params['SuccessCount']
|
2482
2512
|
@FailedCount = params['FailedCount']
|
2483
2513
|
@TotalCount = params['TotalCount']
|
2514
|
+
@TaskNames = params['TaskNames']
|
2484
2515
|
@RequestId = params['RequestId']
|
2485
2516
|
end
|
2486
2517
|
end
|
@@ -2625,14 +2656,17 @@ module TencentCloud
|
|
2625
2656
|
# @type ProjectId: String
|
2626
2657
|
# @param Event: 事件类型(START, STOP, SUSPEND, SUSPEND_WITHOUT_SP,RESUME, COMMIT, TIMESTAMP)
|
2627
2658
|
# @type Event: String
|
2659
|
+
# @param TaskNames: 本次批量操作涉及任务,用于审计
|
2660
|
+
# @type TaskNames: Array
|
2628
2661
|
|
2629
|
-
attr_accessor :TaskIds, :TaskType, :ProjectId, :Event
|
2662
|
+
attr_accessor :TaskIds, :TaskType, :ProjectId, :Event, :TaskNames
|
2630
2663
|
|
2631
|
-
def initialize(taskids=nil, tasktype=nil, projectid=nil, event=nil)
|
2664
|
+
def initialize(taskids=nil, tasktype=nil, projectid=nil, event=nil, tasknames=nil)
|
2632
2665
|
@TaskIds = taskids
|
2633
2666
|
@TaskType = tasktype
|
2634
2667
|
@ProjectId = projectid
|
2635
2668
|
@Event = event
|
2669
|
+
@TaskNames = tasknames
|
2636
2670
|
end
|
2637
2671
|
|
2638
2672
|
def deserialize(params)
|
@@ -2640,6 +2674,7 @@ module TencentCloud
|
|
2640
2674
|
@TaskType = params['TaskType']
|
2641
2675
|
@ProjectId = params['ProjectId']
|
2642
2676
|
@Event = params['Event']
|
2677
|
+
@TaskNames = params['TaskNames']
|
2643
2678
|
end
|
2644
2679
|
end
|
2645
2680
|
|
@@ -2683,15 +2718,18 @@ module TencentCloud
|
|
2683
2718
|
# @type ProjectId: String
|
2684
2719
|
# @param InchargeIds: 责任人Id(多个责任人用小写分号隔开)
|
2685
2720
|
# @type InchargeIds: String
|
2721
|
+
# @param TaskNames: 本次批量操作涉及任务,用于审计
|
2722
|
+
# @type TaskNames: Array
|
2686
2723
|
|
2687
|
-
attr_accessor :TaskIds, :Incharge, :TaskType, :ProjectId, :InchargeIds
|
2724
|
+
attr_accessor :TaskIds, :Incharge, :TaskType, :ProjectId, :InchargeIds, :TaskNames
|
2688
2725
|
|
2689
|
-
def initialize(taskids=nil, incharge=nil, tasktype=nil, projectid=nil, inchargeids=nil)
|
2726
|
+
def initialize(taskids=nil, incharge=nil, tasktype=nil, projectid=nil, inchargeids=nil, tasknames=nil)
|
2690
2727
|
@TaskIds = taskids
|
2691
2728
|
@Incharge = incharge
|
2692
2729
|
@TaskType = tasktype
|
2693
2730
|
@ProjectId = projectid
|
2694
2731
|
@InchargeIds = inchargeids
|
2732
|
+
@TaskNames = tasknames
|
2695
2733
|
end
|
2696
2734
|
|
2697
2735
|
def deserialize(params)
|
@@ -2700,6 +2738,7 @@ module TencentCloud
|
|
2700
2738
|
@TaskType = params['TaskType']
|
2701
2739
|
@ProjectId = params['ProjectId']
|
2702
2740
|
@InchargeIds = params['InchargeIds']
|
2741
|
+
@TaskNames = params['TaskNames']
|
2703
2742
|
end
|
2704
2743
|
end
|
2705
2744
|
|
@@ -2869,8 +2908,8 @@ module TencentCloud
|
|
2869
2908
|
|
2870
2909
|
attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
|
2871
2910
|
extend Gem::Deprecate
|
2872
|
-
deprecate :TaskId, :none, 2024,
|
2873
|
-
deprecate :TaskId=, :none, 2024,
|
2911
|
+
deprecate :TaskId, :none, 2024, 3
|
2912
|
+
deprecate :TaskId=, :none, 2024, 3
|
2874
2913
|
|
2875
2914
|
def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
|
2876
2915
|
@ProjectId = projectid
|
@@ -10166,12 +10205,12 @@ module TencentCloud
|
|
10166
10205
|
|
10167
10206
|
attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
|
10168
10207
|
extend Gem::Deprecate
|
10169
|
-
deprecate :EventType, :none, 2024,
|
10170
|
-
deprecate :EventType=, :none, 2024,
|
10171
|
-
deprecate :EventBroadcastType, :none, 2024,
|
10172
|
-
deprecate :EventBroadcastType=, :none, 2024,
|
10173
|
-
deprecate :Status, :none, 2024,
|
10174
|
-
deprecate :Status=, :none, 2024,
|
10208
|
+
deprecate :EventType, :none, 2024, 3
|
10209
|
+
deprecate :EventType=, :none, 2024, 3
|
10210
|
+
deprecate :EventBroadcastType, :none, 2024, 3
|
10211
|
+
deprecate :EventBroadcastType=, :none, 2024, 3
|
10212
|
+
deprecate :Status, :none, 2024, 3
|
10213
|
+
deprecate :Status=, :none, 2024, 3
|
10175
10214
|
|
10176
10215
|
def initialize(projectid=nil, category=nil, pagenumber=nil, pagesize=nil, eventname=nil, eventtype=nil, eventsubtype=nil, eventbroadcasttype=nil, status=nil, creationtimestart=nil, creationtimeend=nil, eventtriggeredtimestart=nil, eventtriggeredtimeend=nil, logtimestart=nil, logtimeend=nil, dimension=nil, timetolive=nil, sortitem=nil, sorttype=nil)
|
10177
10216
|
@ProjectId = projectid
|
@@ -18284,8 +18323,8 @@ module TencentCloud
|
|
18284
18323
|
|
18285
18324
|
attr_accessor :DimType, :Count, :QualityDim
|
18286
18325
|
extend Gem::Deprecate
|
18287
|
-
deprecate :DimType, :none, 2024,
|
18288
|
-
deprecate :DimType=, :none, 2024,
|
18326
|
+
deprecate :DimType, :none, 2024, 3
|
18327
|
+
deprecate :DimType=, :none, 2024, 3
|
18289
18328
|
|
18290
18329
|
def initialize(dimtype=nil, count=nil, qualitydim=nil)
|
18291
18330
|
@DimType = dimtype
|
@@ -30381,10 +30420,10 @@ module TencentCloud
|
|
30381
30420
|
|
30382
30421
|
attr_accessor :SourceObjectDataTypeName, :SourceObjectValue, :ObjectDataTypeName, :ObjectValue, :ObjectType
|
30383
30422
|
extend Gem::Deprecate
|
30384
|
-
deprecate :SourceObjectDataTypeName, :none, 2024,
|
30385
|
-
deprecate :SourceObjectDataTypeName=, :none, 2024,
|
30386
|
-
deprecate :SourceObjectValue, :none, 2024,
|
30387
|
-
deprecate :SourceObjectValue=, :none, 2024,
|
30423
|
+
deprecate :SourceObjectDataTypeName, :none, 2024, 3
|
30424
|
+
deprecate :SourceObjectDataTypeName=, :none, 2024, 3
|
30425
|
+
deprecate :SourceObjectValue, :none, 2024, 3
|
30426
|
+
deprecate :SourceObjectValue=, :none, 2024, 3
|
30388
30427
|
|
30389
30428
|
def initialize(sourceobjectdatatypename=nil, sourceobjectvalue=nil, objectdatatypename=nil, objectvalue=nil, objecttype=nil)
|
30390
30429
|
@SourceObjectDataTypeName = sourceobjectdatatypename
|
@@ -30610,6 +30649,45 @@ module TencentCloud
|
|
30610
30649
|
end
|
30611
30650
|
end
|
30612
30651
|
|
30652
|
+
# 批量运行集成任务配置
|
30653
|
+
class StartTaskInfo < TencentCloud::Common::AbstractModel
|
30654
|
+
# @param Event: 批量运行任务类型,比如START,TIMESTAMP,RESTORE,RESUME等
|
30655
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30656
|
+
# @type Event: String
|
30657
|
+
# @param TaskIds: 任务Id列表
|
30658
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30659
|
+
# @type TaskIds: Array
|
30660
|
+
# @param Config: 批量运行任务配置,目前仅用与实时集成基于时间位点启动。基于时间位点启动,需要设置一个name=timestamp, value=具体时间戳的RecordField的配置
|
30661
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30662
|
+
# @type Config: Array
|
30663
|
+
# @param Description: 操作类型
|
30664
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30665
|
+
# @type Description: String
|
30666
|
+
|
30667
|
+
attr_accessor :Event, :TaskIds, :Config, :Description
|
30668
|
+
|
30669
|
+
def initialize(event=nil, taskids=nil, config=nil, description=nil)
|
30670
|
+
@Event = event
|
30671
|
+
@TaskIds = taskids
|
30672
|
+
@Config = config
|
30673
|
+
@Description = description
|
30674
|
+
end
|
30675
|
+
|
30676
|
+
def deserialize(params)
|
30677
|
+
@Event = params['Event']
|
30678
|
+
@TaskIds = params['TaskIds']
|
30679
|
+
unless params['Config'].nil?
|
30680
|
+
@Config = []
|
30681
|
+
params['Config'].each do |i|
|
30682
|
+
recordfield_tmp = RecordField.new
|
30683
|
+
recordfield_tmp.deserialize(i)
|
30684
|
+
@Config << recordfield_tmp
|
30685
|
+
end
|
30686
|
+
end
|
30687
|
+
@Description = params['Description']
|
30688
|
+
end
|
30689
|
+
end
|
30690
|
+
|
30613
30691
|
# StopBaseline请求参数结构体
|
30614
30692
|
class StopBaselineRequest < TencentCloud::Common::AbstractModel
|
30615
30693
|
# @param BaselineId: 1
|
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.773
|
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-
|
11
|
+
date: 2024-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|