@aws-sdk/client-ec2 3.818.0 → 3.821.0
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/dist-cjs/index.js +47 -9
- package/dist-es/models/models_3.js +7 -0
- package/dist-es/protocols/Aws_ec2.js +41 -9
- package/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +1 -1
- package/dist-types/commands/CopyImageCommand.d.ts +1 -1
- package/dist-types/commands/CreateImageCommand.d.ts +2 -2
- package/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +2 -2
- package/dist-types/commands/CreateStoreImageTaskCommand.d.ts +3 -3
- package/dist-types/commands/DeregisterImageCommand.d.ts +19 -6
- package/dist-types/commands/DescribeKeyPairsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +3 -3
- package/dist-types/commands/DescribeVpcsCommand.d.ts +1 -1
- package/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +1 -1
- package/dist-types/commands/DisableImageDeprecationCommand.d.ts +1 -1
- package/dist-types/commands/DisableImageDeregistrationProtectionCommand.d.ts +2 -2
- package/dist-types/commands/EnableImageBlockPublicAccessCommand.d.ts +1 -1
- package/dist-types/commands/EnableImageCommand.d.ts +2 -2
- package/dist-types/commands/EnableImageDeregistrationProtectionCommand.d.ts +2 -2
- package/dist-types/commands/GetImageBlockPublicAccessStateCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/RegisterImageCommand.d.ts +2 -2
- package/dist-types/commands/RejectVpcPeeringConnectionCommand.d.ts +2 -1
- package/dist-types/commands/ReleaseAddressCommand.d.ts +1 -1
- package/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +3 -2
- package/dist-types/models/models_1.d.ts +5 -4
- package/dist-types/models/models_3.d.ts +82 -94
- package/dist-types/models/models_4.d.ts +104 -133
- package/dist-types/models/models_5.d.ts +125 -123
- package/dist-types/models/models_6.d.ts +122 -49
- package/dist-types/models/models_7.d.ts +57 -50
- package/dist-types/models/models_8.d.ts +41 -2
- package/dist-types/ts3.4/commands/DeregisterImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeKeyPairsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVpcsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/RejectVpcPeeringConnectionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ReleaseAddressCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_3.d.ts +18 -21
- package/dist-types/ts3.4/models/models_4.d.ts +21 -18
- package/dist-types/ts3.4/models/models_5.d.ts +17 -13
- package/dist-types/ts3.4/models/models_6.d.ts +12 -13
- package/dist-types/ts3.4/models/models_7.d.ts +14 -9
- package/dist-types/ts3.4/models/models_8.d.ts +11 -1
- package/package.json +35 -35
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
DescribeKeyPairsRequest,
|
|
10
|
+
DescribeKeyPairsResult,
|
|
11
|
+
} from "../models/models_5";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface DescribeKeyPairsCommandInput extends DescribeKeyPairsRequest {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import { DescribeVpcsRequest, DescribeVpcsResult } from "../models/
|
|
8
|
+
import { DescribeVpcsRequest, DescribeVpcsResult } from "../models/models_6";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface DescribeVpcsCommandInput extends DescribeVpcsRequest {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
GetTransitGatewayMulticastDomainAssociationsResult,
|
|
11
|
-
} from "../models/models_6";
|
|
8
|
+
import { GetTransitGatewayMulticastDomainAssociationsRequest } from "../models/models_6";
|
|
9
|
+
import { GetTransitGatewayMulticastDomainAssociationsResult } from "../models/models_7";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface GetTransitGatewayMulticastDomainAssociationsCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetTransitGatewayPolicyTableAssociationsRequest,
|
|
10
|
+
GetTransitGatewayPolicyTableAssociationsResult,
|
|
11
|
+
} from "../models/models_7";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface GetTransitGatewayPolicyTableAssociationsCommandInput
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
RejectVpcPeeringConnectionResult,
|
|
11
|
-
} from "../models/models_7";
|
|
8
|
+
import { RejectVpcPeeringConnectionRequest } from "../models/models_7";
|
|
9
|
+
import { RejectVpcPeeringConnectionResult } from "../models/models_8";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface RejectVpcPeeringConnectionCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import { ReleaseAddressRequest } from "../models/
|
|
8
|
+
import { ReleaseAddressRequest } from "../models/models_8";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ReleaseAddressCommandInput extends ReleaseAddressRequest {}
|
|
@@ -1151,9 +1151,26 @@ export interface DeprovisionPublicIpv4PoolCidrResult {
|
|
|
1151
1151
|
}
|
|
1152
1152
|
export interface DeregisterImageRequest {
|
|
1153
1153
|
ImageId: string | undefined;
|
|
1154
|
+
DeleteAssociatedSnapshots?: boolean | undefined;
|
|
1154
1155
|
DryRun?: boolean | undefined;
|
|
1155
1156
|
}
|
|
1156
|
-
export
|
|
1157
|
+
export declare const SnapshotReturnCodes: {
|
|
1158
|
+
readonly ERROR_CODE_CLIENT_ERROR: "client-error";
|
|
1159
|
+
readonly ERROR_CODE_INTERNAL_ERROR: "internal-error";
|
|
1160
|
+
readonly ERROR_MISSING_PERMISSIONS: "missing-permissions";
|
|
1161
|
+
readonly SUCCESS: "success";
|
|
1162
|
+
readonly WARN_SKIPPED: "skipped";
|
|
1163
|
+
};
|
|
1164
|
+
export type SnapshotReturnCodes =
|
|
1165
|
+
(typeof SnapshotReturnCodes)[keyof typeof SnapshotReturnCodes];
|
|
1166
|
+
export interface DeleteSnapshotReturnCode {
|
|
1167
|
+
SnapshotId?: string | undefined;
|
|
1168
|
+
ReturnCode?: SnapshotReturnCodes | undefined;
|
|
1169
|
+
}
|
|
1170
|
+
export interface DeregisterImageResult {
|
|
1171
|
+
Return?: boolean | undefined;
|
|
1172
|
+
DeleteSnapshotResults?: DeleteSnapshotReturnCode[] | undefined;
|
|
1173
|
+
}
|
|
1157
1174
|
export interface DeregisterInstanceTagAttributeRequest {
|
|
1158
1175
|
IncludeAllTagsOfInstance?: boolean | undefined;
|
|
1159
1176
|
InstanceTagKeys?: string[] | undefined;
|
|
@@ -1577,26 +1594,6 @@ export declare const ClientVpnConnectionStatusCode: {
|
|
|
1577
1594
|
};
|
|
1578
1595
|
export type ClientVpnConnectionStatusCode =
|
|
1579
1596
|
(typeof ClientVpnConnectionStatusCode)[keyof typeof ClientVpnConnectionStatusCode];
|
|
1580
|
-
export interface ClientVpnConnectionStatus {
|
|
1581
|
-
Code?: ClientVpnConnectionStatusCode | undefined;
|
|
1582
|
-
Message?: string | undefined;
|
|
1583
|
-
}
|
|
1584
|
-
export interface ClientVpnConnection {
|
|
1585
|
-
ClientVpnEndpointId?: string | undefined;
|
|
1586
|
-
Timestamp?: string | undefined;
|
|
1587
|
-
ConnectionId?: string | undefined;
|
|
1588
|
-
Username?: string | undefined;
|
|
1589
|
-
ConnectionEstablishedTime?: string | undefined;
|
|
1590
|
-
IngressBytes?: string | undefined;
|
|
1591
|
-
EgressBytes?: string | undefined;
|
|
1592
|
-
IngressPackets?: string | undefined;
|
|
1593
|
-
EgressPackets?: string | undefined;
|
|
1594
|
-
ClientIp?: string | undefined;
|
|
1595
|
-
CommonName?: string | undefined;
|
|
1596
|
-
Status?: ClientVpnConnectionStatus | undefined;
|
|
1597
|
-
ConnectionEndTime?: string | undefined;
|
|
1598
|
-
PostureComplianceStatuses?: string[] | undefined;
|
|
1599
|
-
}
|
|
1600
1597
|
export declare const VpnTunnelOptionsSpecificationFilterSensitiveLog: (
|
|
1601
1598
|
obj: VpnTunnelOptionsSpecification
|
|
1602
1599
|
) => any;
|
|
@@ -49,7 +49,6 @@ import {
|
|
|
49
49
|
IpamPool,
|
|
50
50
|
IpamResourceDiscovery,
|
|
51
51
|
IpamScope,
|
|
52
|
-
KeyType,
|
|
53
52
|
LaunchTemplateAndOverridesResponse,
|
|
54
53
|
LogDestinationType,
|
|
55
54
|
OperatorResponse,
|
|
@@ -69,12 +68,32 @@ import {
|
|
|
69
68
|
} from "./models_2";
|
|
70
69
|
import {
|
|
71
70
|
Byoasn,
|
|
72
|
-
|
|
71
|
+
ClientVpnConnectionStatusCode,
|
|
73
72
|
Filter,
|
|
74
73
|
FleetStateCode,
|
|
75
74
|
IdFormat,
|
|
76
75
|
InstanceTagNotificationAttribute,
|
|
77
76
|
} from "./models_3";
|
|
77
|
+
export interface ClientVpnConnectionStatus {
|
|
78
|
+
Code?: ClientVpnConnectionStatusCode | undefined;
|
|
79
|
+
Message?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface ClientVpnConnection {
|
|
82
|
+
ClientVpnEndpointId?: string | undefined;
|
|
83
|
+
Timestamp?: string | undefined;
|
|
84
|
+
ConnectionId?: string | undefined;
|
|
85
|
+
Username?: string | undefined;
|
|
86
|
+
ConnectionEstablishedTime?: string | undefined;
|
|
87
|
+
IngressBytes?: string | undefined;
|
|
88
|
+
EgressBytes?: string | undefined;
|
|
89
|
+
IngressPackets?: string | undefined;
|
|
90
|
+
EgressPackets?: string | undefined;
|
|
91
|
+
ClientIp?: string | undefined;
|
|
92
|
+
CommonName?: string | undefined;
|
|
93
|
+
Status?: ClientVpnConnectionStatus | undefined;
|
|
94
|
+
ConnectionEndTime?: string | undefined;
|
|
95
|
+
PostureComplianceStatuses?: string[] | undefined;
|
|
96
|
+
}
|
|
78
97
|
export interface DescribeClientVpnConnectionsResult {
|
|
79
98
|
Connections?: ClientVpnConnection[] | undefined;
|
|
80
99
|
NextToken?: string | undefined;
|
|
@@ -2080,22 +2099,6 @@ export interface DescribeIpv6PoolsResult {
|
|
|
2080
2099
|
Ipv6Pools?: Ipv6Pool[] | undefined;
|
|
2081
2100
|
NextToken?: string | undefined;
|
|
2082
2101
|
}
|
|
2083
|
-
export interface DescribeKeyPairsRequest {
|
|
2084
|
-
KeyNames?: string[] | undefined;
|
|
2085
|
-
KeyPairIds?: string[] | undefined;
|
|
2086
|
-
IncludePublicKey?: boolean | undefined;
|
|
2087
|
-
DryRun?: boolean | undefined;
|
|
2088
|
-
Filters?: Filter[] | undefined;
|
|
2089
|
-
}
|
|
2090
|
-
export interface KeyPairInfo {
|
|
2091
|
-
KeyPairId?: string | undefined;
|
|
2092
|
-
KeyType?: KeyType | undefined;
|
|
2093
|
-
Tags?: Tag[] | undefined;
|
|
2094
|
-
PublicKey?: string | undefined;
|
|
2095
|
-
CreateTime?: Date | undefined;
|
|
2096
|
-
KeyName?: string | undefined;
|
|
2097
|
-
KeyFingerprint?: string | undefined;
|
|
2098
|
-
}
|
|
2099
2102
|
export declare const DiskImageDescriptionFilterSensitiveLog: (
|
|
2100
2103
|
obj: DiskImageDescription
|
|
2101
2104
|
) => any;
|
|
@@ -39,6 +39,7 @@ import {
|
|
|
39
39
|
InstanceRequirements,
|
|
40
40
|
Ipv4PrefixSpecificationRequest,
|
|
41
41
|
Ipv6PrefixSpecificationRequest,
|
|
42
|
+
KeyType,
|
|
42
43
|
LaunchTemplate,
|
|
43
44
|
MacModificationTask,
|
|
44
45
|
PrivateIpAddressSpecification,
|
|
@@ -47,7 +48,6 @@ import {
|
|
|
47
48
|
TargetCapacityUnitType,
|
|
48
49
|
Tenancy,
|
|
49
50
|
VolumeType,
|
|
50
|
-
Vpc,
|
|
51
51
|
} from "./models_1";
|
|
52
52
|
import {
|
|
53
53
|
DnsEntry,
|
|
@@ -110,10 +110,25 @@ import {
|
|
|
110
110
|
import {
|
|
111
111
|
AttributeBooleanValue,
|
|
112
112
|
EventInformation,
|
|
113
|
-
KeyPairInfo,
|
|
114
113
|
PermissionGroup,
|
|
115
114
|
ProductCode,
|
|
116
115
|
} from "./models_4";
|
|
116
|
+
export interface DescribeKeyPairsRequest {
|
|
117
|
+
KeyNames?: string[] | undefined;
|
|
118
|
+
KeyPairIds?: string[] | undefined;
|
|
119
|
+
IncludePublicKey?: boolean | undefined;
|
|
120
|
+
DryRun?: boolean | undefined;
|
|
121
|
+
Filters?: Filter[] | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface KeyPairInfo {
|
|
124
|
+
KeyPairId?: string | undefined;
|
|
125
|
+
KeyType?: KeyType | undefined;
|
|
126
|
+
Tags?: Tag[] | undefined;
|
|
127
|
+
PublicKey?: string | undefined;
|
|
128
|
+
CreateTime?: Date | undefined;
|
|
129
|
+
KeyName?: string | undefined;
|
|
130
|
+
KeyFingerprint?: string | undefined;
|
|
131
|
+
}
|
|
117
132
|
export interface DescribeKeyPairsResult {
|
|
118
133
|
KeyPairs?: KeyPairInfo[] | undefined;
|
|
119
134
|
}
|
|
@@ -2053,17 +2068,6 @@ export interface DescribeVpcPeeringConnectionsResult {
|
|
|
2053
2068
|
VpcPeeringConnections?: VpcPeeringConnection[] | undefined;
|
|
2054
2069
|
NextToken?: string | undefined;
|
|
2055
2070
|
}
|
|
2056
|
-
export interface DescribeVpcsRequest {
|
|
2057
|
-
Filters?: Filter[] | undefined;
|
|
2058
|
-
VpcIds?: string[] | undefined;
|
|
2059
|
-
NextToken?: string | undefined;
|
|
2060
|
-
MaxResults?: number | undefined;
|
|
2061
|
-
DryRun?: boolean | undefined;
|
|
2062
|
-
}
|
|
2063
|
-
export interface DescribeVpcsResult {
|
|
2064
|
-
NextToken?: string | undefined;
|
|
2065
|
-
Vpcs?: Vpc[] | undefined;
|
|
2066
|
-
}
|
|
2067
2071
|
export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
|
|
2068
2072
|
obj: DescribeLaunchTemplateVersionsResult
|
|
2069
2073
|
) => any;
|
|
@@ -37,6 +37,7 @@ import {
|
|
|
37
37
|
IpamResourceTag,
|
|
38
38
|
RequestIpamResourceTag,
|
|
39
39
|
TargetCapacityUnitType,
|
|
40
|
+
Vpc,
|
|
40
41
|
} from "./models_1";
|
|
41
42
|
import {
|
|
42
43
|
NetworkInsightsAccessScopeContent,
|
|
@@ -68,6 +69,17 @@ import {
|
|
|
68
69
|
VirtualizationType,
|
|
69
70
|
} from "./models_4";
|
|
70
71
|
import { AnalysisStatus, ManagedBy } from "./models_5";
|
|
72
|
+
export interface DescribeVpcsRequest {
|
|
73
|
+
Filters?: Filter[] | undefined;
|
|
74
|
+
VpcIds?: string[] | undefined;
|
|
75
|
+
NextToken?: string | undefined;
|
|
76
|
+
MaxResults?: number | undefined;
|
|
77
|
+
DryRun?: boolean | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface DescribeVpcsResult {
|
|
80
|
+
NextToken?: string | undefined;
|
|
81
|
+
Vpcs?: Vpc[] | undefined;
|
|
82
|
+
}
|
|
71
83
|
export interface DescribeVpnConnectionsRequest {
|
|
72
84
|
Filters?: Filter[] | undefined;
|
|
73
85
|
VpnConnectionIds?: string[] | undefined;
|
|
@@ -1615,19 +1627,6 @@ export interface TransitGatewayMulticastDomainAssociation {
|
|
|
1615
1627
|
ResourceOwnerId?: string | undefined;
|
|
1616
1628
|
Subnet?: SubnetAssociation | undefined;
|
|
1617
1629
|
}
|
|
1618
|
-
export interface GetTransitGatewayMulticastDomainAssociationsResult {
|
|
1619
|
-
MulticastDomainAssociations?:
|
|
1620
|
-
| TransitGatewayMulticastDomainAssociation[]
|
|
1621
|
-
| undefined;
|
|
1622
|
-
NextToken?: string | undefined;
|
|
1623
|
-
}
|
|
1624
|
-
export interface GetTransitGatewayPolicyTableAssociationsRequest {
|
|
1625
|
-
TransitGatewayPolicyTableId: string | undefined;
|
|
1626
|
-
Filters?: Filter[] | undefined;
|
|
1627
|
-
MaxResults?: number | undefined;
|
|
1628
|
-
NextToken?: string | undefined;
|
|
1629
|
-
DryRun?: boolean | undefined;
|
|
1630
|
-
}
|
|
1631
1630
|
export declare const DescribeVpnConnectionsResultFilterSensitiveLog: (
|
|
1632
1631
|
obj: DescribeVpnConnectionsResult
|
|
1633
1632
|
) => any;
|
|
@@ -153,9 +153,23 @@ import {
|
|
|
153
153
|
InstanceFamilyCreditSpecification,
|
|
154
154
|
IpamResourceCidr,
|
|
155
155
|
Purchase,
|
|
156
|
+
TransitGatewayMulticastDomainAssociation,
|
|
156
157
|
TransitGatewayPropagationState,
|
|
157
158
|
UnlimitedSupportedInstanceFamily,
|
|
158
159
|
} from "./models_6";
|
|
160
|
+
export interface GetTransitGatewayMulticastDomainAssociationsResult {
|
|
161
|
+
MulticastDomainAssociations?:
|
|
162
|
+
| TransitGatewayMulticastDomainAssociation[]
|
|
163
|
+
| undefined;
|
|
164
|
+
NextToken?: string | undefined;
|
|
165
|
+
}
|
|
166
|
+
export interface GetTransitGatewayPolicyTableAssociationsRequest {
|
|
167
|
+
TransitGatewayPolicyTableId: string | undefined;
|
|
168
|
+
Filters?: Filter[] | undefined;
|
|
169
|
+
MaxResults?: number | undefined;
|
|
170
|
+
NextToken?: string | undefined;
|
|
171
|
+
DryRun?: boolean | undefined;
|
|
172
|
+
}
|
|
159
173
|
export interface GetTransitGatewayPolicyTableAssociationsResult {
|
|
160
174
|
Associations?: TransitGatewayPolicyTableAssociation[] | undefined;
|
|
161
175
|
NextToken?: string | undefined;
|
|
@@ -1879,15 +1893,6 @@ export interface RejectVpcPeeringConnectionRequest {
|
|
|
1879
1893
|
DryRun?: boolean | undefined;
|
|
1880
1894
|
VpcPeeringConnectionId: string | undefined;
|
|
1881
1895
|
}
|
|
1882
|
-
export interface RejectVpcPeeringConnectionResult {
|
|
1883
|
-
Return?: boolean | undefined;
|
|
1884
|
-
}
|
|
1885
|
-
export interface ReleaseAddressRequest {
|
|
1886
|
-
AllocationId?: string | undefined;
|
|
1887
|
-
PublicIp?: string | undefined;
|
|
1888
|
-
NetworkBorderGroup?: string | undefined;
|
|
1889
|
-
DryRun?: boolean | undefined;
|
|
1890
|
-
}
|
|
1891
1896
|
export declare const GetVpnConnectionDeviceSampleConfigurationResultFilterSensitiveLog: (
|
|
1892
1897
|
obj: GetVpnConnectionDeviceSampleConfigurationResult
|
|
1893
1898
|
) => any;
|
|
@@ -38,8 +38,9 @@ import {
|
|
|
38
38
|
SSEType,
|
|
39
39
|
TransitGatewayRoute,
|
|
40
40
|
} from "./models_2";
|
|
41
|
-
import {
|
|
41
|
+
import { Filter } from "./models_3";
|
|
42
42
|
import {
|
|
43
|
+
ClientVpnConnectionStatus,
|
|
43
44
|
HttpTokensState,
|
|
44
45
|
InstanceAttributeName,
|
|
45
46
|
InstanceAutoRecoveryState,
|
|
@@ -63,6 +64,15 @@ import {
|
|
|
63
64
|
InstanceMonitoring,
|
|
64
65
|
Status,
|
|
65
66
|
} from "./models_7";
|
|
67
|
+
export interface RejectVpcPeeringConnectionResult {
|
|
68
|
+
Return?: boolean | undefined;
|
|
69
|
+
}
|
|
70
|
+
export interface ReleaseAddressRequest {
|
|
71
|
+
AllocationId?: string | undefined;
|
|
72
|
+
PublicIp?: string | undefined;
|
|
73
|
+
NetworkBorderGroup?: string | undefined;
|
|
74
|
+
DryRun?: boolean | undefined;
|
|
75
|
+
}
|
|
66
76
|
export interface ReleaseHostsRequest {
|
|
67
77
|
HostIds: string[] | undefined;
|
|
68
78
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.821.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -20,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.1.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
38
|
-
"@smithy/hash-node": "^4.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
42
|
-
"@smithy/middleware-retry": "^4.1.
|
|
43
|
-
"@smithy/middleware-serde": "^4.0.
|
|
44
|
-
"@smithy/middleware-stack": "^4.0.
|
|
45
|
-
"@smithy/node-config-provider": "^4.1.
|
|
46
|
-
"@smithy/node-http-handler": "^4.0.
|
|
47
|
-
"@smithy/protocol-http": "^5.1.
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.821.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.821.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-ec2": "3.821.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.821.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
31
|
+
"@aws-sdk/types": "3.821.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.821.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.821.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.1.4",
|
|
36
|
+
"@smithy/core": "^3.5.1",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.0.4",
|
|
38
|
+
"@smithy/hash-node": "^4.0.4",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.0.4",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.0.4",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.1.9",
|
|
42
|
+
"@smithy/middleware-retry": "^4.1.10",
|
|
43
|
+
"@smithy/middleware-serde": "^4.0.8",
|
|
44
|
+
"@smithy/middleware-stack": "^4.0.4",
|
|
45
|
+
"@smithy/node-config-provider": "^4.1.3",
|
|
46
|
+
"@smithy/node-http-handler": "^4.0.6",
|
|
47
|
+
"@smithy/protocol-http": "^5.1.2",
|
|
48
|
+
"@smithy/smithy-client": "^4.4.1",
|
|
49
|
+
"@smithy/types": "^4.3.1",
|
|
50
|
+
"@smithy/url-parser": "^4.0.4",
|
|
51
51
|
"@smithy/util-base64": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
56
|
-
"@smithy/util-endpoints": "^3.0.
|
|
57
|
-
"@smithy/util-middleware": "^4.0.
|
|
58
|
-
"@smithy/util-retry": "^4.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.0.17",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.0.17",
|
|
56
|
+
"@smithy/util-endpoints": "^3.0.6",
|
|
57
|
+
"@smithy/util-middleware": "^4.0.4",
|
|
58
|
+
"@smithy/util-retry": "^4.0.5",
|
|
59
59
|
"@smithy/util-utf8": "^4.0.0",
|
|
60
|
-
"@smithy/util-waiter": "^4.0.
|
|
60
|
+
"@smithy/util-waiter": "^4.0.5",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|