tencentcloud-sdk-nodejs 4.1.31 → 4.1.32
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/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +1 -0
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +23 -14
- package/tencentcloud/services/chc/v20230418/chc_models.d.ts +21 -1
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +0 -12
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +14 -14
- package/tencentcloud/services/clb/v20180317/clb_client.js +14 -14
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +141 -82
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +4 -4
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +8 -0
- package/tencentcloud/services/domain/v20180808/domain_client.d.ts +4 -0
- package/tencentcloud/services/domain/v20180808/domain_client.js +4 -0
- package/tencentcloud/services/domain/v20180808/domain_models.d.ts +86 -33
- package/tencentcloud/services/es/v20250101/es_client.d.ts +4 -2
- package/tencentcloud/services/es/v20250101/es_client.js +4 -2
- package/tencentcloud/services/es/v20250101/es_models.d.ts +35 -35
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +0 -20
- package/tencentcloud/services/lowcode/v20210108/lowcode_models.d.ts +5 -1
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +18 -18
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -0
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +10 -10
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +10 -10
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +73 -61
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +4 -4
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +4 -4
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +8 -0
|
@@ -3,23 +3,23 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface ChatCompletionsRequest {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* 会话内容,按对话时间从旧到新在数组中排列,长度受模型窗口大小限制。
|
|
7
7
|
*/
|
|
8
8
|
Messages: Array<Message>;
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* 模型名称,可选模型列表:hunyuan-turbo,hunyuan-large,hunyuan-large-longcontext,hunyuan-standard,hunyuan-standard-256K,deepseek-r1,deepseek-v3,deepseek-r1-distill-qwen-32b。
|
|
11
11
|
*/
|
|
12
12
|
ModelName: string;
|
|
13
13
|
/**
|
|
14
|
-
* 是否以流式接口的形式返回数据,默认true
|
|
14
|
+
* 是否以流式接口的形式返回数据,默认true。
|
|
15
15
|
*/
|
|
16
16
|
Stream?: boolean;
|
|
17
17
|
/**
|
|
18
|
-
* 取值区间为[0.0, 1.0], 非必要不建议使用, 不合理的取值会影响效果
|
|
18
|
+
* 取值区间为[0.0, 1.0], 非必要不建议使用, 不合理的取值会影响效果 。
|
|
19
19
|
*/
|
|
20
20
|
TopP?: number;
|
|
21
21
|
/**
|
|
22
|
-
* 取值区间为[0.0, 2.0], 非必要不建议使用, 不合理的取值会影响效果
|
|
22
|
+
* 取值区间为[0.0, 2.0], 非必要不建议使用, 不合理的取值会影响效果 。
|
|
23
23
|
*/
|
|
24
24
|
Temperature?: number;
|
|
25
25
|
/**
|
|
@@ -49,15 +49,15 @@ export interface DocumentChunkUsage {
|
|
|
49
49
|
*/
|
|
50
50
|
export interface ChunkDocumentAsyncRequest {
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* 文件信息。
|
|
53
53
|
*/
|
|
54
54
|
Document: Document;
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
56
|
+
* 模型名称,可选模型列表:doc-tree-chunk。
|
|
57
57
|
*/
|
|
58
58
|
ModelName: string;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* 文件切片配置。
|
|
61
61
|
*/
|
|
62
62
|
Config?: ChunkConfigAsync;
|
|
63
63
|
}
|
|
@@ -66,15 +66,15 @@ export interface ChunkDocumentAsyncRequest {
|
|
|
66
66
|
*/
|
|
67
67
|
export interface ChunkDocumentRequest {
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* 切片文件信息。
|
|
70
70
|
*/
|
|
71
71
|
Document: ChunkDocument;
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* 模型名称,可选模型列表:doc-chunk。
|
|
74
74
|
*/
|
|
75
75
|
ModelName: string;
|
|
76
76
|
/**
|
|
77
|
-
*
|
|
77
|
+
* 文件切片配置。
|
|
78
78
|
*/
|
|
79
79
|
Config?: ChunkConfig;
|
|
80
80
|
}
|
|
@@ -164,15 +164,15 @@ export interface Usage {
|
|
|
164
164
|
*/
|
|
165
165
|
export interface ParseDocumentResponse {
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* 进度:0-100。
|
|
168
168
|
*/
|
|
169
169
|
Progress?: string;
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* 解析文件结果。
|
|
172
172
|
*/
|
|
173
173
|
DocumentParseResultUrl?: string;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* 失败页码。
|
|
176
176
|
*/
|
|
177
177
|
FailedPages?: Array<number | bigint>;
|
|
178
178
|
/**
|
|
@@ -213,11 +213,11 @@ export interface Document {
|
|
|
213
213
|
*/
|
|
214
214
|
export interface GetTextEmbeddingRequest {
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* 模型名称,可选模型列表:bge-base-zh-v1.5,conan-embedding-v1,bge-m3,KaLM-embedding-multilingual-mini-v1。
|
|
217
217
|
*/
|
|
218
218
|
ModelName: string;
|
|
219
219
|
/**
|
|
220
|
-
*
|
|
220
|
+
* 需进行向量化的文本集。
|
|
221
221
|
*/
|
|
222
222
|
Texts: Array<string>;
|
|
223
223
|
}
|
|
@@ -252,15 +252,15 @@ export interface ChunkDocumentResponse {
|
|
|
252
252
|
*/
|
|
253
253
|
export interface GetDocumentParseResultResponse {
|
|
254
254
|
/**
|
|
255
|
-
*
|
|
255
|
+
* 任务状态,-1:失败,0:运行中,1:成功。
|
|
256
256
|
*/
|
|
257
257
|
Status?: number;
|
|
258
258
|
/**
|
|
259
|
-
*
|
|
259
|
+
* 结果文件。
|
|
260
260
|
*/
|
|
261
261
|
DocumentParseResultUrl?: string;
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* 失败的页码。
|
|
264
264
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
265
265
|
*/
|
|
266
266
|
FailedPages?: Array<number | bigint>;
|
|
@@ -300,23 +300,23 @@ export interface Choice {
|
|
|
300
300
|
*/
|
|
301
301
|
export interface RunRerankRequest {
|
|
302
302
|
/**
|
|
303
|
-
*
|
|
303
|
+
* 模型名称,可选模型列表:bge-reranker-large,bge-reranker-v2-m3。
|
|
304
304
|
*/
|
|
305
305
|
ModelName: string;
|
|
306
306
|
/**
|
|
307
|
-
*
|
|
307
|
+
* 查询文本。
|
|
308
308
|
*/
|
|
309
309
|
Query: string;
|
|
310
310
|
/**
|
|
311
|
-
* 待排序的候选doc
|
|
311
|
+
* 待排序的候选doc列表。
|
|
312
312
|
*/
|
|
313
313
|
Documents: Array<string>;
|
|
314
314
|
/**
|
|
315
|
-
* 排序返回的top文档数量, 如果没有指定则返回全部候选doc,如果指定的top_n值大于输入的候选doc数量,返回全部doc
|
|
315
|
+
* 排序返回的top文档数量, 如果没有指定则返回全部候选doc,如果指定的top_n值大于输入的候选doc数量,返回全部doc。
|
|
316
316
|
*/
|
|
317
317
|
TopN?: number;
|
|
318
318
|
/**
|
|
319
|
-
* 返回的排序结果列表里面是否返回每一条document原文,默认值False
|
|
319
|
+
* 返回的排序结果列表里面是否返回每一条document原文,默认值False。
|
|
320
320
|
*/
|
|
321
321
|
ReturnDocuments?: boolean;
|
|
322
322
|
}
|
|
@@ -463,15 +463,15 @@ export interface ParseDocument {
|
|
|
463
463
|
*/
|
|
464
464
|
export interface GetDocumentChunkResultResponse {
|
|
465
465
|
/**
|
|
466
|
-
*
|
|
466
|
+
* 任务状态,-1:失败,0:运行中,1:成功。
|
|
467
467
|
*/
|
|
468
468
|
Status?: number;
|
|
469
469
|
/**
|
|
470
|
-
*
|
|
470
|
+
* 切片结果文件。
|
|
471
471
|
*/
|
|
472
472
|
DocumentChunkResultUrl?: string;
|
|
473
473
|
/**
|
|
474
|
-
*
|
|
474
|
+
* Token用量。
|
|
475
475
|
*/
|
|
476
476
|
Usage?: DocumentChunkUsage;
|
|
477
477
|
/**
|
|
@@ -535,7 +535,7 @@ export interface ParseDocumentRequest {
|
|
|
535
535
|
*/
|
|
536
536
|
Document: ParseDocument;
|
|
537
537
|
/**
|
|
538
|
-
*
|
|
538
|
+
* 模型名称,doc-llm。
|
|
539
539
|
*/
|
|
540
540
|
ModelName: string;
|
|
541
541
|
}
|
|
@@ -570,7 +570,7 @@ export interface GetTextEmbeddingResponse {
|
|
|
570
570
|
*/
|
|
571
571
|
Data?: Array<EmbeddingData>;
|
|
572
572
|
/**
|
|
573
|
-
*
|
|
573
|
+
* 向量化消耗的token数量。
|
|
574
574
|
*/
|
|
575
575
|
Usage?: Usage;
|
|
576
576
|
/**
|
|
@@ -583,11 +583,11 @@ export interface GetTextEmbeddingResponse {
|
|
|
583
583
|
*/
|
|
584
584
|
export interface RunRerankResponse {
|
|
585
585
|
/**
|
|
586
|
-
*
|
|
586
|
+
* 输出结果集。
|
|
587
587
|
*/
|
|
588
588
|
Data?: Array<RerankResult>;
|
|
589
589
|
/**
|
|
590
|
-
* 消耗token
|
|
590
|
+
* 消耗token数量。
|
|
591
591
|
*/
|
|
592
592
|
Usage?: Usage;
|
|
593
593
|
/**
|
|
@@ -600,11 +600,11 @@ export interface RunRerankResponse {
|
|
|
600
600
|
*/
|
|
601
601
|
export interface ParseDocumentAsyncRequest {
|
|
602
602
|
/**
|
|
603
|
-
*
|
|
603
|
+
* 文件信息。
|
|
604
604
|
*/
|
|
605
605
|
Document: Document;
|
|
606
606
|
/**
|
|
607
|
-
*
|
|
607
|
+
* 模型名称,可选模型列表:doc-llm。
|
|
608
608
|
*/
|
|
609
609
|
ModelName: string;
|
|
610
610
|
}
|
|
@@ -613,11 +613,11 @@ export interface ParseDocumentAsyncRequest {
|
|
|
613
613
|
*/
|
|
614
614
|
export interface ChunkDocument {
|
|
615
615
|
/**
|
|
616
|
-
*
|
|
616
|
+
* 文件类型,支持 MD,TXT 格式。
|
|
617
617
|
*/
|
|
618
618
|
FileType?: string;
|
|
619
619
|
/**
|
|
620
|
-
*
|
|
620
|
+
* 文本原文,使用字符串格式输入。
|
|
621
621
|
*/
|
|
622
622
|
FileContent?: string;
|
|
623
623
|
}
|
|
@@ -2206,88 +2206,71 @@ export interface ListOrganizationChannelNumbersData {
|
|
|
2206
2206
|
export interface VideoDownloadTask {
|
|
2207
2207
|
/**
|
|
2208
2208
|
* 下载任务 ID
|
|
2209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2210
2209
|
*/
|
|
2211
2210
|
DownloadTaskId?: string;
|
|
2212
2211
|
/**
|
|
2213
2212
|
* 通道 ID
|
|
2214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2215
2213
|
*/
|
|
2216
2214
|
ChannelId?: string;
|
|
2217
2215
|
/**
|
|
2218
2216
|
* 通道名称
|
|
2219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2220
2217
|
*/
|
|
2221
2218
|
ChannelName?: string;
|
|
2222
2219
|
/**
|
|
2223
2220
|
* 通道编码
|
|
2224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2225
2221
|
*/
|
|
2226
2222
|
ChannelCode?: string;
|
|
2227
2223
|
/**
|
|
2228
2224
|
* 设备名称
|
|
2229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2230
2225
|
*/
|
|
2231
2226
|
DeviceName?: string;
|
|
2232
2227
|
/**
|
|
2233
2228
|
* 设备编码
|
|
2234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2235
2229
|
*/
|
|
2236
2230
|
DeviceCode?: string;
|
|
2237
2231
|
/**
|
|
2238
2232
|
* 任务状态(0:未执行;1:执行中;2 任务完成;
|
|
2239
2233
|
3:任务失败)
|
|
2240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2241
2234
|
*/
|
|
2242
2235
|
Status?: number;
|
|
2243
2236
|
/**
|
|
2244
2237
|
* 下载录像时间段
|
|
2245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2246
2238
|
*/
|
|
2247
2239
|
VideoTimeSection?: string;
|
|
2248
2240
|
/**
|
|
2249
2241
|
* 倍速
|
|
2250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2251
2242
|
*/
|
|
2252
2243
|
Scale?: number;
|
|
2253
2244
|
/**
|
|
2254
2245
|
* 下载时长
|
|
2255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2256
2246
|
*/
|
|
2257
2247
|
DownloadTime?: number;
|
|
2258
2248
|
/**
|
|
2259
2249
|
* 录像大小
|
|
2260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2261
2250
|
*/
|
|
2262
2251
|
VideoSize?: number;
|
|
2263
2252
|
/**
|
|
2264
2253
|
* 任务开始时间
|
|
2265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2266
2254
|
*/
|
|
2267
2255
|
StartTime?: string;
|
|
2268
2256
|
/**
|
|
2269
2257
|
* 任务结束时间
|
|
2270
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2271
2258
|
*/
|
|
2272
2259
|
EndTime?: string;
|
|
2273
2260
|
/**
|
|
2274
2261
|
* 文件下载地址
|
|
2275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2276
2262
|
*/
|
|
2277
2263
|
FileDownloadUrl?: string;
|
|
2278
2264
|
/**
|
|
2279
2265
|
* 失败原因
|
|
2280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2281
2266
|
*/
|
|
2282
2267
|
FailedReason?: string;
|
|
2283
2268
|
/**
|
|
2284
2269
|
* 生命周期规则,热存天数
|
|
2285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2286
2270
|
*/
|
|
2287
2271
|
Expire?: number;
|
|
2288
2272
|
/**
|
|
2289
2273
|
* mp4预览地址
|
|
2290
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2291
2274
|
*/
|
|
2292
2275
|
PreviewUrl?: string;
|
|
2293
2276
|
}
|
|
@@ -3181,7 +3164,6 @@ export interface GatewaysData {
|
|
|
3181
3164
|
export interface VideoDownloadTaskData {
|
|
3182
3165
|
/**
|
|
3183
3166
|
* 下载任务ID
|
|
3184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3185
3167
|
*/
|
|
3186
3168
|
DownloadTaskId?: string;
|
|
3187
3169
|
}
|
|
@@ -3778,12 +3760,10 @@ export interface QueryForbidPlayChannelListRequest {
|
|
|
3778
3760
|
export interface ListVideoDownloadTaskData {
|
|
3779
3761
|
/**
|
|
3780
3762
|
* 任务列表
|
|
3781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3782
3763
|
*/
|
|
3783
3764
|
List?: Array<VideoDownloadTask>;
|
|
3784
3765
|
/**
|
|
3785
3766
|
* 任务总数
|
|
3786
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3787
3767
|
*/
|
|
3788
3768
|
TotalCount?: number;
|
|
3789
3769
|
}
|
|
@@ -107,13 +107,17 @@ export interface UploadKnowledgeDocumentSetRequest {
|
|
|
107
107
|
*/
|
|
108
108
|
FileTitle?: string;
|
|
109
109
|
/**
|
|
110
|
-
*
|
|
110
|
+
* 文件元信息,为jsonstring
|
|
111
111
|
*/
|
|
112
112
|
FileMetaData?: string;
|
|
113
113
|
/**
|
|
114
114
|
* 文件id
|
|
115
115
|
*/
|
|
116
116
|
DocumentSetId?: string;
|
|
117
|
+
/**
|
|
118
|
+
* 使用 regex 分割文档
|
|
119
|
+
*/
|
|
120
|
+
Delimiter?: string;
|
|
117
121
|
}
|
|
118
122
|
/**
|
|
119
123
|
* UpdateKnowledgeSet返回参数结构体
|
|
@@ -1835,22 +1835,22 @@ export interface UpdateEKSContainerInstanceRequest {
|
|
|
1835
1835
|
* cuDNN的版本信息
|
|
1836
1836
|
*/
|
|
1837
1837
|
export interface CUDNN {
|
|
1838
|
-
/**
|
|
1839
|
-
* cuDNN的版本
|
|
1840
|
-
*/
|
|
1841
|
-
Version: string;
|
|
1842
1838
|
/**
|
|
1843
1839
|
* cuDNN的名字
|
|
1844
1840
|
*/
|
|
1845
1841
|
Name: string;
|
|
1846
1842
|
/**
|
|
1847
|
-
* cuDNN
|
|
1843
|
+
* cuDNN的版本
|
|
1848
1844
|
*/
|
|
1849
|
-
|
|
1845
|
+
Version: string;
|
|
1850
1846
|
/**
|
|
1851
1847
|
* cuDNN的Dev名字
|
|
1852
1848
|
*/
|
|
1853
1849
|
DevName?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* cuDNN的Doc名字
|
|
1852
|
+
*/
|
|
1853
|
+
DocName?: string;
|
|
1854
1854
|
}
|
|
1855
1855
|
/**
|
|
1856
1856
|
* DescribeReservedInstances返回参数结构体
|
|
@@ -4340,14 +4340,14 @@ export interface UpgradeNodeResetParam {
|
|
|
4340
4340
|
* GPU驱动和CUDA的版本信息
|
|
4341
4341
|
*/
|
|
4342
4342
|
export interface DriverVersion {
|
|
4343
|
-
/**
|
|
4344
|
-
* GPU驱动或者CUDA的版本
|
|
4345
|
-
*/
|
|
4346
|
-
Version: string;
|
|
4347
4343
|
/**
|
|
4348
4344
|
* GPU驱动或者CUDA的名字
|
|
4349
4345
|
*/
|
|
4350
4346
|
Name: string;
|
|
4347
|
+
/**
|
|
4348
|
+
* GPU驱动或者CUDA的版本
|
|
4349
|
+
*/
|
|
4350
|
+
Version: string;
|
|
4351
4351
|
}
|
|
4352
4352
|
/**
|
|
4353
4353
|
* CreateClusterInstances请求参数结构体
|
|
@@ -12633,14 +12633,6 @@ export interface PrometheusTemplate {
|
|
|
12633
12633
|
* GPU相关的参数,包括驱动版本,CUDA版本,cuDNN版本以及是否开启MIG
|
|
12634
12634
|
*/
|
|
12635
12635
|
export interface GPUArgs {
|
|
12636
|
-
/**
|
|
12637
|
-
* 是否启用MIG特性
|
|
12638
|
-
*/
|
|
12639
|
-
MIGEnable?: boolean;
|
|
12640
|
-
/**
|
|
12641
|
-
* GPU驱动版本信息
|
|
12642
|
-
*/
|
|
12643
|
-
Driver?: DriverVersion;
|
|
12644
12636
|
/**
|
|
12645
12637
|
* CUDA版本信息
|
|
12646
12638
|
*/
|
|
@@ -12653,6 +12645,14 @@ export interface GPUArgs {
|
|
|
12653
12645
|
* 自定义GPU驱动信息
|
|
12654
12646
|
*/
|
|
12655
12647
|
CustomDriver?: CustomDriver;
|
|
12648
|
+
/**
|
|
12649
|
+
* GPU驱动版本信息
|
|
12650
|
+
*/
|
|
12651
|
+
Driver?: DriverVersion;
|
|
12652
|
+
/**
|
|
12653
|
+
* 是否启用MIG特性
|
|
12654
|
+
*/
|
|
12655
|
+
MIGEnable?: boolean;
|
|
12656
12656
|
}
|
|
12657
12657
|
/**
|
|
12658
12658
|
* 路由表冲突对象
|
|
@@ -12190,6 +12190,10 @@ export interface PullUploadRequest {
|
|
|
12190
12190
|
* 分类ID,用于对媒体进行分类管理,可通过[创建分类](https://cloud.tencent.com/document/product/266/7812)接口,创建分类,获得分类 ID。
|
|
12191
12191
|
*/
|
|
12192
12192
|
ClassId?: number;
|
|
12193
|
+
/**
|
|
12194
|
+
* 任务的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
|
|
12195
|
+
*/
|
|
12196
|
+
TasksPriority?: number;
|
|
12193
12197
|
/**
|
|
12194
12198
|
* 来源上下文,用于透传用户请求信息,当指定 Procedure 任务后,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
12195
12199
|
*/
|
|
@@ -16,7 +16,7 @@ export declare class Client extends AbstractClient {
|
|
|
16
16
|
*/
|
|
17
17
|
ModifyNatGatewayAttribute(req: ModifyNatGatewayAttributeRequest, cb?: (error: string, rep: ModifyNatGatewayAttributeResponse) => void): Promise<ModifyNatGatewayAttributeResponse>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* 本接口(DescribeTaskResult)用于查询EIP异步任务执行结果。
|
|
20
20
|
*/
|
|
21
21
|
DescribeTaskResult(req: DescribeTaskResultRequest, cb?: (error: string, rep: DescribeTaskResultResponse) => void): Promise<DescribeTaskResultResponse>;
|
|
22
22
|
/**
|
|
@@ -42,7 +42,7 @@ export declare class Client extends AbstractClient {
|
|
|
42
42
|
ModifyServiceTemplateGroupAttribute(req: ModifyServiceTemplateGroupAttributeRequest, cb?: (error: string, rep: ModifyServiceTemplateGroupAttributeResponse) => void): Promise<ModifyServiceTemplateGroupAttributeResponse>;
|
|
43
43
|
/**
|
|
44
44
|
* 该接口用于调整具有带宽属性弹性公网IP的网络计费模式
|
|
45
|
-
* 支持BANDWIDTH_PREPAID_BY_MONTH
|
|
45
|
+
* 支持BANDWIDTH_PREPAID_BY_MONTH(包月按带宽预付费)和TRAFFIC_POSTPAID_BY_HOUR(流量按小时后付费)两种网络计费模式之间的切换。
|
|
46
46
|
* 每个弹性公网IP支持调整两次,次数超出则无法调整。
|
|
47
47
|
*/
|
|
48
48
|
ModifyAddressInternetChargeType(req: ModifyAddressInternetChargeTypeRequest, cb?: (error: string, rep: ModifyAddressInternetChargeTypeResponse) => void): Promise<ModifyAddressInternetChargeTypeResponse>;
|
|
@@ -184,7 +184,7 @@ export declare class Client extends AbstractClient {
|
|
|
184
184
|
* 本接口 (AllocateAddresses) 用于申请一个或多个[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。
|
|
185
185
|
* EIP 是专为动态云计算设计的静态 IP 地址。借助 EIP,您可以快速将 EIP 重新映射到您的另一个实例上,从而屏蔽实例故障。
|
|
186
186
|
* 您的 EIP 与腾讯云账户相关联,而不是与某个实例相关联。在您选择显式释放该地址,或欠费超过24小时之前,它会一直与您的腾讯云账户保持关联。
|
|
187
|
-
* 一个腾讯云账户在每个地域能申请的 EIP 最大配额有所限制,可参见 [EIP 产品简介](https://cloud.tencent.com/document/product/213/5733),上述配额可通过 DescribeAddressQuota 接口获取。
|
|
187
|
+
* 一个腾讯云账户在每个地域能申请的 EIP 最大配额有所限制,可参见 [EIP 产品简介](https://cloud.tencent.com/document/product/213/5733),上述配额可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/product/215/16701) 接口获取。
|
|
188
188
|
*/
|
|
189
189
|
AllocateAddresses(req: AllocateAddressesRequest, cb?: (error: string, rep: AllocateAddressesResponse) => void): Promise<AllocateAddressesResponse>;
|
|
190
190
|
/**
|
|
@@ -286,7 +286,7 @@ export declare class Client extends AbstractClient {
|
|
|
286
286
|
*/
|
|
287
287
|
AssociateInstancesToCcnRouteTable(req: AssociateInstancesToCcnRouteTableRequest, cb?: (error: string, rep: AssociateInstancesToCcnRouteTableResponse) => void): Promise<AssociateInstancesToCcnRouteTableResponse>;
|
|
288
288
|
/**
|
|
289
|
-
*
|
|
289
|
+
* 本接口(RenewAddresses)用于续费包月带宽计费模式的弹性公网IP。
|
|
290
290
|
*/
|
|
291
291
|
RenewAddresses(req: RenewAddressesRequest, cb?: (error: string, rep: RenewAddressesResponse) => void): Promise<RenewAddressesResponse>;
|
|
292
292
|
/**
|
|
@@ -555,7 +555,7 @@ LimitTypes取值范围:
|
|
|
555
555
|
CreateAddressTemplate(req: CreateAddressTemplateRequest, cb?: (error: string, rep: CreateAddressTemplateResponse) => void): Promise<CreateAddressTemplateResponse>;
|
|
556
556
|
/**
|
|
557
557
|
* 本接口 (TransformAddress) 用于将实例的普通公网 IP 转换为[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。
|
|
558
|
-
*
|
|
558
|
+
* 平台对用户单地域每日解绑 EIP 重新分配普通公网 IP 次数有所限制(可参见 [EIP 产品简介](/document/product/213/1941))。上述配额可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/product/215/16701) 接口获取。
|
|
559
559
|
*/
|
|
560
560
|
TransformAddress(req: TransformAddressRequest, cb?: (error: string, rep: TransformAddressResponse) => void): Promise<TransformAddressResponse>;
|
|
561
561
|
/**
|
|
@@ -1008,7 +1008,7 @@ LimitTypes取值范围:
|
|
|
1008
1008
|
* 本接口(ReleaseIp6AddressesBandwidth)用于为传统弹性公网 IPv6 实例关闭 IPv6 公网带宽。
|
|
1009
1009
|
|
|
1010
1010
|
- 传统弹性公网 IPv6 实例关闭公网带宽后,仍具备 IPv6 内网通信能力。
|
|
1011
|
-
- 如需再次开通 IPv6 公网带宽,请使用 AllocateIp6AddressesBandwidth 接口进行开通。
|
|
1011
|
+
- 如需再次开通 IPv6 公网带宽,请使用 [AllocateIp6AddressesBandwidth](https://cloud.tencent.com/document/product/215/40090) 接口进行开通。
|
|
1012
1012
|
*/
|
|
1013
1013
|
ReleaseIp6AddressesBandwidth(req: ReleaseIp6AddressesBandwidthRequest, cb?: (error: string, rep: ReleaseIp6AddressesBandwidthResponse) => void): Promise<ReleaseIp6AddressesBandwidthResponse>;
|
|
1014
1014
|
/**
|
|
@@ -1206,8 +1206,8 @@ LimitTypes取值范围:
|
|
|
1206
1206
|
DescribeHighPriorityRoutes(req: DescribeHighPriorityRoutesRequest, cb?: (error: string, rep: DescribeHighPriorityRoutesResponse) => void): Promise<DescribeHighPriorityRoutesResponse>;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* 本接口 (DisassociateAddress) 用于解绑[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。
|
|
1209
|
-
* 支持CVM实例,弹性网卡上的EIP
|
|
1210
|
-
* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)
|
|
1209
|
+
* 支持CVM实例,弹性网卡上的EIP解绑。
|
|
1210
|
+
* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)。
|
|
1211
1211
|
* 只有状态为 BIND 和 BIND_ENI 的 EIP 才能进行解绑定操作。
|
|
1212
1212
|
*/
|
|
1213
1213
|
DisassociateAddress(req: DisassociateAddressRequest, cb?: (error: string, rep: DisassociateAddressResponse) => void): Promise<DisassociateAddressResponse>;
|
|
@@ -1661,7 +1661,7 @@ LimitTypes取值范围:
|
|
|
1661
1661
|
* 将 EIP 绑定到主网卡的主内网IP时,如主内网IP已绑定普通公网IP,必须先退还才能绑定EIP。
|
|
1662
1662
|
* 将 EIP 绑定到指定网卡的内网 IP上(非主网卡的主内网IP),则必须先解绑该 EIP,才能再绑定新的。
|
|
1663
1663
|
* 将 EIP 绑定到内网型CLB实例的功能处于内测阶段,如需使用,请提交[内测申请](https://cloud.tencent.com/apply/p/4kxj7picqci)。
|
|
1664
|
-
* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)
|
|
1664
|
+
* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)。
|
|
1665
1665
|
* EIP 如果欠费或被封堵,则不能被绑定。
|
|
1666
1666
|
* 只有状态为 UNBIND 的 EIP 才能够被绑定。
|
|
1667
1667
|
*/
|
|
@@ -1962,7 +1962,7 @@ LimitTypes取值范围:
|
|
|
1962
1962
|
* 本接口(ModifyIp6AddressesBandwidth)用于调整传统弹性公网 IPv6 实例的带宽上限。
|
|
1963
1963
|
|
|
1964
1964
|
- 仅支持对传统弹性公网 IPv6 实例的带宽上限进行调整。
|
|
1965
|
-
- 如需调整弹性公网 IPv6 实例的带宽上限,请使用 ModifyIPv6AddressesBandwidth 接口。
|
|
1965
|
+
- 如需调整弹性公网 IPv6 实例的带宽上限,请使用 [ModifyIPv6AddressesBandwidth](https://cloud.tencent.com/document/product/215/113674) 接口。
|
|
1966
1966
|
*/
|
|
1967
1967
|
ModifyIp6AddressesBandwidth(req: ModifyIp6AddressesBandwidthRequest, cb?: (error: string, rep: ModifyIp6AddressesBandwidthResponse) => void): Promise<ModifyIp6AddressesBandwidthResponse>;
|
|
1968
1968
|
/**
|
|
@@ -40,7 +40,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
40
40
|
return this.request("ModifyNatGatewayAttribute", req, cb);
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 本接口(DescribeTaskResult)用于查询EIP异步任务执行结果。
|
|
44
44
|
*/
|
|
45
45
|
async DescribeTaskResult(req, cb) {
|
|
46
46
|
return this.request("DescribeTaskResult", req, cb);
|
|
@@ -76,7 +76,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* 该接口用于调整具有带宽属性弹性公网IP的网络计费模式
|
|
79
|
-
* 支持BANDWIDTH_PREPAID_BY_MONTH
|
|
79
|
+
* 支持BANDWIDTH_PREPAID_BY_MONTH(包月按带宽预付费)和TRAFFIC_POSTPAID_BY_HOUR(流量按小时后付费)两种网络计费模式之间的切换。
|
|
80
80
|
* 每个弹性公网IP支持调整两次,次数超出则无法调整。
|
|
81
81
|
*/
|
|
82
82
|
async ModifyAddressInternetChargeType(req, cb) {
|
|
@@ -268,7 +268,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
268
268
|
* 本接口 (AllocateAddresses) 用于申请一个或多个[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。
|
|
269
269
|
* EIP 是专为动态云计算设计的静态 IP 地址。借助 EIP,您可以快速将 EIP 重新映射到您的另一个实例上,从而屏蔽实例故障。
|
|
270
270
|
* 您的 EIP 与腾讯云账户相关联,而不是与某个实例相关联。在您选择显式释放该地址,或欠费超过24小时之前,它会一直与您的腾讯云账户保持关联。
|
|
271
|
-
* 一个腾讯云账户在每个地域能申请的 EIP 最大配额有所限制,可参见 [EIP 产品简介](https://cloud.tencent.com/document/product/213/5733),上述配额可通过 DescribeAddressQuota 接口获取。
|
|
271
|
+
* 一个腾讯云账户在每个地域能申请的 EIP 最大配额有所限制,可参见 [EIP 产品简介](https://cloud.tencent.com/document/product/213/5733),上述配额可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/product/215/16701) 接口获取。
|
|
272
272
|
*/
|
|
273
273
|
async AllocateAddresses(req, cb) {
|
|
274
274
|
return this.request("AllocateAddresses", req, cb);
|
|
@@ -410,7 +410,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
410
410
|
return this.request("AssociateInstancesToCcnRouteTable", req, cb);
|
|
411
411
|
}
|
|
412
412
|
/**
|
|
413
|
-
*
|
|
413
|
+
* 本接口(RenewAddresses)用于续费包月带宽计费模式的弹性公网IP。
|
|
414
414
|
*/
|
|
415
415
|
async RenewAddresses(req, cb) {
|
|
416
416
|
return this.request("RenewAddresses", req, cb);
|
|
@@ -779,7 +779,7 @@ LimitTypes取值范围:
|
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* 本接口 (TransformAddress) 用于将实例的普通公网 IP 转换为[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。
|
|
782
|
-
*
|
|
782
|
+
* 平台对用户单地域每日解绑 EIP 重新分配普通公网 IP 次数有所限制(可参见 [EIP 产品简介](/document/product/213/1941))。上述配额可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/product/215/16701) 接口获取。
|
|
783
783
|
*/
|
|
784
784
|
async TransformAddress(req, cb) {
|
|
785
785
|
return this.request("TransformAddress", req, cb);
|
|
@@ -1422,7 +1422,7 @@ LimitTypes取值范围:
|
|
|
1422
1422
|
* 本接口(ReleaseIp6AddressesBandwidth)用于为传统弹性公网 IPv6 实例关闭 IPv6 公网带宽。
|
|
1423
1423
|
|
|
1424
1424
|
- 传统弹性公网 IPv6 实例关闭公网带宽后,仍具备 IPv6 内网通信能力。
|
|
1425
|
-
- 如需再次开通 IPv6 公网带宽,请使用 AllocateIp6AddressesBandwidth 接口进行开通。
|
|
1425
|
+
- 如需再次开通 IPv6 公网带宽,请使用 [AllocateIp6AddressesBandwidth](https://cloud.tencent.com/document/product/215/40090) 接口进行开通。
|
|
1426
1426
|
*/
|
|
1427
1427
|
async ReleaseIp6AddressesBandwidth(req, cb) {
|
|
1428
1428
|
return this.request("ReleaseIp6AddressesBandwidth", req, cb);
|
|
@@ -1700,8 +1700,8 @@ LimitTypes取值范围:
|
|
|
1700
1700
|
}
|
|
1701
1701
|
/**
|
|
1702
1702
|
* 本接口 (DisassociateAddress) 用于解绑[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)。
|
|
1703
|
-
* 支持CVM实例,弹性网卡上的EIP
|
|
1704
|
-
* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)
|
|
1703
|
+
* 支持CVM实例,弹性网卡上的EIP解绑。
|
|
1704
|
+
* 不支持NAT上的EIP解绑。NAT上的EIP解绑请参考[DisassociateNatGatewayAddress](https://cloud.tencent.com/document/api/215/36716)。
|
|
1705
1705
|
* 只有状态为 BIND 和 BIND_ENI 的 EIP 才能进行解绑定操作。
|
|
1706
1706
|
*/
|
|
1707
1707
|
async DisassociateAddress(req, cb) {
|
|
@@ -2357,7 +2357,7 @@ LimitTypes取值范围:
|
|
|
2357
2357
|
* 将 EIP 绑定到主网卡的主内网IP时,如主内网IP已绑定普通公网IP,必须先退还才能绑定EIP。
|
|
2358
2358
|
* 将 EIP 绑定到指定网卡的内网 IP上(非主网卡的主内网IP),则必须先解绑该 EIP,才能再绑定新的。
|
|
2359
2359
|
* 将 EIP 绑定到内网型CLB实例的功能处于内测阶段,如需使用,请提交[内测申请](https://cloud.tencent.com/apply/p/4kxj7picqci)。
|
|
2360
|
-
* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)
|
|
2360
|
+
* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)。
|
|
2361
2361
|
* EIP 如果欠费或被封堵,则不能被绑定。
|
|
2362
2362
|
* 只有状态为 UNBIND 的 EIP 才能够被绑定。
|
|
2363
2363
|
*/
|
|
@@ -2788,7 +2788,7 @@ LimitTypes取值范围:
|
|
|
2788
2788
|
* 本接口(ModifyIp6AddressesBandwidth)用于调整传统弹性公网 IPv6 实例的带宽上限。
|
|
2789
2789
|
|
|
2790
2790
|
- 仅支持对传统弹性公网 IPv6 实例的带宽上限进行调整。
|
|
2791
|
-
- 如需调整弹性公网 IPv6 实例的带宽上限,请使用 ModifyIPv6AddressesBandwidth 接口。
|
|
2791
|
+
- 如需调整弹性公网 IPv6 实例的带宽上限,请使用 [ModifyIPv6AddressesBandwidth](https://cloud.tencent.com/document/product/215/113674) 接口。
|
|
2792
2792
|
*/
|
|
2793
2793
|
async ModifyIp6AddressesBandwidth(req, cb) {
|
|
2794
2794
|
return this.request("ModifyIp6AddressesBandwidth", req, cb);
|