@aws-sdk/client-ec2 3.1127.0 → 3.1128.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 CHANGED
@@ -70,7 +70,7 @@ const commonParams = {
70
70
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
71
71
  };
72
72
 
73
- var version = "3.1126.0";
73
+ var version = "3.1127.0";
74
74
  var packageInfo = {
75
75
  version: version};
76
76
 
@@ -3807,6 +3807,7 @@ const _ITnsta = "InstanceTags";
3807
3807
  const _ITnstan = "InstanceTag";
3808
3808
  const _ITnstanc = "InstanceTopology";
3809
3809
  const _ITnt = "InterfaceType";
3810
+ const _ITnte = "InterfaceTypes";
3810
3811
  const _IU = "InstanceUsages";
3811
3812
  const _IUDR = "ImageUefiDataRequest";
3812
3813
  const _IUIR = "IncludeUnsupportedInRegion";
@@ -4543,6 +4544,7 @@ const _NBGe = "NetworkBandwidthGbps";
4543
4544
  const _NC = "NetworkCards";
4544
4545
  const _NCI = "NetworkCardIndex";
4545
4546
  const _NCIL = "NetworkCardInfoList";
4547
+ const _NCITL = "NetworkCardInterfaceTypeList";
4546
4548
  const _NCIe = "NetworkCardInfo";
4547
4549
  const _NCR = "NonCompliantResources";
4548
4550
  const _ND = "NoDevice";
@@ -7486,6 +7488,7 @@ const _iTOS = "instanceTypeOfferingSet";
7486
7488
  const _iTS = "instanceTypeSet";
7487
7489
  const _iTSS = "instanceTypeSpecificationSet";
7488
7490
  const _iTSn = "instanceTypeSpecification";
7491
+ const _iTSnt = "interfaceTypeSet";
7489
7492
  const _iTd = "idempotencyToken";
7490
7493
  const _iTm = "imageType";
7491
7494
  const _iTn = "interruptionType";
@@ -22467,7 +22470,7 @@ var NetworkBandwidthGbpsRequest$ = [3, n0, _NBGR,
22467
22470
  ];
22468
22471
  var NetworkCardInfo$ = [3, n0, _NCIe,
22469
22472
  0,
22470
- [_NCI, _NPe, _MNI, _AFNI, _BBIG, _PBIG, _DEQCPI, _MEQC, _MEQCPI],
22473
+ [_NCI, _NPe, _MNI, _AFNI, _BBIG, _PBIG, _DEQCPI, _MEQC, _MEQCPI, _ITnte],
22471
22474
  [[1, { [_eQN]: `NetworkCardIndex`,
22472
22475
  [_xN]: _nCI }], [0, { [_eQN]: `NetworkPerformance`,
22473
22476
  [_xN]: _nPe }], [1, { [_eQN]: `MaximumNetworkInterfaces`,
@@ -22477,7 +22480,8 @@ var NetworkCardInfo$ = [3, n0, _NCIe,
22477
22480
  [_xN]: _pBIG }], [1, { [_eQN]: `DefaultEnaQueueCountPerInterface`,
22478
22481
  [_xN]: _dEQCPI }], [1, { [_eQN]: `MaximumEnaQueueCount`,
22479
22482
  [_xN]: _mEQC }], [1, { [_eQN]: `MaximumEnaQueueCountPerInterface`,
22480
- [_xN]: _mEQCPI }]]
22483
+ [_xN]: _mEQCPI }], [() => NetworkCardInterfaceTypeList, { [_eQN]: `InterfaceTypeSet`,
22484
+ [_xN]: _iTSnt }]]
22481
22485
  ];
