tencentcloud-sdk-nodejs 4.1.220 → 4.1.221
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/es/common/sdk_version.js +1 -1
- package/es/services/cls/v20201016/cls_client.js +18 -6
- package/es/services/mps/v20190612/mps_client.js +6 -0
- package/es/services/sms/v20210111/sms_client.js +3 -0
- package/es/services/tcss/v20201101/tcss_client.js +18 -0
- package/es/services/tione/v20211111/tione_client.js +5 -2
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +421 -235
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +37 -47
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +23 -7
- package/tencentcloud/services/cls/v20201016/cls_client.js +33 -9
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +290 -100
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +48 -55
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +1 -1
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +256 -197
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +11 -6
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +9 -1
- package/tencentcloud/services/mps/v20190612/mps_client.js +12 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +158 -55
- package/tencentcloud/services/ses/v20201002/ses_client.d.ts +2 -1
- package/tencentcloud/services/ses/v20201002/ses_client.js +2 -1
- package/tencentcloud/services/sms/v20210111/sms_client.d.ts +5 -1
- package/tencentcloud/services/sms/v20210111/sms_client.js +6 -0
- package/tencentcloud/services/sms/v20210111/sms_models.d.ts +104 -20
- package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +25 -1
- package/tencentcloud/services/tcss/v20201101/tcss_client.js +36 -0
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +415 -119
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +14 -12
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +7 -3
- package/tencentcloud/services/tione/v20211111/tione_client.js +9 -3
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +74 -61
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +4 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +15 -0
|
@@ -194,6 +194,39 @@ export interface CreateRebuildIndexTaskResponse {
|
|
|
194
194
|
*/
|
|
195
195
|
RequestId?: string;
|
|
196
196
|
}
|
|
197
|
+
/**
|
|
198
|
+
* CreateSearchView请求参数结构体
|
|
199
|
+
*/
|
|
200
|
+
export interface CreateSearchViewRequest {
|
|
201
|
+
/**
|
|
202
|
+
* <p>日志集id</p><p>标记视图所属该日志集,用于查询日志集下的查询视图配置</p>
|
|
203
|
+
*/
|
|
204
|
+
LogsetId: string;
|
|
205
|
+
/**
|
|
206
|
+
* <p>日志集所属地域</p><p>参数格式:ap-guangzhou</p>
|
|
207
|
+
*/
|
|
208
|
+
LogsetRegion: string;
|
|
209
|
+
/**
|
|
210
|
+
* <p>视图名称</p><p>入参限制:最大支持255字符,不能包含"|"字符。</p>
|
|
211
|
+
*/
|
|
212
|
+
ViewName: string;
|
|
213
|
+
/**
|
|
214
|
+
* <p>视图类型</p><p>枚举值:</p><ul><li>log: 日志主题</li><li>metric: 指标主题</li></ul><p>Topics字段中配置的主题信息应该与ViewType类型匹配</p>
|
|
215
|
+
*/
|
|
216
|
+
ViewType: string;
|
|
217
|
+
/**
|
|
218
|
+
* <p>视图主题配置信息</p><p>Topics字段中配置的主题信息应该与ViewType类型匹配</p>
|
|
219
|
+
*/
|
|
220
|
+
Topics: Array<ViewSearchTopic>;
|
|
221
|
+
/**
|
|
222
|
+
* <p>配置描述信息</p>
|
|
223
|
+
*/
|
|
224
|
+
Description?: string;
|
|
225
|
+
/**
|
|
226
|
+
* <p>自定义视图id前缀</p><p>参数格式:<code>^[a-z0-9][a-z0-9_-]{1,61}[a-z0-9]$</code></p><p>配置成功之后ViewId格式: ${ViewIdPrefix}-view</p>
|
|
227
|
+
*/
|
|
228
|
+
ViewIdPrefix?: string;
|
|
229
|
+
}
|
|
197
230
|
/**
|
|
198
231
|
* CheckFunction请求参数结构体
|
|
199
232
|
*/
|
|
@@ -4044,52 +4077,13 @@ export interface OpenKafkaConsumerResponse {
|
|
|
4044
4077
|
RequestId?: string;
|
|
4045
4078
|
}
|
|
4046
4079
|
/**
|
|
4047
|
-
*
|
|
4080
|
+
* DeleteSearchView返回参数结构体
|
|
4048
4081
|
*/
|
|
4049
|
-
export interface
|
|
4082
|
+
export interface DeleteSearchViewResponse {
|
|
4050
4083
|
/**
|
|
4051
|
-
*
|
|
4052
|
-
*/
|
|
4053
|
-
LogsetId?: string;
|
|
4054
|
-
/**
|
|
4055
|
-
* 日志集名称。
|
|
4056
|
-
*/
|
|
4057
|
-
LogsetName?: string;
|
|
4058
|
-
/**
|
|
4059
|
-
* 日志主题ID。
|
|
4060
|
-
*/
|
|
4061
|
-
TopicId?: string;
|
|
4062
|
-
/**
|
|
4063
|
-
* 日志主题名称。
|
|
4064
|
-
*/
|
|
4065
|
-
TopicName?: string;
|
|
4066
|
-
/**
|
|
4067
|
-
* 查询语句。
|
|
4068
|
-
*/
|
|
4069
|
-
Query?: string;
|
|
4070
|
-
/**
|
|
4071
|
-
* 告警对象序号。
|
|
4072
|
-
*/
|
|
4073
|
-
Number?: number;
|
|
4074
|
-
/**
|
|
4075
|
-
* 查询范围起始时间相对于告警执行时间的偏移,单位为分钟,取值为非正,最大值为0,最小值为-1440。
|
|
4076
|
-
*/
|
|
4077
|
-
StartTimeOffset?: number;
|
|
4078
|
-
/**
|
|
4079
|
-
* 查询范围终止时间相对于告警执行时间的偏移,单位为分钟,取值为非正,须大于StartTimeOffset,最大值为0,最小值为-1440。
|
|
4080
|
-
*/
|
|
4081
|
-
EndTimeOffset?: number;
|
|
4082
|
-
/**
|
|
4083
|
-
* 检索语法规则,默认值为0。
|
|
4084
|
-
0:Lucene语法,1:CQL语法。
|
|
4085
|
-
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
|
4086
|
-
*/
|
|
4087
|
-
SyntaxRule?: number;
|
|
4088
|
-
/**
|
|
4089
|
-
* 主题类型。
|
|
4090
|
-
0: 日志主题,1: 指标主题
|
|
4084
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4091
4085
|
*/
|
|
4092
|
-
|
|
4086
|
+
RequestId?: string;
|
|
4093
4087
|
}
|
|
4094
4088
|
/**
|
|
4095
4089
|
* CreateSplunkDeliver返回参数结构体
|
|
@@ -4209,6 +4203,15 @@ export interface DescribeMachineGroupsRequest {
|
|
|
4209
4203
|
*/
|
|
4210
4204
|
Limit?: number;
|
|
4211
4205
|
}
|
|
4206
|
+
/**
|
|
4207
|
+
* ModifySearchView返回参数结构体
|
|
4208
|
+
*/
|
|
4209
|
+
export interface ModifySearchViewResponse {
|
|
4210
|
+
/**
|
|
4211
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4212
|
+
*/
|
|
4213
|
+
RequestId?: string;
|
|
4214
|
+
}
|
|
4212
4215
|
/**
|
|
4213
4216
|
* DescribeConfigs返回参数结构体
|
|
4214
4217
|
*/
|
|
@@ -5324,6 +5327,15 @@ export interface ModifyMetricConfigResponse {
|
|
|
5324
5327
|
*/
|
|
5325
5328
|
RequestId?: string;
|
|
5326
5329
|
}
|
|
5330
|
+
/**
|
|
5331
|
+
* DeleteSearchView请求参数结构体
|
|
5332
|
+
*/
|
|
5333
|
+
export interface DeleteSearchViewRequest {
|
|
5334
|
+
/**
|
|
5335
|
+
* <p>视图ID</p>
|
|
5336
|
+
*/
|
|
5337
|
+
ViewId: string;
|
|
5338
|
+
}
|
|
5327
5339
|
/**
|
|
5328
5340
|
* DescribeConsumer返回参数结构体
|
|
5329
5341
|
*/
|
|
@@ -5416,6 +5428,70 @@ export interface DescribeClusterBaseMetricConfigsResponse {
|
|
|
5416
5428
|
*/
|
|
5417
5429
|
RequestId?: string;
|
|
5418
5430
|
}
|
|
5431
|
+
/**
|
|
5432
|
+
* ModifyKafkaRecharge请求参数结构体
|
|
5433
|
+
*/
|
|
5434
|
+
export interface ModifyKafkaRechargeRequest {
|
|
5435
|
+
/**
|
|
5436
|
+
* 导入配置Id。
|
|
5437
|
+
- 通过 [创建Kafka数据订阅任务](https://cloud.tencent.com/document/product/614/94448)获取Kafka导入配置Id。
|
|
5438
|
+
- 通过 [获取Kafka数据订阅任务列表](https://cloud.tencent.com/document/product/614/94446)获取Kafka导入配置Id。
|
|
5439
|
+
*/
|
|
5440
|
+
Id: string;
|
|
5441
|
+
/**
|
|
5442
|
+
* 导入CLS目标TopicId。
|
|
5443
|
+
- 通过 [获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
5444
|
+
- 通过 [创建日志主题](https://cloud.tencent.com/document/product/614/56456)获取日志主题Id。
|
|
5445
|
+
*/
|
|
5446
|
+
TopicId: string;
|
|
5447
|
+
/**
|
|
5448
|
+
* Kafka导入配置名称
|
|
5449
|
+
*/
|
|
5450
|
+
Name?: string;
|
|
5451
|
+
/**
|
|
5452
|
+
* 导入Kafka类型,0:腾讯云CKafka:1:用户自建Kafka。
|
|
5453
|
+
*/
|
|
5454
|
+
KafkaType?: number;
|
|
5455
|
+
/**
|
|
5456
|
+
* 腾讯云CKafka实例ID,KafkaType为0时必填。
|
|
5457
|
+
- 通过 [获取实例列表信息](https://cloud.tencent.com/document/product/597/40835) 获取实例id。
|
|
5458
|
+
*/
|
|
5459
|
+
KafkaInstance?: string;
|
|
5460
|
+
/**
|
|
5461
|
+
* 服务地址,KafkaType为1时必填。
|
|
5462
|
+
*/
|
|
5463
|
+
ServerAddr?: string;
|
|
5464
|
+
/**
|
|
5465
|
+
* ServerAddr是否为加密连接,KafkaType为1时必填。
|
|
5466
|
+
*/
|
|
5467
|
+
IsEncryptionAddr?: boolean;
|
|
5468
|
+
/**
|
|
5469
|
+
* 加密访问协议,KafkaType参数为1并且IsEncryptionAddr参数为true时必填。
|
|
5470
|
+
*/
|
|
5471
|
+
Protocol?: KafkaProtocolInfo;
|
|
5472
|
+
/**
|
|
5473
|
+
* 用户需要导入的Kafka相关topic列表,多个topic之间使用半角逗号隔开。
|
|
5474
|
+
|
|
5475
|
+
- Kafka类型为腾讯云CKafka时:通过 [获取主题列表](https://cloud.tencent.com/document/product/597/40847) 获取TopicName。
|
|
5476
|
+
*/
|
|
5477
|
+
UserKafkaTopics?: string;
|
|
5478
|
+
/**
|
|
5479
|
+
* 用户Kafka消费组名称
|
|
5480
|
+
*/
|
|
5481
|
+
ConsumerGroupName?: string;
|
|
5482
|
+
/**
|
|
5483
|
+
* 日志导入规则
|
|
5484
|
+
*/
|
|
5485
|
+
LogRechargeRule?: LogRechargeRuleInfo;
|
|
5486
|
+
/**
|
|
5487
|
+
* 导入控制,1:暂停;2:启动。
|
|
5488
|
+
*/
|
|
5489
|
+
StatusControl?: number;
|
|
5490
|
+
/**
|
|
5491
|
+
* 用户kafka拓展信息
|
|
5492
|
+
*/
|
|
5493
|
+
UserKafkaMeta?: UserKafkaMeta;
|
|
5494
|
+
}
|
|
5419
5495
|
/**
|
|
5420
5496
|
* CreateIndex返回参数结构体
|
|
5421
5497
|
*/
|
|
@@ -6516,6 +6592,47 @@ export interface MultiCondition {
|
|
|
6516
6592
|
*/
|
|
6517
6593
|
AlarmLevel?: number;
|
|
6518
6594
|
}
|
|
6595
|
+
/**
|
|
6596
|
+
* 检索视图信息
|
|
6597
|
+
*/
|
|
6598
|
+
export interface SearchViewInfo {
|
|
6599
|
+
/**
|
|
6600
|
+
* <p>视图ID</p>
|
|
6601
|
+
*/
|
|
6602
|
+
ViewId?: string;
|
|
6603
|
+
/**
|
|
6604
|
+
* <p>视图名称</p>
|
|
6605
|
+
*/
|
|
6606
|
+
ViewName?: string;
|
|
6607
|
+
/**
|
|
6608
|
+
* <p>视图类型</p><p>枚举值:</p><ul><li>log: 日志主题</li><li>metric: 指标主题</li></ul>
|
|
6609
|
+
*/
|
|
6610
|
+
ViewType?: string;
|
|
6611
|
+
/**
|
|
6612
|
+
* <p>日志集id</p><p>视图所属日志集</p>
|
|
6613
|
+
*/
|
|
6614
|
+
LogsetId?: string;
|
|
6615
|
+
/**
|
|
6616
|
+
* <p>日志集所属地域</p><p>参数格式:ap-guangzhou</p>
|
|
6617
|
+
*/
|
|
6618
|
+
LogsetRegion?: string;
|
|
6619
|
+
/**
|
|
6620
|
+
* <p>视图日志主题信息</p>
|
|
6621
|
+
*/
|
|
6622
|
+
Topics?: Array<ViewSearchTopic>;
|
|
6623
|
+
/**
|
|
6624
|
+
* <p>视图描述</p>
|
|
6625
|
+
*/
|
|
6626
|
+
Description?: string;
|
|
6627
|
+
/**
|
|
6628
|
+
* <p>创建时间</p><p>单位:秒级别时间戳</p>
|
|
6629
|
+
*/
|
|
6630
|
+
CreateTime?: number;
|
|
6631
|
+
/**
|
|
6632
|
+
* <p>更新时间</p><p>单位:秒级别时间戳</p>
|
|
6633
|
+
*/
|
|
6634
|
+
UpdateTime?: number;
|
|
6635
|
+
}
|
|
6519
6636
|
/**
|
|
6520
6637
|
* ModifyLogset返回参数结构体
|
|
6521
6638
|
*/
|
|
@@ -8910,6 +9027,31 @@ export interface NetworkApplicationInfo {
|
|
|
8910
9027
|
*/
|
|
8911
9028
|
UpdateTime?: number;
|
|
8912
9029
|
}
|
|
9030
|
+
/**
|
|
9031
|
+
* ModifySearchView请求参数结构体
|
|
9032
|
+
*/
|
|
9033
|
+
export interface ModifySearchViewRequest {
|
|
9034
|
+
/**
|
|
9035
|
+
* <p>视图ID</p>
|
|
9036
|
+
*/
|
|
9037
|
+
ViewId: string;
|
|
9038
|
+
/**
|
|
9039
|
+
* <p>视图名称</p><p>参数格式:<code>^[a-z0-9][a-z0-9_-]{1,61}[a-z0-9]$</code></p>
|
|
9040
|
+
*/
|
|
9041
|
+
ViewName?: string;
|
|
9042
|
+
/**
|
|
9043
|
+
* <p>视图类型</p><p>枚举值:</p><ul><li>log: 日志主题</li><li>metric: 指标主题</li></ul>
|
|
9044
|
+
*/
|
|
9045
|
+
ViewType?: string;
|
|
9046
|
+
/**
|
|
9047
|
+
* <p>视图主题配置信息</p>
|
|
9048
|
+
*/
|
|
9049
|
+
Topics?: Array<ViewSearchTopic>;
|
|
9050
|
+
/**
|
|
9051
|
+
* <p>配置描述信息</p>
|
|
9052
|
+
*/
|
|
9053
|
+
Description?: string;
|
|
9054
|
+
}
|
|
8913
9055
|
/**
|
|
8914
9056
|
* 回调地址
|
|
8915
9057
|
*/
|
|
@@ -10046,68 +10188,21 @@ export interface DescribeMachineGroupConfigsRequest {
|
|
|
10046
10188
|
GroupId: string;
|
|
10047
10189
|
}
|
|
10048
10190
|
/**
|
|
10049
|
-
*
|
|
10191
|
+
* DescribeSearchViews请求参数结构体
|
|
10050
10192
|
*/
|
|
10051
|
-
export interface
|
|
10193
|
+
export interface DescribeSearchViewsRequest {
|
|
10052
10194
|
/**
|
|
10053
|
-
*
|
|
10054
|
-
- 通过 [创建Kafka数据订阅任务](https://cloud.tencent.com/document/product/614/94448)获取Kafka导入配置Id。
|
|
10055
|
-
- 通过 [获取Kafka数据订阅任务列表](https://cloud.tencent.com/document/product/614/94446)获取Kafka导入配置Id。
|
|
10195
|
+
* <ul><li>viewId 按照【视图ID】进行过滤。 类型:String 必选:否 </li><li>viewName 按照【视图名称】进行过滤。 类型:String 必选:否 </li><li>logsetId 按照【日志集ID】进行过滤。 类型:String 必选:否<br>每次请求的Filters的上限为10,Filter.Values的上限为10。</li></ul>
|
|
10056
10196
|
*/
|
|
10057
|
-
|
|
10058
|
-
/**
|
|
10059
|
-
* 导入CLS目标TopicId。
|
|
10060
|
-
- 通过 [获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
10061
|
-
- 通过 [创建日志主题](https://cloud.tencent.com/document/product/614/56456)获取日志主题Id。
|
|
10062
|
-
*/
|
|
10063
|
-
TopicId: string;
|
|
10064
|
-
/**
|
|
10065
|
-
* Kafka导入配置名称
|
|
10066
|
-
*/
|
|
10067
|
-
Name?: string;
|
|
10068
|
-
/**
|
|
10069
|
-
* 导入Kafka类型,0:腾讯云CKafka:1:用户自建Kafka。
|
|
10070
|
-
*/
|
|
10071
|
-
KafkaType?: number;
|
|
10072
|
-
/**
|
|
10073
|
-
* 腾讯云CKafka实例ID,KafkaType为0时必填。
|
|
10074
|
-
- 通过 [获取实例列表信息](https://cloud.tencent.com/document/product/597/40835) 获取实例id。
|
|
10075
|
-
*/
|
|
10076
|
-
KafkaInstance?: string;
|
|
10077
|
-
/**
|
|
10078
|
-
* 服务地址,KafkaType为1时必填。
|
|
10079
|
-
*/
|
|
10080
|
-
ServerAddr?: string;
|
|
10081
|
-
/**
|
|
10082
|
-
* ServerAddr是否为加密连接,KafkaType为1时必填。
|
|
10083
|
-
*/
|
|
10084
|
-
IsEncryptionAddr?: boolean;
|
|
10085
|
-
/**
|
|
10086
|
-
* 加密访问协议,KafkaType参数为1并且IsEncryptionAddr参数为true时必填。
|
|
10087
|
-
*/
|
|
10088
|
-
Protocol?: KafkaProtocolInfo;
|
|
10089
|
-
/**
|
|
10090
|
-
* 用户需要导入的Kafka相关topic列表,多个topic之间使用半角逗号隔开。
|
|
10091
|
-
|
|
10092
|
-
- Kafka类型为腾讯云CKafka时:通过 [获取主题列表](https://cloud.tencent.com/document/product/597/40847) 获取TopicName。
|
|
10093
|
-
*/
|
|
10094
|
-
UserKafkaTopics?: string;
|
|
10095
|
-
/**
|
|
10096
|
-
* 用户Kafka消费组名称
|
|
10097
|
-
*/
|
|
10098
|
-
ConsumerGroupName?: string;
|
|
10099
|
-
/**
|
|
10100
|
-
* 日志导入规则
|
|
10101
|
-
*/
|
|
10102
|
-
LogRechargeRule?: LogRechargeRuleInfo;
|
|
10197
|
+
Filters?: Array<Filter>;
|
|
10103
10198
|
/**
|
|
10104
|
-
*
|
|
10199
|
+
* <p>分页的偏移量,默认值为0。</p>
|
|
10105
10200
|
*/
|
|
10106
|
-
|
|
10201
|
+
Offset?: number;
|
|
10107
10202
|
/**
|
|
10108
|
-
*
|
|
10203
|
+
* <p>分页单页限制数目,默认值为20,最大值100。</p>
|
|
10109
10204
|
*/
|
|
10110
|
-
|
|
10205
|
+
Limit?: number;
|
|
10111
10206
|
}
|
|
10112
10207
|
/**
|
|
10113
10208
|
* ModifyWebCallback请求参数结构体
|
|
@@ -10517,6 +10612,54 @@ export interface OpenClawServiceRequest {
|
|
|
10517
10612
|
*/
|
|
10518
10613
|
EnableTrace?: boolean;
|
|
10519
10614
|
}
|
|
10615
|
+
/**
|
|
10616
|
+
* 告警对象
|
|
10617
|
+
*/
|
|
10618
|
+
export interface AlarmTargetInfo {
|
|
10619
|
+
/**
|
|
10620
|
+
* 日志集ID。
|
|
10621
|
+
*/
|
|
10622
|
+
LogsetId?: string;
|
|
10623
|
+
/**
|
|
10624
|
+
* 日志集名称。
|
|
10625
|
+
*/
|
|
10626
|
+
LogsetName?: string;
|
|
10627
|
+
/**
|
|
10628
|
+
* 日志主题ID。
|
|
10629
|
+
*/
|
|
10630
|
+
TopicId?: string;
|
|
10631
|
+
/**
|
|
10632
|
+
* 日志主题名称。
|
|
10633
|
+
*/
|
|
10634
|
+
TopicName?: string;
|
|
10635
|
+
/**
|
|
10636
|
+
* 查询语句。
|
|
10637
|
+
*/
|
|
10638
|
+
Query?: string;
|
|
10639
|
+
/**
|
|
10640
|
+
* 告警对象序号。
|
|
10641
|
+
*/
|
|
10642
|
+
Number?: number;
|
|
10643
|
+
/**
|
|
10644
|
+
* 查询范围起始时间相对于告警执行时间的偏移,单位为分钟,取值为非正,最大值为0,最小值为-1440。
|
|
10645
|
+
*/
|
|
10646
|
+
StartTimeOffset?: number;
|
|
10647
|
+
/**
|
|
10648
|
+
* 查询范围终止时间相对于告警执行时间的偏移,单位为分钟,取值为非正,须大于StartTimeOffset,最大值为0,最小值为-1440。
|
|
10649
|
+
*/
|
|
10650
|
+
EndTimeOffset?: number;
|
|
10651
|
+
/**
|
|
10652
|
+
* 检索语法规则,默认值为0。
|
|
10653
|
+
0:Lucene语法,1:CQL语法。
|
|
10654
|
+
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
|
10655
|
+
*/
|
|
10656
|
+
SyntaxRule?: number;
|
|
10657
|
+
/**
|
|
10658
|
+
* 主题类型。
|
|
10659
|
+
0: 日志主题,1: 指标主题
|
|
10660
|
+
*/
|
|
10661
|
+
BizType?: number;
|
|
10662
|
+
}
|
|
10520
10663
|
/**
|
|
10521
10664
|
* SearchCosRechargeInfo请求参数结构体
|
|
10522
10665
|
*/
|
|
@@ -10843,9 +10986,17 @@ export interface DeleteWebCallbackResponse {
|
|
|
10843
10986
|
RequestId?: string;
|
|
10844
10987
|
}
|
|
10845
10988
|
/**
|
|
10846
|
-
*
|
|
10989
|
+
* DescribeSearchViews返回参数结构体
|
|
10847
10990
|
*/
|
|
10848
|
-
export interface
|
|
10991
|
+
export interface DescribeSearchViewsResponse {
|
|
10992
|
+
/**
|
|
10993
|
+
* <p>Splunk投递任务信息列表</p>
|
|
10994
|
+
*/
|
|
10995
|
+
Infos?: Array<SearchViewInfo>;
|
|
10996
|
+
/**
|
|
10997
|
+
* <p>符合条件的任务总数。</p>
|
|
10998
|
+
*/
|
|
10999
|
+
Total?: number;
|
|
10849
11000
|
/**
|
|
10850
11001
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10851
11002
|
*/
|
|
@@ -11180,6 +11331,23 @@ export interface CloseKafkaConsumerResponse {
|
|
|
11180
11331
|
*/
|
|
11181
11332
|
RequestId?: string;
|
|
11182
11333
|
}
|
|
11334
|
+
/**
|
|
11335
|
+
* 视图检索日志主题配置
|
|
11336
|
+
*/
|
|
11337
|
+
export interface ViewSearchTopic {
|
|
11338
|
+
/**
|
|
11339
|
+
* <p>日志集与日志主题所属地域</p><p>参数格式:ap-guangzhou</p>
|
|
11340
|
+
*/
|
|
11341
|
+
Region: string;
|
|
11342
|
+
/**
|
|
11343
|
+
* <p>日志集id</p>
|
|
11344
|
+
*/
|
|
11345
|
+
LogsetId: string;
|
|
11346
|
+
/**
|
|
11347
|
+
* <p>日志主题id</p>
|
|
11348
|
+
*/
|
|
11349
|
+
TopicId: string;
|
|
11350
|
+
}
|
|
11183
11351
|
/**
|
|
11184
11352
|
* 标签重新标记配置。
|
|
11185
11353
|
允许动态重写目标、警报、抓取样本和远程写入样本的标签集。
|
|
@@ -11594,6 +11762,19 @@ export interface ModifyConsumerResponse {
|
|
|
11594
11762
|
*/
|
|
11595
11763
|
RequestId?: string;
|
|
11596
11764
|
}
|
|
11765
|
+
/**
|
|
11766
|
+
* CreateSearchView返回参数结构体
|
|
11767
|
+
*/
|
|
11768
|
+
export interface CreateSearchViewResponse {
|
|
11769
|
+
/**
|
|
11770
|
+
* <p>视图ID</p>
|
|
11771
|
+
*/
|
|
11772
|
+
ViewId?: string;
|
|
11773
|
+
/**
|
|
11774
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11775
|
+
*/
|
|
11776
|
+
RequestId?: string;
|
|
11777
|
+
}
|
|
11597
11778
|
/**
|
|
11598
11779
|
* PartitionOffsetInfo
|
|
11599
11780
|
*/
|
|
@@ -12820,6 +13001,15 @@ export interface ModifyNoticeContentRequest {
|
|
|
12820
13001
|
*/
|
|
12821
13002
|
NoticeContents?: Array<NoticeContent>;
|
|
12822
13003
|
}
|
|
13004
|
+
/**
|
|
13005
|
+
* ModifyKafkaRecharge返回参数结构体
|
|
13006
|
+
*/
|
|
13007
|
+
export interface ModifyKafkaRechargeResponse {
|
|
13008
|
+
/**
|
|
13009
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13010
|
+
*/
|
|
13011
|
+
RequestId?: string;
|
|
13012
|
+
}
|
|
12823
13013
|
/**
|
|
12824
13014
|
* 采集对象
|
|
12825
13015
|
*/
|