tencentcloud-sdk-nodejs 4.1.47 → 4.1.49
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/cynosdb/v20190107/cynosdb_client.js +22 -4
- package/es/services/emr/v20190103/emr_client.js +5 -2
- package/es/services/ses/v20201002/ses_client.js +12 -3
- package/es/services/vpc/v20170312/vpc_client.js +12 -6
- 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 +1 -1
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +6 -3
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +34 -1
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +8 -0
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +18 -0
- package/tencentcloud/services/cloudapp/v20220530/cloudapp_models.d.ts +4 -0
- package/tencentcloud/services/cloudaudit/v20190319/cloudaudit_models.d.ts +0 -2
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +13 -10
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +29 -5
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +42 -6
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +444 -175
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +13 -5
- package/tencentcloud/services/emr/v20190103/emr_client.js +15 -5
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +112 -15
- package/tencentcloud/services/gs/v20191118/gs_models.d.ts +4 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +1 -0
- package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -0
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +2 -2
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +5 -0
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +5 -0
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +26 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +25 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +193 -90
- package/tencentcloud/services/ses/v20201002/ses_client.d.ts +17 -5
- package/tencentcloud/services/ses/v20201002/ses_client.js +24 -6
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +858 -788
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +3 -3
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +3 -0
- package/tencentcloud/services/tione/v20211111/tione_client.js +3 -0
- package/tencentcloud/services/trabbit/v20230418/trabbit_models.d.ts +8 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +2 -1
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +4 -0
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +17 -9
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +23 -11
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +86 -55
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.49";
|
|
@@ -36,6 +36,9 @@ export class Client extends AbstractClient {
|
|
|
36
36
|
async CopyClusterPasswordComplexity(req, cb) {
|
|
37
37
|
return this.request("CopyClusterPasswordComplexity", req, cb);
|
|
38
38
|
}
|
|
39
|
+
async ModifyDBInstanceSecurityGroups(req, cb) {
|
|
40
|
+
return this.request("ModifyDBInstanceSecurityGroups", req, cb);
|
|
41
|
+
}
|
|
39
42
|
async CloseAuditService(req, cb) {
|
|
40
43
|
return this.request("CloseAuditService", req, cb);
|
|
41
44
|
}
|
|
@@ -189,6 +192,9 @@ export class Client extends AbstractClient {
|
|
|
189
192
|
async ModifyAuditRuleTemplates(req, cb) {
|
|
190
193
|
return this.request("ModifyAuditRuleTemplates", req, cb);
|
|
191
194
|
}
|
|
195
|
+
async DescribeBackupDownloadUserRestriction(req, cb) {
|
|
196
|
+
return this.request("DescribeBackupDownloadUserRestriction", req, cb);
|
|
197
|
+
}
|
|
192
198
|
async ModifyParamTemplate(req, cb) {
|
|
193
199
|
return this.request("ModifyParamTemplate", req, cb);
|
|
194
200
|
}
|
|
@@ -210,6 +216,9 @@ export class Client extends AbstractClient {
|
|
|
210
216
|
async CreateClusters(req, cb) {
|
|
211
217
|
return this.request("CreateClusters", req, cb);
|
|
212
218
|
}
|
|
219
|
+
async ModifyBackupDownloadUserRestriction(req, cb) {
|
|
220
|
+
return this.request("ModifyBackupDownloadUserRestriction", req, cb);
|
|
221
|
+
}
|
|
213
222
|
async CreateAccounts(req, cb) {
|
|
214
223
|
return this.request("CreateAccounts", req, cb);
|
|
215
224
|
}
|
|
@@ -309,8 +318,8 @@ export class Client extends AbstractClient {
|
|
|
309
318
|
async AssociateSecurityGroups(req, cb) {
|
|
310
319
|
return this.request("AssociateSecurityGroups", req, cb);
|
|
311
320
|
}
|
|
312
|
-
async
|
|
313
|
-
return this.request("
|
|
321
|
+
async DescribeClusterReadOnly(req, cb) {
|
|
322
|
+
return this.request("DescribeClusterReadOnly", req, cb);
|
|
314
323
|
}
|
|
315
324
|
async DescribeResourcePackageSaleSpec(req, cb) {
|
|
316
325
|
return this.request("DescribeResourcePackageSaleSpec", req, cb);
|
|
@@ -348,6 +357,9 @@ export class Client extends AbstractClient {
|
|
|
348
357
|
async ReloadBalanceProxyNode(req, cb) {
|
|
349
358
|
return this.request("ReloadBalanceProxyNode", req, cb);
|
|
350
359
|
}
|
|
360
|
+
async DescribeBackupDownloadRestriction(req, cb) {
|
|
361
|
+
return this.request("DescribeBackupDownloadRestriction", req, cb);
|
|
362
|
+
}
|
|
351
363
|
async OfflineCluster(req, cb) {
|
|
352
364
|
return this.request("OfflineCluster", req, cb);
|
|
353
365
|
}
|
|
@@ -372,6 +384,9 @@ export class Client extends AbstractClient {
|
|
|
372
384
|
async OpenAuditService(req, cb) {
|
|
373
385
|
return this.request("OpenAuditService", req, cb);
|
|
374
386
|
}
|
|
387
|
+
async ModifyClusterReadOnly(req, cb) {
|
|
388
|
+
return this.request("ModifyClusterReadOnly", req, cb);
|
|
389
|
+
}
|
|
375
390
|
async DeleteAuditLogFile(req, cb) {
|
|
376
391
|
return this.request("DeleteAuditLogFile", req, cb);
|
|
377
392
|
}
|
|
@@ -387,6 +402,9 @@ export class Client extends AbstractClient {
|
|
|
387
402
|
async DescribeInstances(req, cb) {
|
|
388
403
|
return this.request("DescribeInstances", req, cb);
|
|
389
404
|
}
|
|
405
|
+
async DescribeBinlogConfig(req, cb) {
|
|
406
|
+
return this.request("DescribeBinlogConfig", req, cb);
|
|
407
|
+
}
|
|
390
408
|
async UpgradeClusterVersion(req, cb) {
|
|
391
409
|
return this.request("UpgradeClusterVersion", req, cb);
|
|
392
410
|
}
|
|
@@ -429,8 +447,8 @@ export class Client extends AbstractClient {
|
|
|
429
447
|
async CreateProxy(req, cb) {
|
|
430
448
|
return this.request("CreateProxy", req, cb);
|
|
431
449
|
}
|
|
432
|
-
async
|
|
433
|
-
return this.request("
|
|
450
|
+
async ModifyBackupDownloadRestriction(req, cb) {
|
|
451
|
+
return this.request("ModifyBackupDownloadRestriction", req, cb);
|
|
434
452
|
}
|
|
435
453
|
async CreateCLSDelivery(req, cb) {
|
|
436
454
|
return this.request("CreateCLSDelivery", req, cb);
|
|
@@ -171,6 +171,9 @@ export class Client extends AbstractClient {
|
|
|
171
171
|
async InquiryPriceCreateInstance(req, cb) {
|
|
172
172
|
return this.request("InquiryPriceCreateInstance", req, cb);
|
|
173
173
|
}
|
|
174
|
+
async InquirePriceRenewEmr(req, cb) {
|
|
175
|
+
return this.request("InquirePriceRenewEmr", req, cb);
|
|
176
|
+
}
|
|
174
177
|
async AddMetricScaleStrategy(req, cb) {
|
|
175
178
|
return this.request("AddMetricScaleStrategy", req, cb);
|
|
176
179
|
}
|
|
@@ -192,8 +195,8 @@ export class Client extends AbstractClient {
|
|
|
192
195
|
async AddNodeResourceConfig(req, cb) {
|
|
193
196
|
return this.request("AddNodeResourceConfig", req, cb);
|
|
194
197
|
}
|
|
195
|
-
async
|
|
196
|
-
return this.request("
|
|
198
|
+
async DescribeGroupsSTD(req, cb) {
|
|
199
|
+
return this.request("DescribeGroupsSTD", req, cb);
|
|
197
200
|
}
|
|
198
201
|
async ModifyResource(req, cb) {
|
|
199
202
|
return this.request("ModifyResource", req, cb);
|
|
@@ -21,18 +21,21 @@ export class Client extends AbstractClient {
|
|
|
21
21
|
async CreateReceiver(req, cb) {
|
|
22
22
|
return this.request("CreateReceiver", req, cb);
|
|
23
23
|
}
|
|
24
|
-
async GetEmailIdentity(req, cb) {
|
|
25
|
-
return this.request("GetEmailIdentity", req, cb);
|
|
26
|
-
}
|
|
27
24
|
async GetEmailTemplate(req, cb) {
|
|
28
25
|
return this.request("GetEmailTemplate", req, cb);
|
|
29
26
|
}
|
|
27
|
+
async GetEmailIdentity(req, cb) {
|
|
28
|
+
return this.request("GetEmailIdentity", req, cb);
|
|
29
|
+
}
|
|
30
30
|
async UpdateCustomBlackList(req, cb) {
|
|
31
31
|
return this.request("UpdateCustomBlackList", req, cb);
|
|
32
32
|
}
|
|
33
33
|
async ListBlackEmailAddress(req, cb) {
|
|
34
34
|
return this.request("ListBlackEmailAddress", req, cb);
|
|
35
35
|
}
|
|
36
|
+
async CreateAddressUnsubscribeConfig(req, cb) {
|
|
37
|
+
return this.request("CreateAddressUnsubscribeConfig", req, cb);
|
|
38
|
+
}
|
|
36
39
|
async ListAddressUnsubscribeConfig(req, cb) {
|
|
37
40
|
return this.request("ListAddressUnsubscribeConfig", req, cb);
|
|
38
41
|
}
|
|
@@ -60,12 +63,18 @@ export class Client extends AbstractClient {
|
|
|
60
63
|
async UpdateEmailSmtpPassWord(req, cb) {
|
|
61
64
|
return this.request("UpdateEmailSmtpPassWord", req, cb);
|
|
62
65
|
}
|
|
66
|
+
async UpdateAddressUnsubscribeConfig(req, cb) {
|
|
67
|
+
return this.request("UpdateAddressUnsubscribeConfig", req, cb);
|
|
68
|
+
}
|
|
63
69
|
async CreateCustomBlacklist(req, cb) {
|
|
64
70
|
return this.request("CreateCustomBlacklist", req, cb);
|
|
65
71
|
}
|
|
66
72
|
async DeleteEmailTemplate(req, cb) {
|
|
67
73
|
return this.request("DeleteEmailTemplate", req, cb);
|
|
68
74
|
}
|
|
75
|
+
async DeleteAddressUnsubscribeConfig(req, cb) {
|
|
76
|
+
return this.request("DeleteAddressUnsubscribeConfig", req, cb);
|
|
77
|
+
}
|
|
69
78
|
async ListEmailTemplates(req, cb) {
|
|
70
79
|
return this.request("ListEmailTemplates", req, cb);
|
|
71
80
|
}
|
|
@@ -30,8 +30,8 @@ export class Client extends AbstractClient {
|
|
|
30
30
|
async ModifyIPv6AddressesAttributes(req, cb) {
|
|
31
31
|
return this.request("ModifyIPv6AddressesAttributes", req, cb);
|
|
32
32
|
}
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
33
|
+
async AssociateHaVipInstance(req, cb) {
|
|
34
|
+
return this.request("AssociateHaVipInstance", req, cb);
|
|
35
35
|
}
|
|
36
36
|
async AcceptVpcPeeringConnection(req, cb) {
|
|
37
37
|
return this.request("AcceptVpcPeeringConnection", req, cb);
|
|
@@ -108,6 +108,9 @@ export class Client extends AbstractClient {
|
|
|
108
108
|
async DescribeIp6Addresses(req, cb) {
|
|
109
109
|
return this.request("DescribeIp6Addresses", req, cb);
|
|
110
110
|
}
|
|
111
|
+
async CreatePrivateNatGateway(req, cb) {
|
|
112
|
+
return this.request("CreatePrivateNatGateway", req, cb);
|
|
113
|
+
}
|
|
111
114
|
async DeleteNetworkAclQuintupleEntries(req, cb) {
|
|
112
115
|
return this.request("DeleteNetworkAclQuintupleEntries", req, cb);
|
|
113
116
|
}
|
|
@@ -306,8 +309,8 @@ export class Client extends AbstractClient {
|
|
|
306
309
|
async DescribeAddressTemplates(req, cb) {
|
|
307
310
|
return this.request("DescribeAddressTemplates", req, cb);
|
|
308
311
|
}
|
|
309
|
-
async
|
|
310
|
-
return this.request("
|
|
312
|
+
async CreateVpnConnection(req, cb) {
|
|
313
|
+
return this.request("CreateVpnConnection", req, cb);
|
|
311
314
|
}
|
|
312
315
|
async TransformAddress(req, cb) {
|
|
313
316
|
return this.request("TransformAddress", req, cb);
|
|
@@ -393,6 +396,9 @@ export class Client extends AbstractClient {
|
|
|
393
396
|
async ModifySnapshotPolicies(req, cb) {
|
|
394
397
|
return this.request("ModifySnapshotPolicies", req, cb);
|
|
395
398
|
}
|
|
399
|
+
async DisassociateHaVipInstance(req, cb) {
|
|
400
|
+
return this.request("DisassociateHaVipInstance", req, cb);
|
|
401
|
+
}
|
|
396
402
|
async DeleteVpnGatewaySslClient(req, cb) {
|
|
397
403
|
return this.request("DeleteVpnGatewaySslClient", req, cb);
|
|
398
404
|
}
|
|
@@ -552,8 +558,8 @@ export class Client extends AbstractClient {
|
|
|
552
558
|
async DescribePrivateNatGateways(req, cb) {
|
|
553
559
|
return this.request("DescribePrivateNatGateways", req, cb);
|
|
554
560
|
}
|
|
555
|
-
async
|
|
556
|
-
return this.request("
|
|
561
|
+
async CreateAddressTemplate(req, cb) {
|
|
562
|
+
return this.request("CreateAddressTemplate", req, cb);
|
|
557
563
|
}
|
|
558
564
|
async ModifyCustomerGatewayAttribute(req, cb) {
|
|
559
565
|
return this.request("ModifyCustomerGatewayAttribute", req, cb);
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.49";
|
|
@@ -3560,7 +3560,7 @@ export interface DescribeNotificationConfigurationsRequest {
|
|
|
3560
3560
|
/**
|
|
3561
3561
|
* 过滤条件。
|
|
3562
3562
|
<li> auto-scaling-notification-id - String - 是否必填:否 -(过滤条件)按照通知ID过滤。</li>
|
|
3563
|
-
<li> auto-scaling-group-id - String - 是否必填:否 -(过滤条件)按照伸缩组ID
|
|
3563
|
+
<li> auto-scaling-group-id - String - 是否必填:否 -(过滤条件)按照伸缩组ID过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
3564
3564
|
每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`AutoScalingNotificationIds`和`Filters`。
|
|
3565
3565
|
*/
|
|
3566
3566
|
Filters?: Array<Filter>;
|
|
@@ -284,6 +284,7 @@ export interface SystemDisk {
|
|
|
284
284
|
DiskSize?: number;
|
|
285
285
|
/**
|
|
286
286
|
* 所属的独享集群ID。
|
|
287
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
287
288
|
*/
|
|
288
289
|
CdcId?: string;
|
|
289
290
|
/**
|
|
@@ -1210,7 +1211,7 @@ export interface DescribeJobResponse {
|
|
|
1210
1211
|
*/
|
|
1211
1212
|
export interface DescribeComputeEnvCreateInfoRequest {
|
|
1212
1213
|
/**
|
|
1213
|
-
* 计算环境ID,环境ID通过调用接口 [
|
|
1214
|
+
* 计算环境ID,环境ID通过调用接口 [DescribeComputeEnvs](https://cloud.tencent.com/document/api/599/15893)获取。
|
|
1214
1215
|
*/
|
|
1215
1216
|
EnvId: string;
|
|
1216
1217
|
}
|
|
@@ -1244,7 +1245,7 @@ export interface DataDisk {
|
|
|
1244
1245
|
*/
|
|
1245
1246
|
DiskSize: number;
|
|
1246
1247
|
/**
|
|
1247
|
-
* 数据盘类型。数据盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br /><li>LOCAL_BASIC
|
|
1248
|
+
* 数据盘类型。数据盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br /><li>LOCAL_BASIC:本地硬盘 </li> <li>LOCAL_SSD:本地SSD硬盘</li><li>LOCAL_NVME:本地NVME硬盘,与InstanceType强相关,不支持指定</li><li>LOCAL_PRO:本地HDD硬盘,与InstanceType强相关,不支持指定</li><li>CLOUD_BASIC:普通云硬盘</li><li> CLOUD_PREMIUM:高性能云硬盘</li><li>CLOUD_SSD:SSD云硬盘</li><li> CLOUD_HSSD:增强型SSD云硬盘</li> <li>CLOUD_TSSD:极速型SSD云硬盘</li><li>CLOUD_BSSD:通用型SSD云硬盘</li><br />默认取值:LOCAL_BASIC<br/><br />该参数对`ResizeInstanceDisk`接口无效。
|
|
1248
1249
|
*/
|
|
1249
1250
|
DiskType?: string;
|
|
1250
1251
|
/**
|
|
@@ -1268,20 +1269,22 @@ export interface DataDisk {
|
|
|
1268
1269
|
* 自定义CMK对应的ID,取值为UUID或者类似kms-abcd1234。用于加密云盘。
|
|
1269
1270
|
|
|
1270
1271
|
该参数目前仅用于 `RunInstances` 接口。
|
|
1272
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1271
1273
|
*/
|
|
1272
1274
|
KmsKeyId?: string;
|
|
1273
1275
|
/**
|
|
1274
1276
|
* 云硬盘性能,单位:MiB/s。使用此参数可给云硬盘购买额外的性能。
|
|
1275
1277
|
当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)
|
|
1278
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1276
1279
|
*/
|
|
1277
1280
|
ThroughputPerformance?: number;
|
|
1278
1281
|
/**
|
|
1279
1282
|
* 所属的独享集群ID。
|
|
1283
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1280
1284
|
*/
|
|
1281
1285
|
CdcId?: string;
|
|
1282
1286
|
/**
|
|
1283
1287
|
* 突发性能
|
|
1284
|
-
|
|
1285
1288
|
<b>注:内测中。</b>
|
|
1286
1289
|
*/
|
|
1287
1290
|
BurstPerformance?: boolean;
|
|
@@ -1106,7 +1106,12 @@ export interface Data {
|
|
|
1106
1106
|
/**
|
|
1107
1107
|
* 项目Id
|
|
1108
1108
|
*/
|
|
1109
|
-
Id
|
|
1109
|
+
Id?: number;
|
|
1110
|
+
/**
|
|
1111
|
+
* url
|
|
1112
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1113
|
+
*/
|
|
1114
|
+
EditUrl?: string;
|
|
1110
1115
|
}
|
|
1111
1116
|
/**
|
|
1112
1117
|
* ModifyUserRoleProject返回参数结构体
|
|
@@ -1778,6 +1783,26 @@ export interface Project {
|
|
|
1778
1783
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1779
1784
|
*/
|
|
1780
1785
|
OwnerName?: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* 仪表盘页面数
|
|
1788
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1789
|
+
*/
|
|
1790
|
+
NormalCount?: number;
|
|
1791
|
+
/**
|
|
1792
|
+
* 自由画布页面数
|
|
1793
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1794
|
+
*/
|
|
1795
|
+
FreeCount?: number;
|
|
1796
|
+
/**
|
|
1797
|
+
* 即席分析页面数
|
|
1798
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1799
|
+
*/
|
|
1800
|
+
AdhocCount?: number;
|
|
1801
|
+
/**
|
|
1802
|
+
* 简报页面数
|
|
1803
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1804
|
+
*/
|
|
1805
|
+
BriefingCount?: number;
|
|
1781
1806
|
}
|
|
1782
1807
|
/**
|
|
1783
1808
|
* 数据源详情
|
|
@@ -2179,6 +2204,14 @@ export interface DescribeUserRoleProjectListRequest {
|
|
|
2179
2204
|
* 角色编码
|
|
2180
2205
|
*/
|
|
2181
2206
|
RoleCode?: string;
|
|
2207
|
+
/**
|
|
2208
|
+
* 用户id列表
|
|
2209
|
+
*/
|
|
2210
|
+
UserIdList?: Array<string>;
|
|
2211
|
+
/**
|
|
2212
|
+
* 搜索关键词
|
|
2213
|
+
*/
|
|
2214
|
+
Keyword?: string;
|
|
2182
2215
|
}
|
|
2183
2216
|
/**
|
|
2184
2217
|
* 商业化版本权限分组
|
|
@@ -992,7 +992,7 @@ export interface CreateSnapshotRequest {
|
|
|
992
992
|
*/
|
|
993
993
|
Deadline?: string;
|
|
994
994
|
/**
|
|
995
|
-
* 云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](document/product/362/80278)接口查询。
|
|
995
|
+
* 云硬盘备份点ID。传入此参数时,将通过备份点创建快照。备份点 ID 可以通过[DescribeDiskBackups](/document/product/362/80278)接口查询。
|
|
996
996
|
*/
|
|
997
997
|
DiskBackupId?: string;
|
|
998
998
|
/**
|
|
@@ -1560,6 +1560,14 @@ export interface DescribeCPUExpandStrategyInfoResponse {
|
|
|
1560
1560
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1561
1561
|
*/
|
|
1562
1562
|
AutoStrategy?: AutoStrategy;
|
|
1563
|
+
/**
|
|
1564
|
+
* 按周期扩容策略。
|
|
1565
|
+
*/
|
|
1566
|
+
PeriodStrategy?: PeriodStrategy;
|
|
1567
|
+
/**
|
|
1568
|
+
* 按时间段扩容策略
|
|
1569
|
+
*/
|
|
1570
|
+
TimeIntervalStrategy?: TimeIntervalStrategy;
|
|
1563
1571
|
/**
|
|
1564
1572
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1565
1573
|
*/
|
|
@@ -6598,6 +6598,24 @@ export interface SearchLogRequest {
|
|
|
6598
6598
|
* - 要检索分析的日志主题ID,仅能指定一个日志主题。
|
|
6599
6599
|
- 如需同时检索多个日志主题,请使用Topics参数。
|
|
6600
6600
|
- TopicId 和 Topics 不能同时使用,在一次请求中有且只能选择一个。
|
|
6601
|
+
各日志主题ID如下
|
|
6602
|
+
访问控制-互联网边界 cfw_rule_acl
|
|
6603
|
+
访问控制-NAT边界 cfw_rule_nat_acl
|
|
6604
|
+
访问控制-VPC边界 cfw_rule_vpc_acl
|
|
6605
|
+
访问控制-DNS开关 cfw_rule_dns_acl
|
|
6606
|
+
入侵防御 cfw_rule_threatinfo
|
|
6607
|
+
全流量检测与响应日志-流量分析 cfw_netflow_nta
|
|
6608
|
+
全流量检测与响应日志-流量告警 cfw_rule_ndr_threatinfo
|
|
6609
|
+
零信任运维-数据库登录 cfw_operate_db
|
|
6610
|
+
零信任运维-服务器访问 operate_remote_om
|
|
6611
|
+
零信任运维-Web服务访问 operate_web_access
|
|
6612
|
+
零信任运维-行为审计 remoteom_commands
|
|
6613
|
+
流量日志-互联网边界 cfw_netflow_border
|
|
6614
|
+
流量日志-NAT边界 cfw_netflow_nat
|
|
6615
|
+
流量日志-VPC边界 cfw_netflow_vpc
|
|
6616
|
+
流量日志-DNS开关 cfw_netflow_dns
|
|
6617
|
+
流量日志-内网流量 cfw_netflow_fl
|
|
6618
|
+
操作日志 operate_log_all
|
|
6601
6619
|
*/
|
|
6602
6620
|
TopicId?: string;
|
|
6603
6621
|
/**
|
|
@@ -734,12 +734,10 @@ export interface DeleteAuditTrackResponse {
|
|
|
734
734
|
export interface CosRegionInfo {
|
|
735
735
|
/**
|
|
736
736
|
* cos地域
|
|
737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
738
737
|
*/
|
|
739
738
|
CosRegion?: string;
|
|
740
739
|
/**
|
|
741
740
|
* 地域描述
|
|
742
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
743
741
|
*/
|
|
744
742
|
CosRegionName?: string;
|
|
745
743
|
}
|
|
@@ -810,6 +810,7 @@ export interface SystemDisk {
|
|
|
810
810
|
DiskSize?: number;
|
|
811
811
|
/**
|
|
812
812
|
* 所属的独享集群ID。
|
|
813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
813
814
|
*/
|
|
814
815
|
CdcId?: string;
|
|
815
816
|
/**
|
|
@@ -2768,7 +2769,7 @@ export interface DataDisk {
|
|
|
2768
2769
|
*/
|
|
2769
2770
|
DiskSize: number;
|
|
2770
2771
|
/**
|
|
2771
|
-
* 数据盘类型。数据盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br /><li>LOCAL_BASIC
|
|
2772
|
+
* 数据盘类型。数据盘类型限制详见[存储概述](https://cloud.tencent.com/document/product/213/4952)。取值范围:<br /><li>LOCAL_BASIC:本地硬盘 </li> <li>LOCAL_SSD:本地SSD硬盘</li><li>LOCAL_NVME:本地NVME硬盘,与InstanceType强相关,不支持指定</li><li>LOCAL_PRO:本地HDD硬盘,与InstanceType强相关,不支持指定</li><li>CLOUD_BASIC:普通云硬盘</li><li> CLOUD_PREMIUM:高性能云硬盘</li><li>CLOUD_SSD:SSD云硬盘</li><li> CLOUD_HSSD:增强型SSD云硬盘</li> <li>CLOUD_TSSD:极速型SSD云硬盘</li><li>CLOUD_BSSD:通用型SSD云硬盘</li><br />默认取值:LOCAL_BASIC<br/><br />该参数对`ResizeInstanceDisk`接口无效。
|
|
2772
2773
|
*/
|
|
2773
2774
|
DiskType?: string;
|
|
2774
2775
|
/**
|
|
@@ -2792,20 +2793,22 @@ export interface DataDisk {
|
|
|
2792
2793
|
* 自定义CMK对应的ID,取值为UUID或者类似kms-abcd1234。用于加密云盘。
|
|
2793
2794
|
|
|
2794
2795
|
该参数目前仅用于 `RunInstances` 接口。
|
|
2796
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2795
2797
|
*/
|
|
2796
2798
|
KmsKeyId?: string;
|
|
2797
2799
|
/**
|
|
2798
2800
|
* 云硬盘性能,单位:MiB/s。使用此参数可给云硬盘购买额外的性能。
|
|
2799
2801
|
当前仅支持极速型云盘(CLOUD_TSSD)和增强型SSD云硬盘(CLOUD_HSSD)
|
|
2802
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2800
2803
|
*/
|
|
2801
2804
|
ThroughputPerformance?: number;
|
|
2802
2805
|
/**
|
|
2803
2806
|
* 所属的独享集群ID。
|
|
2807
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2804
2808
|
*/
|
|
2805
2809
|
CdcId?: string;
|
|
2806
2810
|
/**
|
|
2807
2811
|
* 突发性能
|
|
2808
|
-
|
|
2809
2812
|
<b>注:内测中。</b>
|
|
2810
2813
|
*/
|
|
2811
2814
|
BurstPerformance?: boolean;
|
|
@@ -3394,7 +3397,7 @@ export interface CreateLaunchTemplateVersionRequest {
|
|
|
3394
3397
|
*/
|
|
3395
3398
|
Placement: Placement;
|
|
3396
3399
|
/**
|
|
3397
|
-
* 启动模板ID,新版本将基于该实例启动模板ID
|
|
3400
|
+
* 启动模板ID,新版本将基于该实例启动模板ID创建。可通过 [DescribeLaunchTemplates](https://cloud.tencent.com/document/api/213/66322) 接口返回值中的`LaunchTemplateId`获取。
|
|
3398
3401
|
*/
|
|
3399
3402
|
LaunchTemplateId: string;
|
|
3400
3403
|
/**
|
|
@@ -3463,7 +3466,7 @@ export interface CreateLaunchTemplateVersionRequest {
|
|
|
3463
3466
|
*/
|
|
3464
3467
|
ActionTimer?: ActionTimer;
|
|
3465
3468
|
/**
|
|
3466
|
-
* 置放群组id
|
|
3469
|
+
* 置放群组id,仅支持指定一个。可使用[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取。
|
|
3467
3470
|
*/
|
|
3468
3471
|
DisasterRecoverGroupIds?: Array<string>;
|
|
3469
3472
|
/**
|
|
@@ -3491,7 +3494,7 @@ export interface CreateLaunchTemplateVersionRequest {
|
|
|
3491
3494
|
*/
|
|
3492
3495
|
CamRoleName?: string;
|
|
3493
3496
|
/**
|
|
3494
|
-
* 高性能计算集群ID
|
|
3497
|
+
* 高性能计算集群ID。若创建的实例为高性能计算实例,需指定实例放置的集群,否则不可指定。该参数可以通过调用 [DescribeHpcClusters](https://cloud.tencent.com/document/api/213/83220) 的返回值中的 `HpcClusterId` 字段来获取。
|
|
3495
3498
|
*/
|
|
3496
3499
|
HpcClusterId?: string;
|
|
3497
3500
|
/**
|
|
@@ -3830,7 +3833,7 @@ export interface CreateLaunchTemplateRequest {
|
|
|
3830
3833
|
*/
|
|
3831
3834
|
DryRun?: boolean;
|
|
3832
3835
|
/**
|
|
3833
|
-
* CAM角色名称。可通过[
|
|
3836
|
+
* CAM角色名称。可通过[ DescribeRoleList ](https://cloud.tencent.com/document/product/598/36223)接口返回值中的`RoleName `获取。
|
|
3834
3837
|
*/
|
|
3835
3838
|
CamRoleName?: string;
|
|
3836
3839
|
/**
|
|
@@ -5518,9 +5521,9 @@ export interface DescribeInstancesRequest {
|
|
|
5518
5521
|
*/
|
|
5519
5522
|
InstanceIds?: Array<string>;
|
|
5520
5523
|
/**
|
|
5521
|
-
* <li><strong>zone</strong></li> <p style="padding-left: 30px;">按照【<strong>可用区</strong>】进行过滤。可用区例如:ap-guangzhou-1。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p><p style="padding-left: 30px;">可选项:<a href="https://cloud.tencent.com/document/product/213/6091">可用区列表</a></p> <li><strong>project-id</strong></li> <p style="padding-left: 30px;">按照【<strong>项目ID</strong>】进行过滤,可通过调用[DescribeProjects](https://cloud.tencent.com/document/api/651/78725)查询已创建的项目列表或登录[控制台](https://console.cloud.tencent.com/cvm/index)进行查看;也可以调用[AddProject](https://cloud.tencent.com/document/api/651/81952)创建新的项目。项目ID例如:1002189。</p><p style="padding-left: 30px;">类型:Integer</p><p style="padding-left: 30px;">必选:否</p> <li><strong>host-id</strong></li> <p style="padding-left: 30px;">按照【<strong>[CDH](https://cloud.tencent.com/document/product/416) ID</strong>】进行过滤。[CDH](https://cloud.tencent.com/document/product/416) ID例如:host-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>dedicated-cluster-id</strong></li> <p style="padding-left: 30px;">按照【<strong>[CDC](https://cloud.tencent.com/document/product/1346) ID</strong>】进行过滤。[CDC](https://cloud.tencent.com/document/product/1346) ID例如:cluster-xxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>vpc-id</strong></li> <p style="padding-left: 30px;">按照【<strong>VPC ID</strong>】进行过滤。VPC ID例如:vpc-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>subnet-id</strong></li> <p style="padding-left: 30px;">按照【<strong>子网ID</strong>】进行过滤。子网ID例如:subnet-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-id</strong></li> <p style="padding-left: 30px;">按照【<strong>实例ID</strong>】进行过滤。实例ID例如:ins-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>uuid</strong></li> <p style="padding-left: 30px;">按照【<strong>实例UUID</strong>】进行过滤。实例UUID例如:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>security-group-id</strong></li> <p style="padding-left: 30px;">按照【<strong>安全组ID</strong>】进行过滤。安全组ID例如: sg-8jlk3f3r。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-name</strong></li> <p style="padding-left: 30px;">按照【<strong>实例名称</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-charge-type</strong></li> <p style="padding-left: 30px;">按照【<strong>实例计费模式</strong>】进行过滤。(PREPAID:表示预付费,即包年包月 | POSTPAID_BY_HOUR:表示后付费,即按量计费 | CDHPAID:表示[CDH](https://cloud.tencent.com/document/product/416)付费,即只对[CDH](https://cloud.tencent.com/document/product/416)计费,不对[CDH](https://cloud.tencent.com/document/product/416)上的实例计费。)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-state</strong></li> <p style="padding-left: 30px;">按照【<strong>实例状态</strong>】进行过滤。状态类型详见[实例状态表](https://cloud.tencent.com/document/api/213/15753#InstanceStatus)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>private-ip-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例主网卡的内网IP</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>public-ip-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例主网卡的公网IP</strong>】进行过滤,包含实例创建时自动分配的IP和实例创建后手动绑定的弹性IP。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>ipv6-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例的IPv6地址</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。使用请参考示例2。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p><li><strong>creation-start-time</strong></li> <p style="padding-left: 30px;">按照【<strong
|
|
5524
|
+
* <li><strong>zone</strong></li> <p style="padding-left: 30px;">按照【<strong>可用区</strong>】进行过滤。可用区例如:ap-guangzhou-1。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p><p style="padding-left: 30px;">可选项:<a href="https://cloud.tencent.com/document/product/213/6091">可用区列表</a></p> <li><strong>project-id</strong></li> <p style="padding-left: 30px;">按照【<strong>项目ID</strong>】进行过滤,可通过调用[DescribeProjects](https://cloud.tencent.com/document/api/651/78725)查询已创建的项目列表或登录[控制台](https://console.cloud.tencent.com/cvm/index)进行查看;也可以调用[AddProject](https://cloud.tencent.com/document/api/651/81952)创建新的项目。项目ID例如:1002189。</p><p style="padding-left: 30px;">类型:Integer</p><p style="padding-left: 30px;">必选:否</p> <li><strong>host-id</strong></li> <p style="padding-left: 30px;">按照【<strong>[CDH](https://cloud.tencent.com/document/product/416) ID</strong>】进行过滤。[CDH](https://cloud.tencent.com/document/product/416) ID例如:host-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>dedicated-cluster-id</strong></li> <p style="padding-left: 30px;">按照【<strong>[CDC](https://cloud.tencent.com/document/product/1346) ID</strong>】进行过滤。[CDC](https://cloud.tencent.com/document/product/1346) ID例如:cluster-xxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>vpc-id</strong></li> <p style="padding-left: 30px;">按照【<strong>VPC ID</strong>】进行过滤。VPC ID例如:vpc-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>subnet-id</strong></li> <p style="padding-left: 30px;">按照【<strong>子网ID</strong>】进行过滤。子网ID例如:subnet-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-id</strong></li> <p style="padding-left: 30px;">按照【<strong>实例ID</strong>】进行过滤。实例ID例如:ins-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>uuid</strong></li> <p style="padding-left: 30px;">按照【<strong>实例UUID</strong>】进行过滤。实例UUID例如:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>security-group-id</strong></li> <p style="padding-left: 30px;">按照【<strong>安全组ID</strong>】进行过滤。安全组ID例如: sg-8jlk3f3r。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-name</strong></li> <p style="padding-left: 30px;">按照【<strong>实例名称</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-charge-type</strong></li> <p style="padding-left: 30px;">按照【<strong>实例计费模式</strong>】进行过滤。(PREPAID:表示预付费,即包年包月 | POSTPAID_BY_HOUR:表示后付费,即按量计费 | CDHPAID:表示[CDH](https://cloud.tencent.com/document/product/416)付费,即只对[CDH](https://cloud.tencent.com/document/product/416)计费,不对[CDH](https://cloud.tencent.com/document/product/416)上的实例计费。)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-state</strong></li> <p style="padding-left: 30px;">按照【<strong>实例状态</strong>】进行过滤。状态类型详见[实例状态表](https://cloud.tencent.com/document/api/213/15753#InstanceStatus)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>private-ip-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例主网卡的内网IP</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>public-ip-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例主网卡的公网IP</strong>】进行过滤,包含实例创建时自动分配的IP和实例创建后手动绑定的弹性IP。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>ipv6-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例的IPv6地址</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。使用请参考示例2。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p><li><strong>creation-start-time</strong></li> <p style="padding-left: 30px;">按照【<strong>创建实例请求的起始时间</strong>】进行过滤。例如:2023-06-01 00:00:00。
|
|
5522
5525
|
</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
5523
|
-
<li><strong>creation-end-time</strong></li> <p style="padding-left: 30px;">按照【<strong
|
|
5526
|
+
<li><strong>creation-end-time</strong></li> <p style="padding-left: 30px;">按照【<strong>创建实例请求的截止时间</strong>】进行过滤。例如:2023-06-01 00:00:00。
|
|
5524
5527
|
</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`InstanceIds`和`Filters`。
|
|
5525
5528
|
*/
|
|
5526
5529
|
Filters?: Array<Filter>;
|
|
@@ -5869,11 +5872,11 @@ export interface DescribeLaunchTemplateVersionsResponse {
|
|
|
5869
5872
|
/**
|
|
5870
5873
|
* 实例启动模板总数。
|
|
5871
5874
|
*/
|
|
5872
|
-
TotalCount
|
|
5875
|
+
TotalCount?: number;
|
|
5873
5876
|
/**
|
|
5874
5877
|
* 实例启动模板版本集合。
|
|
5875
5878
|
*/
|
|
5876
|
-
LaunchTemplateVersionSet
|
|
5879
|
+
LaunchTemplateVersionSet?: Array<LaunchTemplateVersionInfo>;
|
|
5877
5880
|
/**
|
|
5878
5881
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5879
5882
|
*/
|