@aws-sdk/client-outposts 3.933.0 → 3.935.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 +200 -199
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +199 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -288
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +455 -0
- package/dist-types/models/errors.d.ts +91 -0
- package/dist-types/models/models_0.d.ts +1 -545
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +250 -0
- package/dist-types/ts3.4/models/errors.d.ts +49 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -298
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,13 +1,36 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
AddressType,
|
|
3
|
+
AssetState,
|
|
4
|
+
AssetType,
|
|
5
|
+
AWSServiceName,
|
|
6
|
+
BlockingResourceType,
|
|
7
|
+
CapacityTaskFailureType,
|
|
8
|
+
CapacityTaskStatus,
|
|
9
|
+
CatalogItemClass,
|
|
10
|
+
CatalogItemStatus,
|
|
11
|
+
ComputeAssetState,
|
|
12
|
+
DecommissionRequestStatus,
|
|
13
|
+
FiberOpticCableType,
|
|
14
|
+
LineItemStatus,
|
|
15
|
+
MaximumSupportedWeightLbs,
|
|
16
|
+
OpticalStandard,
|
|
17
|
+
OrderStatus,
|
|
18
|
+
OrderType,
|
|
19
|
+
PaymentOption,
|
|
20
|
+
PaymentTerm,
|
|
21
|
+
PowerConnector,
|
|
22
|
+
PowerDrawKva,
|
|
23
|
+
PowerFeedDrop,
|
|
24
|
+
PowerPhase,
|
|
25
|
+
ShipmentCarrier,
|
|
26
|
+
SubscriptionStatus,
|
|
27
|
+
SubscriptionType,
|
|
28
|
+
SupportedHardwareType,
|
|
29
|
+
SupportedStorageEnum,
|
|
30
|
+
TaskActionOnBlockingInstances,
|
|
31
|
+
UplinkCount,
|
|
32
|
+
UplinkGbps,
|
|
33
|
+
} from "./enums";
|
|
11
34
|
export interface Address {
|
|
12
35
|
ContactName: string | undefined;
|
|
13
36
|
ContactPhoneNumber: string | undefined;
|
|
@@ -21,29 +44,13 @@ export interface Address {
|
|
|
21
44
|
CountryCode: string | undefined;
|
|
22
45
|
Municipality?: string | undefined;
|
|
23
46
|
}
|
|
24
|
-
export declare const AddressType: {
|
|
25
|
-
readonly OPERATING_ADDRESS: "OPERATING_ADDRESS";
|
|
26
|
-
readonly SHIPPING_ADDRESS: "SHIPPING_ADDRESS";
|
|
27
|
-
};
|
|
28
|
-
export type AddressType = (typeof AddressType)[keyof typeof AddressType];
|
|
29
47
|
export interface AssetLocation {
|
|
30
48
|
RackElevation?: number | undefined;
|
|
31
49
|
}
|
|
32
|
-
export declare const AssetType: {
|
|
33
|
-
readonly COMPUTE: "COMPUTE";
|
|
34
|
-
};
|
|
35
|
-
export type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
36
50
|
export interface AssetInstanceTypeCapacity {
|
|
37
51
|
InstanceType: string | undefined;
|
|
38
52
|
Count: number | undefined;
|
|
39
53
|
}
|
|
40
|
-
export declare const ComputeAssetState: {
|
|
41
|
-
readonly ACTIVE: "ACTIVE";
|
|
42
|
-
readonly ISOLATED: "ISOLATED";
|
|
43
|
-
readonly RETIRING: "RETIRING";
|
|
44
|
-
};
|
|
45
|
-
export type ComputeAssetState =
|
|
46
|
-
(typeof ComputeAssetState)[keyof typeof ComputeAssetState];
|
|
47
54
|
export interface ComputeAttributes {
|
|
48
55
|
HostId?: string | undefined;
|
|
49
56
|
State?: ComputeAssetState | undefined;
|
|
@@ -58,16 +65,6 @@ export interface AssetInfo {
|
|
|
58
65
|
ComputeAttributes?: ComputeAttributes | undefined;
|
|
59
66
|
AssetLocation?: AssetLocation | undefined;
|
|
60
67
|
}
|
|
61
|
-
export declare const AWSServiceName: {
|
|
62
|
-
readonly AWS: "AWS";
|
|
63
|
-
readonly EC2: "EC2";
|
|
64
|
-
readonly ELASTICACHE: "ELASTICACHE";
|
|
65
|
-
readonly ELB: "ELB";
|
|
66
|
-
readonly RDS: "RDS";
|
|
67
|
-
readonly ROUTE53: "ROUTE53";
|
|
68
|
-
};
|
|
69
|
-
export type AWSServiceName =
|
|
70
|
-
(typeof AWSServiceName)[keyof typeof AWSServiceName];
|
|
71
68
|
export interface AssetInstance {
|
|
72
69
|
InstanceId?: string | undefined;
|
|
73
70
|
InstanceType?: string | undefined;
|
|
@@ -75,96 +72,24 @@ export interface AssetInstance {
|
|
|
75
72
|
AccountId?: string | undefined;
|
|
76
73
|
AwsServiceName?: AWSServiceName | undefined;
|
|
77
74
|
}
|
|
78
|
-
export declare const AssetState: {
|
|
79
|
-
readonly ACTIVE: "ACTIVE";
|
|
80
|
-
readonly ISOLATED: "ISOLATED";
|
|
81
|
-
readonly RETIRING: "RETIRING";
|
|
82
|
-
};
|
|
83
|
-
export type AssetState = (typeof AssetState)[keyof typeof AssetState];
|
|
84
75
|
export interface BlockingInstance {
|
|
85
76
|
InstanceId?: string | undefined;
|
|
86
77
|
AccountId?: string | undefined;
|
|
87
78
|
AwsServiceName?: AWSServiceName | undefined;
|
|
88
79
|
}
|
|
89
|
-
export declare const BlockingResourceType: {
|
|
90
|
-
readonly EC2_INSTANCE: "EC2_INSTANCE";
|
|
91
|
-
readonly LGW_ROUTE_TABLE: "LGW_ROUTE_TABLE";
|
|
92
|
-
readonly LGW_ROUTING_DOMAIN: "LGW_ROUTING_DOMAIN";
|
|
93
|
-
readonly LGW_VIRTUAL_INTERFACE_GROUP: "LGW_VIRTUAL_INTERFACE_GROUP";
|
|
94
|
-
readonly OUTPOST_ORDER_CANCELLABLE: "OUTPOST_ORDER_CANCELLABLE";
|
|
95
|
-
readonly OUTPOST_ORDER_INTERVENTION_REQUIRED: "OUTPOST_ORDER_INTERVENTION_REQUIRED";
|
|
96
|
-
readonly OUTPOST_RAM_SHARE: "OUTPOST_RAM_SHARE";
|
|
97
|
-
};
|
|
98
|
-
export type BlockingResourceType =
|
|
99
|
-
(typeof BlockingResourceType)[keyof typeof BlockingResourceType];
|
|
100
80
|
export interface CancelCapacityTaskInput {
|
|
101
81
|
CapacityTaskId: string | undefined;
|
|
102
82
|
OutpostIdentifier: string | undefined;
|
|
103
83
|
}
|
|
104
84
|
export interface CancelCapacityTaskOutput {}
|
|
105
|
-
export declare const ResourceType: {
|
|
106
|
-
readonly ORDER: "ORDER";
|
|
107
|
-
readonly OUTPOST: "OUTPOST";
|
|
108
|
-
};
|
|
109
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
110
|
-
export declare class ConflictException extends __BaseException {
|
|
111
|
-
readonly name: "ConflictException";
|
|
112
|
-
readonly $fault: "client";
|
|
113
|
-
Message?: string | undefined;
|
|
114
|
-
ResourceId?: string | undefined;
|
|
115
|
-
ResourceType?: ResourceType | undefined;
|
|
116
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
117
|
-
}
|
|
118
|
-
export declare class InternalServerException extends __BaseException {
|
|
119
|
-
readonly name: "InternalServerException";
|
|
120
|
-
readonly $fault: "server";
|
|
121
|
-
Message?: string | undefined;
|
|
122
|
-
constructor(
|
|
123
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
124
|
-
);
|
|
125
|
-
}
|
|
126
|
-
export declare class NotFoundException extends __BaseException {
|
|
127
|
-
readonly name: "NotFoundException";
|
|
128
|
-
readonly $fault: "client";
|
|
129
|
-
Message?: string | undefined;
|
|
130
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
131
|
-
}
|
|
132
|
-
export declare class ValidationException extends __BaseException {
|
|
133
|
-
readonly name: "ValidationException";
|
|
134
|
-
readonly $fault: "client";
|
|
135
|
-
Message?: string | undefined;
|
|
136
|
-
constructor(
|
|
137
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
138
|
-
);
|
|
139
|
-
}
|
|
140
85
|
export interface CancelOrderInput {
|
|
141
86
|
OrderId: string | undefined;
|
|
142
87
|
}
|
|
143
88
|
export interface CancelOrderOutput {}
|
|
144
|
-
export declare const CapacityTaskFailureType: {
|
|
145
|
-
readonly BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED";
|
|
146
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
147
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
148
|
-
readonly UNEXPECTED_ASSET_STATE: "UNEXPECTED_ASSET_STATE";
|
|
149
|
-
readonly UNSUPPORTED_CAPACITY_CONFIGURATION: "UNSUPPORTED_CAPACITY_CONFIGURATION";
|
|
150
|
-
};
|
|
151
|
-
export type CapacityTaskFailureType =
|
|
152
|
-
(typeof CapacityTaskFailureType)[keyof typeof CapacityTaskFailureType];
|
|
153
89
|
export interface CapacityTaskFailure {
|
|
154
90
|
Reason: string | undefined;
|
|
155
91
|
Type?: CapacityTaskFailureType | undefined;
|
|
156
92
|
}
|
|
157
|
-
export declare const CapacityTaskStatus: {
|
|
158
|
-
readonly CANCELLATION_IN_PROGRESS: "CANCELLATION_IN_PROGRESS";
|
|
159
|
-
readonly CANCELLED: "CANCELLED";
|
|
160
|
-
readonly COMPLETED: "COMPLETED";
|
|
161
|
-
readonly FAILED: "FAILED";
|
|
162
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
163
|
-
readonly REQUESTED: "REQUESTED";
|
|
164
|
-
readonly WAITING_FOR_EVACUATION: "WAITING_FOR_EVACUATION";
|
|
165
|
-
};
|
|
166
|
-
export type CapacityTaskStatus =
|
|
167
|
-
(typeof CapacityTaskStatus)[keyof typeof CapacityTaskStatus];
|
|
168
93
|
export interface CapacityTaskSummary {
|
|
169
94
|
CapacityTaskId?: string | undefined;
|
|
170
95
|
OutpostId?: string | undefined;
|
|
@@ -180,18 +105,6 @@ export interface EC2Capacity {
|
|
|
180
105
|
MaxSize?: string | undefined;
|
|
181
106
|
Quantity?: string | undefined;
|
|
182
107
|
}
|
|
183
|
-
export declare const CatalogItemStatus: {
|
|
184
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
185
|
-
readonly DISCONTINUED: "DISCONTINUED";
|
|
186
|
-
};
|
|
187
|
-
export type CatalogItemStatus =
|
|
188
|
-
(typeof CatalogItemStatus)[keyof typeof CatalogItemStatus];
|
|
189
|
-
export declare const SupportedStorageEnum: {
|
|
190
|
-
readonly EBS: "EBS";
|
|
191
|
-
readonly S3: "S3";
|
|
192
|
-
};
|
|
193
|
-
export type SupportedStorageEnum =
|
|
194
|
-
(typeof SupportedStorageEnum)[keyof typeof SupportedStorageEnum];
|
|
195
108
|
export interface CatalogItem {
|
|
196
109
|
CatalogItemId?: string | undefined;
|
|
197
110
|
ItemStatus?: CatalogItemStatus | undefined;
|
|
@@ -201,12 +114,6 @@ export interface CatalogItem {
|
|
|
201
114
|
SupportedUplinkGbps?: number[] | undefined;
|
|
202
115
|
SupportedStorage?: SupportedStorageEnum[] | undefined;
|
|
203
116
|
}
|
|
204
|
-
export declare const CatalogItemClass: {
|
|
205
|
-
readonly RACK: "RACK";
|
|
206
|
-
readonly SERVER: "SERVER";
|
|
207
|
-
};
|
|
208
|
-
export type CatalogItemClass =
|
|
209
|
-
(typeof CatalogItemClass)[keyof typeof CatalogItemClass];
|
|
210
117
|
export interface ConnectionDetails {
|
|
211
118
|
ClientPublicKey?: string | undefined;
|
|
212
119
|
ServerPublicKey?: string | undefined;
|
|
@@ -219,18 +126,6 @@ export interface LineItemRequest {
|
|
|
219
126
|
CatalogItemId?: string | undefined;
|
|
220
127
|
Quantity?: number | undefined;
|
|
221
128
|
}
|
|
222
|
-
export declare const PaymentOption: {
|
|
223
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
224
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
225
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
226
|
-
};
|
|
227
|
-
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
228
|
-
export declare const PaymentTerm: {
|
|
229
|
-
readonly FIVE_YEARS: "FIVE_YEARS";
|
|
230
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
231
|
-
readonly THREE_YEARS: "THREE_YEARS";
|
|
232
|
-
};
|
|
233
|
-
export type PaymentTerm = (typeof PaymentTerm)[keyof typeof PaymentTerm];
|
|
234
129
|
export interface CreateOrderInput {
|
|
235
130
|
OutpostIdentifier: string | undefined;
|
|
236
131
|
LineItems?: LineItemRequest[] | undefined;
|
|
@@ -241,32 +136,10 @@ export interface LineItemAssetInformation {
|
|
|
241
136
|
AssetId?: string | undefined;
|
|
242
137
|
MacAddressList?: string[] | undefined;
|
|
243
138
|
}
|
|
244
|
-
export declare const ShipmentCarrier: {
|
|
245
|
-
readonly DBS: "DBS";
|
|
246
|
-
readonly DHL: "DHL";
|
|
247
|
-
readonly EXPEDITORS: "EXPEDITORS";
|
|
248
|
-
readonly FEDEX: "FEDEX";
|
|
249
|
-
readonly UPS: "UPS";
|
|
250
|
-
};
|
|
251
|
-
export type ShipmentCarrier =
|
|
252
|
-
(typeof ShipmentCarrier)[keyof typeof ShipmentCarrier];
|
|
253
139
|
export interface ShipmentInformation {
|
|
254
140
|
ShipmentTrackingNumber?: string | undefined;
|
|
255
141
|
ShipmentCarrier?: ShipmentCarrier | undefined;
|
|
256
142
|
}
|
|
257
|
-
export declare const LineItemStatus: {
|
|
258
|
-
readonly BUILDING: "BUILDING";
|
|
259
|
-
readonly CANCELLED: "CANCELLED";
|
|
260
|
-
readonly DELIVERED: "DELIVERED";
|
|
261
|
-
readonly ERROR: "ERROR";
|
|
262
|
-
readonly INSTALLED: "INSTALLED";
|
|
263
|
-
readonly INSTALLING: "INSTALLING";
|
|
264
|
-
readonly PREPARING: "PREPARING";
|
|
265
|
-
readonly REPLACED: "REPLACED";
|
|
266
|
-
readonly SHIPPED: "SHIPPED";
|
|
267
|
-
};
|
|
268
|
-
export type LineItemStatus =
|
|
269
|
-
(typeof LineItemStatus)[keyof typeof LineItemStatus];
|
|
270
143
|
export interface LineItem {
|
|
271
144
|
CatalogItemId?: string | undefined;
|
|
272
145
|
LineItemId?: string | undefined;
|
|
@@ -277,25 +150,6 @@ export interface LineItem {
|
|
|
277
150
|
PreviousLineItemId?: string | undefined;
|
|
278
151
|
PreviousOrderId?: string | undefined;
|
|
279
152
|
}
|
|
280
|
-
export declare const OrderType: {
|
|
281
|
-
readonly OUTPOST: "OUTPOST";
|
|
282
|
-
readonly REPLACEMENT: "REPLACEMENT";
|
|
283
|
-
};
|
|
284
|
-
export type OrderType = (typeof OrderType)[keyof typeof OrderType];
|
|
285
|
-
export declare const OrderStatus: {
|
|
286
|
-
readonly CANCELLED: "CANCELLED";
|
|
287
|
-
readonly COMPLETED: "COMPLETED";
|
|
288
|
-
readonly DELIVERED: "DELIVERED";
|
|
289
|
-
readonly ERROR: "ERROR";
|
|
290
|
-
readonly FULFILLED: "FULFILLED";
|
|
291
|
-
readonly INSTALLING: "INSTALLING";
|
|
292
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
293
|
-
readonly PENDING: "PENDING";
|
|
294
|
-
readonly PREPARING: "PREPARING";
|
|
295
|
-
readonly PROCESSING: "PROCESSING";
|
|
296
|
-
readonly RECEIVED: "RECEIVED";
|
|
297
|
-
};
|
|
298
|
-
export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];
|
|
299
153
|
export interface Order {
|
|
300
154
|
OutpostId?: string | undefined;
|
|
301
155
|
OrderId?: string | undefined;
|
|
@@ -310,20 +164,6 @@ export interface Order {
|
|
|
310
164
|
export interface CreateOrderOutput {
|
|
311
165
|
Order?: Order | undefined;
|
|
312
166
|
}
|
|
313
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
314
|
-
readonly name: "ServiceQuotaExceededException";
|
|
315
|
-
readonly $fault: "client";
|
|
316
|
-
Message?: string | undefined;
|
|
317
|
-
constructor(
|
|
318
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
319
|
-
);
|
|
320
|
-
}
|
|
321
|
-
export declare const SupportedHardwareType: {
|
|
322
|
-
readonly RACK: "RACK";
|
|
323
|
-
readonly SERVER: "SERVER";
|
|
324
|
-
};
|
|
325
|
-
export type SupportedHardwareType =
|
|
326
|
-
(typeof SupportedHardwareType)[keyof typeof SupportedHardwareType];
|
|
327
167
|
export interface CreateOutpostInput {
|
|
328
168
|
Name: string | undefined;
|
|
329
169
|
Description?: string | undefined;
|
|
@@ -350,84 +190,6 @@ export interface Outpost {
|
|
|
350
190
|
export interface CreateOutpostOutput {
|
|
351
191
|
Outpost?: Outpost | undefined;
|
|
352
192
|
}
|
|
353
|
-
export declare const FiberOpticCableType: {
|
|
354
|
-
readonly MULTI_MODE: "MULTI_MODE";
|
|
355
|
-
readonly SINGLE_MODE: "SINGLE_MODE";
|
|
356
|
-
};
|
|
357
|
-
export type FiberOpticCableType =
|
|
358
|
-
(typeof FiberOpticCableType)[keyof typeof FiberOpticCableType];
|
|
359
|
-
export declare const MaximumSupportedWeightLbs: {
|
|
360
|
-
readonly MAX_1400_LBS: "MAX_1400_LBS";
|
|
361
|
-
readonly MAX_1600_LBS: "MAX_1600_LBS";
|
|
362
|
-
readonly MAX_1800_LBS: "MAX_1800_LBS";
|
|
363
|
-
readonly MAX_2000_LBS: "MAX_2000_LBS";
|
|
364
|
-
readonly NO_LIMIT: "NO_LIMIT";
|
|
365
|
-
};
|
|
366
|
-
export type MaximumSupportedWeightLbs =
|
|
367
|
-
(typeof MaximumSupportedWeightLbs)[keyof typeof MaximumSupportedWeightLbs];
|
|
368
|
-
export declare const OpticalStandard: {
|
|
369
|
-
readonly OPTIC_1000BASE_LX: "OPTIC_1000BASE_LX";
|
|
370
|
-
readonly OPTIC_1000BASE_SX: "OPTIC_1000BASE_SX";
|
|
371
|
-
readonly OPTIC_100GBASE_CWDM4: "OPTIC_100GBASE_CWDM4";
|
|
372
|
-
readonly OPTIC_100GBASE_LR4: "OPTIC_100GBASE_LR4";
|
|
373
|
-
readonly OPTIC_100GBASE_SR4: "OPTIC_100GBASE_SR4";
|
|
374
|
-
readonly OPTIC_100G_PSM4_MSA: "OPTIC_100G_PSM4_MSA";
|
|
375
|
-
readonly OPTIC_10GBASE_IR: "OPTIC_10GBASE_IR";
|
|
376
|
-
readonly OPTIC_10GBASE_LR: "OPTIC_10GBASE_LR";
|
|
377
|
-
readonly OPTIC_10GBASE_SR: "OPTIC_10GBASE_SR";
|
|
378
|
-
readonly OPTIC_40GBASE_ESR: "OPTIC_40GBASE_ESR";
|
|
379
|
-
readonly OPTIC_40GBASE_IR4_LR4L: "OPTIC_40GBASE_IR4_LR4L";
|
|
380
|
-
readonly OPTIC_40GBASE_LR4: "OPTIC_40GBASE_LR4";
|
|
381
|
-
readonly OPTIC_40GBASE_SR: "OPTIC_40GBASE_SR";
|
|
382
|
-
};
|
|
383
|
-
export type OpticalStandard =
|
|
384
|
-
(typeof OpticalStandard)[keyof typeof OpticalStandard];
|
|
385
|
-
export declare const PowerConnector: {
|
|
386
|
-
readonly AH530P7W: "AH530P7W";
|
|
387
|
-
readonly AH532P6W: "AH532P6W";
|
|
388
|
-
readonly CS8365C: "CS8365C";
|
|
389
|
-
readonly IEC309: "IEC309";
|
|
390
|
-
readonly L6_30P: "L6_30P";
|
|
391
|
-
};
|
|
392
|
-
export type PowerConnector =
|
|
393
|
-
(typeof PowerConnector)[keyof typeof PowerConnector];
|
|
394
|
-
export declare const PowerDrawKva: {
|
|
395
|
-
readonly POWER_10_KVA: "POWER_10_KVA";
|
|
396
|
-
readonly POWER_15_KVA: "POWER_15_KVA";
|
|
397
|
-
readonly POWER_30_KVA: "POWER_30_KVA";
|
|
398
|
-
readonly POWER_5_KVA: "POWER_5_KVA";
|
|
399
|
-
};
|
|
400
|
-
export type PowerDrawKva = (typeof PowerDrawKva)[keyof typeof PowerDrawKva];
|
|
401
|
-
export declare const PowerFeedDrop: {
|
|
402
|
-
readonly ABOVE_RACK: "ABOVE_RACK";
|
|
403
|
-
readonly BELOW_RACK: "BELOW_RACK";
|
|
404
|
-
};
|
|
405
|
-
export type PowerFeedDrop = (typeof PowerFeedDrop)[keyof typeof PowerFeedDrop];
|
|
406
|
-
export declare const PowerPhase: {
|
|
407
|
-
readonly SINGLE_PHASE: "SINGLE_PHASE";
|
|
408
|
-
readonly THREE_PHASE: "THREE_PHASE";
|
|
409
|
-
};
|
|
410
|
-
export type PowerPhase = (typeof PowerPhase)[keyof typeof PowerPhase];
|
|
411
|
-
export declare const UplinkCount: {
|
|
412
|
-
readonly UPLINK_COUNT_1: "UPLINK_COUNT_1";
|
|
413
|
-
readonly UPLINK_COUNT_12: "UPLINK_COUNT_12";
|
|
414
|
-
readonly UPLINK_COUNT_16: "UPLINK_COUNT_16";
|
|
415
|
-
readonly UPLINK_COUNT_2: "UPLINK_COUNT_2";
|
|
416
|
-
readonly UPLINK_COUNT_3: "UPLINK_COUNT_3";
|
|
417
|
-
readonly UPLINK_COUNT_4: "UPLINK_COUNT_4";
|
|
418
|
-
readonly UPLINK_COUNT_5: "UPLINK_COUNT_5";
|
|
419
|
-
readonly UPLINK_COUNT_6: "UPLINK_COUNT_6";
|
|
420
|
-
readonly UPLINK_COUNT_7: "UPLINK_COUNT_7";
|
|
421
|
-
readonly UPLINK_COUNT_8: "UPLINK_COUNT_8";
|
|
422
|
-
};
|
|
423
|
-
export type UplinkCount = (typeof UplinkCount)[keyof typeof UplinkCount];
|
|
424
|
-
export declare const UplinkGbps: {
|
|
425
|
-
readonly UPLINK_100G: "UPLINK_100G";
|
|
426
|
-
readonly UPLINK_10G: "UPLINK_10G";
|
|
427
|
-
readonly UPLINK_1G: "UPLINK_1G";
|
|
428
|
-
readonly UPLINK_40G: "UPLINK_40G";
|
|
429
|
-
};
|
|
430
|
-
export type UplinkGbps = (typeof UplinkGbps)[keyof typeof UplinkGbps];
|
|
431
193
|
export interface RackPhysicalProperties {
|
|
432
194
|
PowerDrawKva?: PowerDrawKva | undefined;
|
|
433
195
|
PowerPhase?: PowerPhase | undefined;
|
|
@@ -464,13 +226,6 @@ export interface Site {
|
|
|
464
226
|
export interface CreateSiteOutput {
|
|
465
227
|
Site?: Site | undefined;
|
|
466
228
|
}
|
|
467
|
-
export declare const DecommissionRequestStatus: {
|
|
468
|
-
readonly BLOCKED: "BLOCKED";
|
|
469
|
-
readonly REQUESTED: "REQUESTED";
|
|
470
|
-
readonly SKIPPED: "SKIPPED";
|
|
471
|
-
};
|
|
472
|
-
export type DecommissionRequestStatus =
|
|
473
|
-
(typeof DecommissionRequestStatus)[keyof typeof DecommissionRequestStatus];
|
|
474
229
|
export interface DeleteOutpostInput {
|
|
475
230
|
OutpostId: string | undefined;
|
|
476
231
|
}
|
|
@@ -492,12 +247,6 @@ export interface InstanceTypeCapacity {
|
|
|
492
247
|
InstanceType: string | undefined;
|
|
493
248
|
Count: number | undefined;
|
|
494
249
|
}
|
|
495
|
-
export declare const TaskActionOnBlockingInstances: {
|
|
496
|
-
readonly FAIL_TASK: "FAIL_TASK";
|
|
497
|
-
readonly WAIT_FOR_EVACUATION: "WAIT_FOR_EVACUATION";
|
|
498
|
-
};
|
|
499
|
-
export type TaskActionOnBlockingInstances =
|
|
500
|
-
(typeof TaskActionOnBlockingInstances)[keyof typeof TaskActionOnBlockingInstances];
|
|
501
250
|
export interface GetCapacityTaskOutput {
|
|
502
251
|
CapacityTaskId?: string | undefined;
|
|
503
252
|
OutpostId?: string | undefined;
|
|
@@ -543,20 +292,6 @@ export interface GetOutpostBillingInformationInput {
|
|
|
543
292
|
MaxResults?: number | undefined;
|
|
544
293
|
OutpostIdentifier: string | undefined;
|
|
545
294
|
}
|
|
546
|
-
export declare const SubscriptionStatus: {
|
|
547
|
-
readonly ACTIVE: "ACTIVE";
|
|
548
|
-
readonly CANCELLED: "CANCELLED";
|
|
549
|
-
readonly INACTIVE: "INACTIVE";
|
|
550
|
-
};
|
|
551
|
-
export type SubscriptionStatus =
|
|
552
|
-
(typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
553
|
-
export declare const SubscriptionType: {
|
|
554
|
-
readonly CAPACITY_INCREASE: "CAPACITY_INCREASE";
|
|
555
|
-
readonly ORIGINAL: "ORIGINAL";
|
|
556
|
-
readonly RENEWAL: "RENEWAL";
|
|
557
|
-
};
|
|
558
|
-
export type SubscriptionType =
|
|
559
|
-
(typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
560
295
|
export interface Subscription {
|
|
561
296
|
SubscriptionId?: string | undefined;
|
|
562
297
|
SubscriptionType?: SubscriptionType | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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-outposts",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|