@aws-sdk/client-ec2 3.1083.0 → 3.1084.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 +36 -8
- package/dist-es/models/enums.js +8 -0
- package/dist-es/schemas/schemas_0.js +23 -7
- package/dist-types/commands/CreateFleetCommand.d.ts +14 -0
- package/dist-types/commands/CreateRouteServerPeerCommand.d.ts +1 -2
- package/dist-types/commands/DeleteRouteTableCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +1 -2
- package/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +2 -1
- package/dist-types/commands/ModifyFleetCommand.d.ts +11 -0
- package/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/models_1.d.ts +121 -62
- package/dist-types/models/models_2.d.ts +59 -37
- package/dist-types/models/models_3.d.ts +37 -86
- package/dist-types/models/models_4.d.ts +89 -310
- package/dist-types/models/models_5.d.ts +309 -40
- package/dist-types/models/models_6.d.ts +38 -32
- package/dist-types/models/models_7.d.ts +36 -50
- package/dist-types/models/models_8.d.ts +47 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_1.d.ts +18 -12
- package/dist-types/ts3.4/models/models_2.d.ts +11 -9
- package/dist-types/ts3.4/models/models_3.d.ts +9 -15
- package/dist-types/ts3.4/models/models_4.d.ts +16 -39
- package/dist-types/ts3.4/models/models_5.d.ts +40 -10
- package/dist-types/ts3.4/models/models_6.d.ts +9 -8
- package/dist-types/ts3.4/models/models_7.d.ts +10 -11
- package/dist-types/ts3.4/models/models_8.d.ts +10 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
GetAssociatedEnclaveCertificateIamRolesResult,
|
|
5
|
-
} from "../models/models_5";
|
|
2
|
+
import { GetAssociatedEnclaveCertificateIamRolesRequest } from "../models/models_5";
|
|
3
|
+
import { GetAssociatedEnclaveCertificateIamRolesResult } from "../models/models_6";
|
|
6
4
|
export { __MetadataBearer };
|
|
7
5
|
export interface GetAssociatedEnclaveCertificateIamRolesCommandInput
|
|
8
6
|
extends GetAssociatedEnclaveCertificateIamRolesRequest {}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
ModifyIpamPoolAllocationRequest,
|
|
4
4
|
ModifyIpamPoolAllocationResult,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_7";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface ModifyIpamPoolAllocationCommandInput
|
|
8
8
|
extends ModifyIpamPoolAllocationRequest {}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
UpdateCapacityManagerOrganizationsAccessRequest,
|
|
4
4
|
UpdateCapacityManagerOrganizationsAccessResult,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_8";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface UpdateCapacityManagerOrganizationsAccessCommandInput
|
|
8
8
|
extends UpdateCapacityManagerOrganizationsAccessRequest {}
|
|
@@ -2230,6 +2230,18 @@ export declare const LocalStorageType: {
|
|
|
2230
2230
|
};
|
|
2231
2231
|
export type LocalStorageType =
|
|
2232
2232
|
(typeof LocalStorageType)[keyof typeof LocalStorageType];
|
|
2233
|
+
export declare const FleetInstanceMetadataEndpointState: {
|
|
2234
|
+
readonly DISABLED: "disabled";
|
|
2235
|
+
readonly ENABLED: "enabled";
|
|
2236
|
+
};
|
|
2237
|
+
export type FleetInstanceMetadataEndpointState =
|
|
2238
|
+
(typeof FleetInstanceMetadataEndpointState)[keyof typeof FleetInstanceMetadataEndpointState];
|
|
2239
|
+
export declare const FleetHttpTokensState: {
|
|
2240
|
+
readonly OPTIONAL: "optional";
|
|
2241
|
+
readonly REQUIRED: "required";
|
|
2242
|
+
};
|
|
2243
|
+
export type FleetHttpTokensState =
|
|
2244
|
+
(typeof FleetHttpTokensState)[keyof typeof FleetHttpTokensState];
|
|
2233
2245
|
export declare const FleetOnDemandAllocationStrategy: {
|
|
2234
2246
|
readonly LOWEST_PRICE: "lowest-price";
|
|
2235
2247
|
readonly PRIORITIZED: "prioritized";
|
|
@@ -25,6 +25,8 @@ import {
|
|
|
25
25
|
ExportTaskState,
|
|
26
26
|
FleetCapacityReservationUsageStrategy,
|
|
27
27
|
FleetExcessCapacityTerminationPolicy,
|
|
28
|
+
FleetHttpTokensState,
|
|
29
|
+
FleetInstanceMetadataEndpointState,
|
|
28
30
|
FleetOnDemandAllocationStrategy,
|
|
29
31
|
FleetReplacementStrategy,
|
|
30
32
|
FleetReservationType,
|
|
@@ -95,7 +97,6 @@ import {
|
|
|
95
97
|
ReplaceRootVolumeTaskState,
|
|
96
98
|
ResourceType,
|
|
97
99
|
RouteServerEndpointState,
|
|
98
|
-
RouteServerPeerLivenessMode,
|
|
99
100
|
RouteServerPersistRoutesAction,
|
|
100
101
|
RouteServerPersistRoutesState,
|
|
101
102
|
RouteServerState,
|
|
@@ -300,6 +301,7 @@ export interface FleetLaunchTemplateSpecificationRequest {
|
|
|
300
301
|
LaunchTemplateId?: string | undefined;
|
|
301
302
|
LaunchTemplateName?: string | undefined;
|
|
302
303
|
Version?: string | undefined;
|
|
304
|
+
LaunchTemplateSpecificationUserData?: string | undefined;
|
|
303
305
|
}
|
|
304
306
|
export interface FleetEbsBlockDeviceRequest {
|
|
305
307
|
Encrypted?: boolean | undefined;
|
|
@@ -317,6 +319,10 @@ export interface FleetBlockDeviceMappingRequest {
|
|
|
317
319
|
Ebs?: FleetEbsBlockDeviceRequest | undefined;
|
|
318
320
|
NoDevice?: string | undefined;
|
|
319
321
|
}
|
|
322
|
+
export interface FleetIamInstanceProfileSpecificationRequest {
|
|
323
|
+
Arn?: string | undefined;
|
|
324
|
+
Name?: string | undefined;
|
|
325
|
+
}
|
|
320
326
|
export interface BaselineEbsBandwidthMbpsRequest {
|
|
321
327
|
Min?: number | undefined;
|
|
322
328
|
Max?: number | undefined;
|
|
@@ -382,6 +388,11 @@ export interface InstanceRequirementsRequest {
|
|
|
382
388
|
BaselinePerformanceFactors?: BaselinePerformanceFactorsRequest | undefined;
|
|
383
389
|
RequireEncryptionInTransit?: boolean | undefined;
|
|
384
390
|
}
|
|
391
|
+
export interface FleetInstanceMetadataOptionsRequest {
|
|
392
|
+
HttpTokens?: FleetHttpTokensState | undefined;
|
|
393
|
+
HttpPutResponseHopLimit?: number | undefined;
|
|
394
|
+
HttpEndpoint?: FleetInstanceMetadataEndpointState | undefined;
|
|
395
|
+
}
|
|
385
396
|
export interface Placement {
|
|
386
397
|
AvailabilityZoneId?: string | undefined;
|
|
387
398
|
Affinity?: string | undefined;
|
|
@@ -402,7 +413,10 @@ export interface FleetLaunchTemplateOverridesRequest {
|
|
|
402
413
|
WeightedCapacity?: number | undefined;
|
|
403
414
|
Priority?: number | undefined;
|
|
404
415
|
Placement?: Placement | undefined;
|
|
416
|
+
KeyName?: string | undefined;
|
|
405
417
|
BlockDeviceMappings?: FleetBlockDeviceMappingRequest[] | undefined;
|
|
418
|
+
IamInstanceProfile?: FleetIamInstanceProfileSpecificationRequest | undefined;
|
|
419
|
+
MetadataOptions?: FleetInstanceMetadataOptionsRequest | undefined;
|
|
406
420
|
InstanceRequirements?: InstanceRequirementsRequest | undefined;
|
|
407
421
|
ImageId?: string | undefined;
|
|
408
422
|
AvailabilityZoneId?: string | undefined;
|
|
@@ -588,6 +602,9 @@ export interface CreateFleetInstance {
|
|
|
588
602
|
InstanceIds?: string[] | undefined;
|
|
589
603
|
InstanceType?: _InstanceType | undefined;
|
|
590
604
|
Platform?: PlatformValues | undefined;
|
|
605
|
+
AvailabilityZoneId?: string | undefined;
|
|
606
|
+
AvailabilityZone?: string | undefined;
|
|
607
|
+
SubnetId?: string | undefined;
|
|
591
608
|
}
|
|
592
609
|
export interface CreateFleetResult {
|
|
593
610
|
FleetId?: string | undefined;
|
|
@@ -2273,14 +2290,3 @@ export interface RouteServerEndpoint {
|
|
|
2273
2290
|
export interface CreateRouteServerEndpointResult {
|
|
2274
2291
|
RouteServerEndpoint?: RouteServerEndpoint | undefined;
|
|
2275
2292
|
}
|
|
2276
|
-
export interface RouteServerBgpOptionsRequest {
|
|
2277
|
-
PeerAsn: number | undefined;
|
|
2278
|
-
PeerLivenessDetection?: RouteServerPeerLivenessMode | undefined;
|
|
2279
|
-
}
|
|
2280
|
-
export interface CreateRouteServerPeerRequest {
|
|
2281
|
-
RouteServerEndpointId: string | undefined;
|
|
2282
|
-
PeerAddress: string | undefined;
|
|
2283
|
-
BgpOptions: RouteServerBgpOptionsRequest | undefined;
|
|
2284
|
-
DryRun?: boolean | undefined;
|
|
2285
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
2286
|
-
}
|
|
@@ -136,6 +136,17 @@ import {
|
|
|
136
136
|
Vpc,
|
|
137
137
|
VpcEncryptionControl,
|
|
138
138
|
} from "./models_1";
|
|
139
|
+
export interface RouteServerBgpOptionsRequest {
|
|
140
|
+
PeerAsn: number | undefined;
|
|
141
|
+
PeerLivenessDetection?: RouteServerPeerLivenessMode | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface CreateRouteServerPeerRequest {
|
|
144
|
+
RouteServerEndpointId: string | undefined;
|
|
145
|
+
PeerAddress: string | undefined;
|
|
146
|
+
BgpOptions: RouteServerBgpOptionsRequest | undefined;
|
|
147
|
+
DryRun?: boolean | undefined;
|
|
148
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
149
|
+
}
|
|
139
150
|
export interface RouteServerBfdStatus {
|
|
140
151
|
Status?: RouteServerBfdState | undefined;
|
|
141
152
|
}
|
|
@@ -1976,12 +1987,3 @@ export interface DeleteRouteServerPeerRequest {
|
|
|
1976
1987
|
export interface DeleteRouteServerPeerResult {
|
|
1977
1988
|
RouteServerPeer?: RouteServerPeer | undefined;
|
|
1978
1989
|
}
|
|
1979
|
-
export interface DeleteRouteTableRequest {
|
|
1980
|
-
DryRun?: boolean | undefined;
|
|
1981
|
-
RouteTableId: string | undefined;
|
|
1982
|
-
}
|
|
1983
|
-
export interface DeleteSecondaryNetworkRequest {
|
|
1984
|
-
ClientToken?: string | undefined;
|
|
1985
|
-
DryRun?: boolean | undefined;
|
|
1986
|
-
SecondaryNetworkId: string | undefined;
|
|
1987
|
-
}
|
|
@@ -144,6 +144,15 @@ import {
|
|
|
144
144
|
VerifiedAccessGroup,
|
|
145
145
|
VpcBlockPublicAccessExclusion,
|
|
146
146
|
} from "./models_2";
|
|
147
|
+
export interface DeleteRouteTableRequest {
|
|
148
|
+
DryRun?: boolean | undefined;
|
|
149
|
+
RouteTableId: string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface DeleteSecondaryNetworkRequest {
|
|
152
|
+
ClientToken?: string | undefined;
|
|
153
|
+
DryRun?: boolean | undefined;
|
|
154
|
+
SecondaryNetworkId: string | undefined;
|
|
155
|
+
}
|
|
147
156
|
export interface DeleteSecondaryNetworkResult {
|
|
148
157
|
SecondaryNetwork?: SecondaryNetwork | undefined;
|
|
149
158
|
ClientToken?: string | undefined;
|
|
@@ -1863,18 +1872,3 @@ export interface ImageUsageResourceTypeOption {
|
|
|
1863
1872
|
OptionName?: string | undefined;
|
|
1864
1873
|
OptionValues?: string[] | undefined;
|
|
1865
1874
|
}
|
|
1866
|
-
export interface ImageUsageResourceType {
|
|
1867
|
-
ResourceType?: string | undefined;
|
|
1868
|
-
ResourceTypeOptions?: ImageUsageResourceTypeOption[] | undefined;
|
|
1869
|
-
}
|
|
1870
|
-
export interface ImageUsageReport {
|
|
1871
|
-
ImageId?: string | undefined;
|
|
1872
|
-
ReportId?: string | undefined;
|
|
1873
|
-
ResourceTypes?: ImageUsageResourceType[] | undefined;
|
|
1874
|
-
AccountIds?: string[] | undefined;
|
|
1875
|
-
State?: string | undefined;
|
|
1876
|
-
StateReason?: string | undefined;
|
|
1877
|
-
CreationTime?: Date | undefined;
|
|
1878
|
-
ExpirationTime?: Date | undefined;
|
|
1879
|
-
Tags?: Tag[] | undefined;
|
|
1880
|
-
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
2
|
_InstanceType,
|
|
3
|
-
AllocationStrategy,
|
|
4
3
|
AmdSevSnpSpecification,
|
|
5
4
|
AnalysisStatus,
|
|
6
5
|
ArchitectureType,
|
|
@@ -21,9 +20,7 @@ import {
|
|
|
21
20
|
EphemeralNvmeSupport,
|
|
22
21
|
EventCode,
|
|
23
22
|
EventType,
|
|
24
|
-
ExcessCapacityTerminationPolicy,
|
|
25
23
|
FindingsFound,
|
|
26
|
-
FleetType,
|
|
27
24
|
FlexibleEnaQueuesSupport,
|
|
28
25
|
HaStatus,
|
|
29
26
|
HostnameType,
|
|
@@ -34,7 +31,6 @@ import {
|
|
|
34
31
|
InstanceAutoRecoveryState,
|
|
35
32
|
InstanceBandwidthWeighting,
|
|
36
33
|
InstanceBootModeValues,
|
|
37
|
-
InstanceInterruptionBehavior,
|
|
38
34
|
InstanceLifecycleType,
|
|
39
35
|
InstanceMetadataEndpointState,
|
|
40
36
|
InstanceMetadataOptionsState,
|
|
@@ -56,7 +52,6 @@ import {
|
|
|
56
52
|
NitroTpmSupport,
|
|
57
53
|
OfferingClassType,
|
|
58
54
|
OfferingTypeValues,
|
|
59
|
-
OnDemandAllocationStrategy,
|
|
60
55
|
PermissionGroup,
|
|
61
56
|
PhcSupport,
|
|
62
57
|
PlacementGroupStrategy,
|
|
@@ -82,7 +77,6 @@ import {
|
|
|
82
77
|
StorageTier,
|
|
83
78
|
SummaryStatus,
|
|
84
79
|
SupportedAdditionalProcessorFeature,
|
|
85
|
-
TargetCapacityUnitType,
|
|
86
80
|
Tenancy,
|
|
87
81
|
TieringOperationStatus,
|
|
88
82
|
UsageClassType,
|
|
@@ -103,7 +97,6 @@ import {
|
|
|
103
97
|
ReservedInstancesListing,
|
|
104
98
|
SecurityGroupRule,
|
|
105
99
|
Tag,
|
|
106
|
-
TagSpecification,
|
|
107
100
|
} from "./models_0";
|
|
108
101
|
import {
|
|
109
102
|
AttributeValue,
|
|
@@ -164,11 +157,26 @@ import {
|
|
|
164
157
|
EventInformation,
|
|
165
158
|
Filter,
|
|
166
159
|
IdFormat,
|
|
167
|
-
|
|
160
|
+
ImageUsageResourceTypeOption,
|
|
168
161
|
ImageWatermark,
|
|
169
162
|
InstanceTagNotificationAttribute,
|
|
170
163
|
ProductCode,
|
|
171
164
|
} from "./models_3";
|
|
165
|
+
export interface ImageUsageResourceType {
|
|
166
|
+
ResourceType?: string | undefined;
|
|
167
|
+
ResourceTypeOptions?: ImageUsageResourceTypeOption[] | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface ImageUsageReport {
|
|
170
|
+
ImageId?: string | undefined;
|
|
171
|
+
ReportId?: string | undefined;
|
|
172
|
+
ResourceTypes?: ImageUsageResourceType[] | undefined;
|
|
173
|
+
AccountIds?: string[] | undefined;
|
|
174
|
+
State?: string | undefined;
|
|
175
|
+
StateReason?: string | undefined;
|
|
176
|
+
CreationTime?: Date | undefined;
|
|
177
|
+
ExpirationTime?: Date | undefined;
|
|
178
|
+
Tags?: Tag[] | undefined;
|
|
179
|
+
}
|
|
172
180
|
export interface DescribeImageUsageReportsResult {
|
|
173
181
|
NextToken?: string | undefined;
|
|
174
182
|
ImageUsageReports?: ImageUsageReport[] | undefined;
|
|
@@ -2148,34 +2156,3 @@ export interface SpotCapacityRebalance {
|
|
|
2148
2156
|
ReplacementStrategy?: ReplacementStrategy | undefined;
|
|
2149
2157
|
TerminationDelay?: number | undefined;
|
|
2150
2158
|
}
|
|
2151
|
-
export interface SpotMaintenanceStrategies {
|
|
2152
|
-
CapacityRebalance?: SpotCapacityRebalance | undefined;
|
|
2153
|
-
}
|
|
2154
|
-
export interface SpotFleetRequestConfigData {
|
|
2155
|
-
AllocationStrategy?: AllocationStrategy | undefined;
|
|
2156
|
-
OnDemandAllocationStrategy?: OnDemandAllocationStrategy | undefined;
|
|
2157
|
-
SpotMaintenanceStrategies?: SpotMaintenanceStrategies | undefined;
|
|
2158
|
-
ClientToken?: string | undefined;
|
|
2159
|
-
ExcessCapacityTerminationPolicy?: ExcessCapacityTerminationPolicy | undefined;
|
|
2160
|
-
FulfilledCapacity?: number | undefined;
|
|
2161
|
-
OnDemandFulfilledCapacity?: number | undefined;
|
|
2162
|
-
IamFleetRole: string | undefined;
|
|
2163
|
-
LaunchSpecifications?: SpotFleetLaunchSpecification[] | undefined;
|
|
2164
|
-
LaunchTemplateConfigs?: LaunchTemplateConfig[] | undefined;
|
|
2165
|
-
SpotPrice?: string | undefined;
|
|
2166
|
-
TargetCapacity: number | undefined;
|
|
2167
|
-
OnDemandTargetCapacity?: number | undefined;
|
|
2168
|
-
OnDemandMaxTotalPrice?: string | undefined;
|
|
2169
|
-
SpotMaxTotalPrice?: string | undefined;
|
|
2170
|
-
TerminateInstancesWithExpiration?: boolean | undefined;
|
|
2171
|
-
Type?: FleetType | undefined;
|
|
2172
|
-
ValidFrom?: Date | undefined;
|
|
2173
|
-
ValidUntil?: Date | undefined;
|
|
2174
|
-
ReplaceUnhealthyInstances?: boolean | undefined;
|
|
2175
|
-
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | undefined;
|
|
2176
|
-
LoadBalancersConfig?: LoadBalancersConfig | undefined;
|
|
2177
|
-
InstancePoolsToUseCount?: number | undefined;
|
|
2178
|
-
Context?: string | undefined;
|
|
2179
|
-
TargetCapacityUnitType?: TargetCapacityUnitType | undefined;
|
|
2180
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
2181
|
-
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
_InstanceType,
|
|
3
3
|
ActivityStatus,
|
|
4
|
+
AllocationStrategy,
|
|
4
5
|
AllowedImagesSettingsDisabledState,
|
|
5
6
|
AllowedImagesSettingsEnabledState,
|
|
6
7
|
BatchState,
|
|
@@ -9,9 +10,11 @@ import {
|
|
|
9
10
|
DeviceTrustProviderType,
|
|
10
11
|
DiskImageFormat,
|
|
11
12
|
DnsNameState,
|
|
13
|
+
ExcessCapacityTerminationPolicy,
|
|
12
14
|
FastLaunchResourceType,
|
|
13
15
|
FastLaunchStateCode,
|
|
14
16
|
FastSnapshotRestoreStateCode,
|
|
17
|
+
FleetType,
|
|
15
18
|
ImageBlockPublicAccessDisabledState,
|
|
16
19
|
ImageBlockPublicAccessEnabledState,
|
|
17
20
|
InitializationType,
|
|
@@ -20,6 +23,7 @@ import {
|
|
|
20
23
|
IpAddressType,
|
|
21
24
|
ManagedBy,
|
|
22
25
|
MetricType,
|
|
26
|
+
OnDemandAllocationStrategy,
|
|
23
27
|
PayerResponsibility,
|
|
24
28
|
ResourceType,
|
|
25
29
|
RIProductDescription,
|
|
@@ -31,6 +35,7 @@ import {
|
|
|
31
35
|
SpotInstanceType,
|
|
32
36
|
State,
|
|
33
37
|
StatisticType,
|
|
38
|
+
TargetCapacityUnitType,
|
|
34
39
|
TransitGatewayAssociationState,
|
|
35
40
|
TransitGatewayAttachmentResourceType,
|
|
36
41
|
TransitGatewayAttachmentState,
|
|
@@ -120,10 +125,44 @@ import {
|
|
|
120
125
|
import {
|
|
121
126
|
AttributeBooleanValue,
|
|
122
127
|
InstanceNetworkInterfaceSpecification,
|
|
128
|
+
LaunchTemplateConfig,
|
|
129
|
+
LoadBalancersConfig,
|
|
123
130
|
RegisteredInstance,
|
|
124
|
-
|
|
131
|
+
SpotCapacityRebalance,
|
|
132
|
+
SpotFleetLaunchSpecification,
|
|
125
133
|
SpotPlacement,
|
|
126
134
|
} from "./models_4";
|
|
135
|
+
export interface SpotMaintenanceStrategies {
|
|
136
|
+
CapacityRebalance?: SpotCapacityRebalance | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface SpotFleetRequestConfigData {
|
|
139
|
+
AllocationStrategy?: AllocationStrategy | undefined;
|
|
140
|
+
OnDemandAllocationStrategy?: OnDemandAllocationStrategy | undefined;
|
|
141
|
+
SpotMaintenanceStrategies?: SpotMaintenanceStrategies | undefined;
|
|
142
|
+
ClientToken?: string | undefined;
|
|
143
|
+
ExcessCapacityTerminationPolicy?: ExcessCapacityTerminationPolicy | undefined;
|
|
144
|
+
FulfilledCapacity?: number | undefined;
|
|
145
|
+
OnDemandFulfilledCapacity?: number | undefined;
|
|
146
|
+
IamFleetRole: string | undefined;
|
|
147
|
+
LaunchSpecifications?: SpotFleetLaunchSpecification[] | undefined;
|
|
148
|
+
LaunchTemplateConfigs?: LaunchTemplateConfig[] | undefined;
|
|
149
|
+
SpotPrice?: string | undefined;
|
|
150
|
+
TargetCapacity: number | undefined;
|
|
151
|
+
OnDemandTargetCapacity?: number | undefined;
|
|
152
|
+
OnDemandMaxTotalPrice?: string | undefined;
|
|
153
|
+
SpotMaxTotalPrice?: string | undefined;
|
|
154
|
+
TerminateInstancesWithExpiration?: boolean | undefined;
|
|
155
|
+
Type?: FleetType | undefined;
|
|
156
|
+
ValidFrom?: Date | undefined;
|
|
157
|
+
ValidUntil?: Date | undefined;
|
|
158
|
+
ReplaceUnhealthyInstances?: boolean | undefined;
|
|
159
|
+
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | undefined;
|
|
160
|
+
LoadBalancersConfig?: LoadBalancersConfig | undefined;
|
|
161
|
+
InstancePoolsToUseCount?: number | undefined;
|
|
162
|
+
Context?: string | undefined;
|
|
163
|
+
TargetCapacityUnitType?: TargetCapacityUnitType | undefined;
|
|
164
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
165
|
+
}
|
|
127
166
|
export interface SpotFleetRequestConfig {
|
|
128
167
|
ActivityStatus?: ActivityStatus | undefined;
|
|
129
168
|
CreateTime?: Date | undefined;
|
|
@@ -1684,12 +1723,3 @@ export interface GetAssociatedEnclaveCertificateIamRolesRequest {
|
|
|
1684
1723
|
CertificateArn: string | undefined;
|
|
1685
1724
|
DryRun?: boolean | undefined;
|
|
1686
1725
|
}
|
|
1687
|
-
export interface AssociatedRole {
|
|
1688
|
-
AssociatedRoleArn?: string | undefined;
|
|
1689
|
-
CertificateS3BucketName?: string | undefined;
|
|
1690
|
-
CertificateS3ObjectKey?: string | undefined;
|
|
1691
|
-
EncryptionKmsKeyId?: string | undefined;
|
|
1692
|
-
}
|
|
1693
|
-
export interface GetAssociatedEnclaveCertificateIamRolesResult {
|
|
1694
|
-
AssociatedRoles?: AssociatedRole[] | undefined;
|
|
1695
|
-
}
|
|
@@ -152,6 +152,15 @@ import {
|
|
|
152
152
|
SnapshotTaskDetail,
|
|
153
153
|
} from "./models_4";
|
|
154
154
|
import { RouteServerPropagation } from "./models_5";
|
|
155
|
+
export interface AssociatedRole {
|
|
156
|
+
AssociatedRoleArn?: string | undefined;
|
|
157
|
+
CertificateS3BucketName?: string | undefined;
|
|
158
|
+
CertificateS3ObjectKey?: string | undefined;
|
|
159
|
+
EncryptionKmsKeyId?: string | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface GetAssociatedEnclaveCertificateIamRolesResult {
|
|
162
|
+
AssociatedRoles?: AssociatedRole[] | undefined;
|
|
163
|
+
}
|
|
155
164
|
export interface GetAssociatedIpv6PoolCidrsRequest {
|
|
156
165
|
PoolId: string | undefined;
|
|
157
166
|
NextToken?: string | undefined;
|
|
@@ -1901,11 +1910,3 @@ export interface ModifyIpamPoolRequest {
|
|
|
1901
1910
|
export interface ModifyIpamPoolResult {
|
|
1902
1911
|
IpamPool?: IpamPool | undefined;
|
|
1903
1912
|
}
|
|
1904
|
-
export interface ModifyIpamPoolAllocationRequest {
|
|
1905
|
-
DryRun?: boolean | undefined;
|
|
1906
|
-
IpamPoolAllocationId: string | undefined;
|
|
1907
|
-
Description?: string | undefined;
|
|
1908
|
-
}
|
|
1909
|
-
export interface ModifyIpamPoolAllocationResult {
|
|
1910
|
-
IpamPoolAllocation?: IpamPoolAllocation | undefined;
|
|
1911
|
-
}
|
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
ArchitectureValues,
|
|
7
7
|
AutoAcceptSharedAttachmentsValue,
|
|
8
8
|
BootModeValues,
|
|
9
|
-
CapacityManagerStatus,
|
|
10
9
|
CapacityReservationInstancePlatform,
|
|
11
10
|
CurrencyCodeValues,
|
|
12
11
|
DefaultRouteTableAssociationValue,
|
|
@@ -80,6 +79,7 @@ import {
|
|
|
80
79
|
EnaSrdSpecification,
|
|
81
80
|
IamInstanceProfileAssociation,
|
|
82
81
|
IamInstanceProfileSpecification,
|
|
82
|
+
IpamPoolAllocation,
|
|
83
83
|
IpPermission,
|
|
84
84
|
NatGatewayAddress,
|
|
85
85
|
PortRange,
|
|
@@ -163,11 +163,11 @@ import {
|
|
|
163
163
|
PublicIpv4PoolRange,
|
|
164
164
|
ReservedInstancesConfiguration,
|
|
165
165
|
ScheduledInstance,
|
|
166
|
-
SpotFleetRequestConfigData,
|
|
167
166
|
SpotPlacement,
|
|
168
167
|
} from "./models_4";
|
|
169
168
|
import {
|
|
170
169
|
RunInstancesMonitoringEnabled,
|
|
170
|
+
SpotFleetRequestConfigData,
|
|
171
171
|
SpotInstanceRequest,
|
|
172
172
|
VerifiedAccessInstanceLoggingConfiguration,
|
|
173
173
|
VolumeModification,
|
|
@@ -182,6 +182,14 @@ import {
|
|
|
182
182
|
Purchase,
|
|
183
183
|
RemoveIpamOperatingRegion,
|
|
184
184
|
} from "./models_6";
|
|
185
|
+
export interface ModifyIpamPoolAllocationRequest {
|
|
186
|
+
DryRun?: boolean | undefined;
|
|
187
|
+
IpamPoolAllocationId: string | undefined;
|
|
188
|
+
Description?: string | undefined;
|
|
189
|
+
}
|
|
190
|
+
export interface ModifyIpamPoolAllocationResult {
|
|
191
|
+
IpamPoolAllocation?: IpamPoolAllocation | undefined;
|
|
192
|
+
}
|
|
185
193
|
export interface ModifyIpamPrefixListResolverRequest {
|
|
186
194
|
DryRun?: boolean | undefined;
|
|
187
195
|
IpamPrefixListResolverId: string | undefined;
|
|
@@ -1905,12 +1913,3 @@ export interface UpdateCapacityManagerMonitoredTagKeysRequest {
|
|
|
1905
1913
|
export interface UpdateCapacityManagerMonitoredTagKeysResult {
|
|
1906
1914
|
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
1907
1915
|
}
|
|
1908
|
-
export interface UpdateCapacityManagerOrganizationsAccessRequest {
|
|
1909
|
-
OrganizationsAccess: boolean | undefined;
|
|
1910
|
-
DryRun?: boolean | undefined;
|
|
1911
|
-
ClientToken?: string | undefined;
|
|
1912
|
-
}
|
|
1913
|
-
export interface UpdateCapacityManagerOrganizationsAccessResult {
|
|
1914
|
-
CapacityManagerStatus?: CapacityManagerStatus | undefined;
|
|
1915
|
-
OrganizationsAccess?: boolean | undefined;
|
|
1916
|
-
}
|
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
|
+
CapacityManagerStatus,
|
|
2
3
|
InterruptibleCapacityReservationAllocationStatus,
|
|
3
4
|
InterruptionType,
|
|
4
5
|
} from "./enums";
|
|
5
6
|
import { ByoipCidr, IpPermission } from "./models_0";
|
|
7
|
+
export interface UpdateCapacityManagerOrganizationsAccessRequest {
|
|
8
|
+
OrganizationsAccess: boolean | undefined;
|
|
9
|
+
DryRun?: boolean | undefined;
|
|
10
|
+
ClientToken?: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
export interface UpdateCapacityManagerOrganizationsAccessResult {
|
|
13
|
+
CapacityManagerStatus?: CapacityManagerStatus | undefined;
|
|
14
|
+
OrganizationsAccess?: boolean | undefined;
|
|
15
|
+
}
|
|
6
16
|
export interface UpdateInterruptibleCapacityReservationAllocationRequest {
|
|
7
17
|
CapacityReservationId: string | undefined;
|
|
8
18
|
TargetInstanceCount: number | undefined;
|
|
@@ -1283,6 +1283,8 @@ export declare var FleetBlockDeviceMappingRequest$: StaticStructureSchema;
|
|
|
1283
1283
|
export declare var FleetCapacityReservation$: StaticStructureSchema;
|
|
1284
1284
|
export declare var FleetData$: StaticStructureSchema;
|
|
1285
1285
|
export declare var FleetEbsBlockDeviceRequest$: StaticStructureSchema;
|
|
1286
|
+
export declare var FleetIamInstanceProfileSpecificationRequest$: StaticStructureSchema;
|
|
1287
|
+
export declare var FleetInstanceMetadataOptionsRequest$: StaticStructureSchema;
|
|
1286
1288
|
export declare var FleetLaunchTemplateConfig$: StaticStructureSchema;
|
|
1287
1289
|
export declare var FleetLaunchTemplateConfigRequest$: StaticStructureSchema;
|
|
1288
1290
|
export declare var FleetLaunchTemplateOverrides$: StaticStructureSchema;
|
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.1084.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|