tencentcloud-sdk-nodejs 4.0.516 → 4.0.517
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 +243 -0
- package/SERVICE_CHANGELOG.md +338 -296
- package/package.json +1 -1
- package/products.md +9 -8
- package/src/common/sdk_version.ts +1 -1
- package/src/services/api/v20201106/api_models.ts +63 -3
- package/src/services/cdn/v20180606/cdn_models.ts +12 -2
- package/src/services/dts/v20211206/dts_client.ts +71 -34
- package/src/services/dts/v20211206/dts_models.ts +285 -116
- package/src/services/faceid/v20180301/faceid_client.ts +1 -14
- package/src/services/faceid/v20180301/faceid_models.ts +25 -65
- package/src/services/hasim/index.ts +5 -0
- package/src/services/hasim/v20210716/hasim_client.ts +309 -0
- package/src/services/hasim/v20210716/hasim_models.ts +1833 -0
- package/src/services/hasim/v20210716/index.ts +6 -0
- package/src/services/index.ts +1 -0
- package/src/services/mongodb/v20190725/mongodb_client.ts +3 -3
- package/src/services/mongodb/v20190725/mongodb_models.ts +3 -3
- package/src/services/rum/v20210622/rum_client.ts +19 -7
- package/src/services/rum/v20210622/rum_models.ts +64 -4
- package/src/services/ssa/v20180608/ssa_client.ts +106 -94
- package/src/services/ssa/v20180608/ssa_models.ts +188 -130
- package/src/services/vpc/v20170312/vpc_client.ts +226 -77
- package/src/services/vpc/v20170312/vpc_models.ts +726 -168
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/api/v20201106/api_models.d.ts +53 -3
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +10 -2
- package/tencentcloud/services/dts/v20211206/dts_client.d.ts +25 -13
- package/tencentcloud/services/dts/v20211206/dts_client.js +36 -18
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +248 -103
- package/tencentcloud/services/faceid/v20180301/faceid_client.d.ts +1 -6
- package/tencentcloud/services/faceid/v20180301/faceid_client.js +0 -7
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +22 -56
- package/tencentcloud/services/hasim/index.d.ts +6 -0
- package/tencentcloud/services/hasim/index.js +7 -0
- package/tencentcloud/services/hasim/v20210716/hasim_client.d.ts +98 -0
- package/tencentcloud/services/hasim/v20210716/hasim_client.js +163 -0
- package/tencentcloud/services/hasim/v20210716/hasim_models.d.ts +1536 -0
- package/tencentcloud/services/hasim/v20210716/hasim_models.js +18 -0
- package/tencentcloud/services/hasim/v20210716/index.d.ts +6 -0
- package/tencentcloud/services/hasim/v20210716/index.js +9 -0
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +2 -0
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +3 -3
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +3 -3
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +3 -3
- package/tencentcloud/services/rum/v20210622/rum_client.d.ts +7 -3
- package/tencentcloud/services/rum/v20210622/rum_client.js +9 -3
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +54 -4
- package/tencentcloud/services/ssa/v20180608/ssa_client.d.ts +37 -33
- package/tencentcloud/services/ssa/v20180608/ssa_client.js +54 -48
- package/tencentcloud/services/ssa/v20180608/ssa_models.d.ts +158 -109
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +82 -34
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +113 -41
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +636 -159
- package/test/dts.v20211206.test.js +46 -16
- package/test/faceid.v20180301.test.js +0 -10
- package/test/hasim.v20210716.test.js +241 -0
- package/test/rum.v20210622.test.js +12 -2
- package/test/ssa.v20180608.test.js +44 -34
- package/test/vpc.v20170312.test.js +136 -16
|
@@ -602,6 +602,19 @@ export interface CreateDefaultSecurityGroupRequest {
|
|
|
602
602
|
*/
|
|
603
603
|
ProjectId?: string;
|
|
604
604
|
}
|
|
605
|
+
/**
|
|
606
|
+
* CreateSnapshotPolicies返回参数结构体
|
|
607
|
+
*/
|
|
608
|
+
export interface CreateSnapshotPoliciesResponse {
|
|
609
|
+
/**
|
|
610
|
+
* 快照策略。
|
|
611
|
+
*/
|
|
612
|
+
SnapshotPolicies: Array<SnapshotPolicy>;
|
|
613
|
+
/**
|
|
614
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
615
|
+
*/
|
|
616
|
+
RequestId?: string;
|
|
617
|
+
}
|
|
605
618
|
/**
|
|
606
619
|
* DescribeServiceTemplateGroups返回参数结构体
|
|
607
620
|
*/
|
|
@@ -644,23 +657,6 @@ export interface DescribeVpcEndPointRequest {
|
|
|
644
657
|
*/
|
|
645
658
|
EndPointId?: Array<string>;
|
|
646
659
|
}
|
|
647
|
-
/**
|
|
648
|
-
* AssignPrivateIpAddresses请求参数结构体
|
|
649
|
-
*/
|
|
650
|
-
export interface AssignPrivateIpAddressesRequest {
|
|
651
|
-
/**
|
|
652
|
-
* 弹性网卡实例ID,例如:eni-m6dyj72l。
|
|
653
|
-
*/
|
|
654
|
-
NetworkInterfaceId: string;
|
|
655
|
-
/**
|
|
656
|
-
* 指定的内网IP信息,单次最多指定10个。与SecondaryPrivateIpAddressCount至少提供一个。
|
|
657
|
-
*/
|
|
658
|
-
PrivateIpAddresses?: Array<PrivateIpAddressSpecification>;
|
|
659
|
-
/**
|
|
660
|
-
* 新申请的内网IP地址个数,与PrivateIpAddresses至少提供一个。内网IP地址个数总和不能超过配额数,详见<a href="/document/product/576/18527">弹性网卡使用限制</a>。
|
|
661
|
-
*/
|
|
662
|
-
SecondaryPrivateIpAddressCount?: number;
|
|
663
|
-
}
|
|
664
660
|
/**
|
|
665
661
|
* DetachClassicLinkVpc请求参数结构体
|
|
666
662
|
*/
|
|
@@ -1651,6 +1647,15 @@ export interface DeleteVpcEndPointServiceWhiteListRequest {
|
|
|
1651
1647
|
*/
|
|
1652
1648
|
EndPointServiceId: string;
|
|
1653
1649
|
}
|
|
1650
|
+
/**
|
|
1651
|
+
* DetachSnapshotInstances返回参数结构体
|
|
1652
|
+
*/
|
|
1653
|
+
export interface DetachSnapshotInstancesResponse {
|
|
1654
|
+
/**
|
|
1655
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1656
|
+
*/
|
|
1657
|
+
RequestId?: string;
|
|
1658
|
+
}
|
|
1654
1659
|
/**
|
|
1655
1660
|
* DetachNetworkInterface返回参数结构体
|
|
1656
1661
|
*/
|
|
@@ -1736,6 +1741,15 @@ export interface DescribeCcnAttachedInstancesRequest {
|
|
|
1736
1741
|
*/
|
|
1737
1742
|
OrderDirection?: string;
|
|
1738
1743
|
}
|
|
1744
|
+
/**
|
|
1745
|
+
* AttachSnapshotInstances返回参数结构体
|
|
1746
|
+
*/
|
|
1747
|
+
export interface AttachSnapshotInstancesResponse {
|
|
1748
|
+
/**
|
|
1749
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1750
|
+
*/
|
|
1751
|
+
RequestId?: string;
|
|
1752
|
+
}
|
|
1739
1753
|
/**
|
|
1740
1754
|
* DescribeNatGatewaySourceIpTranslationNatRules请求参数结构体
|
|
1741
1755
|
*/
|
|
@@ -1849,17 +1863,17 @@ export interface DisableVpnGatewaySslClientCertRequest {
|
|
|
1849
1863
|
SslVpnClientId: string;
|
|
1850
1864
|
}
|
|
1851
1865
|
/**
|
|
1852
|
-
*
|
|
1866
|
+
* AttachSnapshotInstances请求参数结构体
|
|
1853
1867
|
*/
|
|
1854
|
-
export interface
|
|
1868
|
+
export interface AttachSnapshotInstancesRequest {
|
|
1855
1869
|
/**
|
|
1856
|
-
*
|
|
1870
|
+
* 快照策略Id。
|
|
1857
1871
|
*/
|
|
1858
|
-
|
|
1872
|
+
SnapshotPolicyId: string;
|
|
1859
1873
|
/**
|
|
1860
|
-
*
|
|
1874
|
+
* 关联实例信息。
|
|
1861
1875
|
*/
|
|
1862
|
-
|
|
1876
|
+
Instances: Array<SnapshotInstance>;
|
|
1863
1877
|
}
|
|
1864
1878
|
/**
|
|
1865
1879
|
* ModifyIp6Translator返回参数结构体
|
|
@@ -2084,6 +2098,35 @@ export interface NetDetectState {
|
|
|
2084
2098
|
*/
|
|
2085
2099
|
NetDetectIpStateSet: Array<NetDetectIpState>;
|
|
2086
2100
|
}
|
|
2101
|
+
/**
|
|
2102
|
+
* DescribeSnapshotFiles请求参数结构体
|
|
2103
|
+
*/
|
|
2104
|
+
export interface DescribeSnapshotFilesRequest {
|
|
2105
|
+
/**
|
|
2106
|
+
* 业务类型,目前支持安全组:securitygroup。
|
|
2107
|
+
*/
|
|
2108
|
+
BusinessType: string;
|
|
2109
|
+
/**
|
|
2110
|
+
* 实例Id。
|
|
2111
|
+
*/
|
|
2112
|
+
InstanceId: string;
|
|
2113
|
+
/**
|
|
2114
|
+
* 开始日期,格式%Y-%m-%d %H:%M:%S。
|
|
2115
|
+
*/
|
|
2116
|
+
StartDate: string;
|
|
2117
|
+
/**
|
|
2118
|
+
* 结束日期,格式%Y-%m-%d %H:%M:%S。
|
|
2119
|
+
*/
|
|
2120
|
+
EndDate: string;
|
|
2121
|
+
/**
|
|
2122
|
+
* 偏移量,默认为0。
|
|
2123
|
+
*/
|
|
2124
|
+
Offset?: number;
|
|
2125
|
+
/**
|
|
2126
|
+
* 返回数量,默认为20,最大为200。
|
|
2127
|
+
*/
|
|
2128
|
+
Limit?: number;
|
|
2129
|
+
}
|
|
2087
2130
|
/**
|
|
2088
2131
|
* HaVipDisassociateAddressIp返回参数结构体
|
|
2089
2132
|
*/
|
|
@@ -2565,7 +2608,7 @@ export interface DescribeNatGatewayDestinationIpPortTranslationNatRulesRequest {
|
|
|
2565
2608
|
*/
|
|
2566
2609
|
export interface ReturnNormalAddressesRequest {
|
|
2567
2610
|
/**
|
|
2568
|
-
*
|
|
2611
|
+
* EIP 的 IP 地址,示例:101.35.139.183
|
|
2569
2612
|
*/
|
|
2570
2613
|
AddressIps?: Array<string>;
|
|
2571
2614
|
}
|
|
@@ -2754,6 +2797,15 @@ export interface DeleteAddressTemplateResponse {
|
|
|
2754
2797
|
*/
|
|
2755
2798
|
RequestId?: string;
|
|
2756
2799
|
}
|
|
2800
|
+
/**
|
|
2801
|
+
* ResumeSnapshotInstance返回参数结构体
|
|
2802
|
+
*/
|
|
2803
|
+
export interface ResumeSnapshotInstanceResponse {
|
|
2804
|
+
/**
|
|
2805
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2806
|
+
*/
|
|
2807
|
+
RequestId?: string;
|
|
2808
|
+
}
|
|
2757
2809
|
/**
|
|
2758
2810
|
* ModifySubnetAttribute返回参数结构体
|
|
2759
2811
|
*/
|
|
@@ -3140,6 +3192,43 @@ CCN:云联网网关;
|
|
|
3140
3192
|
*/
|
|
3141
3193
|
NetDetectDescription?: string;
|
|
3142
3194
|
}
|
|
3195
|
+
/**
|
|
3196
|
+
* DescribeSgSnapshotFileContent返回参数结构体
|
|
3197
|
+
*/
|
|
3198
|
+
export interface DescribeSgSnapshotFileContentResponse {
|
|
3199
|
+
/**
|
|
3200
|
+
* 实例Id,即安全组Id。
|
|
3201
|
+
*/
|
|
3202
|
+
InstanceId: string;
|
|
3203
|
+
/**
|
|
3204
|
+
* 快照策略Id。
|
|
3205
|
+
*/
|
|
3206
|
+
SnapshotPolicyId: string;
|
|
3207
|
+
/**
|
|
3208
|
+
* 快照文件Id。
|
|
3209
|
+
*/
|
|
3210
|
+
SnapshotFileId: string;
|
|
3211
|
+
/**
|
|
3212
|
+
* 备份时间。
|
|
3213
|
+
*/
|
|
3214
|
+
BackupTime: string;
|
|
3215
|
+
/**
|
|
3216
|
+
* 操作者。
|
|
3217
|
+
*/
|
|
3218
|
+
Operator: string;
|
|
3219
|
+
/**
|
|
3220
|
+
* 原始数据。
|
|
3221
|
+
*/
|
|
3222
|
+
OriginalData: Array<SecurityGroupPolicy>;
|
|
3223
|
+
/**
|
|
3224
|
+
* 备份数据。
|
|
3225
|
+
*/
|
|
3226
|
+
BackupData: Array<SecurityGroupPolicy>;
|
|
3227
|
+
/**
|
|
3228
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3229
|
+
*/
|
|
3230
|
+
RequestId?: string;
|
|
3231
|
+
}
|
|
3143
3232
|
/**
|
|
3144
3233
|
* DescribeNetDetectStates返回参数结构体
|
|
3145
3234
|
*/
|
|
@@ -3308,6 +3397,19 @@ export interface DescribeAssistantCidrResponse {
|
|
|
3308
3397
|
*/
|
|
3309
3398
|
RequestId?: string;
|
|
3310
3399
|
}
|
|
3400
|
+
/**
|
|
3401
|
+
* 时间备份策略详情
|
|
3402
|
+
*/
|
|
3403
|
+
export interface BackupPolicy {
|
|
3404
|
+
/**
|
|
3405
|
+
* 备份周期时间,取值为monday, tuesday, wednesday, thursday, friday, saturday, sunday。
|
|
3406
|
+
*/
|
|
3407
|
+
BackupDay: string;
|
|
3408
|
+
/**
|
|
3409
|
+
* 备份时间点,格式:HH:mm:ss。
|
|
3410
|
+
*/
|
|
3411
|
+
BackupTime: string;
|
|
3412
|
+
}
|
|
3311
3413
|
/**
|
|
3312
3414
|
* 用于描述实例的统计信息
|
|
3313
3415
|
*/
|
|
@@ -3745,6 +3847,15 @@ export interface DeleteSubnetResponse {
|
|
|
3745
3847
|
*/
|
|
3746
3848
|
RequestId?: string;
|
|
3747
3849
|
}
|
|
3850
|
+
/**
|
|
3851
|
+
* EnableSnapshotPolicies返回参数结构体
|
|
3852
|
+
*/
|
|
3853
|
+
export interface EnableSnapshotPoliciesResponse {
|
|
3854
|
+
/**
|
|
3855
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3856
|
+
*/
|
|
3857
|
+
RequestId?: string;
|
|
3858
|
+
}
|
|
3748
3859
|
/**
|
|
3749
3860
|
* 私有网络(VPC)对象。
|
|
3750
3861
|
*/
|
|
@@ -4076,6 +4187,29 @@ export interface SecurityGroupPolicy {
|
|
|
4076
4187
|
*/
|
|
4077
4188
|
ModifyTime?: string;
|
|
4078
4189
|
}
|
|
4190
|
+
/**
|
|
4191
|
+
* DescribeSnapshotPolicies请求参数结构体
|
|
4192
|
+
*/
|
|
4193
|
+
export interface DescribeSnapshotPoliciesRequest {
|
|
4194
|
+
/**
|
|
4195
|
+
* 快照策略Id。
|
|
4196
|
+
*/
|
|
4197
|
+
SnapshotPolicyIds?: Array<string>;
|
|
4198
|
+
/**
|
|
4199
|
+
* 过滤条件,参数不支持同时指定SnapshotPolicyIds和Filters。
|
|
4200
|
+
<li>snapshot-policy-id - String -(过滤条件)快照策略ID。</li>
|
|
4201
|
+
<li>snapshot-policy-name - String -(过滤条件)快照策略名称。</li>
|
|
4202
|
+
*/
|
|
4203
|
+
Filters?: Array<Filter>;
|
|
4204
|
+
/**
|
|
4205
|
+
* 偏移量,默认为0。
|
|
4206
|
+
*/
|
|
4207
|
+
Offset?: number;
|
|
4208
|
+
/**
|
|
4209
|
+
* 返回数量,默认为20,最大为200。
|
|
4210
|
+
*/
|
|
4211
|
+
Limit?: number;
|
|
4212
|
+
}
|
|
4079
4213
|
/**
|
|
4080
4214
|
* NotifyRoutes请求参数结构体
|
|
4081
4215
|
*/
|
|
@@ -4969,6 +5103,15 @@ export interface VpnGatewayRouteModify {
|
|
|
4969
5103
|
*/
|
|
4970
5104
|
Status: string;
|
|
4971
5105
|
}
|
|
5106
|
+
/**
|
|
5107
|
+
* DisableSnapshotPolicies请求参数结构体
|
|
5108
|
+
*/
|
|
5109
|
+
export interface DisableSnapshotPoliciesRequest {
|
|
5110
|
+
/**
|
|
5111
|
+
* 快照策略Id。
|
|
5112
|
+
*/
|
|
5113
|
+
SnapshotPolicyIds: Array<string>;
|
|
5114
|
+
}
|
|
4972
5115
|
/**
|
|
4973
5116
|
* 模板对象成员信息
|
|
4974
5117
|
*/
|
|
@@ -4982,6 +5125,23 @@ export interface MemberInfo {
|
|
|
4982
5125
|
*/
|
|
4983
5126
|
Description?: string;
|
|
4984
5127
|
}
|
|
5128
|
+
/**
|
|
5129
|
+
* ResumeSnapshotInstance请求参数结构体
|
|
5130
|
+
*/
|
|
5131
|
+
export interface ResumeSnapshotInstanceRequest {
|
|
5132
|
+
/**
|
|
5133
|
+
* 快照策略Id。
|
|
5134
|
+
*/
|
|
5135
|
+
SnapshotPolicyId: string;
|
|
5136
|
+
/**
|
|
5137
|
+
* 快照文件Id。
|
|
5138
|
+
*/
|
|
5139
|
+
SnapshotFileId: string;
|
|
5140
|
+
/**
|
|
5141
|
+
* 实例Id。
|
|
5142
|
+
*/
|
|
5143
|
+
InstanceId: string;
|
|
5144
|
+
}
|
|
4985
5145
|
/**
|
|
4986
5146
|
* ReplaceSecurityGroupPolicy请求参数结构体
|
|
4987
5147
|
*/
|
|
@@ -5182,79 +5342,21 @@ export interface ResourceDashboard {
|
|
|
5182
5342
|
RouteTable: number;
|
|
5183
5343
|
}
|
|
5184
5344
|
/**
|
|
5185
|
-
*
|
|
5345
|
+
* DescribeSnapshotFiles返回参数结构体
|
|
5186
5346
|
*/
|
|
5187
|
-
export interface
|
|
5188
|
-
/**
|
|
5189
|
-
* `VPC`实例`ID`。
|
|
5190
|
-
*/
|
|
5191
|
-
VpcId: string;
|
|
5192
|
-
/**
|
|
5193
|
-
* 子网实例`ID`,例如:subnet-bthucmmy。
|
|
5194
|
-
*/
|
|
5195
|
-
SubnetId: string;
|
|
5196
|
-
/**
|
|
5197
|
-
* 子网名称。
|
|
5198
|
-
*/
|
|
5199
|
-
SubnetName: string;
|
|
5200
|
-
/**
|
|
5201
|
-
* 子网的 `IPv4` `CIDR`。
|
|
5202
|
-
*/
|
|
5203
|
-
CidrBlock: string;
|
|
5204
|
-
/**
|
|
5205
|
-
* 是否默认子网。
|
|
5206
|
-
*/
|
|
5207
|
-
IsDefault: boolean;
|
|
5208
|
-
/**
|
|
5209
|
-
* 是否开启广播。
|
|
5210
|
-
*/
|
|
5211
|
-
EnableBroadcast: boolean;
|
|
5212
|
-
/**
|
|
5213
|
-
* 可用区。
|
|
5214
|
-
*/
|
|
5215
|
-
Zone: string;
|
|
5216
|
-
/**
|
|
5217
|
-
* 路由表实例ID,例如:rtb-l2h8d7c2。
|
|
5218
|
-
*/
|
|
5219
|
-
RouteTableId: string;
|
|
5220
|
-
/**
|
|
5221
|
-
* 创建时间。
|
|
5222
|
-
*/
|
|
5223
|
-
CreatedTime?: string;
|
|
5224
|
-
/**
|
|
5225
|
-
* 可用`IPv4`数。
|
|
5226
|
-
*/
|
|
5227
|
-
AvailableIpAddressCount: number;
|
|
5228
|
-
/**
|
|
5229
|
-
* 子网的 `IPv6` `CIDR`。
|
|
5230
|
-
*/
|
|
5231
|
-
Ipv6CidrBlock: string;
|
|
5232
|
-
/**
|
|
5233
|
-
* 关联`ACL`ID
|
|
5234
|
-
*/
|
|
5235
|
-
NetworkAclId: string;
|
|
5236
|
-
/**
|
|
5237
|
-
* 是否为 `SNAT` 地址池子网。
|
|
5238
|
-
*/
|
|
5239
|
-
IsRemoteVpcSnat: boolean;
|
|
5347
|
+
export interface DescribeSnapshotFilesResponse {
|
|
5240
5348
|
/**
|
|
5241
|
-
*
|
|
5242
|
-
*/
|
|
5243
|
-
TotalIpAddressCount: number;
|
|
5244
|
-
/**
|
|
5245
|
-
* 标签键值对。
|
|
5349
|
+
* 快照文件集合。
|
|
5246
5350
|
*/
|
|
5247
|
-
|
|
5351
|
+
SnapshotFileSet: Array<SnapshotFileInfo>;
|
|
5248
5352
|
/**
|
|
5249
|
-
*
|
|
5250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5353
|
+
* 符合条件的对象数。
|
|
5251
5354
|
*/
|
|
5252
|
-
|
|
5355
|
+
TotalCount: number;
|
|
5253
5356
|
/**
|
|
5254
|
-
*
|
|
5255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5357
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5256
5358
|
*/
|
|
5257
|
-
|
|
5359
|
+
RequestId?: string;
|
|
5258
5360
|
}
|
|
5259
5361
|
/**
|
|
5260
5362
|
* DescribeCcnAttachedInstances返回参数结构体
|
|
@@ -5595,6 +5697,15 @@ export interface DescribeVpcEndPointServiceRequest {
|
|
|
5595
5697
|
*/
|
|
5596
5698
|
EndPointServiceIds?: Array<string>;
|
|
5597
5699
|
}
|
|
5700
|
+
/**
|
|
5701
|
+
* DisableSnapshotPolicies返回参数结构体
|
|
5702
|
+
*/
|
|
5703
|
+
export interface DisableSnapshotPoliciesResponse {
|
|
5704
|
+
/**
|
|
5705
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5706
|
+
*/
|
|
5707
|
+
RequestId?: string;
|
|
5708
|
+
}
|
|
5598
5709
|
/**
|
|
5599
5710
|
* ModifyServiceTemplateAttribute请求参数结构体
|
|
5600
5711
|
*/
|
|
@@ -5957,6 +6068,23 @@ export interface DescribeNetworkAclQuintupleEntriesRequest {
|
|
|
5957
6068
|
*/
|
|
5958
6069
|
Filters?: Array<Filter>;
|
|
5959
6070
|
}
|
|
6071
|
+
/**
|
|
6072
|
+
* DescribeSnapshotPolicies返回参数结构体
|
|
6073
|
+
*/
|
|
6074
|
+
export interface DescribeSnapshotPoliciesResponse {
|
|
6075
|
+
/**
|
|
6076
|
+
* 快照策略。
|
|
6077
|
+
*/
|
|
6078
|
+
SnapshotPolicySet: Array<SnapshotPolicy>;
|
|
6079
|
+
/**
|
|
6080
|
+
* 符合条件的对象数。
|
|
6081
|
+
*/
|
|
6082
|
+
TotalCount: number;
|
|
6083
|
+
/**
|
|
6084
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6085
|
+
*/
|
|
6086
|
+
RequestId?: string;
|
|
6087
|
+
}
|
|
5960
6088
|
/**
|
|
5961
6089
|
* DisableGatewayFlowMonitor请求参数结构体
|
|
5962
6090
|
*/
|
|
@@ -7234,6 +7362,15 @@ export interface SetCcnRegionBandwidthLimitsResponse {
|
|
|
7234
7362
|
*/
|
|
7235
7363
|
RequestId?: string;
|
|
7236
7364
|
}
|
|
7365
|
+
/**
|
|
7366
|
+
* ModifySnapshotPolicies返回参数结构体
|
|
7367
|
+
*/
|
|
7368
|
+
export interface ModifySnapshotPoliciesResponse {
|
|
7369
|
+
/**
|
|
7370
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7371
|
+
*/
|
|
7372
|
+
RequestId?: string;
|
|
7373
|
+
}
|
|
7237
7374
|
/**
|
|
7238
7375
|
* DescribeAccountAttributes请求参数结构体
|
|
7239
7376
|
*/
|
|
@@ -7817,27 +7954,102 @@ export interface DescribeVpnGatewaySslServersResponse {
|
|
|
7817
7954
|
RequestId?: string;
|
|
7818
7955
|
}
|
|
7819
7956
|
/**
|
|
7820
|
-
*
|
|
7957
|
+
* 子网对象
|
|
7821
7958
|
*/
|
|
7822
|
-
export interface
|
|
7959
|
+
export interface Subnet {
|
|
7823
7960
|
/**
|
|
7824
|
-
*
|
|
7961
|
+
* `VPC`实例`ID`。
|
|
7825
7962
|
*/
|
|
7826
|
-
|
|
7827
|
-
}
|
|
7828
|
-
/**
|
|
7829
|
-
* DeleteVpnGateway请求参数结构体
|
|
7830
|
-
*/
|
|
7831
|
-
export interface DeleteVpnGatewayRequest {
|
|
7963
|
+
VpcId: string;
|
|
7832
7964
|
/**
|
|
7833
|
-
*
|
|
7965
|
+
* 子网实例`ID`,例如:subnet-bthucmmy。
|
|
7834
7966
|
*/
|
|
7835
|
-
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
7840
|
-
|
|
7967
|
+
SubnetId: string;
|
|
7968
|
+
/**
|
|
7969
|
+
* 子网名称。
|
|
7970
|
+
*/
|
|
7971
|
+
SubnetName: string;
|
|
7972
|
+
/**
|
|
7973
|
+
* 子网的 `IPv4` `CIDR`。
|
|
7974
|
+
*/
|
|
7975
|
+
CidrBlock: string;
|
|
7976
|
+
/**
|
|
7977
|
+
* 是否默认子网。
|
|
7978
|
+
*/
|
|
7979
|
+
IsDefault: boolean;
|
|
7980
|
+
/**
|
|
7981
|
+
* 是否开启广播。
|
|
7982
|
+
*/
|
|
7983
|
+
EnableBroadcast: boolean;
|
|
7984
|
+
/**
|
|
7985
|
+
* 可用区。
|
|
7986
|
+
*/
|
|
7987
|
+
Zone: string;
|
|
7988
|
+
/**
|
|
7989
|
+
* 路由表实例ID,例如:rtb-l2h8d7c2。
|
|
7990
|
+
*/
|
|
7991
|
+
RouteTableId: string;
|
|
7992
|
+
/**
|
|
7993
|
+
* 创建时间。
|
|
7994
|
+
*/
|
|
7995
|
+
CreatedTime?: string;
|
|
7996
|
+
/**
|
|
7997
|
+
* 可用`IPv4`数。
|
|
7998
|
+
*/
|
|
7999
|
+
AvailableIpAddressCount: number;
|
|
8000
|
+
/**
|
|
8001
|
+
* 子网的 `IPv6` `CIDR`。
|
|
8002
|
+
*/
|
|
8003
|
+
Ipv6CidrBlock: string;
|
|
8004
|
+
/**
|
|
8005
|
+
* 关联`ACL`ID
|
|
8006
|
+
*/
|
|
8007
|
+
NetworkAclId: string;
|
|
8008
|
+
/**
|
|
8009
|
+
* 是否为 `SNAT` 地址池子网。
|
|
8010
|
+
*/
|
|
8011
|
+
IsRemoteVpcSnat: boolean;
|
|
8012
|
+
/**
|
|
8013
|
+
* 子网`IPv4`总数。
|
|
8014
|
+
*/
|
|
8015
|
+
TotalIpAddressCount: number;
|
|
8016
|
+
/**
|
|
8017
|
+
* 标签键值对。
|
|
8018
|
+
*/
|
|
8019
|
+
TagSet: Array<Tag>;
|
|
8020
|
+
/**
|
|
8021
|
+
* CDC实例ID。
|
|
8022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8023
|
+
*/
|
|
8024
|
+
CdcId: string;
|
|
8025
|
+
/**
|
|
8026
|
+
* 是否是CDC所属子网。0:否 1:是
|
|
8027
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8028
|
+
*/
|
|
8029
|
+
IsCdcSubnet: number;
|
|
8030
|
+
}
|
|
8031
|
+
/**
|
|
8032
|
+
* DeleteNatGatewayDestinationIpPortTranslationNatRule返回参数结构体
|
|
8033
|
+
*/
|
|
8034
|
+
export interface DeleteNatGatewayDestinationIpPortTranslationNatRuleResponse {
|
|
8035
|
+
/**
|
|
8036
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8037
|
+
*/
|
|
8038
|
+
RequestId?: string;
|
|
8039
|
+
}
|
|
8040
|
+
/**
|
|
8041
|
+
* DeleteVpnGateway请求参数结构体
|
|
8042
|
+
*/
|
|
8043
|
+
export interface DeleteVpnGatewayRequest {
|
|
8044
|
+
/**
|
|
8045
|
+
* VPN网关实例ID。
|
|
8046
|
+
*/
|
|
8047
|
+
VpnGatewayId: string;
|
|
8048
|
+
}
|
|
8049
|
+
/**
|
|
8050
|
+
* ReplaceRouteTableAssociation返回参数结构体
|
|
8051
|
+
*/
|
|
8052
|
+
export interface ReplaceRouteTableAssociationResponse {
|
|
7841
8053
|
/**
|
|
7842
8054
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7843
8055
|
*/
|
|
@@ -8060,6 +8272,15 @@ export interface ModifyTemplateMemberRequest {
|
|
|
8060
8272
|
*/
|
|
8061
8273
|
TemplateMember: Array<MemberInfo>;
|
|
8062
8274
|
}
|
|
8275
|
+
/**
|
|
8276
|
+
* EnableSnapshotPolicies请求参数结构体
|
|
8277
|
+
*/
|
|
8278
|
+
export interface EnableSnapshotPoliciesRequest {
|
|
8279
|
+
/**
|
|
8280
|
+
* 快照策略Id。
|
|
8281
|
+
*/
|
|
8282
|
+
SnapshotPolicyIds: Array<string>;
|
|
8283
|
+
}
|
|
8063
8284
|
/**
|
|
8064
8285
|
* DescribeAddresses返回参数结构体
|
|
8065
8286
|
*/
|
|
@@ -8098,6 +8319,37 @@ export interface GatewayQos {
|
|
|
8098
8319
|
*/
|
|
8099
8320
|
CreateTime: string;
|
|
8100
8321
|
}
|
|
8322
|
+
/**
|
|
8323
|
+
* GetCcnRegionBandwidthLimits请求参数结构体
|
|
8324
|
+
*/
|
|
8325
|
+
export interface GetCcnRegionBandwidthLimitsRequest {
|
|
8326
|
+
/**
|
|
8327
|
+
* CCN实例ID。形如:ccn-f49l6u0z。
|
|
8328
|
+
*/
|
|
8329
|
+
CcnId: string;
|
|
8330
|
+
/**
|
|
8331
|
+
* 过滤条件。
|
|
8332
|
+
<li>sregion - String - (过滤条件)源地域,形如:ap-guangzhou。</li>
|
|
8333
|
+
<li>dregion - String - (过滤条件)目的地域,形如:ap-shanghai-bm</li>
|
|
8334
|
+
*/
|
|
8335
|
+
Filters?: Array<Filter>;
|
|
8336
|
+
/**
|
|
8337
|
+
* 排序条件,目前支持带宽(BandwidthLimit)和过期时间(ExpireTime)
|
|
8338
|
+
*/
|
|
8339
|
+
SortedBy?: string;
|
|
8340
|
+
/**
|
|
8341
|
+
* 偏移量
|
|
8342
|
+
*/
|
|
8343
|
+
Offset?: number;
|
|
8344
|
+
/**
|
|
8345
|
+
* 返回数量
|
|
8346
|
+
*/
|
|
8347
|
+
Limit?: number;
|
|
8348
|
+
/**
|
|
8349
|
+
* 排序方式,'ASC':升序,'DESC':降序。
|
|
8350
|
+
*/
|
|
8351
|
+
OrderBy?: string;
|
|
8352
|
+
}
|
|
8101
8353
|
/**
|
|
8102
8354
|
* ModifyIpv6AddressesAttribute请求参数结构体
|
|
8103
8355
|
*/
|
|
@@ -8115,6 +8367,19 @@ export interface ModifyIpv6AddressesAttributeRequest {
|
|
|
8115
8367
|
* DescribeCustomerGatewayVendors请求参数结构体
|
|
8116
8368
|
*/
|
|
8117
8369
|
export declare type DescribeCustomerGatewayVendorsRequest = null;
|
|
8370
|
+
/**
|
|
8371
|
+
* DetachSnapshotInstances请求参数结构体
|
|
8372
|
+
*/
|
|
8373
|
+
export interface DetachSnapshotInstancesRequest {
|
|
8374
|
+
/**
|
|
8375
|
+
* 快照策略Id。
|
|
8376
|
+
*/
|
|
8377
|
+
SnapshotPolicyId: string;
|
|
8378
|
+
/**
|
|
8379
|
+
* 实例信息。
|
|
8380
|
+
*/
|
|
8381
|
+
Instances: Array<SnapshotInstance>;
|
|
8382
|
+
}
|
|
8118
8383
|
/**
|
|
8119
8384
|
* DeleteLocalGateway请求参数结构体
|
|
8120
8385
|
*/
|
|
@@ -8496,21 +8761,13 @@ export interface DescribeTrafficPackagesResponse {
|
|
|
8496
8761
|
RequestId?: string;
|
|
8497
8762
|
}
|
|
8498
8763
|
/**
|
|
8499
|
-
*
|
|
8764
|
+
* CreateSnapshotPolicies请求参数结构体
|
|
8500
8765
|
*/
|
|
8501
|
-
export interface
|
|
8766
|
+
export interface CreateSnapshotPoliciesRequest {
|
|
8502
8767
|
/**
|
|
8503
|
-
*
|
|
8768
|
+
* 快照策略详情。
|
|
8504
8769
|
*/
|
|
8505
|
-
|
|
8506
|
-
/**
|
|
8507
|
-
* 协议端口模板对象。
|
|
8508
|
-
*/
|
|
8509
|
-
ServiceTemplateSet: Array<ServiceTemplate>;
|
|
8510
|
-
/**
|
|
8511
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8512
|
-
*/
|
|
8513
|
-
RequestId?: string;
|
|
8770
|
+
SnapshotPolicies: Array<SnapshotPolicy>;
|
|
8514
8771
|
}
|
|
8515
8772
|
/**
|
|
8516
8773
|
* DescribeRouteTables请求参数结构体
|
|
@@ -8604,6 +8861,19 @@ export interface CheckDefaultSubnetResponse {
|
|
|
8604
8861
|
*/
|
|
8605
8862
|
RequestId?: string;
|
|
8606
8863
|
}
|
|
8864
|
+
/**
|
|
8865
|
+
* DescribeVpcPrivateIpAddresses返回参数结构体
|
|
8866
|
+
*/
|
|
8867
|
+
export interface DescribeVpcPrivateIpAddressesResponse {
|
|
8868
|
+
/**
|
|
8869
|
+
* 内网`IP`地址信息列表。
|
|
8870
|
+
*/
|
|
8871
|
+
VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>;
|
|
8872
|
+
/**
|
|
8873
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8874
|
+
*/
|
|
8875
|
+
RequestId?: string;
|
|
8876
|
+
}
|
|
8607
8877
|
/**
|
|
8608
8878
|
* DisableRoutes请求参数结构体
|
|
8609
8879
|
*/
|
|
@@ -8832,6 +9102,15 @@ export interface DisableRoutesResponse {
|
|
|
8832
9102
|
*/
|
|
8833
9103
|
RequestId?: string;
|
|
8834
9104
|
}
|
|
9105
|
+
/**
|
|
9106
|
+
* ModifySnapshotPolicies请求参数结构体
|
|
9107
|
+
*/
|
|
9108
|
+
export interface ModifySnapshotPoliciesRequest {
|
|
9109
|
+
/**
|
|
9110
|
+
* 快照策略修改信息。
|
|
9111
|
+
*/
|
|
9112
|
+
SnapshotPoliciesInfo: Array<BatchModifySnapshotPolicy>;
|
|
9113
|
+
}
|
|
8835
9114
|
/**
|
|
8836
9115
|
* ModifyAddressAttribute请求参数结构体
|
|
8837
9116
|
*/
|
|
@@ -9259,6 +9538,54 @@ export interface DescribeHaVipsRequest {
|
|
|
9259
9538
|
*/
|
|
9260
9539
|
Limit?: number;
|
|
9261
9540
|
}
|
|
9541
|
+
/**
|
|
9542
|
+
* 快照策略
|
|
9543
|
+
*/
|
|
9544
|
+
export interface SnapshotPolicy {
|
|
9545
|
+
/**
|
|
9546
|
+
* 快照策略名称。
|
|
9547
|
+
*/
|
|
9548
|
+
SnapshotPolicyName: string;
|
|
9549
|
+
/**
|
|
9550
|
+
* 备份策略类型,operate-操作备份,time-定时备份。
|
|
9551
|
+
*/
|
|
9552
|
+
BackupType: string;
|
|
9553
|
+
/**
|
|
9554
|
+
* 保留时间,支持1~365天。
|
|
9555
|
+
*/
|
|
9556
|
+
KeepTime: number;
|
|
9557
|
+
/**
|
|
9558
|
+
* 是否创建新的cos桶,默认为False。
|
|
9559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9560
|
+
*/
|
|
9561
|
+
CreateNewCos: boolean;
|
|
9562
|
+
/**
|
|
9563
|
+
* cos桶所在地域。
|
|
9564
|
+
*/
|
|
9565
|
+
CosRegion: string;
|
|
9566
|
+
/**
|
|
9567
|
+
* cos桶。
|
|
9568
|
+
*/
|
|
9569
|
+
CosBucket: string;
|
|
9570
|
+
/**
|
|
9571
|
+
* 快照策略Id。
|
|
9572
|
+
*/
|
|
9573
|
+
SnapshotPolicyId?: string;
|
|
9574
|
+
/**
|
|
9575
|
+
* 时间备份策略。
|
|
9576
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9577
|
+
*/
|
|
9578
|
+
BackupPolicies?: Array<BackupPolicy>;
|
|
9579
|
+
/**
|
|
9580
|
+
* 启用状态,True-启用,False-停用,默认为True。
|
|
9581
|
+
*/
|
|
9582
|
+
Enable?: boolean;
|
|
9583
|
+
/**
|
|
9584
|
+
* 创建时间。
|
|
9585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9586
|
+
*/
|
|
9587
|
+
CreateTime?: string;
|
|
9588
|
+
}
|
|
9262
9589
|
/**
|
|
9263
9590
|
* UnassignPrivateIpAddresses返回参数结构体
|
|
9264
9591
|
*/
|
|
@@ -10069,6 +10396,15 @@ export interface CheckAssistantCidrRequest {
|
|
|
10069
10396
|
*/
|
|
10070
10397
|
OldCidrBlocks?: Array<string>;
|
|
10071
10398
|
}
|
|
10399
|
+
/**
|
|
10400
|
+
* RemoveBandwidthPackageResources返回参数结构体
|
|
10401
|
+
*/
|
|
10402
|
+
export interface RemoveBandwidthPackageResourcesResponse {
|
|
10403
|
+
/**
|
|
10404
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10405
|
+
*/
|
|
10406
|
+
RequestId?: string;
|
|
10407
|
+
}
|
|
10072
10408
|
/**
|
|
10073
10409
|
* NAT网关的端口转发规则
|
|
10074
10410
|
*/
|
|
@@ -10098,6 +10434,15 @@ export interface DestinationIpPortTranslationNatRule {
|
|
|
10098
10434
|
*/
|
|
10099
10435
|
Description: string;
|
|
10100
10436
|
}
|
|
10437
|
+
/**
|
|
10438
|
+
* DeleteSnapshotPolicies请求参数结构体
|
|
10439
|
+
*/
|
|
10440
|
+
export interface DeleteSnapshotPoliciesRequest {
|
|
10441
|
+
/**
|
|
10442
|
+
* 快照策略Id。
|
|
10443
|
+
*/
|
|
10444
|
+
SnapshotPolicyIds: Array<string>;
|
|
10445
|
+
}
|
|
10101
10446
|
/**
|
|
10102
10447
|
* CreateDefaultVpc请求参数结构体
|
|
10103
10448
|
*/
|
|
@@ -10158,6 +10503,23 @@ export interface CheckAssistantCidrResponse {
|
|
|
10158
10503
|
*/
|
|
10159
10504
|
RequestId?: string;
|
|
10160
10505
|
}
|
|
10506
|
+
/**
|
|
10507
|
+
* DescribeVpcTaskResult返回参数结构体
|
|
10508
|
+
*/
|
|
10509
|
+
export interface DescribeVpcTaskResultResponse {
|
|
10510
|
+
/**
|
|
10511
|
+
* 异步任务执行结果。结果:SUCCESS、FAILED、RUNNING。3者其中之一。其中SUCCESS表示任务执行成功,FAILED表示任务执行失败,RUNNING表示任务执行中。
|
|
10512
|
+
*/
|
|
10513
|
+
Status: string;
|
|
10514
|
+
/**
|
|
10515
|
+
* 异步任务执行输出。
|
|
10516
|
+
*/
|
|
10517
|
+
Output: string;
|
|
10518
|
+
/**
|
|
10519
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10520
|
+
*/
|
|
10521
|
+
RequestId?: string;
|
|
10522
|
+
}
|
|
10161
10523
|
/**
|
|
10162
10524
|
* InquiryPriceRenewVpnGateway请求参数结构体
|
|
10163
10525
|
*/
|
|
@@ -10271,17 +10633,9 @@ export interface DisassociateVpcEndPointSecurityGroupsResponse {
|
|
|
10271
10633
|
RequestId?: string;
|
|
10272
10634
|
}
|
|
10273
10635
|
/**
|
|
10274
|
-
*
|
|
10636
|
+
* DeleteSnapshotPolicies返回参数结构体
|
|
10275
10637
|
*/
|
|
10276
|
-
export interface
|
|
10277
|
-
/**
|
|
10278
|
-
* 异步任务执行结果。结果:SUCCESS、FAILED、RUNNING。3者其中之一。其中SUCCESS表示任务执行成功,FAILED表示任务执行失败,RUNNING表示任务执行中。
|
|
10279
|
-
*/
|
|
10280
|
-
Status: string;
|
|
10281
|
-
/**
|
|
10282
|
-
* 异步任务执行输出。
|
|
10283
|
-
*/
|
|
10284
|
-
Output: string;
|
|
10638
|
+
export interface DeleteSnapshotPoliciesResponse {
|
|
10285
10639
|
/**
|
|
10286
10640
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10287
10641
|
*/
|
|
@@ -10594,24 +10948,38 @@ export interface MigratePrivateIpAddressRequest {
|
|
|
10594
10948
|
PrivateIpAddress: string;
|
|
10595
10949
|
}
|
|
10596
10950
|
/**
|
|
10597
|
-
*
|
|
10951
|
+
* AssignPrivateIpAddresses请求参数结构体
|
|
10598
10952
|
*/
|
|
10599
|
-
export interface
|
|
10953
|
+
export interface AssignPrivateIpAddressesRequest {
|
|
10600
10954
|
/**
|
|
10601
|
-
*
|
|
10602
|
-
<li>service-template-name - 协议端口模板名称。</li>
|
|
10603
|
-
<li>service-template-id - 协议端口模板实例ID,例如:ppm-e6dy460g。</li>
|
|
10604
|
-
<li>service-port- 协议端口。</li>
|
|
10955
|
+
* 弹性网卡实例ID,例如:eni-m6dyj72l。
|
|
10605
10956
|
*/
|
|
10606
|
-
|
|
10957
|
+
NetworkInterfaceId: string;
|
|
10607
10958
|
/**
|
|
10608
|
-
*
|
|
10959
|
+
* 指定的内网IP信息,单次最多指定10个。与SecondaryPrivateIpAddressCount至少提供一个。
|
|
10609
10960
|
*/
|
|
10610
|
-
|
|
10961
|
+
PrivateIpAddresses?: Array<PrivateIpAddressSpecification>;
|
|
10611
10962
|
/**
|
|
10612
|
-
*
|
|
10963
|
+
* 新申请的内网IP地址个数,与PrivateIpAddresses至少提供一个。内网IP地址个数总和不能超过配额数,详见<a href="/document/product/576/18527">弹性网卡使用限制</a>。
|
|
10613
10964
|
*/
|
|
10614
|
-
|
|
10965
|
+
SecondaryPrivateIpAddressCount?: number;
|
|
10966
|
+
}
|
|
10967
|
+
/**
|
|
10968
|
+
* DescribeSnapshotAttachedInstances返回参数结构体
|
|
10969
|
+
*/
|
|
10970
|
+
export interface DescribeSnapshotAttachedInstancesResponse {
|
|
10971
|
+
/**
|
|
10972
|
+
* 实例列表
|
|
10973
|
+
*/
|
|
10974
|
+
InstanceSet: Array<SnapshotInstance>;
|
|
10975
|
+
/**
|
|
10976
|
+
* 符合条件的对象数。
|
|
10977
|
+
*/
|
|
10978
|
+
TotalCount: number;
|
|
10979
|
+
/**
|
|
10980
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10981
|
+
*/
|
|
10982
|
+
RequestId?: string;
|
|
10615
10983
|
}
|
|
10616
10984
|
/**
|
|
10617
10985
|
* RefreshDirectConnectGatewayRouteToNatGateway返回参数结构体
|
|
@@ -10635,6 +11003,31 @@ export interface DeleteRouteTableRequest {
|
|
|
10635
11003
|
*/
|
|
10636
11004
|
RouteTableId: string;
|
|
10637
11005
|
}
|
|
11006
|
+
/**
|
|
11007
|
+
* 快照策略关联实例信息
|
|
11008
|
+
*/
|
|
11009
|
+
export interface SnapshotInstance {
|
|
11010
|
+
/**
|
|
11011
|
+
* 实例Id。
|
|
11012
|
+
*/
|
|
11013
|
+
InstanceId: string;
|
|
11014
|
+
/**
|
|
11015
|
+
* 实例类型,目前支持安全组:securitygroup。
|
|
11016
|
+
*/
|
|
11017
|
+
InstanceType: string;
|
|
11018
|
+
/**
|
|
11019
|
+
* 实例所在地域。
|
|
11020
|
+
*/
|
|
11021
|
+
InstanceRegion: string;
|
|
11022
|
+
/**
|
|
11023
|
+
* 快照策略Id。
|
|
11024
|
+
*/
|
|
11025
|
+
SnapshotPolicyId?: string;
|
|
11026
|
+
/**
|
|
11027
|
+
* 实例名称。
|
|
11028
|
+
*/
|
|
11029
|
+
InstanceName?: string;
|
|
11030
|
+
}
|
|
10638
11031
|
/**
|
|
10639
11032
|
* CreateVpnGateway请求参数结构体
|
|
10640
11033
|
*/
|
|
@@ -10709,6 +11102,40 @@ export interface DeleteVpcEndPointServiceWhiteListResponse {
|
|
|
10709
11102
|
*/
|
|
10710
11103
|
RequestId?: string;
|
|
10711
11104
|
}
|
|
11105
|
+
/**
|
|
11106
|
+
* DescribeServiceTemplates返回参数结构体
|
|
11107
|
+
*/
|
|
11108
|
+
export interface DescribeServiceTemplatesResponse {
|
|
11109
|
+
/**
|
|
11110
|
+
* 符合条件的实例数量。
|
|
11111
|
+
*/
|
|
11112
|
+
TotalCount: number;
|
|
11113
|
+
/**
|
|
11114
|
+
* 协议端口模板对象。
|
|
11115
|
+
*/
|
|
11116
|
+
ServiceTemplateSet: Array<ServiceTemplate>;
|
|
11117
|
+
/**
|
|
11118
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11119
|
+
*/
|
|
11120
|
+
RequestId?: string;
|
|
11121
|
+
}
|
|
11122
|
+
/**
|
|
11123
|
+
* DescribeSgSnapshotFileContent请求参数结构体
|
|
11124
|
+
*/
|
|
11125
|
+
export interface DescribeSgSnapshotFileContentRequest {
|
|
11126
|
+
/**
|
|
11127
|
+
* 快照策略Id。
|
|
11128
|
+
*/
|
|
11129
|
+
SnapshotPolicyId: string;
|
|
11130
|
+
/**
|
|
11131
|
+
* 快照文件Id。
|
|
11132
|
+
*/
|
|
11133
|
+
SnapshotFileId: string;
|
|
11134
|
+
/**
|
|
11135
|
+
* 安全组Id。
|
|
11136
|
+
*/
|
|
11137
|
+
SecurityGroupId: string;
|
|
11138
|
+
}
|
|
10712
11139
|
/**
|
|
10713
11140
|
* CreateBandwidthPackage返回参数结构体
|
|
10714
11141
|
*/
|
|
@@ -10915,13 +11342,25 @@ export interface LockCcnsResponse {
|
|
|
10915
11342
|
RequestId?: string;
|
|
10916
11343
|
}
|
|
10917
11344
|
/**
|
|
10918
|
-
*
|
|
11345
|
+
* 批量修改快照策略信息
|
|
10919
11346
|
*/
|
|
10920
|
-
export interface
|
|
11347
|
+
export interface BatchModifySnapshotPolicy {
|
|
10921
11348
|
/**
|
|
10922
|
-
*
|
|
11349
|
+
* 快照策略Id。
|
|
10923
11350
|
*/
|
|
10924
|
-
|
|
11351
|
+
SnapshotPolicyId: string;
|
|
11352
|
+
/**
|
|
11353
|
+
* 快照策略名称。
|
|
11354
|
+
*/
|
|
11355
|
+
SnapshotPolicyName?: string;
|
|
11356
|
+
/**
|
|
11357
|
+
* 备份策略。
|
|
11358
|
+
*/
|
|
11359
|
+
BackupPolicies?: Array<BackupPolicy>;
|
|
11360
|
+
/**
|
|
11361
|
+
* 快照保留时间,支持1~365天。
|
|
11362
|
+
*/
|
|
11363
|
+
KeepTime?: number;
|
|
10925
11364
|
}
|
|
10926
11365
|
/**
|
|
10927
11366
|
* AssignIpv6Addresses返回参数结构体
|
|
@@ -11073,6 +11512,26 @@ export interface ModifyNatGatewayDestinationIpPortTranslationNatRuleRequest {
|
|
|
11073
11512
|
*/
|
|
11074
11513
|
DestinationNatRule: DestinationIpPortTranslationNatRule;
|
|
11075
11514
|
}
|
|
11515
|
+
/**
|
|
11516
|
+
* DescribeServiceTemplates请求参数结构体
|
|
11517
|
+
*/
|
|
11518
|
+
export interface DescribeServiceTemplatesRequest {
|
|
11519
|
+
/**
|
|
11520
|
+
* 过滤条件。
|
|
11521
|
+
<li>service-template-name - 协议端口模板名称。</li>
|
|
11522
|
+
<li>service-template-id - 协议端口模板实例ID,例如:ppm-e6dy460g。</li>
|
|
11523
|
+
<li>service-port- 协议端口。</li>
|
|
11524
|
+
*/
|
|
11525
|
+
Filters?: Array<Filter>;
|
|
11526
|
+
/**
|
|
11527
|
+
* 偏移量,默认为0。
|
|
11528
|
+
*/
|
|
11529
|
+
Offset?: string;
|
|
11530
|
+
/**
|
|
11531
|
+
* 返回数量,默认为20,最大值为100。
|
|
11532
|
+
*/
|
|
11533
|
+
Limit?: string;
|
|
11534
|
+
}
|
|
11076
11535
|
/**
|
|
11077
11536
|
* 协议端口模板
|
|
11078
11537
|
*/
|
|
@@ -11541,6 +12000,31 @@ export interface NetworkInterfaceAttachment {
|
|
|
11541
12000
|
*/
|
|
11542
12001
|
AttachTime: string;
|
|
11543
12002
|
}
|
|
12003
|
+
/**
|
|
12004
|
+
* 快照文件信息
|
|
12005
|
+
*/
|
|
12006
|
+
export interface SnapshotFileInfo {
|
|
12007
|
+
/**
|
|
12008
|
+
* 快照策略Id。
|
|
12009
|
+
*/
|
|
12010
|
+
SnapshotPolicyId: string;
|
|
12011
|
+
/**
|
|
12012
|
+
* 实例Id。
|
|
12013
|
+
*/
|
|
12014
|
+
InstanceId: string;
|
|
12015
|
+
/**
|
|
12016
|
+
* 快照文件Id。
|
|
12017
|
+
*/
|
|
12018
|
+
SnapshotFileId: string;
|
|
12019
|
+
/**
|
|
12020
|
+
* 备份时间。
|
|
12021
|
+
*/
|
|
12022
|
+
BackupTime: string;
|
|
12023
|
+
/**
|
|
12024
|
+
* 操作者Uin。
|
|
12025
|
+
*/
|
|
12026
|
+
Operator: string;
|
|
12027
|
+
}
|
|
11544
12028
|
/**
|
|
11545
12029
|
* ModifyNetworkInterfaceAttribute请求参数结构体
|
|
11546
12030
|
*/
|
|
@@ -11793,35 +12277,28 @@ export interface CreateRouteTableResponse {
|
|
|
11793
12277
|
*/
|
|
11794
12278
|
export declare type DescribeCrossBorderCcnRegionBandwidthLimitsRequest = null;
|
|
11795
12279
|
/**
|
|
11796
|
-
*
|
|
12280
|
+
* DescribeSnapshotAttachedInstances请求参数结构体
|
|
11797
12281
|
*/
|
|
11798
|
-
export interface
|
|
12282
|
+
export interface DescribeSnapshotAttachedInstancesRequest {
|
|
11799
12283
|
/**
|
|
11800
|
-
*
|
|
12284
|
+
* 快照策略Id。
|
|
11801
12285
|
*/
|
|
11802
|
-
|
|
12286
|
+
SnapshotPolicyId: string;
|
|
11803
12287
|
/**
|
|
11804
12288
|
* 过滤条件。
|
|
11805
|
-
|
|
11806
|
-
<li>
|
|
12289
|
+
支持的过滤条件如下:
|
|
12290
|
+
<li>instance-id:实例ID。</li>
|
|
12291
|
+
<li>instance-region:实例所在地域。</li>
|
|
11807
12292
|
*/
|
|
11808
12293
|
Filters?: Array<Filter>;
|
|
11809
12294
|
/**
|
|
11810
|
-
*
|
|
11811
|
-
*/
|
|
11812
|
-
SortedBy?: string;
|
|
11813
|
-
/**
|
|
11814
|
-
* 偏移量
|
|
12295
|
+
* 偏移量,默认为0。
|
|
11815
12296
|
*/
|
|
11816
12297
|
Offset?: number;
|
|
11817
12298
|
/**
|
|
11818
|
-
*
|
|
12299
|
+
* 返回数量,默认为20,最大为200。
|
|
11819
12300
|
*/
|
|
11820
12301
|
Limit?: number;
|
|
11821
|
-
/**
|
|
11822
|
-
* 排序方式,'ASC':升序,'DESC':降序。
|
|
11823
|
-
*/
|
|
11824
|
-
OrderBy?: string;
|
|
11825
12302
|
}
|
|
11826
12303
|
/**
|
|
11827
12304
|
* DescribeDirectConnectGatewayCcnRoutes返回参数结构体
|