@aws-sdk/client-outposts 3.934.0 → 3.936.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 +19 -19
- 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,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have permission to perform this operation.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
1
|
+
import { AddressType, AssetState, AssetType, AWSServiceName, BlockingResourceType, CapacityTaskFailureType, CapacityTaskStatus, CatalogItemClass, CatalogItemStatus, ComputeAssetState, DecommissionRequestStatus, FiberOpticCableType, LineItemStatus, MaximumSupportedWeightLbs, OpticalStandard, OrderStatus, OrderType, PaymentOption, PaymentTerm, PowerConnector, PowerDrawKva, PowerFeedDrop, PowerPhase, ShipmentCarrier, SubscriptionStatus, SubscriptionType, SupportedHardwareType, SupportedStorageEnum, TaskActionOnBlockingInstances, UplinkCount, UplinkGbps } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* <p> Information about an address. </p>
|
|
18
4
|
* @public
|
|
@@ -74,18 +60,6 @@ export interface Address {
|
|
|
74
60
|
*/
|
|
75
61
|
Municipality?: string | undefined;
|
|
76
62
|
}
|
|
77
|
-
/**
|
|
78
|
-
* @public
|
|
79
|
-
* @enum
|
|
80
|
-
*/
|
|
81
|
-
export declare const AddressType: {
|
|
82
|
-
readonly OPERATING_ADDRESS: "OPERATING_ADDRESS";
|
|
83
|
-
readonly SHIPPING_ADDRESS: "SHIPPING_ADDRESS";
|
|
84
|
-
};
|
|
85
|
-
/**
|
|
86
|
-
* @public
|
|
87
|
-
*/
|
|
88
|
-
export type AddressType = (typeof AddressType)[keyof typeof AddressType];
|
|
89
63
|
/**
|
|
90
64
|
* <p> Information about the position of the asset in a rack. </p>
|
|
91
65
|
* @public
|
|
@@ -97,17 +71,6 @@ export interface AssetLocation {
|
|
|
97
71
|
*/
|
|
98
72
|
RackElevation?: number | undefined;
|
|
99
73
|
}
|
|
100
|
-
/**
|
|
101
|
-
* @public
|
|
102
|
-
* @enum
|
|
103
|
-
*/
|
|
104
|
-
export declare const AssetType: {
|
|
105
|
-
readonly COMPUTE: "COMPUTE";
|
|
106
|
-
};
|
|
107
|
-
/**
|
|
108
|
-
* @public
|
|
109
|
-
*/
|
|
110
|
-
export type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
111
74
|
/**
|
|
112
75
|
* <p>The capacity for each instance type.</p>
|
|
113
76
|
* @public
|
|
@@ -124,19 +87,6 @@ export interface AssetInstanceTypeCapacity {
|
|
|
124
87
|
*/
|
|
125
88
|
Count: number | undefined;
|
|
126
89
|
}
|
|
127
|
-
/**
|
|
128
|
-
* @public
|
|
129
|
-
* @enum
|
|
130
|
-
*/
|
|
131
|
-
export declare const ComputeAssetState: {
|
|
132
|
-
readonly ACTIVE: "ACTIVE";
|
|
133
|
-
readonly ISOLATED: "ISOLATED";
|
|
134
|
-
readonly RETIRING: "RETIRING";
|
|
135
|
-
};
|
|
136
|
-
/**
|
|
137
|
-
* @public
|
|
138
|
-
*/
|
|
139
|
-
export type ComputeAssetState = (typeof ComputeAssetState)[keyof typeof ComputeAssetState];
|
|
140
90
|
/**
|
|
141
91
|
* <p> Information about compute hardware assets. </p>
|
|
142
92
|
* @public
|
|
@@ -217,22 +167,6 @@ export interface AssetInfo {
|
|
|
217
167
|
*/
|
|
218
168
|
AssetLocation?: AssetLocation | undefined;
|
|
219
169
|
}
|
|
220
|
-
/**
|
|
221
|
-
* @public
|
|
222
|
-
* @enum
|
|
223
|
-
*/
|
|
224
|
-
export declare const AWSServiceName: {
|
|
225
|
-
readonly AWS: "AWS";
|
|
226
|
-
readonly EC2: "EC2";
|
|
227
|
-
readonly ELASTICACHE: "ELASTICACHE";
|
|
228
|
-
readonly ELB: "ELB";
|
|
229
|
-
readonly RDS: "RDS";
|
|
230
|
-
readonly ROUTE53: "ROUTE53";
|
|
231
|
-
};
|
|
232
|
-
/**
|
|
233
|
-
* @public
|
|
234
|
-
*/
|
|
235
|
-
export type AWSServiceName = (typeof AWSServiceName)[keyof typeof AWSServiceName];
|
|
236
170
|
/**
|
|
237
171
|
* <p>An Amazon EC2 instance.</p>
|
|
238
172
|
* @public
|
|
@@ -265,19 +199,6 @@ export interface AssetInstance {
|
|
|
265
199
|
*/
|
|
266
200
|
AwsServiceName?: AWSServiceName | undefined;
|
|
267
201
|
}
|
|
268
|
-
/**
|
|
269
|
-
* @public
|
|
270
|
-
* @enum
|
|
271
|
-
*/
|
|
272
|
-
export declare const AssetState: {
|
|
273
|
-
readonly ACTIVE: "ACTIVE";
|
|
274
|
-
readonly ISOLATED: "ISOLATED";
|
|
275
|
-
readonly RETIRING: "RETIRING";
|
|
276
|
-
};
|
|
277
|
-
/**
|
|
278
|
-
* @public
|
|
279
|
-
*/
|
|
280
|
-
export type AssetState = (typeof AssetState)[keyof typeof AssetState];
|
|
281
202
|
/**
|
|
282
203
|
* <p>A running Amazon EC2 instance that can be stopped to free up capacity needed to run the
|
|
283
204
|
* capacity task.</p>
|
|
@@ -300,23 +221,6 @@ export interface BlockingInstance {
|
|
|
300
221
|
*/
|
|
301
222
|
AwsServiceName?: AWSServiceName | undefined;
|
|
302
223
|
}
|
|
303
|
-
/**
|
|
304
|
-
* @public
|
|
305
|
-
* @enum
|
|
306
|
-
*/
|
|
307
|
-
export declare const BlockingResourceType: {
|
|
308
|
-
readonly EC2_INSTANCE: "EC2_INSTANCE";
|
|
309
|
-
readonly LGW_ROUTE_TABLE: "LGW_ROUTE_TABLE";
|
|
310
|
-
readonly LGW_ROUTING_DOMAIN: "LGW_ROUTING_DOMAIN";
|
|
311
|
-
readonly LGW_VIRTUAL_INTERFACE_GROUP: "LGW_VIRTUAL_INTERFACE_GROUP";
|
|
312
|
-
readonly OUTPOST_ORDER_CANCELLABLE: "OUTPOST_ORDER_CANCELLABLE";
|
|
313
|
-
readonly OUTPOST_ORDER_INTERVENTION_REQUIRED: "OUTPOST_ORDER_INTERVENTION_REQUIRED";
|
|
314
|
-
readonly OUTPOST_RAM_SHARE: "OUTPOST_RAM_SHARE";
|
|
315
|
-
};
|
|
316
|
-
/**
|
|
317
|
-
* @public
|
|
318
|
-
*/
|
|
319
|
-
export type BlockingResourceType = (typeof BlockingResourceType)[keyof typeof BlockingResourceType];
|
|
320
224
|
/**
|
|
321
225
|
* @public
|
|
322
226
|
*/
|
|
@@ -337,80 +241,6 @@ export interface CancelCapacityTaskInput {
|
|
|
337
241
|
*/
|
|
338
242
|
export interface CancelCapacityTaskOutput {
|
|
339
243
|
}
|
|
340
|
-
/**
|
|
341
|
-
* @public
|
|
342
|
-
* @enum
|
|
343
|
-
*/
|
|
344
|
-
export declare const ResourceType: {
|
|
345
|
-
readonly ORDER: "ORDER";
|
|
346
|
-
readonly OUTPOST: "OUTPOST";
|
|
347
|
-
};
|
|
348
|
-
/**
|
|
349
|
-
* @public
|
|
350
|
-
*/
|
|
351
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
352
|
-
/**
|
|
353
|
-
* <p>Updating or deleting this resource can cause an inconsistent state.</p>
|
|
354
|
-
* @public
|
|
355
|
-
*/
|
|
356
|
-
export declare class ConflictException extends __BaseException {
|
|
357
|
-
readonly name: "ConflictException";
|
|
358
|
-
readonly $fault: "client";
|
|
359
|
-
Message?: string | undefined;
|
|
360
|
-
/**
|
|
361
|
-
* <p>The ID of the resource causing the conflict.</p>
|
|
362
|
-
* @public
|
|
363
|
-
*/
|
|
364
|
-
ResourceId?: string | undefined;
|
|
365
|
-
/**
|
|
366
|
-
* <p>The type of the resource causing the conflict.</p>
|
|
367
|
-
* @public
|
|
368
|
-
*/
|
|
369
|
-
ResourceType?: ResourceType | undefined;
|
|
370
|
-
/**
|
|
371
|
-
* @internal
|
|
372
|
-
*/
|
|
373
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
374
|
-
}
|
|
375
|
-
/**
|
|
376
|
-
* <p>An internal error has occurred.</p>
|
|
377
|
-
* @public
|
|
378
|
-
*/
|
|
379
|
-
export declare class InternalServerException extends __BaseException {
|
|
380
|
-
readonly name: "InternalServerException";
|
|
381
|
-
readonly $fault: "server";
|
|
382
|
-
Message?: string | undefined;
|
|
383
|
-
/**
|
|
384
|
-
* @internal
|
|
385
|
-
*/
|
|
386
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
387
|
-
}
|
|
388
|
-
/**
|
|
389
|
-
* <p>The specified request is not valid.</p>
|
|
390
|
-
* @public
|
|
391
|
-
*/
|
|
392
|
-
export declare class NotFoundException extends __BaseException {
|
|
393
|
-
readonly name: "NotFoundException";
|
|
394
|
-
readonly $fault: "client";
|
|
395
|
-
Message?: string | undefined;
|
|
396
|
-
/**
|
|
397
|
-
* @internal
|
|
398
|
-
*/
|
|
399
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
400
|
-
}
|
|
401
|
-
/**
|
|
402
|
-
* <p>A parameter is not valid.</p>
|
|
403
|
-
* @public
|
|
404
|
-
*/
|
|
405
|
-
export declare class ValidationException extends __BaseException {
|
|
406
|
-
readonly name: "ValidationException";
|
|
407
|
-
readonly $fault: "client";
|
|
408
|
-
Message?: string | undefined;
|
|
409
|
-
/**
|
|
410
|
-
* @internal
|
|
411
|
-
*/
|
|
412
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
413
|
-
}
|
|
414
244
|
/**
|
|
415
245
|
* @public
|
|
416
246
|
*/
|
|
@@ -426,21 +256,6 @@ export interface CancelOrderInput {
|
|
|
426
256
|
*/
|
|
427
257
|
export interface CancelOrderOutput {
|
|
428
258
|
}
|
|
429
|
-
/**
|
|
430
|
-
* @public
|
|
431
|
-
* @enum
|
|
432
|
-
*/
|
|
433
|
-
export declare const CapacityTaskFailureType: {
|
|
434
|
-
readonly BLOCKING_INSTANCES_NOT_EVACUATED: "BLOCKING_INSTANCES_NOT_EVACUATED";
|
|
435
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
436
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
437
|
-
readonly UNEXPECTED_ASSET_STATE: "UNEXPECTED_ASSET_STATE";
|
|
438
|
-
readonly UNSUPPORTED_CAPACITY_CONFIGURATION: "UNSUPPORTED_CAPACITY_CONFIGURATION";
|
|
439
|
-
};
|
|
440
|
-
/**
|
|
441
|
-
* @public
|
|
442
|
-
*/
|
|
443
|
-
export type CapacityTaskFailureType = (typeof CapacityTaskFailureType)[keyof typeof CapacityTaskFailureType];
|
|
444
259
|
/**
|
|
445
260
|
* <p>The capacity tasks that failed.</p>
|
|
446
261
|
* @public
|
|
@@ -457,23 +272,6 @@ export interface CapacityTaskFailure {
|
|
|
457
272
|
*/
|
|
458
273
|
Type?: CapacityTaskFailureType | undefined;
|
|
459
274
|
}
|
|
460
|
-
/**
|
|
461
|
-
* @public
|
|
462
|
-
* @enum
|
|
463
|
-
*/
|
|
464
|
-
export declare const CapacityTaskStatus: {
|
|
465
|
-
readonly CANCELLATION_IN_PROGRESS: "CANCELLATION_IN_PROGRESS";
|
|
466
|
-
readonly CANCELLED: "CANCELLED";
|
|
467
|
-
readonly COMPLETED: "COMPLETED";
|
|
468
|
-
readonly FAILED: "FAILED";
|
|
469
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
470
|
-
readonly REQUESTED: "REQUESTED";
|
|
471
|
-
readonly WAITING_FOR_EVACUATION: "WAITING_FOR_EVACUATION";
|
|
472
|
-
};
|
|
473
|
-
/**
|
|
474
|
-
* @public
|
|
475
|
-
*/
|
|
476
|
-
export type CapacityTaskStatus = (typeof CapacityTaskStatus)[keyof typeof CapacityTaskStatus];
|
|
477
275
|
/**
|
|
478
276
|
* <p>The summary of the capacity task.</p>
|
|
479
277
|
* @public
|
|
@@ -542,30 +340,6 @@ export interface EC2Capacity {
|
|
|
542
340
|
*/
|
|
543
341
|
Quantity?: string | undefined;
|
|
544
342
|
}
|
|
545
|
-
/**
|
|
546
|
-
* @public
|
|
547
|
-
* @enum
|
|
548
|
-
*/
|
|
549
|
-
export declare const CatalogItemStatus: {
|
|
550
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
551
|
-
readonly DISCONTINUED: "DISCONTINUED";
|
|
552
|
-
};
|
|
553
|
-
/**
|
|
554
|
-
* @public
|
|
555
|
-
*/
|
|
556
|
-
export type CatalogItemStatus = (typeof CatalogItemStatus)[keyof typeof CatalogItemStatus];
|
|
557
|
-
/**
|
|
558
|
-
* @public
|
|
559
|
-
* @enum
|
|
560
|
-
*/
|
|
561
|
-
export declare const SupportedStorageEnum: {
|
|
562
|
-
readonly EBS: "EBS";
|
|
563
|
-
readonly S3: "S3";
|
|
564
|
-
};
|
|
565
|
-
/**
|
|
566
|
-
* @public
|
|
567
|
-
*/
|
|
568
|
-
export type SupportedStorageEnum = (typeof SupportedStorageEnum)[keyof typeof SupportedStorageEnum];
|
|
569
343
|
/**
|
|
570
344
|
* <p> Information about a catalog item. </p>
|
|
571
345
|
* @public
|
|
@@ -607,18 +381,6 @@ export interface CatalogItem {
|
|
|
607
381
|
*/
|
|
608
382
|
SupportedStorage?: SupportedStorageEnum[] | undefined;
|
|
609
383
|
}
|
|
610
|
-
/**
|
|
611
|
-
* @public
|
|
612
|
-
* @enum
|
|
613
|
-
*/
|
|
614
|
-
export declare const CatalogItemClass: {
|
|
615
|
-
readonly RACK: "RACK";
|
|
616
|
-
readonly SERVER: "SERVER";
|
|
617
|
-
};
|
|
618
|
-
/**
|
|
619
|
-
* @public
|
|
620
|
-
*/
|
|
621
|
-
export type CatalogItemClass = (typeof CatalogItemClass)[keyof typeof CatalogItemClass];
|
|
622
384
|
/**
|
|
623
385
|
* <p> Information about a connection. </p>
|
|
624
386
|
* @public
|
|
@@ -671,32 +433,6 @@ export interface LineItemRequest {
|
|
|
671
433
|
*/
|
|
672
434
|
Quantity?: number | undefined;
|
|
673
435
|
}
|
|
674
|
-
/**
|
|
675
|
-
* @public
|
|
676
|
-
* @enum
|
|
677
|
-
*/
|
|
678
|
-
export declare const PaymentOption: {
|
|
679
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
680
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
681
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
682
|
-
};
|
|
683
|
-
/**
|
|
684
|
-
* @public
|
|
685
|
-
*/
|
|
686
|
-
export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
|
|
687
|
-
/**
|
|
688
|
-
* @public
|
|
689
|
-
* @enum
|
|
690
|
-
*/
|
|
691
|
-
export declare const PaymentTerm: {
|
|
692
|
-
readonly FIVE_YEARS: "FIVE_YEARS";
|
|
693
|
-
readonly ONE_YEAR: "ONE_YEAR";
|
|
694
|
-
readonly THREE_YEARS: "THREE_YEARS";
|
|
695
|
-
};
|
|
696
|
-
/**
|
|
697
|
-
* @public
|
|
698
|
-
*/
|
|
699
|
-
export type PaymentTerm = (typeof PaymentTerm)[keyof typeof PaymentTerm];
|
|
700
436
|
/**
|
|
701
437
|
* @public
|
|
702
438
|
*/
|
|
@@ -739,21 +475,6 @@ export interface LineItemAssetInformation {
|
|
|
739
475
|
*/
|
|
740
476
|
MacAddressList?: string[] | undefined;
|
|
741
477
|
}
|
|
742
|
-
/**
|
|
743
|
-
* @public
|
|
744
|
-
* @enum
|
|
745
|
-
*/
|
|
746
|
-
export declare const ShipmentCarrier: {
|
|
747
|
-
readonly DBS: "DBS";
|
|
748
|
-
readonly DHL: "DHL";
|
|
749
|
-
readonly EXPEDITORS: "EXPEDITORS";
|
|
750
|
-
readonly FEDEX: "FEDEX";
|
|
751
|
-
readonly UPS: "UPS";
|
|
752
|
-
};
|
|
753
|
-
/**
|
|
754
|
-
* @public
|
|
755
|
-
*/
|
|
756
|
-
export type ShipmentCarrier = (typeof ShipmentCarrier)[keyof typeof ShipmentCarrier];
|
|
757
478
|
/**
|
|
758
479
|
* <p> Information about a line item shipment. </p>
|
|
759
480
|
* @public
|
|
@@ -770,25 +491,6 @@ export interface ShipmentInformation {
|
|
|
770
491
|
*/
|
|
771
492
|
ShipmentCarrier?: ShipmentCarrier | undefined;
|
|
772
493
|
}
|
|
773
|
-
/**
|
|
774
|
-
* @public
|
|
775
|
-
* @enum
|
|
776
|
-
*/
|
|
777
|
-
export declare const LineItemStatus: {
|
|
778
|
-
readonly BUILDING: "BUILDING";
|
|
779
|
-
readonly CANCELLED: "CANCELLED";
|
|
780
|
-
readonly DELIVERED: "DELIVERED";
|
|
781
|
-
readonly ERROR: "ERROR";
|
|
782
|
-
readonly INSTALLED: "INSTALLED";
|
|
783
|
-
readonly INSTALLING: "INSTALLING";
|
|
784
|
-
readonly PREPARING: "PREPARING";
|
|
785
|
-
readonly REPLACED: "REPLACED";
|
|
786
|
-
readonly SHIPPED: "SHIPPED";
|
|
787
|
-
};
|
|
788
|
-
/**
|
|
789
|
-
* @public
|
|
790
|
-
*/
|
|
791
|
-
export type LineItemStatus = (typeof LineItemStatus)[keyof typeof LineItemStatus];
|
|
792
494
|
/**
|
|
793
495
|
* <p>Information about a line item.</p>
|
|
794
496
|
* @public
|
|
@@ -835,39 +537,6 @@ export interface LineItem {
|
|
|
835
537
|
*/
|
|
836
538
|
PreviousOrderId?: string | undefined;
|
|
837
539
|
}
|
|
838
|
-
/**
|
|
839
|
-
* @public
|
|
840
|
-
* @enum
|
|
841
|
-
*/
|
|
842
|
-
export declare const OrderType: {
|
|
843
|
-
readonly OUTPOST: "OUTPOST";
|
|
844
|
-
readonly REPLACEMENT: "REPLACEMENT";
|
|
845
|
-
};
|
|
846
|
-
/**
|
|
847
|
-
* @public
|
|
848
|
-
*/
|
|
849
|
-
export type OrderType = (typeof OrderType)[keyof typeof OrderType];
|
|
850
|
-
/**
|
|
851
|
-
* @public
|
|
852
|
-
* @enum
|
|
853
|
-
*/
|
|
854
|
-
export declare const OrderStatus: {
|
|
855
|
-
readonly CANCELLED: "CANCELLED";
|
|
856
|
-
readonly COMPLETED: "COMPLETED";
|
|
857
|
-
readonly DELIVERED: "DELIVERED";
|
|
858
|
-
readonly ERROR: "ERROR";
|
|
859
|
-
readonly FULFILLED: "FULFILLED";
|
|
860
|
-
readonly INSTALLING: "INSTALLING";
|
|
861
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
862
|
-
readonly PENDING: "PENDING";
|
|
863
|
-
readonly PREPARING: "PREPARING";
|
|
864
|
-
readonly PROCESSING: "PROCESSING";
|
|
865
|
-
readonly RECEIVED: "RECEIVED";
|
|
866
|
-
};
|
|
867
|
-
/**
|
|
868
|
-
* @public
|
|
869
|
-
*/
|
|
870
|
-
export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];
|
|
871
540
|
/**
|
|
872
541
|
* <p>Information about an order.</p>
|
|
873
542
|
* @public
|
|
@@ -960,31 +629,6 @@ export interface CreateOrderOutput {
|
|
|
960
629
|
*/
|
|
961
630
|
Order?: Order | undefined;
|
|
962
631
|
}
|
|
963
|
-
/**
|
|
964
|
-
* <p>You have exceeded a service quota.</p>
|
|
965
|
-
* @public
|
|
966
|
-
*/
|
|
967
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
968
|
-
readonly name: "ServiceQuotaExceededException";
|
|
969
|
-
readonly $fault: "client";
|
|
970
|
-
Message?: string | undefined;
|
|
971
|
-
/**
|
|
972
|
-
* @internal
|
|
973
|
-
*/
|
|
974
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
975
|
-
}
|
|
976
|
-
/**
|
|
977
|
-
* @public
|
|
978
|
-
* @enum
|
|
979
|
-
*/
|
|
980
|
-
export declare const SupportedHardwareType: {
|
|
981
|
-
readonly RACK: "RACK";
|
|
982
|
-
readonly SERVER: "SERVER";
|
|
983
|
-
};
|
|
984
|
-
/**
|
|
985
|
-
* @public
|
|
986
|
-
*/
|
|
987
|
-
export type SupportedHardwareType = (typeof SupportedHardwareType)[keyof typeof SupportedHardwareType];
|
|
988
632
|
/**
|
|
989
633
|
* @public
|
|
990
634
|
*/
|
|
@@ -1101,143 +745,6 @@ export interface CreateOutpostOutput {
|
|
|
1101
745
|
*/
|
|
1102
746
|
Outpost?: Outpost | undefined;
|
|
1103
747
|
}
|
|
1104
|
-
/**
|
|
1105
|
-
* @public
|
|
1106
|
-
* @enum
|
|
1107
|
-
*/
|
|
1108
|
-
export declare const FiberOpticCableType: {
|
|
1109
|
-
readonly MULTI_MODE: "MULTI_MODE";
|
|
1110
|
-
readonly SINGLE_MODE: "SINGLE_MODE";
|
|
1111
|
-
};
|
|
1112
|
-
/**
|
|
1113
|
-
* @public
|
|
1114
|
-
*/
|
|
1115
|
-
export type FiberOpticCableType = (typeof FiberOpticCableType)[keyof typeof FiberOpticCableType];
|
|
1116
|
-
/**
|
|
1117
|
-
* @public
|
|
1118
|
-
* @enum
|
|
1119
|
-
*/
|
|
1120
|
-
export declare const MaximumSupportedWeightLbs: {
|
|
1121
|
-
readonly MAX_1400_LBS: "MAX_1400_LBS";
|
|
1122
|
-
readonly MAX_1600_LBS: "MAX_1600_LBS";
|
|
1123
|
-
readonly MAX_1800_LBS: "MAX_1800_LBS";
|
|
1124
|
-
readonly MAX_2000_LBS: "MAX_2000_LBS";
|
|
1125
|
-
readonly NO_LIMIT: "NO_LIMIT";
|
|
1126
|
-
};
|
|
1127
|
-
/**
|
|
1128
|
-
* @public
|
|
1129
|
-
*/
|
|
1130
|
-
export type MaximumSupportedWeightLbs = (typeof MaximumSupportedWeightLbs)[keyof typeof MaximumSupportedWeightLbs];
|
|
1131
|
-
/**
|
|
1132
|
-
* @public
|
|
1133
|
-
* @enum
|
|
1134
|
-
*/
|
|
1135
|
-
export declare const OpticalStandard: {
|
|
1136
|
-
readonly OPTIC_1000BASE_LX: "OPTIC_1000BASE_LX";
|
|
1137
|
-
readonly OPTIC_1000BASE_SX: "OPTIC_1000BASE_SX";
|
|
1138
|
-
readonly OPTIC_100GBASE_CWDM4: "OPTIC_100GBASE_CWDM4";
|
|
1139
|
-
readonly OPTIC_100GBASE_LR4: "OPTIC_100GBASE_LR4";
|
|
1140
|
-
readonly OPTIC_100GBASE_SR4: "OPTIC_100GBASE_SR4";
|
|
1141
|
-
readonly OPTIC_100G_PSM4_MSA: "OPTIC_100G_PSM4_MSA";
|
|
1142
|
-
readonly OPTIC_10GBASE_IR: "OPTIC_10GBASE_IR";
|
|
1143
|
-
readonly OPTIC_10GBASE_LR: "OPTIC_10GBASE_LR";
|
|
1144
|
-
readonly OPTIC_10GBASE_SR: "OPTIC_10GBASE_SR";
|
|
1145
|
-
readonly OPTIC_40GBASE_ESR: "OPTIC_40GBASE_ESR";
|
|
1146
|
-
readonly OPTIC_40GBASE_IR4_LR4L: "OPTIC_40GBASE_IR4_LR4L";
|
|
1147
|
-
readonly OPTIC_40GBASE_LR4: "OPTIC_40GBASE_LR4";
|
|
1148
|
-
readonly OPTIC_40GBASE_SR: "OPTIC_40GBASE_SR";
|
|
1149
|
-
};
|
|
1150
|
-
/**
|
|
1151
|
-
* @public
|
|
1152
|
-
*/
|
|
1153
|
-
export type OpticalStandard = (typeof OpticalStandard)[keyof typeof OpticalStandard];
|
|
1154
|
-
/**
|
|
1155
|
-
* @public
|
|
1156
|
-
* @enum
|
|
1157
|
-
*/
|
|
1158
|
-
export declare const PowerConnector: {
|
|
1159
|
-
readonly AH530P7W: "AH530P7W";
|
|
1160
|
-
readonly AH532P6W: "AH532P6W";
|
|
1161
|
-
readonly CS8365C: "CS8365C";
|
|
1162
|
-
readonly IEC309: "IEC309";
|
|
1163
|
-
readonly L6_30P: "L6_30P";
|
|
1164
|
-
};
|
|
1165
|
-
/**
|
|
1166
|
-
* @public
|
|
1167
|
-
*/
|
|
1168
|
-
export type PowerConnector = (typeof PowerConnector)[keyof typeof PowerConnector];
|
|
1169
|
-
/**
|
|
1170
|
-
* @public
|
|
1171
|
-
* @enum
|
|
1172
|
-
*/
|
|
1173
|
-
export declare const PowerDrawKva: {
|
|
1174
|
-
readonly POWER_10_KVA: "POWER_10_KVA";
|
|
1175
|
-
readonly POWER_15_KVA: "POWER_15_KVA";
|
|
1176
|
-
readonly POWER_30_KVA: "POWER_30_KVA";
|
|
1177
|
-
readonly POWER_5_KVA: "POWER_5_KVA";
|
|
1178
|
-
};
|
|
1179
|
-
/**
|
|
1180
|
-
* @public
|
|
1181
|
-
*/
|
|
1182
|
-
export type PowerDrawKva = (typeof PowerDrawKva)[keyof typeof PowerDrawKva];
|
|
1183
|
-
/**
|
|
1184
|
-
* @public
|
|
1185
|
-
* @enum
|
|
1186
|
-
*/
|
|
1187
|
-
export declare const PowerFeedDrop: {
|
|
1188
|
-
readonly ABOVE_RACK: "ABOVE_RACK";
|
|
1189
|
-
readonly BELOW_RACK: "BELOW_RACK";
|
|
1190
|
-
};
|
|
1191
|
-
/**
|
|
1192
|
-
* @public
|
|
1193
|
-
*/
|
|
1194
|
-
export type PowerFeedDrop = (typeof PowerFeedDrop)[keyof typeof PowerFeedDrop];
|
|
1195
|
-
/**
|
|
1196
|
-
* @public
|
|
1197
|
-
* @enum
|
|
1198
|
-
*/
|
|
1199
|
-
export declare const PowerPhase: {
|
|
1200
|
-
readonly SINGLE_PHASE: "SINGLE_PHASE";
|
|
1201
|
-
readonly THREE_PHASE: "THREE_PHASE";
|
|
1202
|
-
};
|
|
1203
|
-
/**
|
|
1204
|
-
* @public
|
|
1205
|
-
*/
|
|
1206
|
-
export type PowerPhase = (typeof PowerPhase)[keyof typeof PowerPhase];
|
|
1207
|
-
/**
|
|
1208
|
-
* @public
|
|
1209
|
-
* @enum
|
|
1210
|
-
*/
|
|
1211
|
-
export declare const UplinkCount: {
|
|
1212
|
-
readonly UPLINK_COUNT_1: "UPLINK_COUNT_1";
|
|
1213
|
-
readonly UPLINK_COUNT_12: "UPLINK_COUNT_12";
|
|
1214
|
-
readonly UPLINK_COUNT_16: "UPLINK_COUNT_16";
|
|
1215
|
-
readonly UPLINK_COUNT_2: "UPLINK_COUNT_2";
|
|
1216
|
-
readonly UPLINK_COUNT_3: "UPLINK_COUNT_3";
|
|
1217
|
-
readonly UPLINK_COUNT_4: "UPLINK_COUNT_4";
|
|
1218
|
-
readonly UPLINK_COUNT_5: "UPLINK_COUNT_5";
|
|
1219
|
-
readonly UPLINK_COUNT_6: "UPLINK_COUNT_6";
|
|
1220
|
-
readonly UPLINK_COUNT_7: "UPLINK_COUNT_7";
|
|
1221
|
-
readonly UPLINK_COUNT_8: "UPLINK_COUNT_8";
|
|
1222
|
-
};
|
|
1223
|
-
/**
|
|
1224
|
-
* @public
|
|
1225
|
-
*/
|
|
1226
|
-
export type UplinkCount = (typeof UplinkCount)[keyof typeof UplinkCount];
|
|
1227
|
-
/**
|
|
1228
|
-
* @public
|
|
1229
|
-
* @enum
|
|
1230
|
-
*/
|
|
1231
|
-
export declare const UplinkGbps: {
|
|
1232
|
-
readonly UPLINK_100G: "UPLINK_100G";
|
|
1233
|
-
readonly UPLINK_10G: "UPLINK_10G";
|
|
1234
|
-
readonly UPLINK_1G: "UPLINK_1G";
|
|
1235
|
-
readonly UPLINK_40G: "UPLINK_40G";
|
|
1236
|
-
};
|
|
1237
|
-
/**
|
|
1238
|
-
* @public
|
|
1239
|
-
*/
|
|
1240
|
-
export type UplinkGbps = (typeof UplinkGbps)[keyof typeof UplinkGbps];
|
|
1241
748
|
/**
|
|
1242
749
|
* <p> Information about the physical and logistical details for racks at sites.
|
|
1243
750
|
* For more information
|
|
@@ -1419,19 +926,6 @@ export interface CreateSiteOutput {
|
|
|
1419
926
|
*/
|
|
1420
927
|
Site?: Site | undefined;
|
|
1421
928
|
}
|
|
1422
|
-
/**
|
|
1423
|
-
* @public
|
|
1424
|
-
* @enum
|
|
1425
|
-
*/
|
|
1426
|
-
export declare const DecommissionRequestStatus: {
|
|
1427
|
-
readonly BLOCKED: "BLOCKED";
|
|
1428
|
-
readonly REQUESTED: "REQUESTED";
|
|
1429
|
-
readonly SKIPPED: "SKIPPED";
|
|
1430
|
-
};
|
|
1431
|
-
/**
|
|
1432
|
-
* @public
|
|
1433
|
-
*/
|
|
1434
|
-
export type DecommissionRequestStatus = (typeof DecommissionRequestStatus)[keyof typeof DecommissionRequestStatus];
|
|
1435
929
|
/**
|
|
1436
930
|
* @public
|
|
1437
931
|
*/
|
|
@@ -1517,18 +1011,6 @@ export interface InstanceTypeCapacity {
|
|
|
1517
1011
|
*/
|
|
1518
1012
|
Count: number | undefined;
|
|
1519
1013
|
}
|
|
1520
|
-
/**
|
|
1521
|
-
* @public
|
|
1522
|
-
* @enum
|
|
1523
|
-
*/
|
|
1524
|
-
export declare const TaskActionOnBlockingInstances: {
|
|
1525
|
-
readonly FAIL_TASK: "FAIL_TASK";
|
|
1526
|
-
readonly WAIT_FOR_EVACUATION: "WAIT_FOR_EVACUATION";
|
|
1527
|
-
};
|
|
1528
|
-
/**
|
|
1529
|
-
* @public
|
|
1530
|
-
*/
|
|
1531
|
-
export type TaskActionOnBlockingInstances = (typeof TaskActionOnBlockingInstances)[keyof typeof TaskActionOnBlockingInstances];
|
|
1532
1014
|
/**
|
|
1533
1015
|
* @public
|
|
1534
1016
|
*/
|
|
@@ -1754,32 +1236,6 @@ export interface GetOutpostBillingInformationInput {
|
|
|
1754
1236
|
*/
|
|
1755
1237
|
OutpostIdentifier: string | undefined;
|
|
1756
1238
|
}
|
|
1757
|
-
/**
|
|
1758
|
-
* @public
|
|
1759
|
-
* @enum
|
|
1760
|
-
*/
|
|
1761
|
-
export declare const SubscriptionStatus: {
|
|
1762
|
-
readonly ACTIVE: "ACTIVE";
|
|
1763
|
-
readonly CANCELLED: "CANCELLED";
|
|
1764
|
-
readonly INACTIVE: "INACTIVE";
|
|
1765
|
-
};
|
|
1766
|
-
/**
|
|
1767
|
-
* @public
|
|
1768
|
-
*/
|
|
1769
|
-
export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
1770
|
-
/**
|
|
1771
|
-
* @public
|
|
1772
|
-
* @enum
|
|
1773
|
-
*/
|
|
1774
|
-
export declare const SubscriptionType: {
|
|
1775
|
-
readonly CAPACITY_INCREASE: "CAPACITY_INCREASE";
|
|
1776
|
-
readonly ORIGINAL: "ORIGINAL";
|
|
1777
|
-
readonly RENEWAL: "RENEWAL";
|
|
1778
|
-
};
|
|
1779
|
-
/**
|
|
1780
|
-
* @public
|
|
1781
|
-
*/
|
|
1782
|
-
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
1783
1239
|
/**
|
|
1784
1240
|
* <p>Provides information about your Amazon Web Services Outposts subscriptions.</p>
|
|
1785
1241
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { OutpostsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { OutpostsServiceException } from "./models/OutpostsServiceException";
|