tencentcloud-sdk-nodejs-vpc 4.0.366 → 4.0.369
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 +459 -0
- package/SERVICE_CHANGELOG.md +484 -82
- package/package.json +1 -1
- package/products.md +25 -25
- package/src/services/vpc/v20170312/vpc_client.ts +16 -1
- package/src/services/vpc/v20170312/vpc_models.ts +165 -15
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +6 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +7 -0
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +138 -14
|
@@ -894,9 +894,9 @@ export interface ModifyNetworkAclEntriesRequest {
|
|
|
894
894
|
*/
|
|
895
895
|
NetworkAclId: string;
|
|
896
896
|
/**
|
|
897
|
-
* 网络ACL规则集。
|
|
897
|
+
* 网络ACL规则集。NetworkAclEntrySet和NetworkAclQuintupleSet只能输入一个。
|
|
898
898
|
*/
|
|
899
|
-
NetworkAclEntrySet
|
|
899
|
+
NetworkAclEntrySet?: NetworkAclEntrySet;
|
|
900
900
|
}
|
|
901
901
|
/**
|
|
902
902
|
* DescribeVpcPrivateIpAddresses请求参数结构体
|
|
@@ -1249,6 +1249,18 @@ export interface CreateVpnGatewaySslServerRequest {
|
|
|
1249
1249
|
* 是否支持压缩。当前仅支持不支持压缩。默认False
|
|
1250
1250
|
*/
|
|
1251
1251
|
Compress?: boolean;
|
|
1252
|
+
/**
|
|
1253
|
+
* 是否开启SSO认证
|
|
1254
|
+
*/
|
|
1255
|
+
SsoEnabled?: boolean;
|
|
1256
|
+
/**
|
|
1257
|
+
* 是否开启策略访问控制
|
|
1258
|
+
*/
|
|
1259
|
+
AccessPolicyEnabled?: boolean;
|
|
1260
|
+
/**
|
|
1261
|
+
* SAML-DATA
|
|
1262
|
+
*/
|
|
1263
|
+
SamlData?: string;
|
|
1252
1264
|
}
|
|
1253
1265
|
/**
|
|
1254
1266
|
* CreateVpcEndPoint请求参数结构体
|
|
@@ -2901,6 +2913,10 @@ export interface DescribeVpnGatewaySslClientsRequest {
|
|
|
2901
2913
|
* SSL-VPN-CLIENT实例ID。形如:vpngwSslClient-f49l6u0z。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
|
|
2902
2914
|
*/
|
|
2903
2915
|
SslVpnClientIds?: Array<string>;
|
|
2916
|
+
/**
|
|
2917
|
+
* VPN门户网站使用。默认是False。
|
|
2918
|
+
*/
|
|
2919
|
+
IsVpnPortal?: boolean;
|
|
2904
2920
|
}
|
|
2905
2921
|
/**
|
|
2906
2922
|
* DescribeIp6TranslatorQuota请求参数结构体
|
|
@@ -2953,6 +2969,10 @@ export interface DescribeVpnGatewaySslServersRequest {
|
|
|
2953
2969
|
<li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
|
|
2954
2970
|
*/
|
|
2955
2971
|
Filters?: Array<FilterObject>;
|
|
2972
|
+
/**
|
|
2973
|
+
* vpn门户使用。 默认Flase
|
|
2974
|
+
*/
|
|
2975
|
+
IsVpnPortal?: boolean;
|
|
2956
2976
|
}
|
|
2957
2977
|
/**
|
|
2958
2978
|
* ModifyNetDetect请求参数结构体
|
|
@@ -3808,21 +3828,17 @@ export interface AssociateNetworkAclSubnetsRequest {
|
|
|
3808
3828
|
SubnetIds: Array<string>;
|
|
3809
3829
|
}
|
|
3810
3830
|
/**
|
|
3811
|
-
*
|
|
3831
|
+
* AdjustPublicAddress返回参数结构体
|
|
3812
3832
|
*/
|
|
3813
|
-
export interface
|
|
3833
|
+
export interface AdjustPublicAddressResponse {
|
|
3814
3834
|
/**
|
|
3815
|
-
*
|
|
3816
|
-
*/
|
|
3817
|
-
VpcId: string;
|
|
3818
|
-
/**
|
|
3819
|
-
* 待添加的负载CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
|
|
3835
|
+
* 异步任务TaskId。可以使用[DescribeTaskResult](https://cloud.tencent.com/document/api/215/36271)接口查询任务状态。
|
|
3820
3836
|
*/
|
|
3821
|
-
|
|
3837
|
+
TaskId: number;
|
|
3822
3838
|
/**
|
|
3823
|
-
*
|
|
3839
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3824
3840
|
*/
|
|
3825
|
-
|
|
3841
|
+
RequestId?: string;
|
|
3826
3842
|
}
|
|
3827
3843
|
/**
|
|
3828
3844
|
* RenewVpnGateway请求参数结构体
|
|
@@ -5313,6 +5329,31 @@ export interface AssociateAddressResponse {
|
|
|
5313
5329
|
*/
|
|
5314
5330
|
RequestId?: string;
|
|
5315
5331
|
}
|
|
5332
|
+
/**
|
|
5333
|
+
* 策略信息
|
|
5334
|
+
*/
|
|
5335
|
+
export interface AccessPolicy {
|
|
5336
|
+
/**
|
|
5337
|
+
* 目的CIDR
|
|
5338
|
+
*/
|
|
5339
|
+
TargetCidr: string;
|
|
5340
|
+
/**
|
|
5341
|
+
* 策略ID
|
|
5342
|
+
*/
|
|
5343
|
+
VpnGatewayIdSslAccessPolicyId: string;
|
|
5344
|
+
/**
|
|
5345
|
+
* 是否对所有用户都生效。1 生效 0不生效
|
|
5346
|
+
*/
|
|
5347
|
+
ForAllClient: number;
|
|
5348
|
+
/**
|
|
5349
|
+
* 用户组ID
|
|
5350
|
+
*/
|
|
5351
|
+
UserGroupIds: Array<string>;
|
|
5352
|
+
/**
|
|
5353
|
+
* 更新时间
|
|
5354
|
+
*/
|
|
5355
|
+
UpdateTime: string;
|
|
5356
|
+
}
|
|
5316
5357
|
/**
|
|
5317
5358
|
* ModifyCcnAttachedInstancesAttribute返回参数结构体
|
|
5318
5359
|
*/
|
|
@@ -5408,7 +5449,7 @@ export interface CreateSecurityGroupResponse {
|
|
|
5408
5449
|
/**
|
|
5409
5450
|
* 安全组对象。
|
|
5410
5451
|
*/
|
|
5411
|
-
SecurityGroup
|
|
5452
|
+
SecurityGroup: SecurityGroup;
|
|
5412
5453
|
/**
|
|
5413
5454
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5414
5455
|
*/
|
|
@@ -6999,15 +7040,39 @@ export interface SslVpnSever {
|
|
|
6999
7040
|
7 未知
|
|
7000
7041
|
*/
|
|
7001
7042
|
State: number;
|
|
7043
|
+
/**
|
|
7044
|
+
* 是否开启SSO认证。1:开启 0: 不开启
|
|
7045
|
+
*/
|
|
7046
|
+
SsoEnabled: number;
|
|
7047
|
+
/**
|
|
7048
|
+
* EIAM应用ID
|
|
7049
|
+
*/
|
|
7050
|
+
EiamApplicationId: string;
|
|
7051
|
+
/**
|
|
7052
|
+
* 是否开启策略控制。0:不开启 1: 开启
|
|
7053
|
+
*/
|
|
7054
|
+
AccessPolicyEnabled: number;
|
|
7055
|
+
/**
|
|
7056
|
+
* 策略信息
|
|
7057
|
+
*/
|
|
7058
|
+
AccessPolicy: Array<AccessPolicy>;
|
|
7002
7059
|
}
|
|
7003
7060
|
/**
|
|
7004
7061
|
* DownloadVpnGatewaySslClientCert返回参数结构体
|
|
7005
7062
|
*/
|
|
7006
7063
|
export interface DownloadVpnGatewaySslClientCertResponse {
|
|
7007
7064
|
/**
|
|
7008
|
-
*
|
|
7065
|
+
* 无
|
|
7009
7066
|
*/
|
|
7010
7067
|
SslClientConfigsSet: string;
|
|
7068
|
+
/**
|
|
7069
|
+
* SSL-VPN client配置
|
|
7070
|
+
*/
|
|
7071
|
+
SslClientConfig: Array<SslClientConfig>;
|
|
7072
|
+
/**
|
|
7073
|
+
* 是否鉴权成功 只有传入SamlToken 才生效
|
|
7074
|
+
*/
|
|
7075
|
+
Authenticated: number;
|
|
7011
7076
|
/**
|
|
7012
7077
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7013
7078
|
*/
|
|
@@ -9190,6 +9255,19 @@ export interface DeleteNatGatewayResponse {
|
|
|
9190
9255
|
*/
|
|
9191
9256
|
RequestId?: string;
|
|
9192
9257
|
}
|
|
9258
|
+
/**
|
|
9259
|
+
* AdjustPublicAddress请求参数结构体
|
|
9260
|
+
*/
|
|
9261
|
+
export interface AdjustPublicAddressRequest {
|
|
9262
|
+
/**
|
|
9263
|
+
* 标识CVM实例的唯一 ID。CVM 唯一 ID 形如:`ins-11112222`。
|
|
9264
|
+
*/
|
|
9265
|
+
InstanceId?: string;
|
|
9266
|
+
/**
|
|
9267
|
+
* 标识EIP实例的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。
|
|
9268
|
+
*/
|
|
9269
|
+
AddressId?: string;
|
|
9270
|
+
}
|
|
9193
9271
|
/**
|
|
9194
9272
|
* CreateDirectConnectGateway返回参数结构体
|
|
9195
9273
|
*/
|
|
@@ -9457,6 +9535,23 @@ export interface Ip6Translator {
|
|
|
9457
9535
|
*/
|
|
9458
9536
|
IP6RuleSet: Array<Ip6Rule>;
|
|
9459
9537
|
}
|
|
9538
|
+
/**
|
|
9539
|
+
* CheckAssistantCidr请求参数结构体
|
|
9540
|
+
*/
|
|
9541
|
+
export interface CheckAssistantCidrRequest {
|
|
9542
|
+
/**
|
|
9543
|
+
* `VPC`实例`ID`。形如:`vpc-6v2ht8q5`
|
|
9544
|
+
*/
|
|
9545
|
+
VpcId: string;
|
|
9546
|
+
/**
|
|
9547
|
+
* 待添加的负载CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
|
|
9548
|
+
*/
|
|
9549
|
+
NewCidrBlocks?: Array<string>;
|
|
9550
|
+
/**
|
|
9551
|
+
* 待删除的负载CIDR。CIDR数组,格式如["10.0.0.0/16", "172.16.0.0/16"]。入参NewCidrBlocks和OldCidrBlocks至少需要其一。
|
|
9552
|
+
*/
|
|
9553
|
+
OldCidrBlocks?: Array<string>;
|
|
9554
|
+
}
|
|
9460
9555
|
/**
|
|
9461
9556
|
* NAT网关的端口转发规则
|
|
9462
9557
|
*/
|
|
@@ -9595,6 +9690,27 @@ export interface ModifyServiceTemplateGroupAttributeResponse {
|
|
|
9595
9690
|
*/
|
|
9596
9691
|
RequestId?: string;
|
|
9597
9692
|
}
|
|
9693
|
+
/**
|
|
9694
|
+
* DownloadVpnGatewaySslClientCert 使用
|
|
9695
|
+
*/
|
|
9696
|
+
export interface SslClientConfig {
|
|
9697
|
+
/**
|
|
9698
|
+
* 客户端配置
|
|
9699
|
+
*/
|
|
9700
|
+
SslVpnClientConfiguration: string;
|
|
9701
|
+
/**
|
|
9702
|
+
* 更证书
|
|
9703
|
+
*/
|
|
9704
|
+
SslVpnRootCert: string;
|
|
9705
|
+
/**
|
|
9706
|
+
* 客户端密钥
|
|
9707
|
+
*/
|
|
9708
|
+
SslVpnKey: string;
|
|
9709
|
+
/**
|
|
9710
|
+
* 客户端证书
|
|
9711
|
+
*/
|
|
9712
|
+
SslVpnCert: string;
|
|
9713
|
+
}
|
|
9598
9714
|
/**
|
|
9599
9715
|
* DeleteSubnet请求参数结构体
|
|
9600
9716
|
*/
|
|
@@ -10528,6 +10644,14 @@ export interface DownloadVpnGatewaySslClientCertRequest {
|
|
|
10528
10644
|
* SSL-VPN-CLIENT 实例ID。
|
|
10529
10645
|
*/
|
|
10530
10646
|
SslVpnClientId: string;
|
|
10647
|
+
/**
|
|
10648
|
+
* SAML-TOKEN
|
|
10649
|
+
*/
|
|
10650
|
+
SamlToken?: string;
|
|
10651
|
+
/**
|
|
10652
|
+
* VPN门户网站使用。默认Flase
|
|
10653
|
+
*/
|
|
10654
|
+
IsVpnPortal?: boolean;
|
|
10531
10655
|
}
|
|
10532
10656
|
/**
|
|
10533
10657
|
* CreateAddressTemplate请求参数结构体
|