tencentcloud-sdk-nodejs 4.1.106 → 4.1.108
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/lighthouse/v20200324/lighthouse_client.js +23 -2
- package/es/services/mna/v20210119/mna_client.js +3 -0
- package/es/services/waf/v20180125/waf_client.js +22 -4
- 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/as/v20180419/as_models.d.ts +14 -4
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +4 -4
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +4 -4
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +133 -89
- package/tencentcloud/services/gs/v20191118/gs_models.d.ts +12 -0
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +8 -4
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +43 -5
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +57 -5
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +374 -85
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +53 -18
- package/tencentcloud/services/lkeap/v20240522/lkeap_models.d.ts +22 -1
- package/tencentcloud/services/mna/v20210119/mna_client.d.ts +5 -1
- package/tencentcloud/services/mna/v20210119/mna_client.js +6 -0
- package/tencentcloud/services/mna/v20210119/mna_models.d.ts +63 -0
- package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +1 -1
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +42 -0
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +1 -1
- package/tencentcloud/services/redis/v20180412/redis_client.js +1 -1
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +4 -0
- package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +4 -0
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -3
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +9 -6
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +6 -6
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +43 -20
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +32 -5
- package/tencentcloud/services/waf/v20180125/waf_client.js +45 -6
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +743 -59
@@ -2155,6 +2155,31 @@ export interface KnowledgeSummary {
|
|
2155
2155
|
*/
|
2156
2156
|
Content?: string;
|
2157
2157
|
}
|
2158
|
+
/**
|
2159
|
+
* 任务流程调试信息
|
2160
|
+
*/
|
2161
|
+
export interface TaskFlowSummary {
|
2162
|
+
/**
|
2163
|
+
* 任务流程名
|
2164
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2165
|
+
*/
|
2166
|
+
IntentName?: string;
|
2167
|
+
/**
|
2168
|
+
* 实体列表
|
2169
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2170
|
+
*/
|
2171
|
+
UpdatedSlotValues?: Array<ValueInfo>;
|
2172
|
+
/**
|
2173
|
+
* 节点列表
|
2174
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2175
|
+
*/
|
2176
|
+
RunNodes?: Array<RunNodeInfo>;
|
2177
|
+
/**
|
2178
|
+
* 意图判断
|
2179
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2180
|
+
*/
|
2181
|
+
Purposes?: Array<string>;
|
2182
|
+
}
|
2158
2183
|
/**
|
2159
2184
|
* ListSharedKnowledge请求参数结构体
|
2160
2185
|
*/
|
@@ -2581,6 +2606,11 @@ export interface KnowledgeQaOutput {
|
|
2581
2606
|
注意:此字段可能返回 null,表示取不到有效值。
|
2582
2607
|
*/
|
2583
2608
|
UseRecommended?: boolean;
|
2609
|
+
/**
|
2610
|
+
* 推荐问模式,0.结合知识库&对话历史推荐问题Prompt(默认) 1.仅结合知识库输出推荐问的prompt
|
2611
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2612
|
+
*/
|
2613
|
+
RecommendedPromptMode?: number;
|
2584
2614
|
}
|
2585
2615
|
/**
|
2586
2616
|
* 标签过滤器
|
@@ -3327,29 +3357,17 @@ export interface GetTaskStatusResponse {
|
|
3327
3357
|
RequestId?: string;
|
3328
3358
|
}
|
3329
3359
|
/**
|
3330
|
-
*
|
3360
|
+
* 系统参数
|
3331
3361
|
*/
|
3332
|
-
export interface
|
3333
|
-
/**
|
3334
|
-
* 任务流程名
|
3335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3336
|
-
*/
|
3337
|
-
IntentName?: string;
|
3362
|
+
export interface AgentInputSystemVariable {
|
3338
3363
|
/**
|
3339
|
-
*
|
3340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3341
|
-
*/
|
3342
|
-
UpdatedSlotValues?: Array<ValueInfo>;
|
3343
|
-
/**
|
3344
|
-
* 节点列表
|
3345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3364
|
+
* 系统参数名
|
3346
3365
|
*/
|
3347
|
-
|
3366
|
+
Name?: string;
|
3348
3367
|
/**
|
3349
|
-
*
|
3350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3368
|
+
* 对话历史轮数的配置;如果Input是系统变量中的“对话历史”时才使用;
|
3351
3369
|
*/
|
3352
|
-
|
3370
|
+
DialogHistoryLimit?: number;
|
3353
3371
|
}
|
3354
3372
|
/**
|
3355
3373
|
* DescribeConcurrencyUsageGraph请求参数结构体
|
@@ -5809,6 +5827,18 @@ export interface AgentInput {
|
|
5809
5827
|
* 自定义变量(API参数)
|
5810
5828
|
*/
|
5811
5829
|
CustomVarId?: string;
|
5830
|
+
/**
|
5831
|
+
* 环境变量参数
|
5832
|
+
*/
|
5833
|
+
EnvVarId?: string;
|
5834
|
+
/**
|
5835
|
+
* 应用变量参数
|
5836
|
+
*/
|
5837
|
+
AppVarId?: string;
|
5838
|
+
/**
|
5839
|
+
* 系统参数
|
5840
|
+
*/
|
5841
|
+
SystemVariable?: AgentInputSystemVariable;
|
5812
5842
|
}
|
5813
5843
|
/**
|
5814
5844
|
* DeleteRejectedQuestion返回参数结构体
|
@@ -5998,6 +6028,11 @@ export interface AppInfo {
|
|
5998
6028
|
* 权限位信息
|
5999
6029
|
*/
|
6000
6030
|
PermissionIds?: Array<string>;
|
6031
|
+
/**
|
6032
|
+
* 创建人昵称
|
6033
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6034
|
+
*/
|
6035
|
+
Creator?: string;
|
6001
6036
|
}
|
6002
6037
|
/**
|
6003
6038
|
* 分类信息
|
@@ -528,6 +528,10 @@ export interface GetReconstructDocumentResultResponse {
|
|
528
528
|
* 文档拆分任务的用量
|
529
529
|
*/
|
530
530
|
Usage?: DocumentUsage;
|
531
|
+
/**
|
532
|
+
* 文档解析任务失败错误信息,当文档解析任务失败会返回具体的错误信息
|
533
|
+
*/
|
534
|
+
Error?: ErrorInfo;
|
531
535
|
/**
|
532
536
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
533
537
|
*/
|
@@ -615,7 +619,7 @@ export interface DocumentUsage {
|
|
615
619
|
*/
|
616
620
|
FailPageNum?: number;
|
617
621
|
/**
|
618
|
-
*
|
622
|
+
* 文件大小,单位:字节
|
619
623
|
*/
|
620
624
|
FileSize?: number;
|
621
625
|
}
|
@@ -1080,6 +1084,10 @@ export interface GetSplitDocumentResultResponse {
|
|
1080
1084
|
* 文档拆分任务的用量
|
1081
1085
|
*/
|
1082
1086
|
Usage?: DocumentUsage;
|
1087
|
+
/**
|
1088
|
+
* 文档拆分失败的错误信息,当拆分任务失败时返回该错误信息
|
1089
|
+
*/
|
1090
|
+
Error?: ErrorInfo;
|
1083
1091
|
/**
|
1084
1092
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1085
1093
|
*/
|
@@ -1451,6 +1459,19 @@ export interface Message {
|
|
1451
1459
|
*/
|
1452
1460
|
SearchResults?: Array<SearchResult>;
|
1453
1461
|
}
|
1462
|
+
/**
|
1463
|
+
* 错误信息
|
1464
|
+
*/
|
1465
|
+
export interface ErrorInfo {
|
1466
|
+
/**
|
1467
|
+
* 错误码
|
1468
|
+
*/
|
1469
|
+
Code?: string;
|
1470
|
+
/**
|
1471
|
+
* 错误信息
|
1472
|
+
*/
|
1473
|
+
Message?: string;
|
1474
|
+
}
|
1454
1475
|
/**
|
1455
1476
|
* CreateKnowledgeBase请求参数结构体
|
1456
1477
|
*/
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
3
|
-
import { DeleteL3ConnResponse, GetDeviceResponse, GetMultiFlowStatisticResponse, UpdateL3ConnResponse, UpdateHardwareResponse, UpdateL3SwitchRequest, AddL3ConnRequest, OrderPerLicenseResponse, GetFlowPackagesRequest, SetNotifyUrlResponse, UpdateL3CidrResponse, ModifyPackageRenewFlagRequest, GetFlowPackagesResponse, DeleteL3ConnRequest, GetVendorHardwareResponse, GetActiveDeviceCountResponse, AddGroupRequest, GetGroupListRequest, GetGroupDetailRequest, GroupDeleteDeviceResponse, GroupAddDeviceRequest, GetStatisticDataResponse, GetPublicKeyRequest, GetFlowStatisticByGroupResponse, GetNetMonitorResponse, GetFlowStatisticByRegionRequest, GetFlowAlarmInfoRequest, GetVendorHardwareRequest, CreateEncryptedKeyRequest, DeleteDeviceRequest, DeleteGroupRequest, CreateEncryptedKeyResponse, UpdateL3SwitchResponse, GetL3ConnListResponse, ModifyPackageRenewFlagResponse, GetDeviceRequest, ActivateHardwareResponse, GetFlowStatisticByGroupRequest, GetDevicesResponse, AddL3ConnResponse, GetDevicesRequest, SetNotifyUrlRequest, GetDevicePayModeRequest, DownloadActiveDeviceCountResponse, GetHardwareListRequest, GroupDeleteDeviceRequest, GetFlowStatisticByRegionResponse, GetMultiFlowStatisticRequest, GetFlowAlarmInfoResponse, OrderFlowPackageRequest, GetGroupDetailResponse, UpdateGroupResponse, GetL3ConnListRequest, DownloadActiveDeviceCountRequest, GetHardwareListResponse, AddDeviceRequest, OrderPerLicenseRequest, UpdateGroupRequest, GetFlowStatisticResponse, UpdateHardwareRequest, GetNetMonitorRequest, GetGroupListResponse, OrderFlowPackageResponse, UpdateDeviceResponse, ActivateHardwareRequest, GroupAddDeviceResponse, GetStatisticDataRequest, UpdateDeviceRequest, DeleteGroupResponse, GetPublicKeyResponse, AddHardwareResponse, GetFlowStatisticRequest, AddDeviceResponse, GetDevicePayModeResponse, GetActiveDeviceCountRequest, UpdateL3ConnRequest, DeleteDeviceResponse, AddHardwareRequest, UpdateL3CidrRequest, AddGroupResponse } from "./mna_models";
|
3
|
+
import { DeleteL3ConnResponse, GetDeviceResponse, GetMultiFlowStatisticResponse, UpdateL3ConnResponse, UpdateHardwareResponse, UpdateL3SwitchRequest, AddL3ConnRequest, OrderPerLicenseResponse, GetFlowPackagesRequest, SetNotifyUrlResponse, UpdateL3CidrResponse, ModifyPackageRenewFlagRequest, GetFlowPackagesResponse, ReportOrderRequest, DeleteL3ConnRequest, GetVendorHardwareResponse, GetActiveDeviceCountResponse, AddGroupRequest, GetGroupListRequest, GetGroupDetailRequest, GroupDeleteDeviceResponse, GroupAddDeviceRequest, GetStatisticDataResponse, GetPublicKeyRequest, GetFlowStatisticByGroupResponse, GetNetMonitorResponse, GetFlowStatisticByRegionRequest, ReportOrderResponse, GetFlowAlarmInfoRequest, GetVendorHardwareRequest, CreateEncryptedKeyRequest, DeleteDeviceRequest, DeleteGroupRequest, CreateEncryptedKeyResponse, UpdateL3SwitchResponse, GetL3ConnListResponse, ModifyPackageRenewFlagResponse, GetDeviceRequest, ActivateHardwareResponse, GetFlowStatisticByGroupRequest, GetDevicesResponse, AddL3ConnResponse, GetDevicesRequest, SetNotifyUrlRequest, GetDevicePayModeRequest, DownloadActiveDeviceCountResponse, GetHardwareListRequest, GroupDeleteDeviceRequest, GetFlowStatisticByRegionResponse, GetMultiFlowStatisticRequest, GetFlowAlarmInfoResponse, OrderFlowPackageRequest, GetGroupDetailResponse, UpdateGroupResponse, GetL3ConnListRequest, DownloadActiveDeviceCountRequest, GetHardwareListResponse, AddDeviceRequest, OrderPerLicenseRequest, UpdateGroupRequest, GetFlowStatisticResponse, UpdateHardwareRequest, GetNetMonitorRequest, GetGroupListResponse, OrderFlowPackageResponse, UpdateDeviceResponse, ActivateHardwareRequest, GroupAddDeviceResponse, GetStatisticDataRequest, UpdateDeviceRequest, DeleteGroupResponse, GetPublicKeyResponse, AddHardwareResponse, GetFlowStatisticRequest, AddDeviceResponse, GetDevicePayModeResponse, GetActiveDeviceCountRequest, UpdateL3ConnRequest, DeleteDeviceResponse, AddHardwareRequest, UpdateL3CidrRequest, AddGroupResponse } from "./mna_models";
|
4
4
|
/**
|
5
5
|
* mna client
|
6
6
|
* @class
|
@@ -119,6 +119,10 @@ export declare class Client extends AbstractClient {
|
|
119
119
|
* 根据AppId查询用户设置的流量告警信息,包括阈值,回调url和key
|
120
120
|
*/
|
121
121
|
GetFlowAlarmInfo(req?: GetFlowAlarmInfoRequest, cb?: (error: string, rep: GetFlowAlarmInfoResponse) => void): Promise<GetFlowAlarmInfoResponse>;
|
122
|
+
/**
|
123
|
+
* 用户上报自定义的订单信息,多网聚合加速服务将相关信息进行保存
|
124
|
+
*/
|
125
|
+
ReportOrder(req: ReportOrderRequest, cb?: (error: string, rep: ReportOrderResponse) => void): Promise<ReportOrderResponse>;
|
122
126
|
/**
|
123
127
|
* 删除分组中的设备
|
124
128
|
*/
|
@@ -195,6 +195,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
195
195
|
async GetFlowAlarmInfo(req, cb) {
|
196
196
|
return this.request("GetFlowAlarmInfo", req, cb);
|
197
197
|
}
|
198
|
+
/**
|
199
|
+
* 用户上报自定义的订单信息,多网聚合加速服务将相关信息进行保存
|
200
|
+
*/
|
201
|
+
async ReportOrder(req, cb) {
|
202
|
+
return this.request("ReportOrder", req, cb);
|
203
|
+
}
|
198
204
|
/**
|
199
205
|
* 删除分组中的设备
|
200
206
|
*/
|
@@ -33,6 +33,35 @@ export interface GetMultiFlowStatisticResponse {
|
|
33
33
|
*/
|
34
34
|
RequestId?: string;
|
35
35
|
}
|
36
|
+
/**
|
37
|
+
* 返回上报的订单信息
|
38
|
+
*/
|
39
|
+
export interface OrderInfo {
|
40
|
+
/**
|
41
|
+
* 父帐号uin
|
42
|
+
*/
|
43
|
+
Uin?: string;
|
44
|
+
/**
|
45
|
+
* 项目id
|
46
|
+
*/
|
47
|
+
ProjectId?: string;
|
48
|
+
/**
|
49
|
+
* 用量类型
|
50
|
+
*/
|
51
|
+
PackageType?: string;
|
52
|
+
/**
|
53
|
+
* 订单编号唯一标识符
|
54
|
+
*/
|
55
|
+
OrderId?: string;
|
56
|
+
/**
|
57
|
+
* 上报月份,默认当前月
|
58
|
+
*/
|
59
|
+
ReportMonth?: string;
|
60
|
+
/**
|
61
|
+
* 数据更新时间
|
62
|
+
*/
|
63
|
+
Updated?: string;
|
64
|
+
}
|
36
65
|
/**
|
37
66
|
* 设备流量信息
|
38
67
|
*/
|
@@ -228,6 +257,27 @@ export interface GetFlowPackagesResponse {
|
|
228
257
|
*/
|
229
258
|
RequestId?: string;
|
230
259
|
}
|
260
|
+
/**
|
261
|
+
* ReportOrder请求参数结构体
|
262
|
+
*/
|
263
|
+
export interface ReportOrderRequest {
|
264
|
+
/**
|
265
|
+
* 订单编号唯一标识符
|
266
|
+
*/
|
267
|
+
OrderId: string;
|
268
|
+
/**
|
269
|
+
* 项目id
|
270
|
+
*/
|
271
|
+
ProjectId?: string;
|
272
|
+
/**
|
273
|
+
* 用量类型
|
274
|
+
*/
|
275
|
+
PackageType?: string;
|
276
|
+
/**
|
277
|
+
* 上报月份,默认当前月
|
278
|
+
*/
|
279
|
+
ReportMonth?: string;
|
280
|
+
}
|
231
281
|
/**
|
232
282
|
* DeleteL3Conn请求参数结构体
|
233
283
|
*/
|
@@ -587,6 +637,19 @@ export interface GetFlowStatisticByRegionRequest {
|
|
587
637
|
*/
|
588
638
|
AccessRegion?: string;
|
589
639
|
}
|
640
|
+
/**
|
641
|
+
* ReportOrder返回参数结构体
|
642
|
+
*/
|
643
|
+
export interface ReportOrderResponse {
|
644
|
+
/**
|
645
|
+
* 订单信息
|
646
|
+
*/
|
647
|
+
OrderInfo?: OrderInfo;
|
648
|
+
/**
|
649
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
650
|
+
*/
|
651
|
+
RequestId?: string;
|
652
|
+
}
|
590
653
|
/**
|
591
654
|
* GetFlowAlarmInfo请求参数结构体
|
592
655
|
*/
|
@@ -364,6 +364,10 @@ export interface CreateJobConfigRequest {
|
|
364
364
|
* checkpoint 超时时间
|
365
365
|
*/
|
366
366
|
CheckpointTimeoutSecond?: number;
|
367
|
+
/**
|
368
|
+
* checkpoint 间隔时间
|
369
|
+
*/
|
370
|
+
CheckpointIntervalSecond?: number;
|
367
371
|
}
|
368
372
|
/**
|
369
373
|
* 集群的版本相关信息
|
@@ -1182,6 +1186,26 @@ export interface CreateWorkSpaceResponse {
|
|
1182
1186
|
*/
|
1183
1187
|
RequestId?: string;
|
1184
1188
|
}
|
1189
|
+
/**
|
1190
|
+
* 多可用区支持备区域
|
1191
|
+
*/
|
1192
|
+
export interface SlaveZone {
|
1193
|
+
/**
|
1194
|
+
* vpc
|
1195
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1196
|
+
*/
|
1197
|
+
VpcId?: string;
|
1198
|
+
/**
|
1199
|
+
* 子网
|
1200
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1201
|
+
*/
|
1202
|
+
SubnetId?: string;
|
1203
|
+
/**
|
1204
|
+
* 区
|
1205
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1206
|
+
*/
|
1207
|
+
Zone?: string;
|
1208
|
+
}
|
1185
1209
|
/**
|
1186
1210
|
* CreateJob返回参数结构体
|
1187
1211
|
*/
|
@@ -3120,6 +3144,20 @@ export interface Cluster {
|
|
3120
3144
|
注意:此字段可能返回 null,表示取不到有效值。
|
3121
3145
|
*/
|
3122
3146
|
Yarns?: Array<HadoopYarnItem>;
|
3147
|
+
/**
|
3148
|
+
* 0 单可用区 1多可用区
|
3149
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3150
|
+
*/
|
3151
|
+
DeploymentMode?: number;
|
3152
|
+
/**
|
3153
|
+
* 备可用区
|
3154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3155
|
+
*/
|
3156
|
+
SlaveZones?: Array<SlaveZone>;
|
3157
|
+
/**
|
3158
|
+
* 集群的日志cos存储
|
3159
|
+
*/
|
3160
|
+
LogCOSBucket?: string;
|
3123
3161
|
}
|
3124
3162
|
/**
|
3125
3163
|
* 作业运行图
|
@@ -3606,6 +3644,10 @@ export interface JobConfig {
|
|
3606
3644
|
* checkpoint 超时时间
|
3607
3645
|
*/
|
3608
3646
|
CheckpointTimeoutSecond?: number;
|
3647
|
+
/**
|
3648
|
+
* checkpoint 间隔时间
|
3649
|
+
*/
|
3650
|
+
CheckpointIntervalSecond?: number;
|
3609
3651
|
}
|
3610
3652
|
/**
|
3611
3653
|
* DescribeResourceConfigs请求参数结构体
|
@@ -386,7 +386,7 @@ export declare class Client extends AbstractClient {
|
|
386
386
|
*/
|
387
387
|
DescribeInstances(req: DescribeInstancesRequest, cb?: (error: string, rep: DescribeInstancesResponse) => void): Promise<DescribeInstancesResponse>;
|
388
388
|
/**
|
389
|
-
*
|
389
|
+
* 本接口(RemoveReplicationGroup)用于删除复制组。
|
390
390
|
*/
|
391
391
|
RemoveReplicationGroup(req: RemoveReplicationGroupRequest, cb?: (error: string, rep: RemoveReplicationGroupResponse) => void): Promise<RemoveReplicationGroupResponse>;
|
392
392
|
/**
|
@@ -594,7 +594,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
594
594
|
return this.request("DescribeInstances", req, cb);
|
595
595
|
}
|
596
596
|
/**
|
597
|
-
*
|
597
|
+
* 本接口(RemoveReplicationGroup)用于删除复制组。
|
598
598
|
*/
|
599
599
|
async RemoveReplicationGroup(req, cb) {
|
600
600
|
return this.request("RemoveReplicationGroup", req, cb);
|
@@ -7714,7 +7714,7 @@ export interface ClientAttester {
|
|
7714
7714
|
Type?: string;
|
7715
7715
|
/**
|
7716
7716
|
* 认证方法。取值有:
|
7717
|
-
<li>TC-RCE:
|
7717
|
+
<li>TC-RCE: 使用风险识别 RCE 进行认证;</li>
|
7718
7718
|
<li>TC-CAPTCHA: 使用天御验证码进行认证。</li>
|
7719
7719
|
*/
|
7720
7720
|
AttesterSource?: string;
|
@@ -11189,8 +11189,8 @@ export interface Resource {
|
|
11189
11189
|
PlanId?: string;
|
11190
11190
|
/**
|
11191
11191
|
* 地域,取值有:
|
11192
|
-
<li>mainland
|
11193
|
-
<li>overseas
|
11192
|
+
<li>mainland:中国大陆境内;</li>
|
11193
|
+
<li>overseas:中国大陆境外。</li>
|
11194
11194
|
<li>global:全球。</li>
|
11195
11195
|
*/
|
11196
11196
|
Area?: string;
|
@@ -744,12 +744,12 @@ export interface CFSOption {
|
|
744
744
|
/**
|
745
745
|
* 文件系统远程挂载ip及路径。
|
746
746
|
*/
|
747
|
-
RemotePath
|
747
|
+
RemotePath?: string;
|
748
748
|
/**
|
749
|
-
*
|
750
|
-
<li>NFS 3.0
|
751
|
-
<li>NFS 4.0
|
752
|
-
<li>TURBO
|
749
|
+
* 文件系统协议类型。
|
750
|
+
<li>NFS 3.0</li>
|
751
|
+
<li>NFS 4.0</li>
|
752
|
+
<li>TURBO</li>
|
753
753
|
*/
|
754
754
|
Protocol?: string;
|
755
755
|
/**
|
@@ -758,12 +758,15 @@ export interface CFSOption {
|
|
758
758
|
StorageType?: string;
|
759
759
|
/**
|
760
760
|
* 文件系统挂载挂载命令参数选项。
|
761
|
-
|
762
761
|
- NFS 3.0默认值:vers=3,nolock,proto=tcp,noresvport
|
763
762
|
- NFS 4.0默认值:vers=4.0,noresvport
|
764
763
|
- TURBO默认值:user_xattr
|
765
764
|
*/
|
766
765
|
MountOption?: string;
|
766
|
+
/**
|
767
|
+
* 文件系统ID 文件系统ID通过调用接口[DescribeCfsFileSystems](https://cloud.tencent.com/document/product/582/38170)获取。
|
768
|
+
*/
|
769
|
+
FileSystemId?: string;
|
767
770
|
}
|
768
771
|
/**
|
769
772
|
* DeleteClusterStorageOption请求参数结构体
|
@@ -5718,23 +5718,23 @@ export interface ModifyClusterVirtualNodePoolResponse {
|
|
5718
5718
|
*/
|
5719
5719
|
export interface SuperNodeResource {
|
5720
5720
|
/**
|
5721
|
-
*
|
5721
|
+
* 节点名称,此字段在出参中有效。
|
5722
5722
|
*/
|
5723
5723
|
NodeName?: string;
|
5724
5724
|
/**
|
5725
|
-
*
|
5725
|
+
* 节点上的资源总数,QuotaType为 exact 时,表示创建指定规格的精确配额数量。
|
5726
5726
|
*/
|
5727
5727
|
Num?: number;
|
5728
5728
|
/**
|
5729
|
-
*
|
5729
|
+
* 节点上的总核数,QuotaType为 exact 时表示指定规格的核数。
|
5730
5730
|
*/
|
5731
5731
|
Cpu?: number;
|
5732
5732
|
/**
|
5733
|
-
*
|
5733
|
+
* 节点上的总内存数,QuotaType为 exact 时表示指定规格的内存,单位:Gi
|
5734
5734
|
*/
|
5735
5735
|
Memory?: number;
|
5736
5736
|
/**
|
5737
|
-
* 节点上的总 GPU
|
5737
|
+
* 节点上的总 GPU 卡数,QuotaType为 exact 时表示指定规格的GPU卡数。
|
5738
5738
|
*/
|
5739
5739
|
Gpu?: number;
|
5740
5740
|
/**
|
@@ -5750,7 +5750,7 @@ export interface SuperNodeResource {
|
|
5750
5750
|
*/
|
5751
5751
|
ResourceType?: string;
|
5752
5752
|
/**
|
5753
|
-
* 置放群组 ID
|
5753
|
+
* 置放群组 ID,QuotaType为 exact 时有效,表示购买的精确配额需满足置放群组。可通过 [DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/product/213/17810) 接口返回值中的DisasterRecoverGroupId获取。
|
5754
5754
|
*/
|
5755
5755
|
DisasterRecoverGroupId?: string;
|
5756
5756
|
}
|
@@ -4517,7 +4517,7 @@ export interface UpdateStreamIngestRequest {
|
|
4517
4517
|
*/
|
4518
4518
|
Volume?: number;
|
4519
4519
|
/**
|
4520
|
-
* 是否暂停,默认false
|
4520
|
+
* 是否暂停,默认false表示不暂停。暂停期间任务仍在进行中仍会计费,暂停超过12小时会自动销毁任务, 建议主动调用停止任务接口。
|
4521
4521
|
*/
|
4522
4522
|
IsPause?: boolean;
|
4523
4523
|
}
|