tencentcloud-sdk-nodejs-vpc 4.0.595 → 4.0.605

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.
@@ -103,6 +103,18 @@ export interface SecurityGroupLimitSet {
103
103
  * 实例关联安全组数
104
104
  */
105
105
  InstanceSecurityGroupLimit: number;
106
+ /**
107
+ * 安全组展开后的规则数限制
108
+ */
109
+ SecurityGroupExtendedPolicyLimit?: number;
110
+ /**
111
+ * 被引用的安全组关联CVM、ENI的实例配额
112
+ */
113
+ SecurityGroupReferedCvmAndEniLimit?: number;
114
+ /**
115
+ * 被引用的安全组关联数据库、LB等服务实例配额
116
+ */
117
+ SecurityGroupReferedSvcLimit?: number;
106
118
  }
107
119
  /**
108
120
  * LockCcns请求参数结构体
@@ -578,7 +590,7 @@ export interface DeleteVpnGatewaySslServerResponse {
578
590
  /**
579
591
  * 异步任务ID。
580
592
  */
581
- TaskId: number;
593
+ TaskId?: number;
582
594
  /**
583
595
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
584
596
  */
@@ -670,6 +682,23 @@ export interface DescribeVpcEndPointRequest {
670
682
  */
671
683
  EndPointId?: Array<string>;
672
684
  }
685
+ /**
686
+ * 资源统计项。
687
+ */
688
+ export interface ResourceStatisticsItem {
689
+ /**
690
+ * 资源类型。比如,CVM,ENI等。
691
+ */
692
+ ResourceType: string;
693
+ /**
694
+ * 资源名称。
695
+ */
696
+ ResourceName: string;
697
+ /**
698
+ * 资源个数。
699
+ */
700
+ ResourceCount: number;
701
+ }
673
702
  /**
674
703
  * DetachClassicLinkVpc请求参数结构体
675
704
  */
