@aws-sdk/client-ec2 3.535.0 → 3.537.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.
Files changed (39) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +119 -0
  3. package/dist-es/EC2.js +2 -0
  4. package/dist-es/commands/DescribeMacHostsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/pagination/DescribeMacHostsPaginator.js +4 -0
  7. package/dist-es/pagination/index.js +1 -0
  8. package/dist-es/protocols/Aws_ec2.js +98 -0
  9. package/dist-types/EC2.d.ts +8 -0
  10. package/dist-types/EC2Client.d.ts +3 -2
  11. package/dist-types/commands/DescribeMacHostsCommand.d.ts +79 -0
  12. package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -1
  13. package/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
  14. package/dist-types/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +2 -1
  15. package/dist-types/commands/RegisterImageCommand.d.ts +1 -1
  16. package/dist-types/commands/index.d.ts +1 -0
  17. package/dist-types/models/models_4.d.ts +77 -87
  18. package/dist-types/models/models_5.d.ts +89 -134
  19. package/dist-types/models/models_6.d.ts +135 -173
  20. package/dist-types/models/models_7.d.ts +172 -2
  21. package/dist-types/pagination/DescribeMacHostsPaginator.d.ts +7 -0
  22. package/dist-types/pagination/index.d.ts +1 -0
  23. package/dist-types/protocols/Aws_ec2.d.ts +9 -0
  24. package/dist-types/ts3.4/EC2.d.ts +18 -0
  25. package/dist-types/ts3.4/EC2Client.d.ts +6 -0
  26. package/dist-types/ts3.4/commands/DescribeMacHostsCommand.d.ts +38 -0
  27. package/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
  29. package/dist-types/ts3.4/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +2 -4
  30. package/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  32. package/dist-types/ts3.4/models/models_4.d.ts +14 -17
  33. package/dist-types/ts3.4/models/models_5.d.ts +23 -30
  34. package/dist-types/ts3.4/models/models_6.d.ts +34 -30
  35. package/dist-types/ts3.4/models/models_7.d.ts +31 -1
  36. package/dist-types/ts3.4/pagination/DescribeMacHostsPaginator.d.ts +11 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
  39. package/package.json +1 -1
@@ -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.535.0",
4
+ "version": "3.537.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",