tencentcloud-sdk-nodejs 4.0.597 → 4.0.598
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 +184 -0
- package/SERVICE_CHANGELOG.md +201 -226
- package/package.json +1 -1
- package/products.md +16 -16
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdb/v20170320/cdb_models.ts +12 -2
- package/src/services/ckafka/v20190819/ckafka_models.ts +1 -1
- package/src/services/cwp/v20180228/cwp_models.ts +26 -3
- package/src/services/dlc/v20210125/dlc_models.ts +25 -2
- package/src/services/eis/v20210601/eis_models.ts +6 -1
- package/src/services/ess/v20201111/ess_models.ts +1 -1
- package/src/services/essbasic/v20210526/essbasic_models.ts +7 -2
- package/src/services/mrs/v20200910/mrs_models.ts +2 -2
- package/src/services/scf/v20180416/scf_models.ts +11 -1
- package/src/services/tione/v20211111/tione_models.ts +17 -11
- package/src/services/trp/v20210515/trp_models.ts +1 -1
- package/src/services/vpc/v20170312/vpc_client.ts +4 -4
- package/src/services/vpc/v20170312/vpc_models.ts +2 -2
- package/src/services/vrs/v20200824/vrs_models.ts +3 -3
- package/src/services/wedata/v20210820/wedata_models.ts +6 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +10 -2
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +23 -3
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +22 -2
- package/tencentcloud/services/eis/v20210601/eis_models.d.ts +5 -1
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +6 -2
- package/tencentcloud/services/mrs/v20200910/mrs_models.d.ts +2 -2
- package/tencentcloud/services/scf/v20180416/scf_models.d.ts +9 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +16 -11
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +1 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +4 -4
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +4 -4
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -2
- package/tencentcloud/services/vrs/v20200824/vrs_models.d.ts +3 -3
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +5 -0
|
@@ -4101,6 +4101,11 @@ export interface DescribeVulListRequest {
|
|
|
4101
4101
|
<li>VulCategory- string - 是否必填:否 - 漏洞类别 1: web-cms漏洞 2:应用漏洞 4: Linux软件漏洞 5: Windows系统漏洞</li>
|
|
4102
4102
|
<li>IsSupportDefense - int- 是否必填:否 - 是否支持防御 0:不支持 1:支持</li>
|
|
4103
4103
|
<li>Labels- string- 是否必填:否 - 标签搜索</li>
|
|
4104
|
+
<li>IsSupportAutoFix- string- 是否必填:否 - 是否支持自动修复 0:不支持 1:支持</li>
|
|
4105
|
+
<li>CvssScore- string- 是否必填:否 - CvssScore大于多少</li>
|
|
4106
|
+
<li>AttackLevel- string- 是否必填:否 - 攻击热度大于多少</li>
|
|
4107
|
+
|
|
4108
|
+
|
|
4104
4109
|
*/
|
|
4105
4110
|
Filters?: Array<Filters>;
|
|
4106
4111
|
/**
|
|
@@ -6705,17 +6710,17 @@ export interface DescribeVulListResponse {
|
|
|
6705
6710
|
* 漏洞列表
|
|
6706
6711
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6707
6712
|
*/
|
|
6708
|
-
VulInfoList
|
|
6713
|
+
VulInfoList?: Array<VulInfoList>;
|
|
6709
6714
|
/**
|
|
6710
6715
|
* 漏洞总条数
|
|
6711
6716
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6712
6717
|
*/
|
|
6713
|
-
TotalCount
|
|
6718
|
+
TotalCount?: number;
|
|
6714
6719
|
/**
|
|
6715
6720
|
* 重点关注漏洞总数
|
|
6716
6721
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6717
6722
|
*/
|
|
6718
|
-
FollowVulCount
|
|
6723
|
+
FollowVulCount?: number;
|
|
6719
6724
|
/**
|
|
6720
6725
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6721
6726
|
*/
|
|
@@ -15588,6 +15593,21 @@ export interface VulInfoList {
|
|
|
15588
15593
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15589
15594
|
*/
|
|
15590
15595
|
VulCategory: number;
|
|
15596
|
+
/**
|
|
15597
|
+
* 攻击热度级别
|
|
15598
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15599
|
+
*/
|
|
15600
|
+
AttackLevel?: number;
|
|
15601
|
+
/**
|
|
15602
|
+
* 漏洞修复后是否需要重启
|
|
15603
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15604
|
+
*/
|
|
15605
|
+
FixNoNeedRestart?: boolean;
|
|
15606
|
+
/**
|
|
15607
|
+
* 检测方式0 - 版本比对, 1 - POC验证
|
|
15608
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15609
|
+
*/
|
|
15610
|
+
Method?: number;
|
|
15591
15611
|
}
|
|
15592
15612
|
/**
|
|
15593
15613
|
* ExportIgnoreRuleEffectHostList请求参数结构体
|
|
@@ -1185,6 +1185,10 @@ export interface GenerateCreateMangedTableSqlRequest {
|
|
|
1185
1185
|
* 表属性信息
|
|
1186
1186
|
*/
|
|
1187
1187
|
Properties?: Array<Property>;
|
|
1188
|
+
/**
|
|
1189
|
+
* V2 upsert表 upsert键
|
|
1190
|
+
*/
|
|
1191
|
+
UpsertKeys?: Array<string>;
|
|
1188
1192
|
}
|
|
1189
1193
|
/**
|
|
1190
1194
|
* SwitchDataEngine返回参数结构体
|
|
@@ -1402,7 +1406,7 @@ export interface GenerateCreateMangedTableSqlResponse {
|
|
|
1402
1406
|
/**
|
|
1403
1407
|
* 创建托管存储内表sql语句描述
|
|
1404
1408
|
*/
|
|
1405
|
-
Execution
|
|
1409
|
+
Execution?: Execution;
|
|
1406
1410
|
/**
|
|
1407
1411
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1408
1412
|
*/
|
|
@@ -1655,6 +1659,11 @@ export interface TableBaseInfo {
|
|
|
1655
1659
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1656
1660
|
*/
|
|
1657
1661
|
GovernPolicy?: DataGovernPolicy;
|
|
1662
|
+
/**
|
|
1663
|
+
* 库数据治理是否关闭,关闭:true,开启:false
|
|
1664
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1665
|
+
*/
|
|
1666
|
+
DbGovernPolicyIsDisable?: string;
|
|
1658
1667
|
}
|
|
1659
1668
|
/**
|
|
1660
1669
|
* UnlockMetaData请求参数结构体
|
|
@@ -3906,7 +3915,18 @@ export interface CancelTaskResponse {
|
|
|
3906
3915
|
/**
|
|
3907
3916
|
* 数据治理规则
|
|
3908
3917
|
*/
|
|
3909
|
-
export
|
|
3918
|
+
export interface DataGovernPolicy {
|
|
3919
|
+
/**
|
|
3920
|
+
* 治理规则类型,Customize: 自定义;Intelligence: 智能治理
|
|
3921
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3922
|
+
*/
|
|
3923
|
+
RuleType?: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* 治理引擎
|
|
3926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3927
|
+
*/
|
|
3928
|
+
GovernEngine?: string;
|
|
3929
|
+
}
|
|
3910
3930
|
/**
|
|
3911
3931
|
* UnlockMetaData返回参数结构体
|
|
3912
3932
|
*/
|
|
@@ -5,7 +5,7 @@ export interface ListRuntimesMCResponse {
|
|
|
5
5
|
/**
|
|
6
6
|
* 运行时列表
|
|
7
7
|
*/
|
|
8
|
-
Runtimes
|
|
8
|
+
Runtimes?: Array<RuntimeMC>;
|
|
9
9
|
/**
|
|
10
10
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11
11
|
*/
|
|
@@ -266,6 +266,10 @@ export interface ListRuntimesMCRequest {
|
|
|
266
266
|
* 环境运行类型:0:运行时类型、1:api类型
|
|
267
267
|
*/
|
|
268
268
|
RuntimeClass?: number;
|
|
269
|
+
/**
|
|
270
|
+
* 计划类型:0-pro 1-lite
|
|
271
|
+
*/
|
|
272
|
+
PlanType?: number;
|
|
269
273
|
}
|
|
270
274
|
/**
|
|
271
275
|
* GetRuntimeMC请求参数结构体
|
|
@@ -3036,7 +3036,7 @@ DYNAMIC_TABLE - 动态表格控件;
|
|
|
3036
3036
|
ATTACHMENT - 附件控件,ComponentValue 填写附件图片的资源 ID列表,以逗号分割;
|
|
3037
3037
|
SELECTOR - 选择器控件,ComponentValue填写选择的字符串内容;
|
|
3038
3038
|
DATE - 日期控件;默认是格式化为xxxx年xx月xx日字符串;
|
|
3039
|
-
DISTRICT -
|
|
3039
|
+
DISTRICT - 省市区行政区控件,ComponentValue填写省市区行政区字符串内容;
|
|
3040
3040
|
|
|
3041
3041
|
如果是SignComponent控件类型,则可选的字段为
|
|
3042
3042
|
SIGN_SEAL - 签署印章控件;
|
|
@@ -383,6 +383,10 @@ export interface BaseFlowInfo {
|
|
|
383
383
|
* 用户流程自定义数据参数
|
|
384
384
|
*/
|
|
385
385
|
UserData?: string;
|
|
386
|
+
/**
|
|
387
|
+
* 抄送人信息
|
|
388
|
+
*/
|
|
389
|
+
CcInfos?: Array<CcInfo>;
|
|
386
390
|
}
|
|
387
391
|
/**
|
|
388
392
|
* CreateConsoleLoginUrl返回参数结构体
|
|
@@ -2924,10 +2928,10 @@ MULTI_LINE_TEXT - 多行文本控件,输入文本字符串;
|
|
|
2924
2928
|
CHECK_BOX - 勾选框控件,若选中填写ComponentValue 填写 true或者 false 字符串;
|
|
2925
2929
|
FILL_IMAGE - 图片控件,ComponentValue 填写图片的资源 ID;
|
|
2926
2930
|
DYNAMIC_TABLE - 动态表格控件;
|
|
2927
|
-
ATTACHMENT - 附件控件,ComponentValue
|
|
2931
|
+
ATTACHMENT - 附件控件,ComponentValue 填写附件图片的资源 ID列表,以逗号分割;
|
|
2928
2932
|
SELECTOR - 选择器控件,ComponentValue填写选择的字符串内容;
|
|
2929
2933
|
DATE - 日期控件;默认是格式化为xxxx年xx月xx日字符串;
|
|
2930
|
-
DISTRICT -
|
|
2934
|
+
DISTRICT - 省市区行政区控件,ComponentValue填写省市区行政区字符串内容;
|
|
2931
2935
|
|
|
2932
2936
|
如果是SignComponent控件类型,则可选的字段为
|
|
2933
2937
|
SIGN_SEAL - 签署印章控件;
|
|
@@ -257,7 +257,7 @@ export interface ImageToObjectRequest {
|
|
|
257
257
|
* 可选。用于指定不同报告使用的结构化引擎版本,不同版本返回的JSON 数据结果不兼容。若不指定版本号,就默认用旧的版本号。
|
|
258
258
|
(1)检验报告 11,默认使用 V2,最高支持 V3。
|
|
259
259
|
(2)病理报告 15,默认使用 V1,最高支持 V2。
|
|
260
|
-
(3)入院记录29、出院记录 28
|
|
260
|
+
(3)入院记录29、出院记录 28、病历记录 216、病程记录 217、门诊记录 210,默认使用 V1,最高支持 V2。
|
|
261
261
|
*/
|
|
262
262
|
ReportTypeVersion?: Array<ReportTypeVersion>;
|
|
263
263
|
}
|
|
@@ -2310,7 +2310,7 @@ export interface TextToObjectRequest {
|
|
|
2310
2310
|
* 可选。用于指定不同报告使用的结构化引擎版本,不同版本返回的JSON 数据结果不兼容。若不指定版本号,就默认用旧的版本号。
|
|
2311
2311
|
(1)检验报告 11,默认使用 V2,最高支持 V3。
|
|
2312
2312
|
(2)病理报告 15,默认使用 V1,最高支持 V2。
|
|
2313
|
-
(3)入院记录29、出院记录 28
|
|
2313
|
+
(3)入院记录29、出院记录 28、病历记录 216、病程记录 217、门诊记录 210,默认使用 V1,最高支持 V2。
|
|
2314
2314
|
*/
|
|
2315
2315
|
ReportTypeVersion?: Array<ReportTypeVersion>;
|
|
2316
2316
|
}
|
|
@@ -92,6 +92,10 @@ export interface Trigger {
|
|
|
92
92
|
* 触发器绑定的别名或版本
|
|
93
93
|
*/
|
|
94
94
|
Qualifier: string;
|
|
95
|
+
/**
|
|
96
|
+
* 触发器描述
|
|
97
|
+
*/
|
|
98
|
+
Description?: string;
|
|
95
99
|
}
|
|
96
100
|
/**
|
|
97
101
|
* GetProvisionedConcurrencyConfig请求参数结构体
|
|
@@ -1267,6 +1271,10 @@ export interface CreateTriggerRequest {
|
|
|
1267
1271
|
* 用户自定义参数,仅支持timer触发器
|
|
1268
1272
|
*/
|
|
1269
1273
|
CustomArgument?: string;
|
|
1274
|
+
/**
|
|
1275
|
+
* 触发器描述
|
|
1276
|
+
*/
|
|
1277
|
+
Description?: string;
|
|
1270
1278
|
}
|
|
1271
1279
|
/**
|
|
1272
1280
|
* UpdateNamespace返回参数结构体
|
|
@@ -1917,7 +1925,7 @@ export interface CreateTriggerResponse {
|
|
|
1917
1925
|
/**
|
|
1918
1926
|
* 触发器信息
|
|
1919
1927
|
*/
|
|
1920
|
-
TriggerInfo
|
|
1928
|
+
TriggerInfo?: Trigger;
|
|
1921
1929
|
/**
|
|
1922
1930
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1923
1931
|
*/
|
|
@@ -266,12 +266,12 @@ export interface BatchTaskDetail {
|
|
|
266
266
|
*/
|
|
267
267
|
ChargeType: string;
|
|
268
268
|
/**
|
|
269
|
-
*
|
|
269
|
+
* 包年包月资源组id
|
|
270
270
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
271
271
|
*/
|
|
272
272
|
ResourceGroupId: string;
|
|
273
273
|
/**
|
|
274
|
-
*
|
|
274
|
+
* 包年包月资源组名称
|
|
275
275
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
276
276
|
*/
|
|
277
277
|
ResourceGroupName: string;
|
|
@@ -388,6 +388,11 @@ export interface BatchTaskDetail {
|
|
|
388
388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
389
389
|
*/
|
|
390
390
|
PodList?: Array<string>;
|
|
391
|
+
/**
|
|
392
|
+
* 模型推理代码信息
|
|
393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
394
|
+
*/
|
|
395
|
+
ModelInferenceCodeInfo?: CosPathInfo;
|
|
391
396
|
}
|
|
392
397
|
/**
|
|
393
398
|
* StartTrainingTask请求参数结构体
|
|
@@ -1114,7 +1119,7 @@ export interface CreateBatchTaskRequest {
|
|
|
1114
1119
|
*/
|
|
1115
1120
|
BatchTaskName: string;
|
|
1116
1121
|
/**
|
|
1117
|
-
* 计费模式,eg:PREPAID
|
|
1122
|
+
* 计费模式,eg:PREPAID 包年包月;POSTPAID_BY_HOUR 按量计费
|
|
1118
1123
|
*/
|
|
1119
1124
|
ChargeType: string;
|
|
1120
1125
|
/**
|
|
@@ -1138,7 +1143,7 @@ export interface CreateBatchTaskRequest {
|
|
|
1138
1143
|
*/
|
|
1139
1144
|
CronInfo?: CronInfo;
|
|
1140
1145
|
/**
|
|
1141
|
-
*
|
|
1146
|
+
* 包年包月资源组ID
|
|
1142
1147
|
*/
|
|
1143
1148
|
ResourceGroupId?: string;
|
|
1144
1149
|
/**
|
|
@@ -2318,12 +2323,12 @@ export interface DescribeBatchTasksResponse {
|
|
|
2318
2323
|
/**
|
|
2319
2324
|
* 数量
|
|
2320
2325
|
*/
|
|
2321
|
-
TotalCount
|
|
2326
|
+
TotalCount?: number;
|
|
2322
2327
|
/**
|
|
2323
2328
|
* 任务集
|
|
2324
2329
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2325
2330
|
*/
|
|
2326
|
-
BatchTaskSet
|
|
2331
|
+
BatchTaskSet?: Array<BatchTaskSetItem>;
|
|
2327
2332
|
/**
|
|
2328
2333
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2329
2334
|
*/
|
|
@@ -2656,7 +2661,7 @@ export interface BatchTaskSetItem {
|
|
|
2656
2661
|
*/
|
|
2657
2662
|
ChargeStatus: string;
|
|
2658
2663
|
/**
|
|
2659
|
-
*
|
|
2664
|
+
* 包年包月资源组ID
|
|
2660
2665
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2661
2666
|
*/
|
|
2662
2667
|
ResourceGroupId: string;
|
|
@@ -2702,7 +2707,7 @@ export interface BatchTaskSetItem {
|
|
|
2702
2707
|
*/
|
|
2703
2708
|
Outputs: Array<DataConfig>;
|
|
2704
2709
|
/**
|
|
2705
|
-
*
|
|
2710
|
+
* 包年包月资源组名称
|
|
2706
2711
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2707
2712
|
*/
|
|
2708
2713
|
ResourceGroupName: string;
|
|
@@ -2711,7 +2716,7 @@ export interface BatchTaskSetItem {
|
|
|
2711
2716
|
*/
|
|
2712
2717
|
FailureReason: string;
|
|
2713
2718
|
/**
|
|
2714
|
-
* 计费金额信息,eg:2.00元/小时 (for
|
|
2719
|
+
* 计费金额信息,eg:2.00元/小时 (for 按量计费)
|
|
2715
2720
|
*/
|
|
2716
2721
|
BillingInfo: string;
|
|
2717
2722
|
}
|
|
@@ -3284,7 +3289,7 @@ export interface CreateBatchTaskResponse {
|
|
|
3284
3289
|
/**
|
|
3285
3290
|
* 跑批任务ID
|
|
3286
3291
|
*/
|
|
3287
|
-
BatchTaskId
|
|
3292
|
+
BatchTaskId?: string;
|
|
3288
3293
|
/**
|
|
3289
3294
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3290
3295
|
*/
|
|
@@ -3831,7 +3836,7 @@ export interface DescribeBatchTasksRequest {
|
|
|
3831
3836
|
Name(名称):task1
|
|
3832
3837
|
Id(task ID):train-23091792777383936
|
|
3833
3838
|
Status(状态):STARTING / RUNNING / STOPPING / STOPPED / FAILED / SUCCEED / SUBMIT_FAILED
|
|
3834
|
-
ChargeType(计费类型):PREPAID
|
|
3839
|
+
ChargeType(计费类型):PREPAID 包年包月 / POSTPAID_BY_HOUR 按量计费
|
|
3835
3840
|
CHARGE_STATUS(计费状态):NOT_BILLING(未开始计费)/ BILLING(计费中)/ ARREARS_STOP(欠费停止)
|
|
3836
3841
|
*/
|
|
3837
3842
|
Filters?: Array<Filter>;
|
|
@@ -158,7 +158,7 @@ export declare class Client extends AbstractClient {
|
|
|
158
158
|
*/
|
|
159
159
|
AssociateDirectConnectGatewayNatGateway(req: AssociateDirectConnectGatewayNatGatewayRequest, cb?: (error: string, rep: AssociateDirectConnectGatewayNatGatewayResponse) => void): Promise<AssociateDirectConnectGatewayNatGatewayResponse>;
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* 本接口(DeleteVpnConnection)用于删除VPN通道。
|
|
162
162
|
*/
|
|
163
163
|
DeleteVpnConnection(req: DeleteVpnConnectionRequest, cb?: (error: string, rep: DeleteVpnConnectionResponse) => void): Promise<DeleteVpnConnectionResponse>;
|
|
164
164
|
/**
|
|
@@ -685,7 +685,7 @@ export declare class Client extends AbstractClient {
|
|
|
685
685
|
*/
|
|
686
686
|
ModifyLocalGateway(req: ModifyLocalGatewayRequest, cb?: (error: string, rep: ModifyLocalGatewayResponse) => void): Promise<ModifyLocalGatewayResponse>;
|
|
687
687
|
/**
|
|
688
|
-
*
|
|
688
|
+
* 本接口(DescribeVpnConnections)用于查询VPN通道列表。
|
|
689
689
|
*/
|
|
690
690
|
DescribeVpnConnections(req: DescribeVpnConnectionsRequest, cb?: (error: string, rep: DescribeVpnConnectionsResponse) => void): Promise<DescribeVpnConnectionsResponse>;
|
|
691
691
|
/**
|
|
@@ -903,7 +903,7 @@ export declare class Client extends AbstractClient {
|
|
|
903
903
|
*/
|
|
904
904
|
DescribeVpcEndPointServiceWhiteList(req: DescribeVpcEndPointServiceWhiteListRequest, cb?: (error: string, rep: DescribeVpcEndPointServiceWhiteListResponse) => void): Promise<DescribeVpcEndPointServiceWhiteListResponse>;
|
|
905
905
|
/**
|
|
906
|
-
*
|
|
906
|
+
* 本接口(ResetVpnConnection)用于重置VPN通道。
|
|
907
907
|
*/
|
|
908
908
|
ResetVpnConnection(req: ResetVpnConnectionRequest, cb?: (error: string, rep: ResetVpnConnectionResponse) => void): Promise<ResetVpnConnectionResponse>;
|
|
909
909
|
/**
|
|
@@ -1165,7 +1165,7 @@ LimitTypes取值范围:
|
|
|
1165
1165
|
*/
|
|
1166
1166
|
ModifyVpnGatewayAttribute(req: ModifyVpnGatewayAttributeRequest, cb?: (error: string, rep: ModifyVpnGatewayAttributeResponse) => void): Promise<ModifyVpnGatewayAttributeResponse>;
|
|
1167
1167
|
/**
|
|
1168
|
-
* 本接口(ResetVpnGatewayInternetMaxBandwidth
|
|
1168
|
+
* 本接口(ResetVpnGatewayInternetMaxBandwidth)用于调整VPN网关带宽上限。VPN网关带宽目前仅支持部分带宽范围内升降配,如【5,100】Mbps和【200,1000】Mbps,在各自带宽范围内可提升配额,跨范围提升配额和降配暂不支持,如果是包年包月VPN网关需要在有效期内。
|
|
1169
1169
|
*/
|
|
1170
1170
|
ResetVpnGatewayInternetMaxBandwidth(req: ResetVpnGatewayInternetMaxBandwidthRequest, cb?: (error: string, rep: ResetVpnGatewayInternetMaxBandwidthResponse) => void): Promise<ResetVpnGatewayInternetMaxBandwidthResponse>;
|
|
1171
1171
|
/**
|
|
@@ -246,7 +246,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
246
246
|
return this.request("AssociateDirectConnectGatewayNatGateway", req, cb);
|
|
247
247
|
}
|
|
248
248
|
/**
|
|
249
|
-
*
|
|
249
|
+
* 本接口(DeleteVpnConnection)用于删除VPN通道。
|
|
250
250
|
*/
|
|
251
251
|
async DeleteVpnConnection(req, cb) {
|
|
252
252
|
return this.request("DeleteVpnConnection", req, cb);
|
|
@@ -985,7 +985,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
985
985
|
return this.request("ModifyLocalGateway", req, cb);
|
|
986
986
|
}
|
|
987
987
|
/**
|
|
988
|
-
*
|
|
988
|
+
* 本接口(DescribeVpnConnections)用于查询VPN通道列表。
|
|
989
989
|
*/
|
|
990
990
|
async DescribeVpnConnections(req, cb) {
|
|
991
991
|
return this.request("DescribeVpnConnections", req, cb);
|
|
@@ -1297,7 +1297,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1297
1297
|
return this.request("DescribeVpcEndPointServiceWhiteList", req, cb);
|
|
1298
1298
|
}
|
|
1299
1299
|
/**
|
|
1300
|
-
*
|
|
1300
|
+
* 本接口(ResetVpnConnection)用于重置VPN通道。
|
|
1301
1301
|
*/
|
|
1302
1302
|
async ResetVpnConnection(req, cb) {
|
|
1303
1303
|
return this.request("ResetVpnConnection", req, cb);
|
|
@@ -1659,7 +1659,7 @@ LimitTypes取值范围:
|
|
|
1659
1659
|
return this.request("ModifyVpnGatewayAttribute", req, cb);
|
|
1660
1660
|
}
|
|
1661
1661
|
/**
|
|
1662
|
-
* 本接口(ResetVpnGatewayInternetMaxBandwidth
|
|
1662
|
+
* 本接口(ResetVpnGatewayInternetMaxBandwidth)用于调整VPN网关带宽上限。VPN网关带宽目前仅支持部分带宽范围内升降配,如【5,100】Mbps和【200,1000】Mbps,在各自带宽范围内可提升配额,跨范围提升配额和降配暂不支持,如果是包年包月VPN网关需要在有效期内。
|
|
1663
1663
|
*/
|
|
1664
1664
|
async ResetVpnGatewayInternetMaxBandwidth(req, cb) {
|
|
1665
1665
|
return this.request("ResetVpnGatewayInternetMaxBandwidth", req, cb);
|
|
@@ -4593,7 +4593,7 @@ export interface CreateCustomerGatewayResponse {
|
|
|
4593
4593
|
/**
|
|
4594
4594
|
* 对端网关对象
|
|
4595
4595
|
*/
|
|
4596
|
-
CustomerGateway
|
|
4596
|
+
CustomerGateway?: CustomerGateway;
|
|
4597
4597
|
/**
|
|
4598
4598
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4599
4599
|
*/
|
|
@@ -6466,7 +6466,7 @@ export interface ResetVpnGatewayInternetMaxBandwidthRequest {
|
|
|
6466
6466
|
*/
|
|
6467
6467
|
VpnGatewayId: string;
|
|
6468
6468
|
/**
|
|
6469
|
-
*
|
|
6469
|
+
* 新规格公网带宽设置。可选带宽规格:5, 10, 20, 50, 100, 200, 500, 1000;单位:Mbps。VPN网关带宽目前仅支持部分带宽范围内升降配,如【5,100】Mbps和【200,1000】Mbps,在各自带宽范围内可提升配额,跨范围提升配额和降配暂不支持。
|
|
6470
6470
|
*/
|
|
6471
6471
|
InternetMaxBandwidthOut: number;
|
|
6472
6472
|
}
|
|
@@ -95,7 +95,7 @@ export interface DetectEnvAndSoundQualityRequest {
|
|
|
95
95
|
*/
|
|
96
96
|
TextId: string;
|
|
97
97
|
/**
|
|
98
|
-
* 语音数据 要使用base64编码(采用python
|
|
98
|
+
* 语音数据 要使用base64编码(采用python语言时注意读取文件时需要转成base64字符串编码,例如:str(base64.b64encode(open("input.aac", mode="rb").read()), encoding='utf-8') )。
|
|
99
99
|
*/
|
|
100
100
|
AudioData: string;
|
|
101
101
|
/**
|
|
@@ -233,7 +233,7 @@ export interface CreateVRSTaskRequest {
|
|
|
233
233
|
/**
|
|
234
234
|
* 音频采样率:
|
|
235
235
|
|
|
236
|
-
16000:16k
|
|
236
|
+
16000:16k
|
|
237
237
|
*/
|
|
238
238
|
SampleRate: number;
|
|
239
239
|
/**
|
|
@@ -247,7 +247,7 @@ export interface CreateVRSTaskRequest {
|
|
|
247
247
|
/**
|
|
248
248
|
* 语言类型:
|
|
249
249
|
|
|
250
|
-
1
|
|
250
|
+
1-中文
|
|
251
251
|
*/
|
|
252
252
|
VoiceLanguage: number;
|
|
253
253
|
/**
|
|
@@ -8681,6 +8681,11 @@ export interface DatasourceBaseInfo {
|
|
|
8681
8681
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8682
8682
|
*/
|
|
8683
8683
|
ClusterId: string;
|
|
8684
|
+
/**
|
|
8685
|
+
* 数据源版本信息
|
|
8686
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8687
|
+
*/
|
|
8688
|
+
Version?: string;
|
|
8684
8689
|
}
|
|
8685
8690
|
/**
|
|
8686
8691
|
* DescribeRuleTemplates请求参数结构体
|