tencentcloud-sdk-nodejs-vpc 4.0.678 → 4.0.680
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 +401 -0
- package/SERVICE_CHANGELOG.md +480 -204
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/services/vpc/v20170312/vpc_client.ts +89 -63
- package/src/services/vpc/v20170312/vpc_models.ts +133 -65
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +44 -34
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +54 -40
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +129 -65
|
@@ -1410,6 +1410,19 @@ export interface DisassociateNetworkInterfaceSecurityGroupsRequest {
|
|
|
1410
1410
|
*/
|
|
1411
1411
|
SecurityGroupIds: Array<string>;
|
|
1412
1412
|
}
|
|
1413
|
+
/**
|
|
1414
|
+
* DeleteNetworkAclEntries请求参数结构体
|
|
1415
|
+
*/
|
|
1416
|
+
export interface DeleteNetworkAclEntriesRequest {
|
|
1417
|
+
/**
|
|
1418
|
+
* 三元组网络ACL实例ID。例如:acl-12345678。
|
|
1419
|
+
*/
|
|
1420
|
+
NetworkAclId: string;
|
|
1421
|
+
/**
|
|
1422
|
+
* 三元组网络ACL规则集。
|
|
1423
|
+
*/
|
|
1424
|
+
NetworkAclEntrySet?: NetworkAclEntrySet;
|
|
1425
|
+
}
|
|
1413
1426
|
/**
|
|
1414
1427
|
* 安全组规则集合
|
|
1415
1428
|
*/
|
|
@@ -3296,7 +3309,7 @@ export interface CreateTrafficPackagesResponse {
|
|
|
3296
3309
|
*/
|
|
3297
3310
|
export interface ModifySecurityGroupAttributeRequest {
|
|
3298
3311
|
/**
|
|
3299
|
-
* 安全组实例ID,例如sg-33ocnj9n
|
|
3312
|
+
* 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
3300
3313
|
*/
|
|
3301
3314
|
SecurityGroupId: string;
|
|
3302
3315
|
/**
|
|
@@ -3798,17 +3811,21 @@ export interface DescribeTrafficPackagesRequest {
|
|
|
3798
3811
|
Limit?: number;
|
|
3799
3812
|
}
|
|
3800
3813
|
/**
|
|
3801
|
-
*
|
|
3814
|
+
* DescribeLocalGateway返回参数结构体
|
|
3802
3815
|
*/
|
|
3803
|
-
export interface
|
|
3816
|
+
export interface DescribeLocalGatewayResponse {
|
|
3804
3817
|
/**
|
|
3805
|
-
*
|
|
3818
|
+
* 本地网关信息集合。
|
|
3806
3819
|
*/
|
|
3807
|
-
|
|
3820
|
+
LocalGatewaySet?: Array<LocalGateway>;
|
|
3808
3821
|
/**
|
|
3809
|
-
*
|
|
3822
|
+
* 本地网关总数。
|
|
3810
3823
|
*/
|
|
3811
|
-
|
|
3824
|
+
TotalCount?: number;
|
|
3825
|
+
/**
|
|
3826
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3827
|
+
*/
|
|
3828
|
+
RequestId?: string;
|
|
3812
3829
|
}
|
|
3813
3830
|
/**
|
|
3814
3831
|
* VPN通道对象。
|
|
@@ -4567,7 +4584,7 @@ export interface DescribeGatewayFlowQosResponse {
|
|
|
4567
4584
|
*/
|
|
4568
4585
|
export interface ModifySecurityGroupPoliciesRequest {
|
|
4569
4586
|
/**
|
|
4570
|
-
* 安全组实例ID,例如sg-33ocnj9n
|
|
4587
|
+
* 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
4571
4588
|
*/
|
|
4572
4589
|
SecurityGroupId: string;
|
|
4573
4590
|
/**
|
|
@@ -5357,35 +5374,35 @@ export interface NetDetect {
|
|
|
5357
5374
|
/**
|
|
5358
5375
|
* `VPC`实例`ID`。形如:`vpc-12345678`
|
|
5359
5376
|
*/
|
|
5360
|
-
VpcId
|
|
5377
|
+
VpcId?: string;
|
|
5361
5378
|
/**
|
|
5362
5379
|
* `VPC`实例名称。
|
|
5363
5380
|
*/
|
|
5364
|
-
VpcName
|
|
5381
|
+
VpcName?: string;
|
|
5365
5382
|
/**
|
|
5366
5383
|
* 子网实例ID。形如:subnet-12345678。
|
|
5367
5384
|
*/
|
|
5368
|
-
SubnetId
|
|
5385
|
+
SubnetId?: string;
|
|
5369
5386
|
/**
|
|
5370
5387
|
* 子网实例名称。
|
|
5371
5388
|
*/
|
|
5372
|
-
SubnetName
|
|
5389
|
+
SubnetName?: string;
|
|
5373
5390
|
/**
|
|
5374
5391
|
* 网络探测实例ID。形如:netd-12345678。
|
|
5375
5392
|
*/
|
|
5376
|
-
NetDetectId
|
|
5393
|
+
NetDetectId?: string;
|
|
5377
5394
|
/**
|
|
5378
5395
|
* 网络探测名称,最大长度不能超过60个字节。
|
|
5379
5396
|
*/
|
|
5380
|
-
NetDetectName
|
|
5397
|
+
NetDetectName?: string;
|
|
5381
5398
|
/**
|
|
5382
5399
|
* 探测目的IPv4地址数组,最多两个。
|
|
5383
5400
|
*/
|
|
5384
|
-
DetectDestinationIp
|
|
5401
|
+
DetectDestinationIp?: Array<string>;
|
|
5385
5402
|
/**
|
|
5386
5403
|
* 系统自动分配的探测源IPv4数组。长度为2。
|
|
5387
5404
|
*/
|
|
5388
|
-
DetectSourceIp
|
|
5405
|
+
DetectSourceIp?: Array<string>;
|
|
5389
5406
|
/**
|
|
5390
5407
|
* 下一跳类型,目前我们支持的类型有:
|
|
5391
5408
|
VPN:VPN网关;
|
|
@@ -5396,7 +5413,7 @@ export interface NetDetect {
|
|
|
5396
5413
|
CCN:云联网网关;
|
|
5397
5414
|
NONEXTHOP:无下一跳;
|
|
5398
5415
|
*/
|
|
5399
|
-
NextHopType
|
|
5416
|
+
NextHopType?: string;
|
|
5400
5417
|
/**
|
|
5401
5418
|
* 下一跳目的网关,取值与“下一跳类型”相关:
|
|
5402
5419
|
下一跳类型为VPN,取值VPN网关ID,形如:vpngw-12345678;
|
|
@@ -5405,24 +5422,24 @@ export interface NetDetect {
|
|
|
5405
5422
|
下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
|
|
5406
5423
|
下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
|
|
5407
5424
|
下一跳类型为CCN,取值云联网ID,形如:ccn-12345678;
|
|
5408
|
-
下一跳类型为NONEXTHOP
|
|
5425
|
+
下一跳类型为NONEXTHOP,指定网络探测为无下一跳的网络探测,添加和修改时,不需要指定值,查询时值为空字符串;
|
|
5409
5426
|
*/
|
|
5410
|
-
NextHopDestination
|
|
5427
|
+
NextHopDestination?: string;
|
|
5411
5428
|
/**
|
|
5412
5429
|
* 下一跳网关名称。
|
|
5413
5430
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5414
5431
|
*/
|
|
5415
|
-
NextHopName
|
|
5432
|
+
NextHopName?: string;
|
|
5416
5433
|
/**
|
|
5417
5434
|
* 网络探测描述。
|
|
5418
5435
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5419
5436
|
*/
|
|
5420
|
-
NetDetectDescription
|
|
5437
|
+
NetDetectDescription?: string;
|
|
5421
5438
|
/**
|
|
5422
5439
|
* 创建时间。
|
|
5423
5440
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5424
5441
|
*/
|
|
5425
|
-
CreateTime
|
|
5442
|
+
CreateTime?: string;
|
|
5426
5443
|
}
|
|
5427
5444
|
/**
|
|
5428
5445
|
* 修改VPN状态参数
|
|
@@ -5481,7 +5498,7 @@ export interface ResumeSnapshotInstanceRequest {
|
|
|
5481
5498
|
*/
|
|
5482
5499
|
export interface ReplaceSecurityGroupPolicyRequest {
|
|
5483
5500
|
/**
|
|
5484
|
-
* 安全组实例ID,例如sg-33ocnj9n
|
|
5501
|
+
* 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
5485
5502
|
*/
|
|
5486
5503
|
SecurityGroupId: string;
|
|
5487
5504
|
/**
|
|
@@ -5710,13 +5727,17 @@ export interface DescribeCcnAttachedInstancesResponse {
|
|
|
5710
5727
|
RequestId?: string;
|
|
5711
5728
|
}
|
|
5712
5729
|
/**
|
|
5713
|
-
*
|
|
5730
|
+
* CreateNetworkAclEntries请求参数结构体
|
|
5714
5731
|
*/
|
|
5715
|
-
export interface
|
|
5732
|
+
export interface CreateNetworkAclEntriesRequest {
|
|
5716
5733
|
/**
|
|
5717
|
-
*
|
|
5734
|
+
* 网络ACL实例ID。例如:acl-12345678。
|
|
5718
5735
|
*/
|
|
5719
|
-
|
|
5736
|
+
NetworkAclId: string;
|
|
5737
|
+
/**
|
|
5738
|
+
* 网络三元组ACL规则集。
|
|
5739
|
+
*/
|
|
5740
|
+
NetworkAclEntrySet: NetworkAclEntrySet;
|
|
5720
5741
|
}
|
|
5721
5742
|
/**
|
|
5722
5743
|
* DeleteCustomerGateway返回参数结构体
|
|
@@ -6459,6 +6480,15 @@ export interface EnableRoutesResponse {
|
|
|
6459
6480
|
*/
|
|
6460
6481
|
RequestId?: string;
|
|
6461
6482
|
}
|
|
6483
|
+
/**
|
|
6484
|
+
* HaVipAssociateAddressIp返回参数结构体
|
|
6485
|
+
*/
|
|
6486
|
+
export interface HaVipAssociateAddressIpResponse {
|
|
6487
|
+
/**
|
|
6488
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6489
|
+
*/
|
|
6490
|
+
RequestId?: string;
|
|
6491
|
+
}
|
|
6462
6492
|
/**
|
|
6463
6493
|
* DescribeSpecificTrafficPackageUsedDetails请求参数结构体
|
|
6464
6494
|
*/
|
|
@@ -6714,6 +6744,15 @@ export interface EndPoint {
|
|
|
6714
6744
|
*/
|
|
6715
6745
|
ServiceName: string;
|
|
6716
6746
|
}
|
|
6747
|
+
/**
|
|
6748
|
+
* RemoveIp6Rules返回参数结构体
|
|
6749
|
+
*/
|
|
6750
|
+
export interface RemoveIp6RulesResponse {
|
|
6751
|
+
/**
|
|
6752
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6753
|
+
*/
|
|
6754
|
+
RequestId?: string;
|
|
6755
|
+
}
|
|
6717
6756
|
/**
|
|
6718
6757
|
* 专线网关对象。
|
|
6719
6758
|
*/
|
|
@@ -7418,6 +7457,10 @@ export interface CreateNetworkInterfaceRequest {
|
|
|
7418
7457
|
* 网卡trunking模式设置,Enable-开启,Disable--关闭,默认关闭。
|
|
7419
7458
|
*/
|
|
7420
7459
|
TrunkingFlag?: string;
|
|
7460
|
+
/**
|
|
7461
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
|
7462
|
+
*/
|
|
7463
|
+
ClientToken?: string;
|
|
7421
7464
|
}
|
|
7422
7465
|
/**
|
|
7423
7466
|
* 后付费共享带宽包的当前计费用量
|
|
@@ -7938,6 +7981,10 @@ export interface CreateAndAttachNetworkInterfaceRequest {
|
|
|
7938
7981
|
* 绑定类型:0 标准型 1 扩展型。
|
|
7939
7982
|
*/
|
|
7940
7983
|
AttachType?: number;
|
|
7984
|
+
/**
|
|
7985
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
|
7986
|
+
*/
|
|
7987
|
+
ClientToken?: string;
|
|
7941
7988
|
}
|
|
7942
7989
|
/**
|
|
7943
7990
|
* DeleteVpcEndPoint返回参数结构体
|
|
@@ -8618,21 +8665,17 @@ export interface CcnInstance {
|
|
|
8618
8665
|
RouteTableId?: string;
|
|
8619
8666
|
}
|
|
8620
8667
|
/**
|
|
8621
|
-
*
|
|
8668
|
+
* DeleteSecurityGroupPolicies请求参数结构体
|
|
8622
8669
|
*/
|
|
8623
|
-
export interface
|
|
8624
|
-
/**
|
|
8625
|
-
* 本地网关信息集合。
|
|
8626
|
-
*/
|
|
8627
|
-
LocalGatewaySet?: Array<LocalGateway>;
|
|
8670
|
+
export interface DeleteSecurityGroupPoliciesRequest {
|
|
8628
8671
|
/**
|
|
8629
|
-
*
|
|
8672
|
+
* 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
8630
8673
|
*/
|
|
8631
|
-
|
|
8674
|
+
SecurityGroupId: string;
|
|
8632
8675
|
/**
|
|
8633
|
-
*
|
|
8676
|
+
* 安全组规则集合。一个请求中只能删除单个方向的一条或多条规则。支持指定索引(PolicyIndex) 匹配删除和安全组规则匹配删除两种方式,一个请求中只能使用一种匹配方式。
|
|
8634
8677
|
*/
|
|
8635
|
-
|
|
8678
|
+
SecurityGroupPolicySet: SecurityGroupPolicySet;
|
|
8636
8679
|
}
|
|
8637
8680
|
/**
|
|
8638
8681
|
* 单项计费价格信息
|
|
@@ -9420,7 +9463,7 @@ export interface DescribeRouteTablesRequest {
|
|
|
9420
9463
|
*/
|
|
9421
9464
|
Offset?: string;
|
|
9422
9465
|
/**
|
|
9423
|
-
*
|
|
9466
|
+
* 返回数量,默认为20,最大值为100。
|
|
9424
9467
|
*/
|
|
9425
9468
|
Limit?: string;
|
|
9426
9469
|
}
|
|
@@ -9809,13 +9852,17 @@ export interface DeleteAssistantCidrRequest {
|
|
|
9809
9852
|
CidrBlocks: Array<string>;
|
|
9810
9853
|
}
|
|
9811
9854
|
/**
|
|
9812
|
-
*
|
|
9855
|
+
* DisableVpnGatewaySslClientCert请求参数结构体
|
|
9813
9856
|
*/
|
|
9814
|
-
export interface
|
|
9857
|
+
export interface DisableVpnGatewaySslClientCertRequest {
|
|
9815
9858
|
/**
|
|
9816
|
-
*
|
|
9859
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
9817
9860
|
*/
|
|
9818
|
-
|
|
9861
|
+
SslVpnClientId?: string;
|
|
9862
|
+
/**
|
|
9863
|
+
* SSL-VPN-CLIENT 实例ID列表。批量禁用时使用。不可和SslVpnClientId同时使用。
|
|
9864
|
+
*/
|
|
9865
|
+
SslVpnClientIds?: Array<string>;
|
|
9819
9866
|
}
|
|
9820
9867
|
/**
|
|
9821
9868
|
* DeleteVpnGatewaySslClient请求参数结构体
|
|
@@ -10669,7 +10716,7 @@ export interface DescribeIp6TranslatorsResponse {
|
|
|
10669
10716
|
*/
|
|
10670
10717
|
export interface CreateSecurityGroupPoliciesRequest {
|
|
10671
10718
|
/**
|
|
10672
|
-
* 安全组实例ID,例如sg-33ocnj9n
|
|
10719
|
+
* 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
10673
10720
|
*/
|
|
10674
10721
|
SecurityGroupId: string;
|
|
10675
10722
|
/**
|
|
@@ -11556,27 +11603,27 @@ export interface RouteTable {
|
|
|
11556
11603
|
/**
|
|
11557
11604
|
* VPC实例ID。
|
|
11558
11605
|
*/
|
|
11559
|
-
VpcId
|
|
11606
|
+
VpcId?: string;
|
|
11560
11607
|
/**
|
|
11561
11608
|
* 路由表实例ID,例如:rtb-azd4dt1c。
|
|
11562
11609
|
*/
|
|
11563
|
-
RouteTableId
|
|
11610
|
+
RouteTableId?: string;
|
|
11564
11611
|
/**
|
|
11565
11612
|
* 路由表名称。
|
|
11566
11613
|
*/
|
|
11567
|
-
RouteTableName
|
|
11614
|
+
RouteTableName?: string;
|
|
11568
11615
|
/**
|
|
11569
11616
|
* 路由表关联关系。
|
|
11570
11617
|
*/
|
|
11571
|
-
AssociationSet
|
|
11618
|
+
AssociationSet?: Array<RouteTableAssociation>;
|
|
11572
11619
|
/**
|
|
11573
11620
|
* IPv4路由策略集合。
|
|
11574
11621
|
*/
|
|
11575
|
-
RouteSet
|
|
11622
|
+
RouteSet?: Array<Route>;
|
|
11576
11623
|
/**
|
|
11577
11624
|
* 是否默认路由表。
|
|
11578
11625
|
*/
|
|
11579
|
-
Main
|
|
11626
|
+
Main?: boolean;
|
|
11580
11627
|
/**
|
|
11581
11628
|
* 创建时间。
|
|
11582
11629
|
*/
|
|
@@ -11584,12 +11631,12 @@ export interface RouteTable {
|
|
|
11584
11631
|
/**
|
|
11585
11632
|
* 标签键值对。
|
|
11586
11633
|
*/
|
|
11587
|
-
TagSet
|
|
11634
|
+
TagSet?: Array<Tag>;
|
|
11588
11635
|
/**
|
|
11589
11636
|
* local路由是否发布云联网。
|
|
11590
11637
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11591
11638
|
*/
|
|
11592
|
-
LocalCidrForCcn
|
|
11639
|
+
LocalCidrForCcn?: Array<CidrForCcn>;
|
|
11593
11640
|
}
|
|
11594
11641
|
/**
|
|
11595
11642
|
* DescribeVpcEndPointServiceWhiteList请求参数结构体
|
|
@@ -11755,6 +11802,10 @@ export interface AssignPrivateIpAddressesRequest {
|
|
|
11755
11802
|
* IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
|
|
11756
11803
|
*/
|
|
11757
11804
|
QosLevel?: string;
|
|
11805
|
+
/**
|
|
11806
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
|
11807
|
+
*/
|
|
11808
|
+
ClientToken?: string;
|
|
11758
11809
|
}
|
|
11759
11810
|
/**
|
|
11760
11811
|
* DescribeSnapshotAttachedInstances返回参数结构体
|
|
@@ -11954,6 +12005,15 @@ export interface CreateBandwidthPackageResponse {
|
|
|
11954
12005
|
*/
|
|
11955
12006
|
RequestId?: string;
|
|
11956
12007
|
}
|
|
12008
|
+
/**
|
|
12009
|
+
* CreateNetworkAclEntries返回参数结构体
|
|
12010
|
+
*/
|
|
12011
|
+
export interface CreateNetworkAclEntriesResponse {
|
|
12012
|
+
/**
|
|
12013
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12014
|
+
*/
|
|
12015
|
+
RequestId?: string;
|
|
12016
|
+
}
|
|
11957
12017
|
/**
|
|
11958
12018
|
* ResetVpnConnection请求参数结构体
|
|
11959
12019
|
*/
|
|
@@ -12148,17 +12208,13 @@ export interface DeleteSecurityGroupResponse {
|
|
|
12148
12208
|
RequestId?: string;
|
|
12149
12209
|
}
|
|
12150
12210
|
/**
|
|
12151
|
-
*
|
|
12211
|
+
* DeleteNetworkAclEntries返回参数结构体
|
|
12152
12212
|
*/
|
|
12153
|
-
export interface
|
|
12213
|
+
export interface DeleteNetworkAclEntriesResponse {
|
|
12154
12214
|
/**
|
|
12155
|
-
*
|
|
12156
|
-
*/
|
|
12157
|
-
SslVpnClientId?: string;
|
|
12158
|
-
/**
|
|
12159
|
-
* SSL-VPN-CLIENT 实例ID列表。批量禁用时使用。不可和SslVpnClientId同时使用。
|
|
12215
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12160
12216
|
*/
|
|
12161
|
-
|
|
12217
|
+
RequestId?: string;
|
|
12162
12218
|
}
|
|
12163
12219
|
/**
|
|
12164
12220
|
* CreateNetworkInterface返回参数结构体
|
|
@@ -12402,6 +12458,10 @@ export interface DetachNetworkInterfaceRequest {
|
|
|
12402
12458
|
* CVM实例ID。形如:ins-r8hr2upy。
|
|
12403
12459
|
*/
|
|
12404
12460
|
InstanceId: string;
|
|
12461
|
+
/**
|
|
12462
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
|
12463
|
+
*/
|
|
12464
|
+
ClientToken?: string;
|
|
12405
12465
|
}
|
|
12406
12466
|
/**
|
|
12407
12467
|
* IPV6转换规则
|
|
@@ -12563,6 +12623,10 @@ export interface AttachNetworkInterfaceRequest {
|
|
|
12563
12623
|
* 网卡的挂载类型:0 标准型,1扩展型,默认值0。
|
|
12564
12624
|
*/
|
|
12565
12625
|
AttachType?: number;
|
|
12626
|
+
/**
|
|
12627
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
|
12628
|
+
*/
|
|
12629
|
+
ClientToken?: string;
|
|
12566
12630
|
}
|
|
12567
12631
|
/**
|
|
12568
12632
|
* DescribeCcnRoutes返回参数结构体
|
|
@@ -12904,9 +12968,9 @@ export interface ModifyNetworkInterfaceAttributeRequest {
|
|
|
12904
12968
|
TrunkingFlag?: string;
|
|
12905
12969
|
}
|
|
12906
12970
|
/**
|
|
12907
|
-
*
|
|
12971
|
+
* ModifyTemplateMember返回参数结构体
|
|
12908
12972
|
*/
|
|
12909
|
-
export interface
|
|
12973
|
+
export interface ModifyTemplateMemberResponse {
|
|
12910
12974
|
/**
|
|
12911
12975
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12912
12976
|
*/
|
|
@@ -13095,7 +13159,7 @@ export interface CreateCustomerGatewayRequest {
|
|
|
13095
13159
|
*/
|
|
13096
13160
|
export interface DeleteSecurityGroupRequest {
|
|
13097
13161
|
/**
|
|
13098
|
-
* 安全组实例ID,例如sg-33ocnj9n
|
|
13162
|
+
* 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
13099
13163
|
*/
|
|
13100
13164
|
SecurityGroupId: string;
|
|
13101
13165
|
}
|
|
@@ -13245,7 +13309,7 @@ export interface CreateSecurityGroupRequest {
|
|
|
13245
13309
|
*/
|
|
13246
13310
|
GroupDescription: string;
|
|
13247
13311
|
/**
|
|
13248
|
-
* 项目ID,默认0
|
|
13312
|
+
* 项目ID,默认0。可在<a href="https://console.cloud.tencent.com/project">控制台项目管理页面</a>查询到。
|
|
13249
13313
|
*/
|
|
13250
13314
|
ProjectId?: string;
|
|
13251
13315
|
/**
|
|
@@ -13589,7 +13653,7 @@ export interface CreateSecurityGroupWithPoliciesRequest {
|
|
|
13589
13653
|
*/
|
|
13590
13654
|
GroupDescription: string;
|
|
13591
13655
|
/**
|
|
13592
|
-
* 项目ID,默认0。可在<a href="https://console.cloud.tencent.com/project"
|
|
13656
|
+
* 项目ID,默认0。可在<a href="https://console.cloud.tencent.com/project">控制台项目管理页面</a>查询到。
|
|
13593
13657
|
*/
|
|
13594
13658
|
ProjectId?: string;
|
|
13595
13659
|
/**
|
|
@@ -13653,7 +13717,7 @@ export interface DeleteServiceTemplateRequest {
|
|
|
13653
13717
|
*/
|
|
13654
13718
|
export interface DescribeSecurityGroupAssociationStatisticsRequest {
|
|
13655
13719
|
/**
|
|
13656
|
-
* 安全实例ID,例如sg-33ocnj9n
|
|
13720
|
+
* 安全实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
13657
13721
|
*/
|
|
13658
13722
|
SecurityGroupIds: Array<string>;
|
|
13659
13723
|
}
|