@aws-sdk/client-ec2 3.535.0 → 3.540.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/README.md +8 -0
- package/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +119 -3
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/DescribeMacHostsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-es/pagination/DescribeMacHostsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +98 -0
- package/dist-types/EC2.d.ts +8 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/DescribeMacHostsCommand.d.ts +79 -0
- package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
- package/dist-types/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +2 -1
- package/dist-types/commands/RegisterImageCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_4.d.ts +77 -87
- package/dist-types/models/models_5.d.ts +89 -134
- package/dist-types/models/models_6.d.ts +135 -173
- package/dist-types/models/models_7.d.ts +172 -2
- package/dist-types/pagination/DescribeMacHostsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +18 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeMacHostsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_4.d.ts +14 -17
- package/dist-types/ts3.4/models/models_5.d.ts +23 -30
- package/dist-types/ts3.4/models/models_6.d.ts +34 -30
- package/dist-types/ts3.4/models/models_7.d.ts +31 -1
- package/dist-types/ts3.4/pagination/DescribeMacHostsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +5 -5
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeMacHostsCommandInput,
|
|
4
|
+
DescribeMacHostsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeMacHostsCommand";
|
|
6
|
+
import { EC2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeMacHosts: (
|
|
8
|
+
config: EC2PaginationConfiguration,
|
|
9
|
+
input: DescribeMacHostsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeMacHostsCommandOutput>;
|
|
@@ -52,6 +52,7 @@ export * from "./DescribeLocalGatewayRouteTablesPaginator";
|
|
|
52
52
|
export * from "./DescribeLocalGatewayVirtualInterfaceGroupsPaginator";
|
|
53
53
|
export * from "./DescribeLocalGatewayVirtualInterfacesPaginator";
|
|
54
54
|
export * from "./DescribeLocalGatewaysPaginator";
|
|
55
|
+
export * from "./DescribeMacHostsPaginator";
|
|
55
56
|
export * from "./DescribeManagedPrefixListsPaginator";
|
|
56
57
|
export * from "./DescribeMovingAddressesPaginator";
|
|
57
58
|
export * from "./DescribeNatGatewaysPaginator";
|
|
@@ -1171,6 +1171,10 @@ import {
|
|
|
1171
1171
|
DescribeLockedSnapshotsCommandInput,
|
|
1172
1172
|
DescribeLockedSnapshotsCommandOutput,
|
|
1173
1173
|
} from "../commands/DescribeLockedSnapshotsCommand";
|
|
1174
|
+
import {
|
|
1175
|
+
DescribeMacHostsCommandInput,
|
|
1176
|
+
DescribeMacHostsCommandOutput,
|
|
1177
|
+
} from "../commands/DescribeMacHostsCommand";
|
|
1174
1178
|
import {
|
|
1175
1179
|
DescribeManagedPrefixListsCommandInput,
|
|
1176
1180
|
DescribeManagedPrefixListsCommandOutput,
|
|
@@ -3631,6 +3635,10 @@ export declare const se_DescribeLockedSnapshotsCommand: (
|
|
|
3631
3635
|
input: DescribeLockedSnapshotsCommandInput,
|
|
3632
3636
|
context: __SerdeContext
|
|
3633
3637
|
) => Promise<__HttpRequest>;
|
|
3638
|
+
export declare const se_DescribeMacHostsCommand: (
|
|
3639
|
+
input: DescribeMacHostsCommandInput,
|
|
3640
|
+
context: __SerdeContext
|
|
3641
|
+
) => Promise<__HttpRequest>;
|
|
3634
3642
|
export declare const se_DescribeManagedPrefixListsCommand: (
|
|
3635
3643
|
input: DescribeManagedPrefixListsCommandInput,
|
|
3636
3644
|
context: __SerdeContext
|
|
@@ -6091,6 +6099,10 @@ export declare const de_DescribeLockedSnapshotsCommand: (
|
|
|
6091
6099
|
output: __HttpResponse,
|
|
6092
6100
|
context: __SerdeContext
|
|
6093
6101
|
) => Promise<DescribeLockedSnapshotsCommandOutput>;
|
|
6102
|
+
export declare const de_DescribeMacHostsCommand: (
|
|
6103
|
+
output: __HttpResponse,
|
|
6104
|
+
context: __SerdeContext
|
|
6105
|
+
) => Promise<DescribeMacHostsCommandOutput>;
|
|
6094
6106
|
export declare const de_DescribeManagedPrefixListsCommand: (
|
|
6095
6107
|
output: __HttpResponse,
|
|
6096
6108
|
context: __SerdeContext
|
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.540.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,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
24
|
"@aws-sdk/core": "3.535.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
29
|
"@aws-sdk/middleware-sdk-ec2": "3.535.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
32
32
|
"@aws-sdk/types": "3.535.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.2.0",
|