22482
22486
  var NetworkInfo$ = [3, n0, _NIetw,
22483
22487
  0,
@@ -28800,6 +28804,10 @@ var NetworkCardInfoList = [1, n0, _NCIL,
28800
28804
  0, [() => NetworkCardInfo$,
28801
28805
  { [_xN]: _it }]
28802
28806
  ];
28807
+ var NetworkCardInterfaceTypeList = [1, n0, _NCITL,
28808
+ 0, [0,
28809
+ { [_xN]: _it }]
28810
+ ];
28803
28811
  var NetworkInsightsAccessScopeAnalysisIdList = [1, n0, _NIASAIL,
28804
28812
  0, [0,
28805
28813
  { [_xN]: _it }]
@@ -42383,6 +42391,12 @@ const FlexibleEnaQueuesSupport = {
42383
42391
  SUPPORTED: "supported",
42384
42392
  UNSUPPORTED: "unsupported",
42385
42393
  };
42394
+ const NetworkCardInterfaceType = {
42395
+ efa: "efa",
42396
+ efa_only: "efa-only",
42397
+ interface: "interface",
42398
+ secondary: "secondary",
42399
+ };
42386
42400
  const NitroEnclavesSupport = {
42387
42401
  SUPPORTED: "supported",
42388
42402
  UNSUPPORTED: "unsupported",
@@ -46703,6 +46717,7 @@ exports.NetworkAclEntry$ = NetworkAclEntry$;
46703
46717
  exports.NetworkBandwidthGbps$ = NetworkBandwidthGbps$;
46704
46718
  exports.NetworkBandwidthGbpsRequest$ = NetworkBandwidthGbpsRequest$;
46705
46719
  exports.NetworkCardInfo$ = NetworkCardInfo$;
46720
+ exports.NetworkCardInterfaceType = NetworkCardInterfaceType;
46706
46721
  exports.NetworkInfo$ = NetworkInfo$;
46707
46722
  exports.NetworkInsightsAccessScope$ = NetworkInsightsAccessScope$;
46708
46723
  exports.NetworkInsightsAccessScopeAnalysis$ = NetworkInsightsAccessScopeAnalysis$;
@@ -3649,6 +3649,12 @@ export const FlexibleEnaQueuesSupport = {
3649
3649
  SUPPORTED: "supported",
3650
3650
  UNSUPPORTED: "unsupported",
3651
3651
  };
3652
+ export const NetworkCardInterfaceType = {
3653
+ efa: "efa",
3654
+ efa_only: "efa-only",
3655
+ interface: "interface",
3656
+ secondary: "secondary",
3657
+ };
3652
3658
  export const NitroEnclavesSupport = {
3653
3659
  SUPPORTED: "supported",
3654
3660
  UNSUPPORTED: "unsupported",
@@ -3663,6 +3663,7 @@ const _ITnsta = "InstanceTags";
3663
3663
  const _ITnstan = "InstanceTag";
3664
3664
  const _ITnstanc = "InstanceTopology";
3665
3665
  const _ITnt = "InterfaceType";
3666
+ const _ITnte = "InterfaceTypes";
3666
3667
  const _IU = "InstanceUsages";
3667
3668
  const _IUDR = "ImageUefiDataRequest";
3668
3669
  const _IUIR = "IncludeUnsupportedInRegion";
@@ -4399,6 +4400,7 @@ const _NBGe = "NetworkBandwidthGbps";
4399
4400
  const _NC = "NetworkCards";
4400
4401
  const _NCI = "NetworkCardIndex";
4401
4402
  const _NCIL = "NetworkCardInfoList";
4403
+ const _NCITL = "NetworkCardInterfaceTypeList";
4402
4404
  const _NCIe = "NetworkCardInfo";
4403
4405
  const _NCR = "NonCompliantResources";
4404
4406
  const _ND = "NoDevice";
@@ -7342,6 +7344,7 @@ const _iTOS = "instanceTypeOfferingSet";
7342
7344
  const _iTS = "instanceTypeSet";
7343
7345
  const _iTSS = "instanceTypeSpecificationSet";
7344
7346
  const _iTSn = "instanceTypeSpecification";
7347
+ const _iTSnt = "interfaceTypeSet";
7345
7348
  const _iTd = "idempotencyToken";
7346
7349
  const _iTm = "imageType";
7347
7350
  const _iTn = "interruptionType";
@@ -22325,7 +22328,7 @@ export var NetworkBandwidthGbpsRequest$ = [3, n0, _NBGR,
22325
22328
  ];
22326
22329
  export var NetworkCardInfo$ = [3, n0, _NCIe,
22327
22330
  0,
22328
- [_NCI, _NPe, _MNI, _AFNI, _BBIG, _PBIG, _DEQCPI, _MEQC, _MEQCPI],
22331
+ [_NCI, _NPe, _MNI, _AFNI, _BBIG, _PBIG, _DEQCPI, _MEQC, _MEQCPI, _ITnte],
22329
22332
  [[1, { [_eQN]: `NetworkCardIndex`,
22330
22333
  [_xN]: _nCI }], [0, { [_eQN]: `NetworkPerformance`,
22331
22334
  [_xN]: _nPe }], [1, { [_eQN]: `MaximumNetworkInterfaces`,
@@ -22335,7 +22338,8 @@ export var NetworkCardInfo$ = [3, n0, _NCIe,
22335
22338
  [_xN]: _pBIG }], [1, { [_eQN]: `DefaultEnaQueueCountPerInterface`,
22336
22339
  [_xN]: _dEQCPI }], [1, { [_eQN]: `MaximumEnaQueueCount`,
22337
22340
  [_xN]: _mEQC }], [1, { [_eQN]: `MaximumEnaQueueCountPerInterface`,
22338
- [_xN]: _mEQCPI }]]
22341
+ [_xN]: _mEQCPI }], [() => NetworkCardInterfaceTypeList, { [_eQN]: `InterfaceTypeSet`,
22342
+ [_xN]: _iTSnt }]]
22339
22343
  ];
22340
22344
  export var NetworkInfo$ = [3, n0, _NIetw,
22341
22345
  0,
@@ -28668,6 +28672,10 @@ var NetworkCardInfoList = [1, n0, _NCIL,
28668
28672
  0, [() => NetworkCardInfo$,
28669
28673
  { [_xN]: _it }]
28670
28674
  ];
28675
+ var NetworkCardInterfaceTypeList = [1, n0, _NCITL,
28676
+ 0, [0,
28677
+ { [_xN]: _it }]
28678
+ ];
28671
28679
  var NetworkInsightsAccessScopeAnalysisIdList = [1, n0, _NIASAIL,
28672
28680
  0, [0,
28673
28681
  { [_xN]: _it }]
@@ -35,8 +35,8 @@ declare const DescribeInstanceCreditSpecificationsCommand_base: {
35
35
  * instance.</p>
36
36
  * <p>If you specify one or more instance IDs, Amazon EC2 returns the credit option
37
37
  * (<code>standard</code> or <code>unlimited</code>) of those instances. If you specify
38
- * an instance ID that is not valid, such as an instance that is not a burstable
39
- * performance instance, an error is returned.</p>
38
+ * an instance ID that is not a burstable performance instance, Amazon EC2 returns the
39
+ * <code>standard</code> credit option.</p>
40
40
  * <p>Recently terminated instances might appear in the returned results. This interval is
41
41
  * usually less than one hour.</p>
42
42
  * <p>If an Availability Zone is experiencing a service disruption and you specify instance
@@ -152,6 +152,9 @@ declare const DescribeInstanceTypesCommand_base: {
152
152
  * // DefaultEnaQueueCountPerInterface: Number("int"),
153
153
  * // MaximumEnaQueueCount: Number("int"),
154
154
  * // MaximumEnaQueueCountPerInterface: Number("int"),
155
+ * // InterfaceTypes: [ // NetworkCardInterfaceTypeList
156
+ * // "interface" || "efa" || "efa-only" || "secondary",
157
+ * // ],
155
158
  * // },
156
159
  * // ],
157
160
  * // Ipv4AddressesPerInterface: Number("int"),
@@ -6641,6 +6641,20 @@ export declare const FlexibleEnaQueuesSupport: {
6641
6641
  * @public
6642
6642
  */
6643
6643
  export type FlexibleEnaQueuesSupport = (typeof FlexibleEnaQueuesSupport)[keyof typeof FlexibleEnaQueuesSupport];
6644
+ /**
6645
+ * @public
6646
+ * @enum
6647
+ */
6648
+ export declare const NetworkCardInterfaceType: {
6649
+ readonly efa: "efa";
6650
+ readonly efa_only: "efa-only";
6651
+ readonly interface: "interface";
6652
+ readonly secondary: "secondary";
6653
+ };
6654
+ /**
6655
+ * @public
6656
+ */
6657
+ export type NetworkCardInterfaceType = (typeof NetworkCardInterfaceType)[keyof typeof NetworkCardInterfaceType];
6644
6658
  /**
6645
6659
  * @public
6646
6660
  * @enum
@@ -1,4 +1,4 @@
1
- import type { _InstanceType, AllocationState, AllowsMultipleInstanceTypes, AmdSevSnp, AmdSevSnpSpecification, AnalysisStatus, ArchitectureType, ArchitectureValues, AttachmentLimitType, AttachmentStatus, AutoPlacement, BandwidthWeightingType, BootModeType, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DestinationFileFormat, DeviceType, DiskType, EbsEncryptionSupport, EbsNvmeSupport, EbsOptimizedSupport, EnaSupport, EphemeralNvmeSupport, EventCode, FindingsFound, FlexibleEnaQueuesSupport, FpgaImageAttributeName, FpgaImageStateCode, HaStatus, HostMaintenance, HostnameType, HostRecovery, HttpTokensState, HypervisorType, ImageAttributeName, ImageReferenceOptionName, ImageReferenceResourceType, ImageState, ImageTypeValues, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceBootModeValues, InstanceLifecycleType, InstanceMetadataEndpointState, InstanceMetadataOptionsState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStateName, InstanceStorageEncryptionSupport, InstanceTypeHypervisor, KeyType, LocationType, LockState, LogDestinationType, MonitoringState, MoveStatus, NestedVirtualizationSpecification, NetworkInterfaceAttribute, NetworkInterfaceStatus, NitroEnclavesSupport, NitroTpmSupport, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, PhcSupport, PlacementGroupStrategy, PlatformValues, ProductCodeValues, RebootMigrationSupport, RecurringChargeFrequency, ReservationState, ReservedInstanceState, RIProductDescription, RootDeviceType, Scope, SecondaryInterfaceStatus, SecondaryInterfaceType, SqlServerLicenseUsage, StatusName, StatusType, SummaryStatus, SupportedAdditionalProcessorFeature, TaggableResourceType, Tenancy, TpmSupportValues, TrafficType, UsageClassType, VirtualizationType } from "./enums";
1
+ import type { _InstanceType, AllocationState, AllowsMultipleInstanceTypes, AmdSevSnp, AmdSevSnpSpecification, AnalysisStatus, ArchitectureType, ArchitectureValues, AttachmentLimitType, AttachmentStatus, AutoPlacement, BandwidthWeightingType, BootModeType, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DestinationFileFormat, DeviceType, DiskType, EbsEncryptionSupport, EbsNvmeSupport, EbsOptimizedSupport, EnaSupport, EphemeralNvmeSupport, EventCode, FindingsFound, FlexibleEnaQueuesSupport, FpgaImageAttributeName, FpgaImageStateCode, HaStatus, HostMaintenance, HostnameType, HostRecovery, HttpTokensState, HypervisorType, ImageAttributeName, ImageReferenceOptionName, ImageReferenceResourceType, ImageState, ImageTypeValues, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceBootModeValues, InstanceLifecycleType, InstanceMetadataEndpointState, InstanceMetadataOptionsState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, InstanceStateName, InstanceStorageEncryptionSupport, InstanceTypeHypervisor, KeyType, LocationType, LockState, LogDestinationType, MonitoringState, MoveStatus, NestedVirtualizationSpecification, NetworkCardInterfaceType, NetworkInterfaceAttribute, NetworkInterfaceStatus, NitroEnclavesSupport, NitroTpmSupport, OfferingClassType, OfferingTypeValues, PaymentOption, PermissionGroup, PhcSupport, PlacementGroupStrategy, PlatformValues, ProductCodeValues, RebootMigrationSupport, RecurringChargeFrequency, ReservationState, ReservedInstanceState, RIProductDescription, RootDeviceType, Scope, SecondaryInterfaceStatus, SecondaryInterfaceType, SqlServerLicenseUsage, StatusName, StatusType, SummaryStatus, SupportedAdditionalProcessorFeature, TaggableResourceType, Tenancy, TpmSupportValues, TrafficType, UsageClassType, VirtualizationType } from "./enums";
2
2
  import type { AlternatePathHint, Explanation, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, IpamPoolAllocation, IpamResourceDiscoveryAssociation, OperatorResponse, PathComponent, ReservedInstancesListing, Tag } from "./models_0";
3
3
  import type { AttributeValue, BlockDeviceMapping, CapacityReservationTargetResponse, Ec2InstanceConnectEndpoint, GroupIdentifier, InstanceIpv6Address, InternetGateway, Ipam, IpamExternalResourceVerificationToken, IpamInternetRegistryAssociation, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, MacModificationTask, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, Placement, StateReason } from "./models_1";
4
4
  import type { NetworkInterfacePermission, PlacementGroup, ReplaceRootVolumeTask, RouteServer, RouteServerEndpoint, RouteServerPeer, RouteTable } from "./models_2";
@@ -7286,6 +7286,11 @@ export interface NetworkCardInfo {
7286
7286
  * @public
7287
7287
  */
7288
7288
  MaximumEnaQueueCountPerInterface?: number | undefined;
7289
+ /**
7290
+ * <p>The supported interface types for the network card.</p>
7291
+ * @public
7292
+ */
7293
+ InterfaceTypes?: NetworkCardInterfaceType[] | undefined;
7289
7294
  }
7290
7295
  /**
7291
7296
  * <p>Describes the networking features of the instance type.</p>
@@ -4212,6 +4212,14 @@ export declare const FlexibleEnaQueuesSupport: {
4212
4212
  };
4213
4213
  export type FlexibleEnaQueuesSupport =
4214
4214
  (typeof FlexibleEnaQueuesSupport)[keyof typeof FlexibleEnaQueuesSupport];
4215
+ export declare const NetworkCardInterfaceType: {
4216
+ readonly efa: "efa";
4217
+ readonly efa_only: "efa-only";
4218
+ readonly interface: "interface";
4219
+ readonly secondary: "secondary";
4220
+ };
4221
+ export type NetworkCardInterfaceType =
4222
+ (typeof NetworkCardInterfaceType)[keyof typeof NetworkCardInterfaceType];
4215
4223
  export declare const NitroEnclavesSupport: {
4216
4224
  readonly SUPPORTED: "supported";
4217
4225
  readonly UNSUPPORTED: "unsupported";
@@ -60,6 +60,7 @@ import {
60
60
  MonitoringState,
61
61
  MoveStatus,
62
62
  NestedVirtualizationSpecification,
63
+ NetworkCardInterfaceType,
63
64
  NetworkInterfaceAttribute,
64
65
  NetworkInterfaceStatus,
65
66
  NitroEnclavesSupport,
@@ -1230,6 +1231,7 @@ export interface NetworkCardInfo {
1230
1231
  DefaultEnaQueueCountPerInterface?: number | undefined;
1231
1232
  MaximumEnaQueueCount?: number | undefined;
1232
1233
  MaximumEnaQueueCountPerInterface?: number | undefined;
1234
+ InterfaceTypes?: NetworkCardInterfaceType[] | undefined;
1233
1235
  }
1234
1236
  export interface NetworkInfo {
1235
1237
  NetworkPerformance?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
- "version": "3.1127.0",
3
+ "version": "3.1128.0",
4
4
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ec2",
6
6
  "license": "Apache-2.0",