@@ -911,7 +940,7 @@ export interface DeleteVpnGatewaySslClientResponse {
911
940
  /**
912
941
  * 异步任务ID。
913
942
  */
914
- TaskId: number;
943
+ TaskId?: number;
915
944
  /**
916
945
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
917
946
  */
@@ -1292,51 +1321,51 @@ export interface CreateDirectConnectGatewayRequest {
1292
1321
  */
1293
1322
  export interface CreateVpnGatewaySslServerRequest {
1294
1323
  /**
1295
- * VPN实例ID
1324
+ * VPN网关实例ID
1296
1325
  */
1297
1326
  VpnGatewayId: string;
1298
1327
  /**
1299
- * SSL_VPN_SERVER 实例名
1328
+ * SSL-VPN-SERVER 实例名称,长度不超过60个字节。
1300
1329
  */
1301
1330
  SslVpnServerName: string;
1302
1331
  /**
1303
- * 本端地址网段
1332
+ * 云端地址(CIDR)列表。
1304
1333
  */
1305
1334
  LocalAddress: Array<string>;
1306
1335
  /**
1307
- * 客户端地址网段
1336
+ * 客户端地址网段。
1308
1337
  */
1309
1338
  RemoteAddress: string;
1310
1339
  /**
1311
- * SSL VPN服务端监听协议。当前仅支持 UDP。默认UDP
1340
+ * SSL VPN服务端监听协议。当前仅支持 UDP,默认UDP
1312
1341
  */
1313
1342
  SslVpnProtocol?: string;
1314
1343
  /**
1315
- * SSL VPN服务端监听协议端口。默认1194。
1344
+ * SSL VPN服务端监听协议端口,默认1194。
1316
1345
  */
1317
1346
  SslVpnPort?: number;
1318
1347
  /**
1319
- * 认证算法。可选 'SHA1', 'MD5', 'NONE'。默认NONE
1348
+ * 认证算法。可选 'SHA1', 'MD5', 'NONE',默认NONE
1320
1349
  */
1321
1350
  IntegrityAlgorithm?: string;
1322
1351
  /**
1323
- * 加密算法。可选 'AES-128-CBC', 'AES-192-CBC', 'AES-256-CBC', 'NONE'。默认NONE
1352
+ * 加密算法。可选 'AES-128-CBC','AES-192-CBC', 'AES-256-CBC', 'NONE',默认NONE
1324
1353
  */
1325
1354
  EncryptAlgorithm?: string;
1326
1355
  /**
1327
- * 是否支持压缩。当前仅支持不支持压缩。默认False
1356
+ * 是否支持压缩。当前仅支持不支持压缩,默认False
1328
1357
  */
1329
1358
  Compress?: boolean;
1330
1359
  /**
1331
- * 是否开启SSO认证
1360
+ * 是否开启SSO认证。默认为False
1332
1361
  */
1333
1362
  SsoEnabled?: boolean;
1334
1363
  /**
1335
- * 是否开启策略访问控制
1364
+ * 是否开启策略访问控制。默认为False
1336
1365
  */
1337
1366
  AccessPolicyEnabled?: boolean;
1338
1367
  /**
1339
- * SAML-DATA
1368
+ * SAML-DATA,开启SSO时传。
1340
1369
  */
1341
1370
  SamlData?: string;
1342
1371
  }
@@ -1422,16 +1451,19 @@ export interface DisassociateNetworkInterfaceSecurityGroupsRequest {
1422
1451
  */
1423
1452
  export interface SecurityGroupPolicySet {
1424
1453
  /**
1425
- * 安全组规则当前版本。用户每次更新安全规则版本会自动加1,防止更新的路由规则已过期,不填不考虑冲突。
1426
- */
1454
+ * 安全组规则当前版本。用户每次更新安全规则版本会自动加1,防止更新的路由规则已过期,不填不考虑冲突。
1455
+ 注意:此字段可能返回 null,表示取不到有效值。
1456
+ */
1427
1457
  Version?: string;
1428
1458
  /**
1429
- * 出站规则。
1430
- */
1459
+ * 出站规则。
1460
+ 注意:此字段可能返回 null,表示取不到有效值。
1461
+ */
1431
1462
  Egress?: Array<SecurityGroupPolicy>;
1432
1463
  /**
1433
- * 入站规则。
1434
- */
1464
+ * 入站规则。
1465
+ 注意:此字段可能返回 null,表示取不到有效值。
1466
+ */
1435
1467
  Ingress?: Array<SecurityGroupPolicy>;
1436
1468
  }
1437
1469
  /**
@@ -1899,9 +1931,13 @@ export interface DescribeDirectConnectGatewaysRequest {
1899
1931
  */
1900
1932
  export interface DisableVpnGatewaySslClientCertRequest {
1901
1933
  /**
1902
- * SSL-VPN-CLIENT 实例ID
1934
+ * SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
1903
1935
  */
1904
- SslVpnClientId: string;
1936
+ SslVpnClientId?: string;
1937
+ /**
1938
+ * SSL-VPN-CLIENT 实例ID列表。批量禁用时使用。不可和SslVpnClientId同时使用。
1939
+ */
1940
+ SslVpnClientIds?: Array<string>;
1905
1941
  }
1906
1942
  /**
1907
1943
  * AttachSnapshotInstances请求参数结构体
@@ -2171,7 +2207,7 @@ export interface DescribeSnapshotFilesRequest {
2171
2207
  */
2172
2208
  Offset?: number;
2173
2209
  /**
2174
- * 返回数量,默认为20,最大为200
2210
+ * 返回数量,默认为20,最大为100
2175
2211
  */
2176
2212
  Limit?: number;
2177
2213
  }
@@ -2781,7 +2817,7 @@ export interface DisableVpnGatewaySslClientCertResponse {
2781
2817
  /**
2782
2818
  * 异步任务实例ID。
2783
2819
  */
2784
- TaskId: number;
2820
+ TaskId?: number;
2785
2821
  /**
2786
2822
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2787
2823
  */
@@ -3392,21 +3428,17 @@ export interface DescribeNetDetectStatesRequest {
3392
3428
  Limit?: number;
3393
3429
  }
3394
3430
  /**
3395
- * DescribeNatGateways返回参数结构体
3431
+ * DescribeRouteConflicts请求参数结构体
3396
3432
  */
3397
- export interface DescribeNatGatewaysResponse {
3398
- /**
3399
- * NAT网关对象数组。
3400
- */
3401
- NatGatewaySet: Array<NatGateway>;
3433
+ export interface DescribeRouteConflictsRequest {
3402
3434
  /**
3403
- * 符合条件的NAT网关对象个数。
3435
+ * 路由表实例ID,例如:rtb-azd4dt1c。
3404
3436
  */
3405
- TotalCount: number;
3437
+ RouteTableId: string;
3406
3438
  /**
3407
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3439
+ * 要检查的与之冲突的目的端列表。
3408
3440
  */
3409
- RequestId?: string;
3441
+ DestinationCidrBlocks: Array<string>;
3410
3442
  }
3411
3443
  /**
3412
3444
  * DescribeFlowLog返回参数结构体
@@ -3482,11 +3514,11 @@ export interface DescribeAssistantCidrResponse {
3482
3514
  * 符合条件的辅助CIDR数组。
3483
3515
  注意:此字段可能返回 null,表示取不到有效值。
3484
3516
  */
3485
- AssistantCidrSet: Array<AssistantCidr>;
3517
+ AssistantCidrSet?: Array<AssistantCidr>;
3486
3518
  /**
3487
3519
  * 符合条件的实例数量。
3488
3520
  */
3489
- TotalCount: number;
3521
+ TotalCount?: number;
3490
3522
  /**
3491
3523
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3492
3524
  */
@@ -3505,6 +3537,31 @@ export interface BackupPolicy {
3505
3537
  */
3506
3538
  BackupTime: string;
3507
3539
  }
3540
+ /**
3541
+ * 占用ip的资源信息
3542
+ */
3543
+ export interface IpAddressStates {
3544
+ /**
3545
+ * VPC实例ID。
3546
+ */
3547
+ VpcId: string;
3548
+ /**
3549
+ * 子网实例ID。
3550
+ */
3551
+ SubnetId: string;
3552
+ /**
3553
+ * IP地址。
3554
+ */
3555
+ IpAddress: string;
3556
+ /**
3557
+ * 资源类型
3558
+ */
3559
+ ResourceType: string;
3560
+ /**
3561
+ * 资源ID
3562
+ */
3563
+ ResourceId: string;
3564
+ }
3508
3565
  /**
3509
3566
  * 用于描述实例的统计信息
3510
3567
  */
@@ -4275,7 +4332,7 @@ export interface SecurityGroupPolicy {
4275
4332
  */
4276
4333
  ServiceTemplate?: ServiceTemplateSpecification;
4277
4334
  /**
4278
- * 网段或IP(互斥)。
4335
+ * 网段或IP(互斥),特殊说明:0.0.0.0/n 都会映射为0.0.0.0/0
4279
4336
  */
4280
4337
  CidrBlock?: string;
4281
4338
  /**
@@ -4326,6 +4383,15 @@ export interface DescribeSnapshotPoliciesRequest {
4326
4383
  */
4327
4384
  Limit?: number;
4328
4385
  }
4386
+ /**
4387
+ * DeleteTrafficPackages请求参数结构体
4388
+ */
4389
+ export interface DeleteTrafficPackagesRequest {
4390
+ /**
4391
+ * 待删除的流量包唯一ID数组
4392
+ */
4393
+ TrafficPackageIds: Array<string>;
4394
+ }
4329
4395
  /**
4330
4396
  * NotifyRoutes请求参数结构体
4331
4397
  */
@@ -4578,7 +4644,7 @@ export interface CreateCustomerGatewayResponse {
4578
4644
  /**
4579
4645
  * 对端网关对象
4580
4646
  */
4581
- CustomerGateway: CustomerGateway;
4647
+ CustomerGateway?: CustomerGateway;
4582
4648
  /**
4583
4649
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4584
4650
  */
@@ -4644,6 +4710,15 @@ export interface WithdrawNotifyRoutesRequest {
4644
4710
  */
4645
4711
  RouteItemIds: Array<string>;
4646
4712
  }
4713
+ /**
4714
+ * DescribeSubnetResourceDashboard请求参数结构体
4715
+ */
4716
+ export interface DescribeSubnetResourceDashboardRequest {
4717
+ /**
4718
+ * Subnet实例ID,例如:subnet-f1xjkw1b。
4719
+ */
4720
+ SubnetIds: Array<string>;
4721
+ }
4647
4722
  /**
4648
4723
  * Vpc任务结果详细信息。
4649
4724
  */
@@ -4970,13 +5045,13 @@ export interface ModifyBandwidthPackageAttributeResponse {
4970
5045
  */
4971
5046
  export interface CreateVpnGatewaySslServerResponse {
4972
5047
  /**
4973
- * 创建SSL-VPN server 异步任务ID
5048
+ * 创建SSL-VPN server 异步任务ID
4974
5049
  */
4975
- TaskId: number;
5050
+ TaskId?: number;
4976
5051
  /**
4977
- * SSL-VPN server 唯一ID
5052
+ * SSL-VPN-SERVER 唯一ID
4978
5053
  */
4979
- SslVpnServerId: string;
5054
+ SslVpnServerId?: string;
4980
5055
  /**
4981
5056
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4982
5057
  */
@@ -5544,11 +5619,11 @@ export interface DescribeSnapshotFilesResponse {
5544
5619
  /**
5545
5620
  * 快照文件集合。
5546
5621
  */
5547
- SnapshotFileSet: Array<SnapshotFileInfo>;
5622
+ SnapshotFileSet?: Array<SnapshotFileInfo>;
5548
5623
  /**
5549
5624
  * 符合条件的对象数。
5550
5625
  */
5551
- TotalCount: number;
5626
+ TotalCount?: number;
5552
5627
  /**
5553
5628
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5554
5629
  */
@@ -5687,11 +5762,11 @@ export interface CreateVpnGatewaySslClientResponse {
5687
5762
  /**
5688
5763
  * 异步任务ID。
5689
5764
  */
5690
- TaskId: number;
5765
+ TaskId?: number;
5691
5766
  /**
5692
5767
  * SSL-VPN client 唯一ID
5693
5768
  */
5694
- SslVpnClientId: string;
5769
+ SslVpnClientId?: string;
5695
5770
  /**
5696
5771
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5697
5772
  */
@@ -5880,7 +5955,7 @@ export interface CreateSubnetsRequest {
5880
5955
  */
5881
5956
  export interface DescribeVpcEndPointServiceRequest {
5882
5957
  /**
5883
- * 过滤条件。
5958
+ * 过滤条件。不支持同时传入参数 EndPointServiceIds and Filters。
5884
5959
  <li> service-id - String - (过滤条件)终端节点服务唯一ID。</li>
5885
5960
  <li>service-name - String - (过滤条件)终端节点实例名称。</li>
5886
5961
  <li>service-instance-id - String - (过滤条件)后端服务的唯一ID,比如lb-xxx。</li>
@@ -5896,7 +5971,7 @@ export interface DescribeVpcEndPointServiceRequest {
5896
5971
  */
5897
5972
  Limit?: number;
5898
5973
  /**
5899
- * 终端节点服务ID。
5974
+ * 终端节点服务ID。不支持同时传入参数 EndPointServiceIds and Filters
5900
5975
  */
5901
5976
  EndPointServiceIds?: Array<string>;
5902
5977
  }
@@ -6451,7 +6526,7 @@ export interface ResetVpnGatewayInternetMaxBandwidthRequest {
6451
6526
  */
6452
6527
  VpnGatewayId: string;
6453
6528
  /**
6454
- * 公网带宽设置。可选带宽规格:5, 10, 20, 50, 100;单位:Mbps。
6529
+ * 新规格公网带宽设置。可选带宽规格:5, 10, 20, 50, 100, 200, 500, 1000;单位:Mbps。VPN网关带宽目前仅支持部分带宽范围内升降配,如【5,100】Mbps和【200,1000】Mbps,在各自带宽范围内可提升配额,跨范围提升配额和降配暂不支持。
6455
6530
  */
6456
6531
  InternetMaxBandwidthOut: number;
6457
6532
  }
@@ -6658,7 +6733,7 @@ export interface Price {
6658
6733
  */
6659
6734
  InstancePrice?: ItemPrice;
6660
6735
  /**
6661
- * 网络价格。
6736
+ * 带宽价格。
6662
6737
  */
6663
6738
  BandwidthPrice?: ItemPrice;
6664
6739
  }
@@ -6879,9 +6954,13 @@ export interface DescribeClassicLinkInstancesResponse {
6879
6954
  */
6880
6955
  export interface EnableVpnGatewaySslClientCertRequest {
6881
6956
  /**
6882
- * SSL-VPN-CLIENT 实例ID
6957
+ * SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
6883
6958
  */
6884
- SslVpnClientId: string;
6959
+ SslVpnClientId?: string;
6960
+ /**
6961
+ * SSL-VPN-CLIENT 实例ID列表。批量启用时使用。不可和SslVpnClientId同时使用。
6962
+ */
6963
+ SslVpnClientIds?: Array<string>;
6885
6964
  }
6886
6965
  /**
6887
6966
  * DescribeVpnGatewayCcnRoutes返回参数结构体
@@ -7194,7 +7273,7 @@ export interface CreateNetworkInterfaceRequest {
7194
7273
  */
7195
7274
  SecondaryPrivateIpAddressCount?: number;
7196
7275
  /**
7197
- * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
7276
+ * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
7198
7277
  */
7199
7278
  QosLevel?: string;
7200
7279
  /**
@@ -7714,7 +7793,7 @@ export interface CreateAndAttachNetworkInterfaceRequest {
7714
7793
  */
7715
7794
  SecondaryPrivateIpAddressCount?: number;
7716
7795
  /**
7717
- * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
7796
+ * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
7718
7797
  */
7719
7798
  QosLevel?: string;
7720
7799
  /**
@@ -7847,17 +7926,17 @@ export interface SslVpnSever {
7847
7926
  */
7848
7927
  export interface DownloadVpnGatewaySslClientCertResponse {
7849
7928
  /**
7850
- *
7929
+ * SSL-VPN 客户端配置。
7851
7930
  */
7852
- SslClientConfigsSet: string;
7931
+ SslClientConfigsSet?: string;
7853
7932
  /**
7854
- * SSL-VPN client配置
7933
+ * SSL-VPN 客户端配置。
7855
7934
  */
7856
- SslClientConfig: Array<SslClientConfig>;
7935
+ SslClientConfig?: Array<SslClientConfig>;
7857
7936
  /**
7858
- * 是否鉴权成功 只有传入SamlToken 才生效
7937
+ * 是否鉴权成功 只有传入SamlToken 才生效,1为成功,0为失败。
7859
7938
  */
7860
- Authenticated: number;
7939
+ Authenticated?: number;
7861
7940
  /**
7862
7941
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7863
7942
  */
@@ -8201,9 +8280,13 @@ export interface CreateVpnGatewaySslClientRequest {
8201
8280
  */
8202
8281
  SslVpnServerId: string;
8203
8282
  /**
8204
- * name
8283
+ * SSL-VPN-CLIENT实例Name。不可和SslVpnClientNames同时使用。
8284
+ */
8285
+ SslVpnClientName?: string;
8286
+ /**
8287
+ * SSL-VPN-CLIENT实例Name数字。批量创建时使用。不可和SslVpnClientName同时使用。
8205
8288
  */
8206
- SslVpnClientName: string;
8289
+ SslVpnClientNames?: Array<string>;
8207
8290
  }
8208
8291
  /**
8209
8292
  * UnlockCcns请求参数结构体
@@ -8739,7 +8822,7 @@ export interface DescribeCrossBorderFlowMonitorRequest {
8739
8822
  */
8740
8823
  CcnUin: string;
8741
8824
  /**
8742
- * 时间粒度。
8825
+ * 时间粒度。单位为:秒,如60为60s的时间粒度
8743
8826
  */
8744
8827
  Period: number;
8745
8828
  /**
@@ -8776,11 +8859,11 @@ export interface DescribeNetworkAclsResponse {
8776
8859
  /**
8777
8860
  * 实例详细信息列表。
8778
8861
  */
8779
- NetworkAclSet: Array<NetworkAcl>;
8862
+ NetworkAclSet?: Array<NetworkAcl>;
8780
8863
  /**
8781
8864
  * 符合条件的实例数量。
8782
8865
  */
8783
- TotalCount: number;
8866
+ TotalCount?: number;
8784
8867
  /**
8785
8868
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8786
8869
  */
@@ -8872,7 +8955,7 @@ export interface PrivateIpAddressSpecification {
8872
8955
  */
8873
8956
  State?: string;
8874
8957
  /**
8875
- * IP服务质量等级,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
8958
+ * IP服务质量等级,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
8876
8959
  */
8877
8960
  QosLevel?: string;
8878
8961
  }
@@ -8898,6 +8981,31 @@ export interface MigratePrivateIpAddressResponse {
8898
8981
  */
8899
8982
  RequestId?: string;
8900
8983
  }
8984
+ /**
8985
+ * DescribeUsedIpAddress请求参数结构体
8986
+ */
8987
+ export interface DescribeUsedIpAddressRequest {
8988
+ /**
8989
+ * VPC实例ID。
8990
+ */
8991
+ VpcId: string;
8992
+ /**
8993
+ * 子网实例ID。
8994
+ */
8995
+ SubnetId?: string;
8996
+ /**
8997
+ * 查询是否占用的ip列表
8998
+ */
8999
+ IpAddresses?: Array<string>;
9000
+ /**
9001
+ * 偏移量。
9002
+ */
9003
+ Offset?: number;
9004
+ /**
9005
+ * 请求对象个数。
9006
+ */
9007
+ Limit?: number;
9008
+ }
8901
9009
  /**
8902
9010
  * DeleteRouteTable返回参数结构体
8903
9011
  */
@@ -9186,7 +9294,7 @@ export interface DescribeVpcPrivateIpAddressesResponse {
9186
9294
  /**
9187
9295
  * 内网`IP`地址信息列表。
9188
9296
  */
9189
- VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>;
9297
+ VpcPrivateIpAddressSet?: Array<VpcPrivateIpAddress>;
9190
9298
  /**
9191
9299
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9192
9300
  */
@@ -9520,9 +9628,13 @@ export interface ModifyTemplateMemberResponse {
9520
9628
  */
9521
9629
  export interface DeleteVpnGatewaySslClientRequest {
9522
9630
  /**
9523
- * SSL-VPN-CLIENT 实例ID
9631
+ * SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
9524
9632
  */
9525
- SslVpnClientId: string;
9633
+ SslVpnClientId?: string;
9634
+ /**
9635
+ * SSL-VPN-CLIENT 实例ID列表。批量删除时使用。不可和SslVpnClientId同时使用。
9636
+ */
9637
+ SslVpnClientIds?: Array<string>;
9526
9638
  }
9527
9639
  /**
9528
9640
  * 子网对象
@@ -9794,6 +9906,27 @@ export interface ModifyCcnAttributeRequest {
9794
9906
  */
9795
9907
  CcnDescription?: string;
9796
9908
  }
9909
+ /**
9910
+ * 资源统计信息
9911
+ */
9912
+ export interface ResourceStatistics {
9913
+ /**
9914
+ * Vpc实例ID,例如:vpc-f1xjkw1b。
9915
+ */
9916
+ VpcId: string;
9917
+ /**
9918
+ * 子网实例ID,例如:subnet-bthucmmy。
9919
+ */
9920
+ SubnetId: string;
9921
+ /**
9922
+ * 当前已使用的IP总数。
9923
+ */
9924
+ Ip: number;
9925
+ /**
9926
+ * 资源统计信息。
9927
+ */
9928
+ ResourceStatisticsItemSet: Array<ResourceStatisticsItem>;
9929
+ }
9797
9930
  /**
9798
9931
  * DeleteSecurityGroupPolicies返回参数结构体
9799
9932
  */
@@ -10201,6 +10334,23 @@ export interface AllocateAddressesResponse {
10201
10334
  */
10202
10335
  RequestId?: string;
10203
10336
  }
10337
+ /**
10338
+ * DescribeVpnConnections返回参数结构体
10339
+ */
10340
+ export interface DescribeVpnConnectionsResponse {
10341
+ /**
10342
+ * 符合条件的实例数量。
10343
+ */
10344
+ TotalCount?: number;
10345
+ /**
10346
+ * VPN通道实例。
10347
+ */
10348
+ VpnConnectionSet?: Array<VpnConnection>;
10349
+ /**
10350
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10351
+ */
10352
+ RequestId?: string;
10353
+ }
10204
10354
  /**
10205
10355
  * 描述带宽包信息的结构
10206
10356
  */
@@ -10396,6 +10546,10 @@ export interface SslClientConfig {
10396
10546
  * 客户端证书
10397
10547
  */
10398
10548
  SslVpnCert: string;
10549
+ /**
10550
+ * SSL-VPN-CLIENT 实例ID。
10551
+ */
10552
+ SslVpnClientId?: string;
10399
10553
  }
10400
10554
  /**
10401
10555
  * DescribeBandwidthPackageQuota返回参数结构体
@@ -11233,7 +11387,7 @@ export interface ModifyNetworkInterfaceQosRequest {
11233
11387
  */
11234
11388
  NetworkInterfaceIds: Array<string>;
11235
11389
  /**
11236
- * 服务质量,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
11390
+ * 服务质量,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
11237
11391
  */
11238
11392
  QosLevel: string;
11239
11393
  /**
@@ -11357,7 +11511,7 @@ export interface AssignPrivateIpAddressesRequest {
11357
11511
  */
11358
11512
  SecondaryPrivateIpAddressCount?: number;
11359
11513
  /**
11360
- * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表白金、金、银、默认四个等级。
11514
+ * IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
11361
11515
  */
11362
11516
  QosLevel?: string;
11363
11517
  }
@@ -11598,6 +11752,15 @@ export interface InquiryPriceResetVpnGatewayInternetMaxBandwidthRequest {
11598
11752
  */
11599
11753
  InternetMaxBandwidthOut: number;
11600
11754
  }
11755
+ /**
11756
+ * DisableFlowLogs请求参数结构体
11757
+ */
11758
+ export interface DisableFlowLogsRequest {
11759
+ /**
11760
+ * 流日志Id。
11761
+ */
11762
+ FlowLogIds: Array<string>;
11763
+ }
11601
11764
  /**
11602
11765
  * ReplaceSecurityGroupPolicy返回参数结构体
11603
11766
  */
@@ -11635,11 +11798,11 @@ export interface ReplaceRoutesResponse {
11635
11798
  /**
11636
11799
  * 原路由策略信息。
11637
11800
  */
11638
- OldRouteSet: Array<Route>;
11801
+ OldRouteSet?: Array<Route>;
11639
11802
  /**
11640
11803
  * 修改后的路由策略信息。
11641
11804
  */
11642
- NewRouteSet: Array<Route>;
11805
+ NewRouteSet?: Array<Route>;
11643
11806
  /**
11644
11807
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11645
11808
  */
@@ -11792,11 +11955,11 @@ export interface CreateRoutesResponse {
11792
11955
  /**
11793
11956
  * 新增的实例个数。
11794
11957
  */
11795
- TotalCount: number;
11958
+ TotalCount?: number;
11796
11959
  /**
11797
11960
  * 路由表对象。
11798
11961
  */
11799
- RouteTableSet: Array<RouteTable>;
11962
+ RouteTableSet?: Array<RouteTable>;
11800
11963
  /**
11801
11964
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11802
11965
  */
@@ -12023,17 +12186,21 @@ export interface AttachClassicLinkVpcResponse {
12023
12186
  */
12024
12187
  export interface DownloadVpnGatewaySslClientCertRequest {
12025
12188
  /**
12026
- * SSL-VPN-CLIENT 实例ID
12189
+ * SSL-VPN-CLIENT 实例ID。不可以和SslVpnClientIds同时使用。
12027
12190
  */
12028
- SslVpnClientId: string;
12191
+ SslVpnClientId?: string;
12029
12192
  /**
12030
- * SAML-TOKEN
12193
+ * SAML Token(SAML令牌)。
12031
12194
  */
12032
12195
  SamlToken?: string;
12033
12196
  /**
12034
- * VPN门户网站使用。默认Flase
12197
+ * VPN门户网站使用。默认False
12035
12198
  */
12036
12199
  IsVpnPortal?: boolean;
12200
+ /**
12201
+ * SSL-VPN-CLIENT 实例ID列表。批量下载时使用。不可以和SslVpnClientId同时使用。
12202
+ */
12203
+ SslVpnClientIds?: Array<string>;
12037
12204
  }
12038
12205
  /**
12039
12206
  * CreateAddressTemplate请求参数结构体
@@ -12053,17 +12220,21 @@ export interface CreateAddressTemplateRequest {
12053
12220
  AddressesExtra?: Array<AddressInfo>;
12054
12221
  }
12055
12222
  /**
12056
- * DescribeRouteConflicts请求参数结构体
12223
+ * DescribeNatGateways返回参数结构体
12057
12224
  */
12058
- export interface DescribeRouteConflictsRequest {
12225
+ export interface DescribeNatGatewaysResponse {
12059
12226
  /**
12060
- * 路由表实例ID,例如:rtb-azd4dt1c。
12227
+ * NAT网关对象数组。
12061
12228
  */
12062
- RouteTableId: string;
12229
+ NatGatewaySet: Array<NatGateway>;
12063
12230
  /**
12064
- * 要检查的与之冲突的目的端列表。
12231
+ * 符合条件的NAT网关对象个数。
12065
12232
  */
12066
- DestinationCidrBlocks: Array<string>;
12233
+ TotalCount: number;
12234
+ /**
12235
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12236
+ */
12237
+ RequestId?: string;
12067
12238
  }
12068
12239
  /**
12069
12240
  * 查询nat路由的返回路由对象
@@ -12275,7 +12446,7 @@ export interface DeleteRoutesRequest {
12275
12446
  /**
12276
12447
  * 路由策略对象,删除路由策略时,仅需使用Route的RouteId字段。
12277
12448
  */
12278
- Routes: Array<Route>;
12449
+ Routes?: Array<Route>;
12279
12450
  }
12280
12451
  /**
12281
12452
  * AssociateAddress请求参数结构体
@@ -12993,17 +13164,9 @@ export interface CreateDhcpIpRequest {
12993
13164
  SecondaryPrivateIpAddressCount?: number;
12994
13165
  }
12995
13166
  /**
12996
- * DescribeVpnConnections返回参数结构体
13167
+ * DeleteTrafficPackages返回参数结构体
12997
13168
  */
12998
- export interface DescribeVpnConnectionsResponse {
12999
- /**
13000
- * 符合条件的实例数量。
13001
- */
13002
- TotalCount?: number;
13003
- /**
13004
- * VPN通道实例。
13005
- */
13006
- VpnConnectionSet?: Array<VpnConnection>;
13169
+ export interface DeleteTrafficPackagesResponse {
13007
13170
  /**
13008
13171
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13009
13172
  */
@@ -13166,13 +13329,17 @@ export interface CreateVpcRequest {
13166
13329
  Tags?: Array<Tag>;
13167
13330
  }
13168
13331
  /**
13169
- * DisableFlowLogs请求参数结构体
13332
+ * DescribeSubnetResourceDashboard返回参数结构体
13170
13333
  */
13171
- export interface DisableFlowLogsRequest {
13334
+ export interface DescribeSubnetResourceDashboardResponse {
13172
13335
  /**
13173
- * 流日志Id。
13336
+ * 资源统计结果。
13174
13337
  */
13175
- FlowLogIds: Array<string>;
13338
+ ResourceStatisticsSet?: Array<ResourceStatistics>;
13339
+ /**
13340
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13341
+ */
13342
+ RequestId?: string;
13176
13343
  }
13177
13344
  /**
13178
13345
  * DeleteServiceTemplate请求参数结构体
@@ -13223,8 +13390,9 @@ export interface Route {
13223
13390
  */
13224
13391
  GatewayType: string;
13225
13392
  /**
13226
- * 下一跳地址,这里只需要指定不同下一跳类型的网关ID,系统会自动匹配到下一跳地址。
13227
- */
13393
+ * 下一跳地址,这里只需要指定不同下一跳类型的网关ID,系统会自动匹配到下一跳地址。
13394
+ 特殊说明:GatewayType为NORMAL_CVM时,GatewayId填写实例的内网IP。
13395
+ */
13228
13396
  GatewayId: string;
13229
13397
  /**
13230
13398
  * 路由策略ID。IPv4路由策略ID是有意义的值,IPv6路由策略是无意义的值0。后续建议完全使用字符串唯一ID `RouteItemId`操作路由策略。
@@ -13276,7 +13444,7 @@ export interface EnableVpnGatewaySslClientCertResponse {
13276
13444
  /**
13277
13445
  * 异步任务实例ID。
13278
13446
  */
13279
- TaskId: number;
13447
+ TaskId?: number;
13280
13448
  /**
13281
13449
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13282
13450
  */
@@ -13391,6 +13559,25 @@ export interface AcceptAttachCcnInstancesResponse {
13391
13559
  */
13392
13560
  RequestId?: string;
13393
13561
  }
13562
+ /**
13563
+ * DescribeUsedIpAddress返回参数结构体
13564
+ */
13565
+ export interface DescribeUsedIpAddressResponse {
13566
+ /**
13567
+ * 占用ip地址的资源信息
13568
+ 注意:此字段可能返回 null,表示取不到有效值。
13569
+ */
13570
+ IpAddressStates?: Array<IpAddressStates>;
13571
+ /**
13572
+ * 返回占用资源的个数
13573
+ 注意:此字段可能返回 null,表示取不到有效值。
13574
+ */
13575
+ TotalCount?: number;
13576
+ /**
13577
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13578
+ */
13579
+ RequestId?: string;
13580
+ }
13394
13581
  /**
13395
13582
  * IP地址模板信息
13396
13583
  */