@aws-sdk/client-ec2 3.379.1 → 3.384.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 (29) hide show
  1. package/dist-cjs/endpoint/ruleset.js +1 -1
  2. package/dist-cjs/protocols/Aws_ec2.js +30 -0
  3. package/dist-es/endpoint/ruleset.js +1 -1
  4. package/dist-es/protocols/Aws_ec2.js +30 -0
  5. package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
  6. package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +3 -0
  7. package/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +3 -0
  8. package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -0
  9. package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +2 -0
  10. package/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +1 -0
  11. package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -0
  12. package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -0
  13. package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +2 -0
  14. package/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -0
  15. package/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -0
  16. package/dist-types/commands/RequestSpotInstancesCommand.d.ts +4 -0
  17. package/dist-types/commands/RunInstancesCommand.d.ts +5 -0
  18. package/dist-types/models/models_0.d.ts +939 -0
  19. package/dist-types/models/models_1.d.ts +1112 -3
  20. package/dist-types/models/models_2.d.ts +936 -0
  21. package/dist-types/models/models_3.d.ts +942 -0
  22. package/dist-types/models/models_4.d.ts +1153 -0
  23. package/dist-types/models/models_5.d.ts +903 -0
  24. package/dist-types/models/models_6.d.ts +1085 -0
  25. package/dist-types/models/models_7.d.ts +142 -0
  26. package/dist-types/ts3.4/models/models_1.d.ts +5 -0
  27. package/dist-types/ts3.4/models/models_4.d.ts +1 -0
  28. package/dist-types/ts3.4/models/models_6.d.ts +2 -0
  29. package/package.json +5 -5
@@ -1283,6 +1283,7 @@ export interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
1283
1283
  Ipv4PrefixCount?: number;
1284
1284
  Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[];
1285
1285
  Ipv6PrefixCount?: number;
1286
+ PrimaryIpv6?: boolean;
1286
1287
  }
1287
1288
  export interface LaunchTemplatePlacementRequest {
1288
1289
  AvailabilityZone?: string;
@@ -1463,6 +1464,7 @@ export interface Ipv4PrefixSpecificationResponse {
1463
1464
  }
1464
1465
  export interface InstanceIpv6Address {
1465
1466
  Ipv6Address?: string;
1467
+ IsPrimaryIpv6?: boolean;
1466
1468
  }
1467
1469
  export interface Ipv6PrefixSpecificationResponse {
1468
1470
  Ipv6Prefix?: string;
@@ -1487,6 +1489,7 @@ export interface LaunchTemplateInstanceNetworkInterfaceSpecification {
1487
1489
  Ipv4PrefixCount?: number;
1488
1490
  Ipv6Prefixes?: Ipv6PrefixSpecificationResponse[];
1489
1491
  Ipv6PrefixCount?: number;
1492
+ PrimaryIpv6?: boolean;
1490
1493
  }
1491
1494
  export interface LaunchTemplatePlacement {
1492
1495
  AvailabilityZone?: string;
@@ -1906,6 +1909,7 @@ export interface CreateNetworkInterfaceRequest {
1906
1909
  SubnetId: string | undefined;
1907
1910
  TagSpecifications?: TagSpecification[];
1908
1911
  ClientToken?: string;
1912
+ EnablePrimaryIpv6?: boolean;
1909
1913
  }
1910
1914
  export interface NetworkInterfaceAssociation {
1911
1915
  AllocationId?: string;
@@ -1961,6 +1965,7 @@ export type NetworkInterfaceType =
1961
1965
  (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
1962
1966
  export interface NetworkInterfaceIpv6Address {
1963
1967
  Ipv6Address?: string;
1968
+ IsPrimaryIpv6?: boolean;
1964
1969
  }
1965
1970
  export interface Ipv6PrefixSpecification {
1966
1971
  Ipv6Prefix?: string;
@@ -1593,6 +1593,7 @@ export interface InstanceNetworkInterfaceSpecification {
1593
1593
  Ipv4PrefixCount?: number;
1594
1594
  Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[];
1595
1595
  Ipv6PrefixCount?: number;
1596
+ PrimaryIpv6?: boolean;
1596
1597
  }
1597
1598
  export interface SpotPlacement {
1598
1599
  AvailabilityZone?: string;
@@ -733,6 +733,7 @@ export interface ModifyNetworkInterfaceAttributeRequest {
733
733
  NetworkInterfaceId: string | undefined;
734
734
  SourceDestCheck?: AttributeBooleanValue;
735
735
  EnaSrdSpecification?: EnaSrdSpecification;
736
+ EnablePrimaryIpv6?: boolean;
736
737
  }
737
738
  export interface ModifyPrivateDnsNameOptionsRequest {
738
739
  DryRun?: boolean;
@@ -1838,6 +1839,7 @@ export interface RunInstancesRequest {
1838
1839
  PrivateDnsNameOptions?: PrivateDnsNameOptionsRequest;
1839
1840
  MaintenanceOptions?: InstanceMaintenanceOptionsRequest;
1840
1841
  DisableApiStop?: boolean;
1842
+ EnablePrimaryIpv6?: boolean;
1841
1843
  }
1842
1844
  export interface ScheduledInstancesEbs {
1843
1845
  DeleteOnTermination?: boolean;
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.379.1",
4
+ "version": "3.384.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,16 +21,16 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-sdk-ec2": "3.378.0",
30
30
  "@aws-sdk/middleware-signing": "3.379.1",
31
- "@aws-sdk/middleware-user-agent": "3.379.1",
31
+ "@aws-sdk/middleware-user-agent": "3.382.0",
32
32
  "@aws-sdk/types": "3.378.0",
33
- "@aws-sdk/util-endpoints": "3.378.0",
33
+ "@aws-sdk/util-endpoints": "3.382.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.378.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.378.0",
36
36
  "@smithy/config-resolver": "^2.0.1",