tencentcloud-sdk-nodejs 4.0.844 → 4.0.845
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.
- package/CHANGELOG.md +52 -0
- package/SERVICE_CHANGELOG.md +68 -219
- package/package.json +1 -1
- package/products.md +5 -5
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cls/v20201016/cls_client.ts +93 -33
- package/src/services/cls/v20201016/cls_models.ts +209 -130
- package/src/services/ims/v20201229/ims_client.ts +1 -1
- package/src/services/rum/v20210622/rum_models.ts +1 -1
- package/src/services/teo/v20220901/teo_client.ts +104 -17
- package/src/services/teo/v20220901/teo_models.ts +257 -45
- package/src/services/tione/v20191022/tione_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +31 -11
- package/tencentcloud/services/cls/v20201016/cls_client.js +45 -15
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +199 -130
- package/tencentcloud/services/ims/v20201229/ims_client.d.ts +1 -1
- package/tencentcloud/services/ims/v20201229/ims_client.js +1 -1
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +1 -1
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +42 -5
- package/tencentcloud/services/teo/v20220901/teo_client.js +55 -6
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +241 -43
- package/tencentcloud/services/tione/v20191022/tione_models.d.ts +1 -1
- package/test/cls.v20201016.test.js +66 -16
- package/test/teo.v20220901.test.js +64 -4
|
@@ -51,6 +51,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
51
51
|
async CreateIndex(req, cb) {
|
|
52
52
|
return this.request("CreateIndex", req, cb);
|
|
53
53
|
}
|
|
54
|
+
/**
|
|
55
|
+
* 查询指定时刻指标的最新值
|
|
56
|
+
*/
|
|
57
|
+
async QueryMetric(req, cb) {
|
|
58
|
+
return this.request("QueryMetric", req, cb);
|
|
59
|
+
}
|
|
54
60
|
/**
|
|
55
61
|
* 修改现有的投递规则,客户如果使用此接口,需要自行处理CLS对指定bucket的写权限。
|
|
56
62
|
*/
|
|
@@ -124,10 +130,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
124
130
|
return this.request("CreateConfig", req, cb);
|
|
125
131
|
}
|
|
126
132
|
/**
|
|
127
|
-
*
|
|
133
|
+
* 获取机器组绑定的采集规则配置
|
|
128
134
|
*/
|
|
129
|
-
async
|
|
130
|
-
return this.request("
|
|
135
|
+
async DescribeMachineGroupConfigs(req, cb) {
|
|
136
|
+
return this.request("DescribeMachineGroupConfigs", req, cb);
|
|
131
137
|
}
|
|
132
138
|
/**
|
|
133
139
|
* 本接口用于获取日志主题列表,支持分页
|
|
@@ -172,10 +178,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
172
178
|
return this.request("ModifyIndex", req, cb);
|
|
173
179
|
}
|
|
174
180
|
/**
|
|
175
|
-
*
|
|
181
|
+
* 本接口用于修改Kafka数据订阅任务
|
|
176
182
|
*/
|
|
177
|
-
async
|
|
178
|
-
return this.request("
|
|
183
|
+
async ModifyKafkaRecharge(req, cb) {
|
|
184
|
+
return this.request("ModifyKafkaRecharge", req, cb);
|
|
179
185
|
}
|
|
180
186
|
/**
|
|
181
187
|
* 该接口用于创建告警屏蔽规则。
|
|
@@ -261,6 +267,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
261
267
|
async DescribeShipperTasks(req, cb) {
|
|
262
268
|
return this.request("DescribeShipperTasks", req, cb);
|
|
263
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* 此接口用于修改仪表盘订阅
|
|
272
|
+
*/
|
|
273
|
+
async ModifyDashboardSubscribe(req, cb) {
|
|
274
|
+
return this.request("ModifyDashboardSubscribe", req, cb);
|
|
275
|
+
}
|
|
264
276
|
/**
|
|
265
277
|
* 本接口用于删除日志主题的索引配置,删除索引配置后将无法检索和查询采集到的日志。
|
|
266
278
|
*/
|
|
@@ -291,6 +303,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
291
303
|
async ModifyAlarmShield(req, cb) {
|
|
292
304
|
return this.request("ModifyAlarmShield", req, cb);
|
|
293
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* 此接口用于预览仪表盘订阅
|
|
308
|
+
*/
|
|
309
|
+
async SearchDashboardSubscribe(req, cb) {
|
|
310
|
+
return this.request("SearchDashboardSubscribe", req, cb);
|
|
311
|
+
}
|
|
294
312
|
/**
|
|
295
313
|
* 本接口用于创建特殊采集配置任务,特殊采集配置应用于自建K8S环境的采集Agent
|
|
296
314
|
*/
|
|
@@ -333,6 +351,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
333
351
|
async DescribeLogsets(req, cb) {
|
|
334
352
|
return this.request("DescribeLogsets", req, cb);
|
|
335
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* 此接口用于创建仪表盘订阅
|
|
356
|
+
*/
|
|
357
|
+
async CreateDashboardSubscribe(req, cb) {
|
|
358
|
+
return this.request("CreateDashboardSubscribe", req, cb);
|
|
359
|
+
}
|
|
336
360
|
/**
|
|
337
361
|
* 本接口用于预览cos导入信息
|
|
338
362
|
*/
|
|
@@ -340,10 +364,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
340
364
|
return this.request("SearchCosRechargeInfo", req, cb);
|
|
341
365
|
}
|
|
342
366
|
/**
|
|
343
|
-
*
|
|
367
|
+
* 本接口用于获取索引配置信息
|
|
344
368
|
*/
|
|
345
|
-
async
|
|
346
|
-
return this.request("
|
|
369
|
+
async DescribeIndex(req, cb) {
|
|
370
|
+
return this.request("DescribeIndex", req, cb);
|
|
347
371
|
}
|
|
348
372
|
/**
|
|
349
373
|
* 该接口用于创建通知渠道组。
|
|
@@ -351,6 +375,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
351
375
|
async CreateAlarmNotice(req, cb) {
|
|
352
376
|
return this.request("CreateAlarmNotice", req, cb);
|
|
353
377
|
}
|
|
378
|
+
/**
|
|
379
|
+
* 此接口用于删除仪表盘订阅
|
|
380
|
+
*/
|
|
381
|
+
async DeleteDashboardSubscribe(req, cb) {
|
|
382
|
+
return this.request("DeleteDashboardSubscribe", req, cb);
|
|
383
|
+
}
|
|
354
384
|
/**
|
|
355
385
|
* 本接口用于创建数据加工任务。
|
|
356
386
|
*/
|
|
@@ -450,6 +480,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
450
480
|
async ModifyTopic(req, cb) {
|
|
451
481
|
return this.request("ModifyTopic", req, cb);
|
|
452
482
|
}
|
|
483
|
+
/**
|
|
484
|
+
* 本接口用于获取仪表盘订阅列表,支持分页
|
|
485
|
+
*/
|
|
486
|
+
async DescribeDashboardSubscribes(req, cb) {
|
|
487
|
+
return this.request("DescribeDashboardSubscribes", req, cb);
|
|
488
|
+
}
|
|
453
489
|
/**
|
|
454
490
|
* 修改机器组
|
|
455
491
|
*/
|
|
@@ -682,12 +718,6 @@ cls.pb.cc cls.pb.h cls.proto
|
|
|
682
718
|
async ModifyLogset(req, cb) {
|
|
683
719
|
return this.request("ModifyLogset", req, cb);
|
|
684
720
|
}
|
|
685
|
-
/**
|
|
686
|
-
* 获取机器组绑定的采集规则配置
|
|
687
|
-
*/
|
|
688
|
-
async DescribeMachineGroupConfigs(req, cb) {
|
|
689
|
-
return this.request("DescribeMachineGroupConfigs", req, cb);
|
|
690
|
-
}
|
|
691
721
|
/**
|
|
692
722
|
* 本接口用于修改数据加工任务
|
|
693
723
|
*/
|
|
@@ -1,11 +1,42 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* DescribeAlarmNotices请求参数结构体
|
|
3
3
|
*/
|
|
4
|
-
export interface
|
|
4
|
+
export interface DescribeAlarmNoticesRequest {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* <li> name
|
|
7
|
+
按照【通知渠道组名称】进行过滤。
|
|
8
|
+
类型:String
|
|
9
|
+
必选:否</li>
|
|
10
|
+
<li> alarmNoticeId
|
|
11
|
+
按照【通知渠道组ID】进行过滤。
|
|
12
|
+
类型:String
|
|
13
|
+
必选:否</li>
|
|
14
|
+
<li> uid
|
|
15
|
+
按照【接收用户ID】进行过滤。
|
|
16
|
+
类型:String
|
|
17
|
+
必选:否</li>
|
|
18
|
+
<li> groupId
|
|
19
|
+
按照【接收用户组ID】进行过滤。
|
|
20
|
+
类型:String
|
|
21
|
+
必选:否</li>
|
|
22
|
+
|
|
23
|
+
<li> deliverFlag
|
|
24
|
+
按照【投递状态】进行过滤。
|
|
25
|
+
类型:String
|
|
26
|
+
必选:否
|
|
27
|
+
可选值: "1":未启用, "2": 已启用, "3":投递异常</li>
|
|
28
|
+
|
|
29
|
+
每次请求的Filters的上限为10,Filter.Values的上限为5。
|
|
7
30
|
*/
|
|
8
|
-
|
|
31
|
+
Filters?: Array<Filter>;
|
|
32
|
+
/**
|
|
33
|
+
* 分页的偏移量,默认值为0。
|
|
34
|
+
*/
|
|
35
|
+
Offset?: number;
|
|
36
|
+
/**
|
|
37
|
+
* 分页单页限制数目,默认值为20,最大值100。
|
|
38
|
+
*/
|
|
39
|
+
Limit?: number;
|
|
9
40
|
}
|
|
10
41
|
/**
|
|
11
42
|
* CreateAlarm返回参数结构体
|
|
@@ -287,6 +318,15 @@ export interface DeleteLogsetResponse {
|
|
|
287
318
|
*/
|
|
288
319
|
RequestId?: string;
|
|
289
320
|
}
|
|
321
|
+
/**
|
|
322
|
+
* UploadLog返回参数结构体
|
|
323
|
+
*/
|
|
324
|
+
export interface UploadLogResponse {
|
|
325
|
+
/**
|
|
326
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
327
|
+
*/
|
|
328
|
+
RequestId?: string;
|
|
329
|
+
}
|
|
290
330
|
/**
|
|
291
331
|
* Parquet内容描述
|
|
292
332
|
*/
|
|
@@ -327,7 +367,7 @@ export interface DescribeShipperTasksResponse {
|
|
|
327
367
|
* 投递任务列表
|
|
328
368
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
329
369
|
*/
|
|
330
|
-
Tasks
|
|
370
|
+
Tasks?: Array<ShipperTaskInfo>;
|
|
331
371
|
/**
|
|
332
372
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
333
373
|
*/
|
|
@@ -842,6 +882,31 @@ export interface ConfigInfo {
|
|
|
842
882
|
*/
|
|
843
883
|
AdvancedConfig?: string;
|
|
844
884
|
}
|
|
885
|
+
/**
|
|
886
|
+
* QueryRangeMetric请求参数结构体
|
|
887
|
+
*/
|
|
888
|
+
export interface QueryRangeMetricRequest {
|
|
889
|
+
/**
|
|
890
|
+
* 指标主题ID
|
|
891
|
+
*/
|
|
892
|
+
TopicId: string;
|
|
893
|
+
/**
|
|
894
|
+
* 查询语句,使用PromQL语法
|
|
895
|
+
*/
|
|
896
|
+
Query: string;
|
|
897
|
+
/**
|
|
898
|
+
* 查询起始时间,秒级Unix时间戳
|
|
899
|
+
*/
|
|
900
|
+
Start: number;
|
|
901
|
+
/**
|
|
902
|
+
* 查询结束时间,秒级Unix时间戳
|
|
903
|
+
*/
|
|
904
|
+
End: number;
|
|
905
|
+
/**
|
|
906
|
+
* 查询时间间隔,单位秒
|
|
907
|
+
*/
|
|
908
|
+
Step: number;
|
|
909
|
+
}
|
|
845
910
|
/**
|
|
846
911
|
* ModifyAlarm返回参数结构体
|
|
847
912
|
*/
|
|
@@ -860,11 +925,13 @@ export interface DescribeShipperTasksRequest {
|
|
|
860
925
|
*/
|
|
861
926
|
ShipperId: string;
|
|
862
927
|
/**
|
|
863
|
-
* 查询的开始时间戳,支持最近3天的查询,
|
|
928
|
+
* 查询的开始时间戳,支持最近3天的查询, 毫秒。
|
|
929
|
+
StartTime必须小于EndTime
|
|
864
930
|
*/
|
|
865
931
|
StartTime: number;
|
|
866
932
|
/**
|
|
867
|
-
* 查询的结束时间戳,
|
|
933
|
+
* 查询的结束时间戳, 毫秒。
|
|
934
|
+
StartTime必须小于EndTime
|
|
868
935
|
*/
|
|
869
936
|
EndTime: number;
|
|
870
937
|
}
|
|
@@ -1732,6 +1799,10 @@ export interface DeleteConfigFromMachineGroupResponse {
|
|
|
1732
1799
|
*/
|
|
1733
1800
|
RequestId?: string;
|
|
1734
1801
|
}
|
|
1802
|
+
/**
|
|
1803
|
+
* ModifyDashboardSubscribe请求参数结构体
|
|
1804
|
+
*/
|
|
1805
|
+
export declare type ModifyDashboardSubscribeRequest = null;
|
|
1735
1806
|
/**
|
|
1736
1807
|
* CreateConsumer返回参数结构体
|
|
1737
1808
|
*/
|
|
@@ -1776,6 +1847,10 @@ export interface DataTransformResouceInfo {
|
|
|
1776
1847
|
*/
|
|
1777
1848
|
Alias: string;
|
|
1778
1849
|
}
|
|
1850
|
+
/**
|
|
1851
|
+
* CreateDashboardSubscribe请求参数结构体
|
|
1852
|
+
*/
|
|
1853
|
+
export declare type CreateDashboardSubscribeRequest = null;
|
|
1779
1854
|
/**
|
|
1780
1855
|
* DeleteMachineGroup请求参数结构体
|
|
1781
1856
|
*/
|
|
@@ -1845,6 +1920,10 @@ export interface DescribeAlarmShieldsRequest {
|
|
|
1845
1920
|
*/
|
|
1846
1921
|
Limit?: number;
|
|
1847
1922
|
}
|
|
1923
|
+
/**
|
|
1924
|
+
* SearchDashboardSubscribe请求参数结构体
|
|
1925
|
+
*/
|
|
1926
|
+
export declare type SearchDashboardSubscribeRequest = null;
|
|
1848
1927
|
/**
|
|
1849
1928
|
* DescribePartitions返回参数结构体
|
|
1850
1929
|
*/
|
|
@@ -2170,6 +2249,10 @@ export interface DeleteExportResponse {
|
|
|
2170
2249
|
*/
|
|
2171
2250
|
RequestId?: string;
|
|
2172
2251
|
}
|
|
2252
|
+
/**
|
|
2253
|
+
* DescribeDashboardSubscribes请求参数结构体
|
|
2254
|
+
*/
|
|
2255
|
+
export declare type DescribeDashboardSubscribesRequest = null;
|
|
2173
2256
|
/**
|
|
2174
2257
|
* 多日志主题检索topic信息
|
|
2175
2258
|
*/
|
|
@@ -2542,63 +2625,13 @@ export interface CreateAlarmShieldRequest {
|
|
|
2542
2625
|
Rule?: string;
|
|
2543
2626
|
}
|
|
2544
2627
|
/**
|
|
2545
|
-
*
|
|
2628
|
+
* DeleteDashboardSubscribe返回参数结构体
|
|
2546
2629
|
*/
|
|
2547
|
-
export interface
|
|
2548
|
-
/**
|
|
2549
|
-
* 机器组ID
|
|
2550
|
-
*/
|
|
2551
|
-
GroupId?: string;
|
|
2552
|
-
/**
|
|
2553
|
-
* 机器组名称
|
|
2554
|
-
*/
|
|
2555
|
-
GroupName?: string;
|
|
2556
|
-
/**
|
|
2557
|
-
* 机器组类型
|
|
2558
|
-
*/
|
|
2559
|
-
MachineGroupType?: MachineGroupTypeInfo;
|
|
2560
|
-
/**
|
|
2561
|
-
* 创建时间
|
|
2562
|
-
*/
|
|
2563
|
-
CreateTime?: string;
|
|
2630
|
+
export interface DeleteDashboardSubscribeResponse {
|
|
2564
2631
|
/**
|
|
2565
|
-
*
|
|
2566
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2567
|
-
*/
|
|
2568
|
-
Tags?: Array<Tag>;
|
|
2569
|
-
/**
|
|
2570
|
-
* 是否开启机器组自动更新
|
|
2571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2572
|
-
*/
|
|
2573
|
-
AutoUpdate?: string;
|
|
2574
|
-
/**
|
|
2575
|
-
* 升级开始时间,建议业务低峰期升级LogListener
|
|
2576
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2577
|
-
*/
|
|
2578
|
-
UpdateStartTime?: string;
|
|
2579
|
-
/**
|
|
2580
|
-
* 升级结束时间,建议业务低峰期升级LogListener
|
|
2581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2582
|
-
*/
|
|
2583
|
-
UpdateEndTime?: string;
|
|
2584
|
-
/**
|
|
2585
|
-
* 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
|
2586
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2587
|
-
*/
|
|
2588
|
-
ServiceLogging?: boolean;
|
|
2589
|
-
/**
|
|
2590
|
-
* 机器组中机器离线定期清理时间
|
|
2591
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2592
|
-
*/
|
|
2593
|
-
DelayCleanupTime?: number;
|
|
2594
|
-
/**
|
|
2595
|
-
* 机器组元数据信息列表
|
|
2596
|
-
*/
|
|
2597
|
-
MetaTags?: Array<MetaTagInfo>;
|
|
2598
|
-
/**
|
|
2599
|
-
* 操作系统类型,0: Linux,1: windows
|
|
2632
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2600
2633
|
*/
|
|
2601
|
-
|
|
2634
|
+
RequestId?: string;
|
|
2602
2635
|
}
|
|
2603
2636
|
/**
|
|
2604
2637
|
* DescribeLogHistogram返回参数结构体
|
|
@@ -2780,6 +2813,15 @@ export interface DescribeTopicsRequest {
|
|
|
2780
2813
|
*/
|
|
2781
2814
|
BizType?: number;
|
|
2782
2815
|
}
|
|
2816
|
+
/**
|
|
2817
|
+
* DeleteConsumer返回参数结构体
|
|
2818
|
+
*/
|
|
2819
|
+
export interface DeleteConsumerResponse {
|
|
2820
|
+
/**
|
|
2821
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2822
|
+
*/
|
|
2823
|
+
RequestId?: string;
|
|
2824
|
+
}
|
|
2783
2825
|
/**
|
|
2784
2826
|
* GetAlarmLog返回参数结构体
|
|
2785
2827
|
*/
|
|
@@ -2831,9 +2873,9 @@ export interface GetAlarmLogResponse {
|
|
|
2831
2873
|
RequestId?: string;
|
|
2832
2874
|
}
|
|
2833
2875
|
/**
|
|
2834
|
-
*
|
|
2876
|
+
* CreateDashboardSubscribe返回参数结构体
|
|
2835
2877
|
*/
|
|
2836
|
-
export interface
|
|
2878
|
+
export interface CreateDashboardSubscribeResponse {
|
|
2837
2879
|
/**
|
|
2838
2880
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2839
2881
|
*/
|
|
@@ -3546,29 +3588,13 @@ export interface CreateExportRequest {
|
|
|
3546
3588
|
SyntaxRule?: number;
|
|
3547
3589
|
}
|
|
3548
3590
|
/**
|
|
3549
|
-
*
|
|
3591
|
+
* ModifyDashboardSubscribe返回参数结构体
|
|
3550
3592
|
*/
|
|
3551
|
-
export interface
|
|
3552
|
-
/**
|
|
3553
|
-
* 指标主题ID
|
|
3554
|
-
*/
|
|
3555
|
-
TopicId: string;
|
|
3556
|
-
/**
|
|
3557
|
-
* 查询语句,使用PromQL语法
|
|
3558
|
-
*/
|
|
3559
|
-
Query: string;
|
|
3560
|
-
/**
|
|
3561
|
-
* 查询起始时间,秒级Unix时间戳
|
|
3562
|
-
*/
|
|
3563
|
-
Start: number;
|
|
3564
|
-
/**
|
|
3565
|
-
* 查询结束时间,秒级Unix时间戳
|
|
3566
|
-
*/
|
|
3567
|
-
End: number;
|
|
3593
|
+
export interface ModifyDashboardSubscribeResponse {
|
|
3568
3594
|
/**
|
|
3569
|
-
*
|
|
3595
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3570
3596
|
*/
|
|
3571
|
-
|
|
3597
|
+
RequestId?: string;
|
|
3572
3598
|
}
|
|
3573
3599
|
/**
|
|
3574
3600
|
* DescribeAlarmNotices返回参数结构体
|
|
@@ -5269,11 +5295,13 @@ export interface ModifyKafkaConsumerResponse {
|
|
|
5269
5295
|
*/
|
|
5270
5296
|
export interface MachineGroupTypeInfo {
|
|
5271
5297
|
/**
|
|
5272
|
-
*
|
|
5298
|
+
* 机器组类型。支持 ip 和 label。
|
|
5299
|
+
- ip:表示该机器组Values中存的是采集机器的ip地址
|
|
5300
|
+
- label:表示该机器组Values中存储的是机器的标签
|
|
5273
5301
|
*/
|
|
5274
5302
|
Type: string;
|
|
5275
5303
|
/**
|
|
5276
|
-
*
|
|
5304
|
+
* 机器描述列表。
|
|
5277
5305
|
*/
|
|
5278
5306
|
Values?: Array<string>;
|
|
5279
5307
|
}
|
|
@@ -5460,6 +5488,15 @@ export interface ShipperInfo {
|
|
|
5460
5488
|
*/
|
|
5461
5489
|
StorageType?: string;
|
|
5462
5490
|
}
|
|
5491
|
+
/**
|
|
5492
|
+
* DescribeDashboardSubscribes返回参数结构体
|
|
5493
|
+
*/
|
|
5494
|
+
export interface DescribeDashboardSubscribesResponse {
|
|
5495
|
+
/**
|
|
5496
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5497
|
+
*/
|
|
5498
|
+
RequestId?: string;
|
|
5499
|
+
}
|
|
5463
5500
|
/**
|
|
5464
5501
|
* CreateCosRecharge返回参数结构体
|
|
5465
5502
|
*/
|
|
@@ -5510,6 +5547,15 @@ export interface KeyValueInfo {
|
|
|
5510
5547
|
*/
|
|
5511
5548
|
Value: ValueInfo;
|
|
5512
5549
|
}
|
|
5550
|
+
/**
|
|
5551
|
+
* SearchDashboardSubscribe返回参数结构体
|
|
5552
|
+
*/
|
|
5553
|
+
export interface SearchDashboardSubscribeResponse {
|
|
5554
|
+
/**
|
|
5555
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5556
|
+
*/
|
|
5557
|
+
RequestId?: string;
|
|
5558
|
+
}
|
|
5513
5559
|
/**
|
|
5514
5560
|
* AddMachineGroupInfo返回参数结构体
|
|
5515
5561
|
*/
|
|
@@ -5532,7 +5578,7 @@ export interface ModifyMachineGroupRequest {
|
|
|
5532
5578
|
*/
|
|
5533
5579
|
GroupName?: string;
|
|
5534
5580
|
/**
|
|
5535
|
-
*
|
|
5581
|
+
* 机器组类型。Type:ip,Values中为ip字符串列表机器组;Type:label,Values中为标签字符串列表机器组。
|
|
5536
5582
|
*/
|
|
5537
5583
|
MachineGroupType?: MachineGroupTypeInfo;
|
|
5538
5584
|
/**
|
|
@@ -5556,7 +5602,7 @@ export interface ModifyMachineGroupRequest {
|
|
|
5556
5602
|
*/
|
|
5557
5603
|
ServiceLogging?: boolean;
|
|
5558
5604
|
/**
|
|
5559
|
-
*
|
|
5605
|
+
* 机器组中机器定期离线清理时间。单位:天
|
|
5560
5606
|
*/
|
|
5561
5607
|
DelayCleanupTime?: number;
|
|
5562
5608
|
/**
|
|
@@ -5565,45 +5611,9 @@ export interface ModifyMachineGroupRequest {
|
|
|
5565
5611
|
MetaTags?: Array<MetaTagInfo>;
|
|
5566
5612
|
}
|
|
5567
5613
|
/**
|
|
5568
|
-
*
|
|
5614
|
+
* DeleteDashboardSubscribe请求参数结构体
|
|
5569
5615
|
*/
|
|
5570
|
-
export
|
|
5571
|
-
/**
|
|
5572
|
-
* <li> name
|
|
5573
|
-
按照【通知渠道组名称】进行过滤。
|
|
5574
|
-
类型:String
|
|
5575
|
-
必选:否</li>
|
|
5576
|
-
<li> alarmNoticeId
|
|
5577
|
-
按照【通知渠道组ID】进行过滤。
|
|
5578
|
-
类型:String
|
|
5579
|
-
必选:否</li>
|
|
5580
|
-
<li> uid
|
|
5581
|
-
按照【接收用户ID】进行过滤。
|
|
5582
|
-
类型:String
|
|
5583
|
-
必选:否</li>
|
|
5584
|
-
<li> groupId
|
|
5585
|
-
按照【接收用户组ID】进行过滤。
|
|
5586
|
-
类型:String
|
|
5587
|
-
必选:否</li>
|
|
5588
|
-
|
|
5589
|
-
<li> deliverFlag
|
|
5590
|
-
按照【投递状态】进行过滤。
|
|
5591
|
-
类型:String
|
|
5592
|
-
必选:否
|
|
5593
|
-
可选值: "1":未启用, "2": 已启用, "3":投递异常</li>
|
|
5594
|
-
|
|
5595
|
-
每次请求的Filters的上限为10,Filter.Values的上限为5。
|
|
5596
|
-
*/
|
|
5597
|
-
Filters?: Array<Filter>;
|
|
5598
|
-
/**
|
|
5599
|
-
* 分页的偏移量,默认值为0。
|
|
5600
|
-
*/
|
|
5601
|
-
Offset?: number;
|
|
5602
|
-
/**
|
|
5603
|
-
* 分页单页限制数目,默认值为20,最大值100。
|
|
5604
|
-
*/
|
|
5605
|
-
Limit?: number;
|
|
5606
|
-
}
|
|
5616
|
+
export declare type DeleteDashboardSubscribeRequest = null;
|
|
5607
5617
|
/**
|
|
5608
5618
|
* 告警通知接收者信息
|
|
5609
5619
|
*/
|
|
@@ -5974,7 +5984,7 @@ export interface CreateMachineGroupRequest {
|
|
|
5974
5984
|
*/
|
|
5975
5985
|
GroupName: string;
|
|
5976
5986
|
/**
|
|
5977
|
-
*
|
|
5987
|
+
* 创建机器组类型。Type:ip,Values中为ip字符串列表创建机器组;Type:label,Values中为标签字符串列表创建机器组。
|
|
5978
5988
|
*/
|
|
5979
5989
|
MachineGroupType: MachineGroupTypeInfo;
|
|
5980
5990
|
/**
|
|
@@ -5982,7 +5992,7 @@ export interface CreateMachineGroupRequest {
|
|
|
5982
5992
|
*/
|
|
5983
5993
|
Tags?: Array<Tag>;
|
|
5984
5994
|
/**
|
|
5985
|
-
*
|
|
5995
|
+
* 是否开启机器组自动更新。默认false
|
|
5986
5996
|
*/
|
|
5987
5997
|
AutoUpdate?: boolean;
|
|
5988
5998
|
/**
|
|
@@ -5994,11 +6004,11 @@ export interface CreateMachineGroupRequest {
|
|
|
5994
6004
|
*/
|
|
5995
6005
|
UpdateEndTime?: string;
|
|
5996
6006
|
/**
|
|
5997
|
-
* 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business
|
|
6007
|
+
* 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费。默认false
|
|
5998
6008
|
*/
|
|
5999
6009
|
ServiceLogging?: boolean;
|
|
6000
6010
|
/**
|
|
6001
|
-
*
|
|
6011
|
+
* 机器组中机器离线清理时间。单位:天
|
|
6002
6012
|
*/
|
|
6003
6013
|
DelayCleanupTime?: number;
|
|
6004
6014
|
/**
|
|
@@ -6446,7 +6456,7 @@ export interface CreateDataTransformRequest {
|
|
|
6446
6456
|
*/
|
|
6447
6457
|
Name: string;
|
|
6448
6458
|
/**
|
|
6449
|
-
*
|
|
6459
|
+
* 加工语句。[创建加工任务](https://cloud.tencent.com/document/product/614/63940) [函数总览](https://cloud.tencent.com/document/product/614/70395)
|
|
6450
6460
|
*/
|
|
6451
6461
|
EtlContent: string;
|
|
6452
6462
|
/**
|
|
@@ -6711,6 +6721,65 @@ export interface DescribeKafkaConsumerRequest {
|
|
|
6711
6721
|
*/
|
|
6712
6722
|
FromTopicId: string;
|
|
6713
6723
|
}
|
|
6724
|
+
/**
|
|
6725
|
+
* 机器组信息
|
|
6726
|
+
*/
|
|
6727
|
+
export interface MachineGroupInfo {
|
|
6728
|
+
/**
|
|
6729
|
+
* 机器组ID
|
|
6730
|
+
*/
|
|
6731
|
+
GroupId?: string;
|
|
6732
|
+
/**
|
|
6733
|
+
* 机器组名称
|
|
6734
|
+
*/
|
|
6735
|
+
GroupName?: string;
|
|
6736
|
+
/**
|
|
6737
|
+
* 机器组类型
|
|
6738
|
+
*/
|
|
6739
|
+
MachineGroupType?: MachineGroupTypeInfo;
|
|
6740
|
+
/**
|
|
6741
|
+
* 创建时间
|
|
6742
|
+
*/
|
|
6743
|
+
CreateTime?: string;
|
|
6744
|
+
/**
|
|
6745
|
+
* 机器组绑定的标签列表
|
|
6746
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6747
|
+
*/
|
|
6748
|
+
Tags?: Array<Tag>;
|
|
6749
|
+
/**
|
|
6750
|
+
* 是否开启机器组自动更新
|
|
6751
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6752
|
+
*/
|
|
6753
|
+
AutoUpdate?: string;
|
|
6754
|
+
/**
|
|
6755
|
+
* 升级开始时间,建议业务低峰期升级LogListener
|
|
6756
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6757
|
+
*/
|
|
6758
|
+
UpdateStartTime?: string;
|
|
6759
|
+
/**
|
|
6760
|
+
* 升级结束时间,建议业务低峰期升级LogListener
|
|
6761
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6762
|
+
*/
|
|
6763
|
+
UpdateEndTime?: string;
|
|
6764
|
+
/**
|
|
6765
|
+
* 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
|
6766
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6767
|
+
*/
|
|
6768
|
+
ServiceLogging?: boolean;
|
|
6769
|
+
/**
|
|
6770
|
+
* 机器组中机器离线定期清理时间
|
|
6771
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6772
|
+
*/
|
|
6773
|
+
DelayCleanupTime?: number;
|
|
6774
|
+
/**
|
|
6775
|
+
* 机器组元数据信息列表
|
|
6776
|
+
*/
|
|
6777
|
+
MetaTags?: Array<MetaTagInfo>;
|
|
6778
|
+
/**
|
|
6779
|
+
* 操作系统类型,0: Linux,1: windows
|
|
6780
|
+
*/
|
|
6781
|
+
OSType?: number;
|
|
6782
|
+
}
|
|
6714
6783
|
/**
|
|
6715
6784
|
* ModifyDataTransform返回参数结构体
|
|
6716
6785
|
*/
|
|
@@ -10,7 +10,7 @@ export declare class Client extends AbstractClient {
|
|
|
10
10
|
/**
|
|
11
11
|
* 本接口用于提交图片文件进行异步智能审核任务。使用前请您使用腾讯云主账号登录控制台 [开通图片内容安全服务](https://console.cloud.tencent.com/cms/image/package) 并调整好对应的业务配置。
|
|
12
12
|
### 接口使用说明:
|
|
13
|
-
- 前往“[内容安全控制台-图片内容安全](https://console.cloud.tencent.com/cms/image/package)”开启使用图片内容安全服务,首次开通服务的用户可免费领用试用套餐包,包含**
|
|
13
|
+
- 前往“[内容安全控制台-图片内容安全](https://console.cloud.tencent.com/cms/image/package)”开启使用图片内容安全服务,首次开通服务的用户可免费领用试用套餐包,包含**3000张图片**识别额度,有效期为15天。
|
|
14
14
|
- 该接口为收费接口,计费方式敬请参见 [腾讯云图片内容安全定价](https://cloud.tencent.com/product/ims/pricing)。
|
|
15
15
|
|
|
16
16
|
### 接口功能说明:
|
|
@@ -30,7 +30,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
30
30
|
/**
|
|
31
31
|
* 本接口用于提交图片文件进行异步智能审核任务。使用前请您使用腾讯云主账号登录控制台 [开通图片内容安全服务](https://console.cloud.tencent.com/cms/image/package) 并调整好对应的业务配置。
|
|
32
32
|
### 接口使用说明:
|
|
33
|
-
- 前往“[内容安全控制台-图片内容安全](https://console.cloud.tencent.com/cms/image/package)”开启使用图片内容安全服务,首次开通服务的用户可免费领用试用套餐包,包含**
|
|
33
|
+
- 前往“[内容安全控制台-图片内容安全](https://console.cloud.tencent.com/cms/image/package)”开启使用图片内容安全服务,首次开通服务的用户可免费领用试用套餐包,包含**3000张图片**识别额度,有效期为15天。
|
|
34
34
|
- 该接口为收费接口,计费方式敬请参见 [腾讯云图片内容安全定价](https://cloud.tencent.com/product/ims/pricing)。
|
|
35
35
|
|
|
36
36
|
### 接口功能说明:
|