@aws-sdk/client-ec2 3.85.0 → 3.88.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/CHANGELOG.md +30 -0
- package/dist-cjs/EC2.js +15 -0
- package/dist-cjs/commands/GetFlowLogsIntegrationTemplateCommand.js +1 -2
- package/dist-cjs/commands/GetInstanceUefiDataCommand.js +36 -0
- package/dist-cjs/commands/RequestSpotFleetCommand.js +2 -1
- package/dist-cjs/commands/RequestSpotInstancesCommand.js +1 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +15 -15
- package/dist-cjs/models/models_1.js +9 -0
- package/dist-cjs/models/models_3.js +9 -11
- package/dist-cjs/models/models_4.js +12 -12
- package/dist-cjs/models/models_5.js +24 -24
- package/dist-cjs/models/models_6.js +20 -2
- package/dist-cjs/protocols/Aws_ec2.js +105 -14
- package/dist-es/EC2.js +15 -0
- package/dist-es/commands/GetFlowLogsIntegrationTemplateCommand.js +1 -2
- package/dist-es/commands/GetInstanceUefiDataCommand.js +39 -0
- package/dist-es/commands/RequestSpotFleetCommand.js +2 -1
- package/dist-es/commands/RequestSpotInstancesCommand.js +1 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +15 -15
- package/dist-es/models/models_1.js +9 -0
- package/dist-es/models/models_3.js +4 -4
- package/dist-es/models/models_4.js +4 -4
- package/dist-es/models/models_5.js +12 -12
- package/dist-es/models/models_6.js +12 -0
- package/dist-es/protocols/Aws_ec2.js +100 -0
- package/dist-types/EC2.d.ts +16 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +1 -2
- package/dist-types/commands/GetInstanceUefiDataCommand.d.ts +44 -0
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -1
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +12 -3
- package/dist-types/models/models_3.d.ts +28 -25
- package/dist-types/models/models_4.d.ts +25 -27
- package/dist-types/models/models_5.d.ts +76 -209
- package/dist-types/models/models_6.d.ts +207 -1
- package/dist-types/protocols/Aws_ec2.d.ts +3 -0
- package/dist-types/ts3.4/EC2.d.ts +5 -0
- package/dist-types/ts3.4/EC2Client.d.ts +3 -2
- package/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetInstanceUefiDataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/RequestSpotInstancesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +12 -3
- package/dist-types/ts3.4/models/models_3.d.ts +12 -14
- package/dist-types/ts3.4/models/models_4.d.ts +14 -15
- package/dist-types/ts3.4/models/models_5.d.ts +41 -84
- package/dist-types/ts3.4/models/models_6.d.ts +82 -1
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1351,7 +1351,7 @@ export declare namespace DescribeIdFormatResult {
|
|
|
1351
1351
|
|
|
1352
1352
|
const filterSensitiveLog: (obj: DescribeIdFormatResult) => any;
|
|
1353
1353
|
}
|
|
1354
|
-
export declare type ImageAttributeName = "blockDeviceMapping" | "bootMode" | "description" | "kernel" | "lastLaunchedTime" | "launchPermission" | "productCodes" | "ramdisk" | "sriovNetSupport";
|
|
1354
|
+
export declare type ImageAttributeName = "blockDeviceMapping" | "bootMode" | "description" | "kernel" | "lastLaunchedTime" | "launchPermission" | "productCodes" | "ramdisk" | "sriovNetSupport" | "tpmSupport" | "uefiData";
|
|
1355
1355
|
|
|
1356
1356
|
export interface DescribeImageAttributeRequest {
|
|
1357
1357
|
|
|
@@ -1401,6 +1401,10 @@ export interface ImageAttribute {
|
|
|
1401
1401
|
|
|
1402
1402
|
BootMode?: AttributeValue;
|
|
1403
1403
|
|
|
1404
|
+
TpmSupport?: AttributeValue;
|
|
1405
|
+
|
|
1406
|
+
UefiData?: AttributeValue;
|
|
1407
|
+
|
|
1404
1408
|
LastLaunchedTime?: AttributeValue;
|
|
1405
1409
|
}
|
|
1406
1410
|
export declare namespace ImageAttribute {
|
|
@@ -1442,6 +1446,9 @@ export declare namespace StateReason {
|
|
|
1442
1446
|
|
|
1443
1447
|
const filterSensitiveLog: (obj: StateReason) => any;
|
|
1444
1448
|
}
|
|
1449
|
+
export declare enum TpmSupportValues {
|
|
1450
|
+
v2_0 = "v2.0"
|
|
1451
|
+
}
|
|
1445
1452
|
export declare type VirtualizationType = "hvm" | "paravirtual";
|
|
1446
1453
|
|
|
1447
1454
|
export interface Image {
|
|
@@ -1500,6 +1507,8 @@ export interface Image {
|
|
|
1500
1507
|
|
|
1501
1508
|
BootMode?: BootModeValues | string;
|
|
1502
1509
|
|
|
1510
|
+
TpmSupport?: TpmSupportValues | string;
|
|
1511
|
+
|
|
1503
1512
|
DeprecationTime?: string;
|
|
1504
1513
|
}
|
|
1505
1514
|
export declare namespace Image {
|
|
@@ -2265,6 +2274,8 @@ export interface Instance {
|
|
|
2265
2274
|
|
|
2266
2275
|
Ipv6Address?: string;
|
|
2267
2276
|
|
|
2277
|
+
TpmSupport?: string;
|
|
2278
|
+
|
|
2268
2279
|
MaintenanceOptions?: InstanceMaintenanceOptions;
|
|
2269
2280
|
}
|
|
2270
2281
|
export declare namespace Instance {
|
|
@@ -4003,16 +4014,3 @@ export declare namespace DescribeRegionsRequest {
|
|
|
4003
4014
|
|
|
4004
4015
|
const filterSensitiveLog: (obj: DescribeRegionsRequest) => any;
|
|
4005
4016
|
}
|
|
4006
|
-
|
|
4007
|
-
export interface Region {
|
|
4008
|
-
|
|
4009
|
-
Endpoint?: string;
|
|
4010
|
-
|
|
4011
|
-
RegionName?: string;
|
|
4012
|
-
|
|
4013
|
-
OptInStatus?: string;
|
|
4014
|
-
}
|
|
4015
|
-
export declare namespace Region {
|
|
4016
|
-
|
|
4017
|
-
const filterSensitiveLog: (obj: Region) => any;
|
|
4018
|
-
}
|
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AllowedPrincipal, AssociationStatus, BatchState, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpPermission, ReservedInstancesListing, ResourceType, SecurityGroupRule, Subnet, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, Tenancy, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, Vpc, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
2
2
|
import { BlockDeviceMapping, DiskImageFormat, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, PrivateIpAddressSpecification, ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, SpotInstanceType, StorageTier, TargetCapacityUnitType, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, VolumeType } from "./models_1";
|
|
3
3
|
import { ConnectionNotification, DnsEntry, DnsNameState, Filter, PayerResponsibility, ServiceConfiguration, ServiceTypeDetail, State, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayRouteTable, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
4
|
-
import { AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, PermissionGroup, ProductCode
|
|
4
|
+
import { AttributeBooleanValue, EventInformation, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, PermissionGroup, ProductCode } from "./models_3";
|
|
5
|
+
|
|
6
|
+
export interface Region {
|
|
7
|
+
|
|
8
|
+
Endpoint?: string;
|
|
9
|
+
|
|
10
|
+
RegionName?: string;
|
|
11
|
+
|
|
12
|
+
OptInStatus?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare namespace Region {
|
|
15
|
+
|
|
16
|
+
const filterSensitiveLog: (obj: Region) => any;
|
|
17
|
+
}
|
|
5
18
|
export interface DescribeRegionsResult {
|
|
6
19
|
|
|
7
20
|
Regions?: Region[];
|
|
@@ -3867,17 +3880,3 @@ export declare namespace IntegrateServices {
|
|
|
3867
3880
|
|
|
3868
3881
|
const filterSensitiveLog: (obj: IntegrateServices) => any;
|
|
3869
3882
|
}
|
|
3870
|
-
export interface GetFlowLogsIntegrationTemplateRequest {
|
|
3871
|
-
|
|
3872
|
-
DryRun?: boolean;
|
|
3873
|
-
|
|
3874
|
-
FlowLogId: string | undefined;
|
|
3875
|
-
|
|
3876
|
-
ConfigDeliveryS3DestinationArn: string | undefined;
|
|
3877
|
-
|
|
3878
|
-
IntegrateServices: IntegrateServices | undefined;
|
|
3879
|
-
}
|
|
3880
|
-
export declare namespace GetFlowLogsIntegrationTemplateRequest {
|
|
3881
|
-
|
|
3882
|
-
const filterSensitiveLog: (obj: GetFlowLogsIntegrationTemplateRequest) => any;
|
|
3883
|
-
}
|
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
import { _InstanceType, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, Affinity, ApplianceModeSupportValue, AttributeValue, AutoPlacement, ByoipCidr, ClientConnectOptions, ClientLoginBannerOptions, ConnectionLogOptions, CurrencyCodeValues, DnsSupportValue, EndDateType, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, Ipv6SupportValue, PortRange, RouteTableAssociationState, SelfServicePortal, SubnetAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem } from "./models_0";
|
|
2
|
-
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest,
|
|
2
|
+
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceRequirementsRequest, Ipam, IpamPool, IpamResourceTag, IpamScope, LaunchTemplate, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, PlatformValues, RequestIpamResourceTag, ResponseLaunchTemplateData, RuleAction, ShutdownBehavior, SubnetCidrReservation, TargetCapacitySpecificationRequest, TargetCapacityUnitType, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, VolumeType, VpnEcmpSupportValue } from "./models_1";
|
|
3
3
|
import { Filter, IKEVersionsRequestListValue, InstanceTagNotificationAttribute, IpamPoolCidr, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, TransitGatewayPrefixListReference, TransitGatewayRoute, VpnConnection } from "./models_2";
|
|
4
|
-
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceAutoRecoveryState, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PaymentOption, PermissionGroup, PublicIpv4PoolRange, SnapshotDetail, SnapshotTaskDetail, VirtualizationType } from "./models_3";
|
|
5
|
-
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification,
|
|
4
|
+
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceAutoRecoveryState, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PaymentOption, PermissionGroup, PublicIpv4PoolRange, SnapshotDetail, SnapshotTaskDetail, TpmSupportValues, VirtualizationType } from "./models_3";
|
|
5
|
+
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, IntegrateServices, LaunchTemplateConfig, ReservedInstancesConfiguration, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VolumeModification } from "./models_4";
|
|
6
|
+
export interface GetFlowLogsIntegrationTemplateRequest {
|
|
7
|
+
|
|
8
|
+
DryRun?: boolean;
|
|
9
|
+
|
|
10
|
+
FlowLogId: string | undefined;
|
|
11
|
+
|
|
12
|
+
ConfigDeliveryS3DestinationArn: string | undefined;
|
|
13
|
+
|
|
14
|
+
IntegrateServices: IntegrateServices | undefined;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace GetFlowLogsIntegrationTemplateRequest {
|
|
17
|
+
|
|
18
|
+
const filterSensitiveLog: (obj: GetFlowLogsIntegrationTemplateRequest) => any;
|
|
19
|
+
}
|
|
6
20
|
export interface GetFlowLogsIntegrationTemplateResult {
|
|
7
21
|
|
|
8
22
|
Result?: string;
|
|
@@ -130,6 +144,26 @@ export declare namespace GetInstanceTypesFromInstanceRequirementsResult {
|
|
|
130
144
|
|
|
131
145
|
const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsResult) => any;
|
|
132
146
|
}
|
|
147
|
+
export interface GetInstanceUefiDataRequest {
|
|
148
|
+
|
|
149
|
+
InstanceId: string | undefined;
|
|
150
|
+
|
|
151
|
+
DryRun?: boolean;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace GetInstanceUefiDataRequest {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: GetInstanceUefiDataRequest) => any;
|
|
156
|
+
}
|
|
157
|
+
export interface GetInstanceUefiDataResult {
|
|
158
|
+
|
|
159
|
+
InstanceId?: string;
|
|
160
|
+
|
|
161
|
+
UefiData?: string;
|
|
162
|
+
}
|
|
163
|
+
export declare namespace GetInstanceUefiDataResult {
|
|
164
|
+
|
|
165
|
+
const filterSensitiveLog: (obj: GetInstanceUefiDataResult) => any;
|
|
166
|
+
}
|
|
133
167
|
export interface GetIpamAddressHistoryRequest {
|
|
134
168
|
|
|
135
169
|
DryRun?: boolean;
|
|
@@ -3358,6 +3392,10 @@ export interface RegisterImageRequest {
|
|
|
3358
3392
|
VirtualizationType?: string;
|
|
3359
3393
|
|
|
3360
3394
|
BootMode?: BootModeValues | string;
|
|
3395
|
+
|
|
3396
|
+
TpmSupport?: TpmSupportValues | string;
|
|
3397
|
+
|
|
3398
|
+
UefiData?: string;
|
|
3361
3399
|
}
|
|
3362
3400
|
export declare namespace RegisterImageRequest {
|
|
3363
3401
|
|
|
@@ -3804,84 +3842,3 @@ export declare namespace RequestSpotFleetRequest {
|
|
|
3804
3842
|
|
|
3805
3843
|
const filterSensitiveLog: (obj: RequestSpotFleetRequest) => any;
|
|
3806
3844
|
}
|
|
3807
|
-
|
|
3808
|
-
export interface RequestSpotFleetResponse {
|
|
3809
|
-
|
|
3810
|
-
SpotFleetRequestId?: string;
|
|
3811
|
-
}
|
|
3812
|
-
export declare namespace RequestSpotFleetResponse {
|
|
3813
|
-
|
|
3814
|
-
const filterSensitiveLog: (obj: RequestSpotFleetResponse) => any;
|
|
3815
|
-
}
|
|
3816
|
-
|
|
3817
|
-
export interface RequestSpotLaunchSpecification {
|
|
3818
|
-
|
|
3819
|
-
SecurityGroupIds?: string[];
|
|
3820
|
-
|
|
3821
|
-
SecurityGroups?: string[];
|
|
3822
|
-
|
|
3823
|
-
AddressingType?: string;
|
|
3824
|
-
|
|
3825
|
-
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
3826
|
-
|
|
3827
|
-
EbsOptimized?: boolean;
|
|
3828
|
-
|
|
3829
|
-
IamInstanceProfile?: IamInstanceProfileSpecification;
|
|
3830
|
-
|
|
3831
|
-
ImageId?: string;
|
|
3832
|
-
|
|
3833
|
-
InstanceType?: _InstanceType | string;
|
|
3834
|
-
|
|
3835
|
-
KernelId?: string;
|
|
3836
|
-
|
|
3837
|
-
KeyName?: string;
|
|
3838
|
-
|
|
3839
|
-
Monitoring?: RunInstancesMonitoringEnabled;
|
|
3840
|
-
|
|
3841
|
-
NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
|
|
3842
|
-
|
|
3843
|
-
Placement?: SpotPlacement;
|
|
3844
|
-
|
|
3845
|
-
RamdiskId?: string;
|
|
3846
|
-
|
|
3847
|
-
SubnetId?: string;
|
|
3848
|
-
|
|
3849
|
-
UserData?: string;
|
|
3850
|
-
}
|
|
3851
|
-
export declare namespace RequestSpotLaunchSpecification {
|
|
3852
|
-
|
|
3853
|
-
const filterSensitiveLog: (obj: RequestSpotLaunchSpecification) => any;
|
|
3854
|
-
}
|
|
3855
|
-
|
|
3856
|
-
export interface RequestSpotInstancesRequest {
|
|
3857
|
-
|
|
3858
|
-
AvailabilityZoneGroup?: string;
|
|
3859
|
-
|
|
3860
|
-
BlockDurationMinutes?: number;
|
|
3861
|
-
|
|
3862
|
-
ClientToken?: string;
|
|
3863
|
-
|
|
3864
|
-
DryRun?: boolean;
|
|
3865
|
-
|
|
3866
|
-
InstanceCount?: number;
|
|
3867
|
-
|
|
3868
|
-
LaunchGroup?: string;
|
|
3869
|
-
|
|
3870
|
-
LaunchSpecification?: RequestSpotLaunchSpecification;
|
|
3871
|
-
|
|
3872
|
-
SpotPrice?: string;
|
|
3873
|
-
|
|
3874
|
-
Type?: SpotInstanceType | string;
|
|
3875
|
-
|
|
3876
|
-
ValidFrom?: Date;
|
|
3877
|
-
|
|
3878
|
-
ValidUntil?: Date;
|
|
3879
|
-
|
|
3880
|
-
TagSpecifications?: TagSpecification[];
|
|
3881
|
-
|
|
3882
|
-
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
|
|
3883
|
-
}
|
|
3884
|
-
export declare namespace RequestSpotInstancesRequest {
|
|
3885
|
-
|
|
3886
|
-
const filterSensitiveLog: (obj: RequestSpotInstancesRequest) => any;
|
|
3887
|
-
}
|
|
@@ -2,9 +2,90 @@ import { _InstanceType, AddressAttribute, AddressAttributeName, ByoipCidr, Clien
|
|
|
2
2
|
import { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, InstanceInterruptionBehavior, InstanceIpv6Address, LocalGatewayRoute, ManagedPrefixList, MarketType, Placement, ShutdownBehavior, SnapshotState, SpotInstanceType } from "./models_1";
|
|
3
3
|
import { ClientVpnConnectionStatus, Filter, TransitGatewayRoute } from "./models_2";
|
|
4
4
|
import { HttpTokensState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_3";
|
|
5
|
-
import { InstanceNetworkInterfaceSpecification, RunInstancesMonitoringEnabled, SnapshotAttributeName, SpotInstanceRequest } from "./models_4";
|
|
5
|
+
import { InstanceNetworkInterfaceSpecification, RunInstancesMonitoringEnabled, SnapshotAttributeName, SpotInstanceRequest, SpotPlacement } from "./models_4";
|
|
6
6
|
import { CapacityReservationSpecification, InstanceMonitoring, Status } from "./models_5";
|
|
7
7
|
|
|
8
|
+
export interface RequestSpotFleetResponse {
|
|
9
|
+
|
|
10
|
+
SpotFleetRequestId?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace RequestSpotFleetResponse {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: RequestSpotFleetResponse) => any;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface RequestSpotLaunchSpecification {
|
|
18
|
+
|
|
19
|
+
SecurityGroupIds?: string[];
|
|
20
|
+
|
|
21
|
+
SecurityGroups?: string[];
|
|
22
|
+
|
|
23
|
+
AddressingType?: string;
|
|
24
|
+
|
|
25
|
+
BlockDeviceMappings?: BlockDeviceMapping[];
|
|
26
|
+
|
|
27
|
+
EbsOptimized?: boolean;
|
|
28
|
+
|
|
29
|
+
IamInstanceProfile?: IamInstanceProfileSpecification;
|
|
30
|
+
|
|
31
|
+
ImageId?: string;
|
|
32
|
+
|
|
33
|
+
InstanceType?: _InstanceType | string;
|
|
34
|
+
|
|
35
|
+
KernelId?: string;
|
|
36
|
+
|
|
37
|
+
KeyName?: string;
|
|
38
|
+
|
|
39
|
+
Monitoring?: RunInstancesMonitoringEnabled;
|
|
40
|
+
|
|
41
|
+
NetworkInterfaces?: InstanceNetworkInterfaceSpecification[];
|
|
42
|
+
|
|
43
|
+
Placement?: SpotPlacement;
|
|
44
|
+
|
|
45
|
+
RamdiskId?: string;
|
|
46
|
+
|
|
47
|
+
SubnetId?: string;
|
|
48
|
+
|
|
49
|
+
UserData?: string;
|
|
50
|
+
}
|
|
51
|
+
export declare namespace RequestSpotLaunchSpecification {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: RequestSpotLaunchSpecification) => any;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface RequestSpotInstancesRequest {
|
|
57
|
+
|
|
58
|
+
AvailabilityZoneGroup?: string;
|
|
59
|
+
|
|
60
|
+
BlockDurationMinutes?: number;
|
|
61
|
+
|
|
62
|
+
ClientToken?: string;
|
|
63
|
+
|
|
64
|
+
DryRun?: boolean;
|
|
65
|
+
|
|
66
|
+
InstanceCount?: number;
|
|
67
|
+
|
|
68
|
+
LaunchGroup?: string;
|
|
69
|
+
|
|
70
|
+
LaunchSpecification?: RequestSpotLaunchSpecification;
|
|
71
|
+
|
|
72
|
+
SpotPrice?: string;
|
|
73
|
+
|
|
74
|
+
Type?: SpotInstanceType | string;
|
|
75
|
+
|
|
76
|
+
ValidFrom?: Date;
|
|
77
|
+
|
|
78
|
+
ValidUntil?: Date;
|
|
79
|
+
|
|
80
|
+
TagSpecifications?: TagSpecification[];
|
|
81
|
+
|
|
82
|
+
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
|
|
83
|
+
}
|
|
84
|
+
export declare namespace RequestSpotInstancesRequest {
|
|
85
|
+
|
|
86
|
+
const filterSensitiveLog: (obj: RequestSpotInstancesRequest) => any;
|
|
87
|
+
}
|
|
88
|
+
|
|
8
89
|
export interface RequestSpotInstancesResult {
|
|
9
90
|
|
|
10
91
|
SpotInstanceRequests?: SpotInstanceRequest[];
|
|
@@ -373,6 +373,7 @@ import { GetFlowLogsIntegrationTemplateCommandInput, GetFlowLogsIntegrationTempl
|
|
|
373
373
|
import { GetGroupsForCapacityReservationCommandInput, GetGroupsForCapacityReservationCommandOutput } from "../commands/GetGroupsForCapacityReservationCommand";
|
|
374
374
|
import { GetHostReservationPurchasePreviewCommandInput, GetHostReservationPurchasePreviewCommandOutput } from "../commands/GetHostReservationPurchasePreviewCommand";
|
|
375
375
|
import { GetInstanceTypesFromInstanceRequirementsCommandInput, GetInstanceTypesFromInstanceRequirementsCommandOutput } from "../commands/GetInstanceTypesFromInstanceRequirementsCommand";
|
|
376
|
+
import { GetInstanceUefiDataCommandInput, GetInstanceUefiDataCommandOutput } from "../commands/GetInstanceUefiDataCommand";
|
|
376
377
|
import { GetIpamAddressHistoryCommandInput, GetIpamAddressHistoryCommandOutput } from "../commands/GetIpamAddressHistoryCommand";
|
|
377
378
|
import { GetIpamPoolAllocationsCommandInput, GetIpamPoolAllocationsCommandOutput } from "../commands/GetIpamPoolAllocationsCommand";
|
|
378
379
|
import { GetIpamPoolCidrsCommandInput, GetIpamPoolCidrsCommandOutput } from "../commands/GetIpamPoolCidrsCommand";
|
|
@@ -895,6 +896,7 @@ export declare const serializeAws_ec2GetFlowLogsIntegrationTemplateCommand: (inp
|
|
|
895
896
|
export declare const serializeAws_ec2GetGroupsForCapacityReservationCommand: (input: GetGroupsForCapacityReservationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
896
897
|
export declare const serializeAws_ec2GetHostReservationPurchasePreviewCommand: (input: GetHostReservationPurchasePreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
897
898
|
export declare const serializeAws_ec2GetInstanceTypesFromInstanceRequirementsCommand: (input: GetInstanceTypesFromInstanceRequirementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
899
|
+
export declare const serializeAws_ec2GetInstanceUefiDataCommand: (input: GetInstanceUefiDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
898
900
|
export declare const serializeAws_ec2GetIpamAddressHistoryCommand: (input: GetIpamAddressHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
899
901
|
export declare const serializeAws_ec2GetIpamPoolAllocationsCommand: (input: GetIpamPoolAllocationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
900
902
|
export declare const serializeAws_ec2GetIpamPoolCidrsCommand: (input: GetIpamPoolCidrsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -1417,6 +1419,7 @@ export declare const deserializeAws_ec2GetFlowLogsIntegrationTemplateCommand: (o
|
|
|
1417
1419
|
export declare const deserializeAws_ec2GetGroupsForCapacityReservationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupsForCapacityReservationCommandOutput>;
|
|
1418
1420
|
export declare const deserializeAws_ec2GetHostReservationPurchasePreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHostReservationPurchasePreviewCommandOutput>;
|
|
1419
1421
|
export declare const deserializeAws_ec2GetInstanceTypesFromInstanceRequirementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInstanceTypesFromInstanceRequirementsCommandOutput>;
|
|
1422
|
+
export declare const deserializeAws_ec2GetInstanceUefiDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInstanceUefiDataCommandOutput>;
|
|
1420
1423
|
export declare const deserializeAws_ec2GetIpamAddressHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIpamAddressHistoryCommandOutput>;
|
|
1421
1424
|
export declare const deserializeAws_ec2GetIpamPoolAllocationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIpamPoolAllocationsCommandOutput>;
|
|
1422
1425
|
export declare const deserializeAws_ec2GetIpamPoolCidrsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIpamPoolCidrsCommandOutput>;
|
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.88.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.87.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.87.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|