@aws-sdk/client-outposts 3.378.0 → 3.382.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.
|
@@ -21,46 +21,57 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
21
21
|
*/
|
|
22
22
|
export interface Address {
|
|
23
23
|
/**
|
|
24
|
+
* @public
|
|
24
25
|
* <p>The name of the contact.</p>
|
|
25
26
|
*/
|
|
26
27
|
ContactName?: string;
|
|
27
28
|
/**
|
|
29
|
+
* @public
|
|
28
30
|
* <p>The phone number of the contact.</p>
|
|
29
31
|
*/
|
|
30
32
|
ContactPhoneNumber?: string;
|
|
31
33
|
/**
|
|
34
|
+
* @public
|
|
32
35
|
* <p>The first line of the address.</p>
|
|
33
36
|
*/
|
|
34
37
|
AddressLine1: string | undefined;
|
|
35
38
|
/**
|
|
39
|
+
* @public
|
|
36
40
|
* <p>The second line of the address.</p>
|
|
37
41
|
*/
|
|
38
42
|
AddressLine2?: string;
|
|
39
43
|
/**
|
|
44
|
+
* @public
|
|
40
45
|
* <p>The third line of the address.</p>
|
|
41
46
|
*/
|
|
42
47
|
AddressLine3?: string;
|
|
43
48
|
/**
|
|
49
|
+
* @public
|
|
44
50
|
* <p>The city for the address.</p>
|
|
45
51
|
*/
|
|
46
52
|
City: string | undefined;
|
|
47
53
|
/**
|
|
54
|
+
* @public
|
|
48
55
|
* <p>The state for the address.</p>
|
|
49
56
|
*/
|
|
50
57
|
StateOrRegion: string | undefined;
|
|
51
58
|
/**
|
|
59
|
+
* @public
|
|
52
60
|
* <p>The district or county for the address.</p>
|
|
53
61
|
*/
|
|
54
62
|
DistrictOrCounty?: string;
|
|
55
63
|
/**
|
|
64
|
+
* @public
|
|
56
65
|
* <p>The postal code for the address.</p>
|
|
57
66
|
*/
|
|
58
67
|
PostalCode: string | undefined;
|
|
59
68
|
/**
|
|
69
|
+
* @public
|
|
60
70
|
* <p>The ISO-3166 two-letter country code for the address.</p>
|
|
61
71
|
*/
|
|
62
72
|
CountryCode: string | undefined;
|
|
63
73
|
/**
|
|
74
|
+
* @public
|
|
64
75
|
* <p>The municipality for the address.</p>
|
|
65
76
|
*/
|
|
66
77
|
Municipality?: string;
|
|
@@ -85,6 +96,7 @@ export type AddressType = (typeof AddressType)[keyof typeof AddressType];
|
|
|
85
96
|
*/
|
|
86
97
|
export interface AssetLocation {
|
|
87
98
|
/**
|
|
99
|
+
* @public
|
|
88
100
|
* <p>
|
|
89
101
|
* The position of an asset in a rack measured in rack units.
|
|
90
102
|
* </p>
|
|
@@ -123,12 +135,14 @@ export type ComputeAssetState = (typeof ComputeAssetState)[keyof typeof ComputeA
|
|
|
123
135
|
*/
|
|
124
136
|
export interface ComputeAttributes {
|
|
125
137
|
/**
|
|
138
|
+
* @public
|
|
126
139
|
* <p>
|
|
127
140
|
* The host ID of the Dedicated Host on the asset.
|
|
128
141
|
* </p>
|
|
129
142
|
*/
|
|
130
143
|
HostId?: string;
|
|
131
144
|
/**
|
|
145
|
+
* @public
|
|
132
146
|
* <p>The state.</p>
|
|
133
147
|
* <ul>
|
|
134
148
|
* <li>
|
|
@@ -154,30 +168,35 @@ export interface ComputeAttributes {
|
|
|
154
168
|
*/
|
|
155
169
|
export interface AssetInfo {
|
|
156
170
|
/**
|
|
171
|
+
* @public
|
|
157
172
|
* <p>
|
|
158
173
|
* The ID of the asset.
|
|
159
174
|
* </p>
|
|
160
175
|
*/
|
|
161
176
|
AssetId?: string;
|
|
162
177
|
/**
|
|
178
|
+
* @public
|
|
163
179
|
* <p>
|
|
164
180
|
* The rack ID of the asset.
|
|
165
181
|
* </p>
|
|
166
182
|
*/
|
|
167
183
|
RackId?: string;
|
|
168
184
|
/**
|
|
185
|
+
* @public
|
|
169
186
|
* <p>
|
|
170
187
|
* The type of the asset.
|
|
171
188
|
* </p>
|
|
172
189
|
*/
|
|
173
190
|
AssetType?: AssetType | string;
|
|
174
191
|
/**
|
|
192
|
+
* @public
|
|
175
193
|
* <p>
|
|
176
194
|
* Information about compute hardware assets.
|
|
177
195
|
* </p>
|
|
178
196
|
*/
|
|
179
197
|
ComputeAttributes?: ComputeAttributes;
|
|
180
198
|
/**
|
|
199
|
+
* @public
|
|
181
200
|
* <p>
|
|
182
201
|
* The position of an asset in a rack.
|
|
183
202
|
* </p>
|
|
@@ -202,6 +221,7 @@ export type AssetState = (typeof AssetState)[keyof typeof AssetState];
|
|
|
202
221
|
*/
|
|
203
222
|
export interface CancelOrderInput {
|
|
204
223
|
/**
|
|
224
|
+
* @public
|
|
205
225
|
* <p>
|
|
206
226
|
* The ID of the order.
|
|
207
227
|
* </p>
|
|
@@ -234,10 +254,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
234
254
|
readonly $fault: "client";
|
|
235
255
|
Message?: string;
|
|
236
256
|
/**
|
|
257
|
+
* @public
|
|
237
258
|
* <p>The ID of the resource causing the conflict.</p>
|
|
238
259
|
*/
|
|
239
260
|
ResourceId?: string;
|
|
240
261
|
/**
|
|
262
|
+
* @public
|
|
241
263
|
* <p>The type of the resource causing the conflict.</p>
|
|
242
264
|
*/
|
|
243
265
|
ResourceType?: ResourceType | string;
|
|
@@ -291,18 +313,21 @@ export declare class ValidationException extends __BaseException {
|
|
|
291
313
|
*/
|
|
292
314
|
export interface EC2Capacity {
|
|
293
315
|
/**
|
|
316
|
+
* @public
|
|
294
317
|
* <p>
|
|
295
318
|
* The family of the EC2 capacity.
|
|
296
319
|
* </p>
|
|
297
320
|
*/
|
|
298
321
|
Family?: string;
|
|
299
322
|
/**
|
|
323
|
+
* @public
|
|
300
324
|
* <p>
|
|
301
325
|
* The maximum size of the EC2 capacity.
|
|
302
326
|
* </p>
|
|
303
327
|
*/
|
|
304
328
|
MaxSize?: string;
|
|
305
329
|
/**
|
|
330
|
+
* @public
|
|
306
331
|
* <p>
|
|
307
332
|
* The quantity of the EC2 capacity.
|
|
308
333
|
* </p>
|
|
@@ -339,34 +364,40 @@ export type SupportedStorageEnum = (typeof SupportedStorageEnum)[keyof typeof Su
|
|
|
339
364
|
*/
|
|
340
365
|
export interface CatalogItem {
|
|
341
366
|
/**
|
|
367
|
+
* @public
|
|
342
368
|
* <p>
|
|
343
369
|
* The ID of the catalog item.
|
|
344
370
|
* </p>
|
|
345
371
|
*/
|
|
346
372
|
CatalogItemId?: string;
|
|
347
373
|
/**
|
|
374
|
+
* @public
|
|
348
375
|
* <p>
|
|
349
376
|
* The status of a catalog item.
|
|
350
377
|
* </p>
|
|
351
378
|
*/
|
|
352
379
|
ItemStatus?: CatalogItemStatus | string;
|
|
353
380
|
/**
|
|
381
|
+
* @public
|
|
354
382
|
* <p>
|
|
355
383
|
* Information about the EC2 capacity of an item.
|
|
356
384
|
* </p>
|
|
357
385
|
*/
|
|
358
386
|
EC2Capacities?: EC2Capacity[];
|
|
359
387
|
/**
|
|
388
|
+
* @public
|
|
360
389
|
* <p>
|
|
361
390
|
* Information about the power draw of an item.
|
|
362
391
|
* </p>
|
|
363
392
|
*/
|
|
364
393
|
PowerKva?: number;
|
|
365
394
|
/**
|
|
395
|
+
* @public
|
|
366
396
|
* <p> The weight of the item in pounds. </p>
|
|
367
397
|
*/
|
|
368
398
|
WeightLbs?: number;
|
|
369
399
|
/**
|
|
400
|
+
* @public
|
|
370
401
|
* <p>
|
|
371
402
|
* The uplink speed this catalog item requires for the
|
|
372
403
|
* connection to the Region.
|
|
@@ -374,6 +405,7 @@ export interface CatalogItem {
|
|
|
374
405
|
*/
|
|
375
406
|
SupportedUplinkGbps?: number[];
|
|
376
407
|
/**
|
|
408
|
+
* @public
|
|
377
409
|
* <p>
|
|
378
410
|
* The supported storage options for the catalog item.
|
|
379
411
|
* </p>
|
|
@@ -400,36 +432,42 @@ export type CatalogItemClass = (typeof CatalogItemClass)[keyof typeof CatalogIte
|
|
|
400
432
|
*/
|
|
401
433
|
export interface ConnectionDetails {
|
|
402
434
|
/**
|
|
435
|
+
* @public
|
|
403
436
|
* <p>
|
|
404
437
|
* The public key of the client.
|
|
405
438
|
* </p>
|
|
406
439
|
*/
|
|
407
440
|
ClientPublicKey?: string;
|
|
408
441
|
/**
|
|
442
|
+
* @public
|
|
409
443
|
* <p>
|
|
410
444
|
* The public key of the server.
|
|
411
445
|
* </p>
|
|
412
446
|
*/
|
|
413
447
|
ServerPublicKey?: string;
|
|
414
448
|
/**
|
|
449
|
+
* @public
|
|
415
450
|
* <p>
|
|
416
451
|
* The endpoint for the server.
|
|
417
452
|
* </p>
|
|
418
453
|
*/
|
|
419
454
|
ServerEndpoint?: string;
|
|
420
455
|
/**
|
|
456
|
+
* @public
|
|
421
457
|
* <p>
|
|
422
458
|
* The client tunnel address.
|
|
423
459
|
* </p>
|
|
424
460
|
*/
|
|
425
461
|
ClientTunnelAddress?: string;
|
|
426
462
|
/**
|
|
463
|
+
* @public
|
|
427
464
|
* <p>
|
|
428
465
|
* The server tunnel address.
|
|
429
466
|
* </p>
|
|
430
467
|
*/
|
|
431
468
|
ServerTunnelAddress?: string;
|
|
432
469
|
/**
|
|
470
|
+
* @public
|
|
433
471
|
* <p>
|
|
434
472
|
* The allowed IP addresses.
|
|
435
473
|
* </p>
|
|
@@ -442,10 +480,12 @@ export interface ConnectionDetails {
|
|
|
442
480
|
*/
|
|
443
481
|
export interface LineItemRequest {
|
|
444
482
|
/**
|
|
483
|
+
* @public
|
|
445
484
|
* <p>The ID of the catalog item.</p>
|
|
446
485
|
*/
|
|
447
486
|
CatalogItemId?: string;
|
|
448
487
|
/**
|
|
488
|
+
* @public
|
|
449
489
|
* <p>The quantity of a line item request.</p>
|
|
450
490
|
*/
|
|
451
491
|
Quantity?: number;
|
|
@@ -480,20 +520,24 @@ export type PaymentTerm = (typeof PaymentTerm)[keyof typeof PaymentTerm];
|
|
|
480
520
|
*/
|
|
481
521
|
export interface CreateOrderInput {
|
|
482
522
|
/**
|
|
523
|
+
* @public
|
|
483
524
|
* <p>
|
|
484
525
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
485
526
|
* </p>
|
|
486
527
|
*/
|
|
487
528
|
OutpostIdentifier: string | undefined;
|
|
488
529
|
/**
|
|
530
|
+
* @public
|
|
489
531
|
* <p>The line items that make up the order.</p>
|
|
490
532
|
*/
|
|
491
533
|
LineItems: LineItemRequest[] | undefined;
|
|
492
534
|
/**
|
|
535
|
+
* @public
|
|
493
536
|
* <p>The payment option.</p>
|
|
494
537
|
*/
|
|
495
538
|
PaymentOption: PaymentOption | string | undefined;
|
|
496
539
|
/**
|
|
540
|
+
* @public
|
|
497
541
|
* <p>The payment terms.</p>
|
|
498
542
|
*/
|
|
499
543
|
PaymentTerm?: PaymentTerm | string;
|
|
@@ -506,12 +550,14 @@ export interface CreateOrderInput {
|
|
|
506
550
|
*/
|
|
507
551
|
export interface LineItemAssetInformation {
|
|
508
552
|
/**
|
|
553
|
+
* @public
|
|
509
554
|
* <p>
|
|
510
555
|
* The ID of the asset.
|
|
511
556
|
* </p>
|
|
512
557
|
*/
|
|
513
558
|
AssetId?: string;
|
|
514
559
|
/**
|
|
560
|
+
* @public
|
|
515
561
|
* <p>
|
|
516
562
|
* The MAC addresses of the asset.
|
|
517
563
|
* </p>
|
|
@@ -540,12 +586,14 @@ export type ShipmentCarrier = (typeof ShipmentCarrier)[keyof typeof ShipmentCarr
|
|
|
540
586
|
*/
|
|
541
587
|
export interface ShipmentInformation {
|
|
542
588
|
/**
|
|
589
|
+
* @public
|
|
543
590
|
* <p>
|
|
544
591
|
* The tracking number of the shipment.
|
|
545
592
|
* </p>
|
|
546
593
|
*/
|
|
547
594
|
ShipmentTrackingNumber?: string;
|
|
548
595
|
/**
|
|
596
|
+
* @public
|
|
549
597
|
* <p>
|
|
550
598
|
* The carrier of the shipment.
|
|
551
599
|
* </p>
|
|
@@ -577,40 +625,48 @@ export type LineItemStatus = (typeof LineItemStatus)[keyof typeof LineItemStatus
|
|
|
577
625
|
*/
|
|
578
626
|
export interface LineItem {
|
|
579
627
|
/**
|
|
628
|
+
* @public
|
|
580
629
|
* <p>
|
|
581
630
|
* The ID of the catalog item.
|
|
582
631
|
* </p>
|
|
583
632
|
*/
|
|
584
633
|
CatalogItemId?: string;
|
|
585
634
|
/**
|
|
635
|
+
* @public
|
|
586
636
|
* <p>The ID of the line item.</p>
|
|
587
637
|
*/
|
|
588
638
|
LineItemId?: string;
|
|
589
639
|
/**
|
|
640
|
+
* @public
|
|
590
641
|
* <p>The quantity of the line item.</p>
|
|
591
642
|
*/
|
|
592
643
|
Quantity?: number;
|
|
593
644
|
/**
|
|
645
|
+
* @public
|
|
594
646
|
* <p>The status of the line item.</p>
|
|
595
647
|
*/
|
|
596
648
|
Status?: LineItemStatus | string;
|
|
597
649
|
/**
|
|
650
|
+
* @public
|
|
598
651
|
* <p>
|
|
599
652
|
* Information about a line item shipment.
|
|
600
653
|
* </p>
|
|
601
654
|
*/
|
|
602
655
|
ShipmentInformation?: ShipmentInformation;
|
|
603
656
|
/**
|
|
657
|
+
* @public
|
|
604
658
|
* <p>
|
|
605
659
|
* Information about assets.
|
|
606
660
|
* </p>
|
|
607
661
|
*/
|
|
608
662
|
AssetInformationList?: LineItemAssetInformation[];
|
|
609
663
|
/**
|
|
664
|
+
* @public
|
|
610
665
|
* <p>The ID of the previous line item.</p>
|
|
611
666
|
*/
|
|
612
667
|
PreviousLineItemId?: string;
|
|
613
668
|
/**
|
|
669
|
+
* @public
|
|
614
670
|
* <p>The ID of the previous order item.</p>
|
|
615
671
|
*/
|
|
616
672
|
PreviousOrderId?: string;
|
|
@@ -653,16 +709,19 @@ export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];
|
|
|
653
709
|
*/
|
|
654
710
|
export interface Order {
|
|
655
711
|
/**
|
|
712
|
+
* @public
|
|
656
713
|
* <p>
|
|
657
714
|
* The ID of the Outpost in the order.
|
|
658
715
|
* </p>
|
|
659
716
|
*/
|
|
660
717
|
OutpostId?: string;
|
|
661
718
|
/**
|
|
719
|
+
* @public
|
|
662
720
|
* <p>The ID of the order.</p>
|
|
663
721
|
*/
|
|
664
722
|
OrderId?: string;
|
|
665
723
|
/**
|
|
724
|
+
* @public
|
|
666
725
|
* <p>The status of the order.</p>
|
|
667
726
|
* <ul>
|
|
668
727
|
* <li>
|
|
@@ -694,26 +753,32 @@ export interface Order {
|
|
|
694
753
|
*/
|
|
695
754
|
Status?: OrderStatus | string;
|
|
696
755
|
/**
|
|
756
|
+
* @public
|
|
697
757
|
* <p>The line items for the order</p>
|
|
698
758
|
*/
|
|
699
759
|
LineItems?: LineItem[];
|
|
700
760
|
/**
|
|
761
|
+
* @public
|
|
701
762
|
* <p>The payment option for the order.</p>
|
|
702
763
|
*/
|
|
703
764
|
PaymentOption?: PaymentOption | string;
|
|
704
765
|
/**
|
|
766
|
+
* @public
|
|
705
767
|
* <p>The submission date for the order.</p>
|
|
706
768
|
*/
|
|
707
769
|
OrderSubmissionDate?: Date;
|
|
708
770
|
/**
|
|
771
|
+
* @public
|
|
709
772
|
* <p>The fulfillment date of the order.</p>
|
|
710
773
|
*/
|
|
711
774
|
OrderFulfilledDate?: Date;
|
|
712
775
|
/**
|
|
776
|
+
* @public
|
|
713
777
|
* <p>The payment term.</p>
|
|
714
778
|
*/
|
|
715
779
|
PaymentTerm?: PaymentTerm | string;
|
|
716
780
|
/**
|
|
781
|
+
* @public
|
|
717
782
|
* <p>Type of order.</p>
|
|
718
783
|
*/
|
|
719
784
|
OrderType?: OrderType | string;
|
|
@@ -723,6 +788,7 @@ export interface Order {
|
|
|
723
788
|
*/
|
|
724
789
|
export interface CreateOrderOutput {
|
|
725
790
|
/**
|
|
791
|
+
* @public
|
|
726
792
|
* <p>Information about this order.</p>
|
|
727
793
|
*/
|
|
728
794
|
Order?: Order;
|
|
@@ -757,32 +823,39 @@ export type SupportedHardwareType = (typeof SupportedHardwareType)[keyof typeof
|
|
|
757
823
|
*/
|
|
758
824
|
export interface CreateOutpostInput {
|
|
759
825
|
/**
|
|
826
|
+
* @public
|
|
760
827
|
* <p>The name of the Outpost.</p>
|
|
761
828
|
*/
|
|
762
829
|
Name: string | undefined;
|
|
763
830
|
/**
|
|
831
|
+
* @public
|
|
764
832
|
* <p>The description of the Outpost.</p>
|
|
765
833
|
*/
|
|
766
834
|
Description?: string;
|
|
767
835
|
/**
|
|
836
|
+
* @public
|
|
768
837
|
* <p>
|
|
769
838
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
770
839
|
* </p>
|
|
771
840
|
*/
|
|
772
841
|
SiteId: string | undefined;
|
|
773
842
|
/**
|
|
843
|
+
* @public
|
|
774
844
|
* <p>The Availability Zone.</p>
|
|
775
845
|
*/
|
|
776
846
|
AvailabilityZone?: string;
|
|
777
847
|
/**
|
|
848
|
+
* @public
|
|
778
849
|
* <p>The ID of the Availability Zone.</p>
|
|
779
850
|
*/
|
|
780
851
|
AvailabilityZoneId?: string;
|
|
781
852
|
/**
|
|
853
|
+
* @public
|
|
782
854
|
* <p>The tags to apply to the Outpost.</p>
|
|
783
855
|
*/
|
|
784
856
|
Tags?: Record<string, string>;
|
|
785
857
|
/**
|
|
858
|
+
* @public
|
|
786
859
|
* <p>
|
|
787
860
|
* The type of hardware for this Outpost.
|
|
788
861
|
* </p>
|
|
@@ -795,52 +868,64 @@ export interface CreateOutpostInput {
|
|
|
795
868
|
*/
|
|
796
869
|
export interface Outpost {
|
|
797
870
|
/**
|
|
871
|
+
* @public
|
|
798
872
|
* <p>
|
|
799
873
|
* The ID of the Outpost.
|
|
800
874
|
* </p>
|
|
801
875
|
*/
|
|
802
876
|
OutpostId?: string;
|
|
803
877
|
/**
|
|
878
|
+
* @public
|
|
804
879
|
* <p>The Amazon Web Services account ID of the Outpost owner.</p>
|
|
805
880
|
*/
|
|
806
881
|
OwnerId?: string;
|
|
807
882
|
/**
|
|
883
|
+
* @public
|
|
808
884
|
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
809
885
|
*/
|
|
810
886
|
OutpostArn?: string;
|
|
811
887
|
/**
|
|
888
|
+
* @public
|
|
812
889
|
* <p>The ID of the site.</p>
|
|
813
890
|
*/
|
|
814
891
|
SiteId?: string;
|
|
815
892
|
/**
|
|
893
|
+
* @public
|
|
816
894
|
* <p>The name of the Outpost.</p>
|
|
817
895
|
*/
|
|
818
896
|
Name?: string;
|
|
819
897
|
/**
|
|
898
|
+
* @public
|
|
820
899
|
* <p>The description of the Outpost.</p>
|
|
821
900
|
*/
|
|
822
901
|
Description?: string;
|
|
823
902
|
/**
|
|
903
|
+
* @public
|
|
824
904
|
* <p>The life cycle status.</p>
|
|
825
905
|
*/
|
|
826
906
|
LifeCycleStatus?: string;
|
|
827
907
|
/**
|
|
908
|
+
* @public
|
|
828
909
|
* <p>The Availability Zone.</p>
|
|
829
910
|
*/
|
|
830
911
|
AvailabilityZone?: string;
|
|
831
912
|
/**
|
|
913
|
+
* @public
|
|
832
914
|
* <p>The ID of the Availability Zone.</p>
|
|
833
915
|
*/
|
|
834
916
|
AvailabilityZoneId?: string;
|
|
835
917
|
/**
|
|
918
|
+
* @public
|
|
836
919
|
* <p>The Outpost tags.</p>
|
|
837
920
|
*/
|
|
838
921
|
Tags?: Record<string, string>;
|
|
839
922
|
/**
|
|
923
|
+
* @public
|
|
840
924
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
841
925
|
*/
|
|
842
926
|
SiteArn?: string;
|
|
843
927
|
/**
|
|
928
|
+
* @public
|
|
844
929
|
* <p>
|
|
845
930
|
* The hardware type.
|
|
846
931
|
* </p>
|
|
@@ -852,6 +937,7 @@ export interface Outpost {
|
|
|
852
937
|
*/
|
|
853
938
|
export interface CreateOutpostOutput {
|
|
854
939
|
/**
|
|
940
|
+
* @public
|
|
855
941
|
* <p>Information about an Outpost.</p>
|
|
856
942
|
*/
|
|
857
943
|
Outpost?: Outpost;
|
|
@@ -1002,34 +1088,42 @@ export type UplinkGbps = (typeof UplinkGbps)[keyof typeof UplinkGbps];
|
|
|
1002
1088
|
*/
|
|
1003
1089
|
export interface RackPhysicalProperties {
|
|
1004
1090
|
/**
|
|
1091
|
+
* @public
|
|
1005
1092
|
* <p>The power draw available at the hardware placement position for the rack. </p>
|
|
1006
1093
|
*/
|
|
1007
1094
|
PowerDrawKva?: PowerDrawKva | string;
|
|
1008
1095
|
/**
|
|
1096
|
+
* @public
|
|
1009
1097
|
* <p>The power option that you can provide for hardware.</p>
|
|
1010
1098
|
*/
|
|
1011
1099
|
PowerPhase?: PowerPhase | string;
|
|
1012
1100
|
/**
|
|
1101
|
+
* @public
|
|
1013
1102
|
* <p>The power connector for the hardware. </p>
|
|
1014
1103
|
*/
|
|
1015
1104
|
PowerConnector?: PowerConnector | string;
|
|
1016
1105
|
/**
|
|
1106
|
+
* @public
|
|
1017
1107
|
* <p>The position of the power feed.</p>
|
|
1018
1108
|
*/
|
|
1019
1109
|
PowerFeedDrop?: PowerFeedDrop | string;
|
|
1020
1110
|
/**
|
|
1111
|
+
* @public
|
|
1021
1112
|
* <p>The uplink speed the rack supports for the connection to the Region. </p>
|
|
1022
1113
|
*/
|
|
1023
1114
|
UplinkGbps?: UplinkGbps | string;
|
|
1024
1115
|
/**
|
|
1116
|
+
* @public
|
|
1025
1117
|
* <p>The number of uplinks each Outpost network device.</p>
|
|
1026
1118
|
*/
|
|
1027
1119
|
UplinkCount?: UplinkCount | string;
|
|
1028
1120
|
/**
|
|
1121
|
+
* @public
|
|
1029
1122
|
* <p>The type of fiber used to attach the Outpost to the network. </p>
|
|
1030
1123
|
*/
|
|
1031
1124
|
FiberOpticCableType?: FiberOpticCableType | string;
|
|
1032
1125
|
/**
|
|
1126
|
+
* @public
|
|
1033
1127
|
* <p>The type of optical standard used to attach the Outpost to the network. This field is
|
|
1034
1128
|
* dependent on uplink speed, fiber type, and distance to the upstream device. For more information
|
|
1035
1129
|
* about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
|
|
@@ -1038,6 +1132,7 @@ export interface RackPhysicalProperties {
|
|
|
1038
1132
|
*/
|
|
1039
1133
|
OpticalStandard?: OpticalStandard | string;
|
|
1040
1134
|
/**
|
|
1135
|
+
* @public
|
|
1041
1136
|
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over 2000 lbs
|
|
1042
1137
|
* (907 kg). </p>
|
|
1043
1138
|
*/
|
|
@@ -1048,26 +1143,31 @@ export interface RackPhysicalProperties {
|
|
|
1048
1143
|
*/
|
|
1049
1144
|
export interface CreateSiteInput {
|
|
1050
1145
|
/**
|
|
1146
|
+
* @public
|
|
1051
1147
|
* <p>The name of the site.</p>
|
|
1052
1148
|
*/
|
|
1053
1149
|
Name: string | undefined;
|
|
1054
1150
|
/**
|
|
1151
|
+
* @public
|
|
1055
1152
|
* <p>The description of the site.</p>
|
|
1056
1153
|
*/
|
|
1057
1154
|
Description?: string;
|
|
1058
1155
|
/**
|
|
1156
|
+
* @public
|
|
1059
1157
|
* <p>Additional information that you provide about site access requirements, electrician
|
|
1060
1158
|
* scheduling, personal protective equipment, or regulation of equipment materials that could
|
|
1061
1159
|
* affect your installation process. </p>
|
|
1062
1160
|
*/
|
|
1063
1161
|
Notes?: string;
|
|
1064
1162
|
/**
|
|
1163
|
+
* @public
|
|
1065
1164
|
* <p>
|
|
1066
1165
|
* The tags to apply to a site.
|
|
1067
1166
|
* </p>
|
|
1068
1167
|
*/
|
|
1069
1168
|
Tags?: Record<string, string>;
|
|
1070
1169
|
/**
|
|
1170
|
+
* @public
|
|
1071
1171
|
* <p>
|
|
1072
1172
|
* The location to install and power on the hardware. This address might be
|
|
1073
1173
|
* different from the shipping address.
|
|
@@ -1075,6 +1175,7 @@ export interface CreateSiteInput {
|
|
|
1075
1175
|
*/
|
|
1076
1176
|
OperatingAddress?: Address;
|
|
1077
1177
|
/**
|
|
1178
|
+
* @public
|
|
1078
1179
|
* <p>
|
|
1079
1180
|
* The location to ship the hardware. This address might be different
|
|
1080
1181
|
* from the operating address.
|
|
@@ -1082,6 +1183,7 @@ export interface CreateSiteInput {
|
|
|
1082
1183
|
*/
|
|
1083
1184
|
ShippingAddress?: Address;
|
|
1084
1185
|
/**
|
|
1186
|
+
* @public
|
|
1085
1187
|
* <p> Information about the physical and logistical details for the rack at this site.
|
|
1086
1188
|
* For more information
|
|
1087
1189
|
* about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
|
|
@@ -1096,52 +1198,63 @@ export interface CreateSiteInput {
|
|
|
1096
1198
|
*/
|
|
1097
1199
|
export interface Site {
|
|
1098
1200
|
/**
|
|
1201
|
+
* @public
|
|
1099
1202
|
* <p>The ID of the site.</p>
|
|
1100
1203
|
*/
|
|
1101
1204
|
SiteId?: string;
|
|
1102
1205
|
/**
|
|
1206
|
+
* @public
|
|
1103
1207
|
* <p>The ID of the Amazon Web Services account.</p>
|
|
1104
1208
|
*/
|
|
1105
1209
|
AccountId?: string;
|
|
1106
1210
|
/**
|
|
1211
|
+
* @public
|
|
1107
1212
|
* <p>The name of the site.</p>
|
|
1108
1213
|
*/
|
|
1109
1214
|
Name?: string;
|
|
1110
1215
|
/**
|
|
1216
|
+
* @public
|
|
1111
1217
|
* <p>The description of the site.</p>
|
|
1112
1218
|
*/
|
|
1113
1219
|
Description?: string;
|
|
1114
1220
|
/**
|
|
1221
|
+
* @public
|
|
1115
1222
|
* <p>The site tags.</p>
|
|
1116
1223
|
*/
|
|
1117
1224
|
Tags?: Record<string, string>;
|
|
1118
1225
|
/**
|
|
1226
|
+
* @public
|
|
1119
1227
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
1120
1228
|
*/
|
|
1121
1229
|
SiteArn?: string;
|
|
1122
1230
|
/**
|
|
1231
|
+
* @public
|
|
1123
1232
|
* <p>
|
|
1124
1233
|
* Notes about a site.
|
|
1125
1234
|
* </p>
|
|
1126
1235
|
*/
|
|
1127
1236
|
Notes?: string;
|
|
1128
1237
|
/**
|
|
1238
|
+
* @public
|
|
1129
1239
|
* <p>
|
|
1130
1240
|
* The ISO-3166 two-letter country code where the hardware is installed and powered on.
|
|
1131
1241
|
* </p>
|
|
1132
1242
|
*/
|
|
1133
1243
|
OperatingAddressCountryCode?: string;
|
|
1134
1244
|
/**
|
|
1245
|
+
* @public
|
|
1135
1246
|
* <p> State or region where the hardware is installed and powered on. </p>
|
|
1136
1247
|
*/
|
|
1137
1248
|
OperatingAddressStateOrRegion?: string;
|
|
1138
1249
|
/**
|
|
1250
|
+
* @public
|
|
1139
1251
|
* <p>
|
|
1140
1252
|
* City where the hardware is installed and powered on.
|
|
1141
1253
|
* </p>
|
|
1142
1254
|
*/
|
|
1143
1255
|
OperatingAddressCity?: string;
|
|
1144
1256
|
/**
|
|
1257
|
+
* @public
|
|
1145
1258
|
* <p>
|
|
1146
1259
|
* Information about the physical and logistical details for a rack at the site.
|
|
1147
1260
|
* </p>
|
|
@@ -1153,6 +1266,7 @@ export interface Site {
|
|
|
1153
1266
|
*/
|
|
1154
1267
|
export interface CreateSiteOutput {
|
|
1155
1268
|
/**
|
|
1269
|
+
* @public
|
|
1156
1270
|
* <p>Information about a site.</p>
|
|
1157
1271
|
*/
|
|
1158
1272
|
Site?: Site;
|
|
@@ -1162,6 +1276,7 @@ export interface CreateSiteOutput {
|
|
|
1162
1276
|
*/
|
|
1163
1277
|
export interface DeleteOutpostInput {
|
|
1164
1278
|
/**
|
|
1279
|
+
* @public
|
|
1165
1280
|
* <p>
|
|
1166
1281
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1167
1282
|
* </p>
|
|
@@ -1178,6 +1293,7 @@ export interface DeleteOutpostOutput {
|
|
|
1178
1293
|
*/
|
|
1179
1294
|
export interface DeleteSiteInput {
|
|
1180
1295
|
/**
|
|
1296
|
+
* @public
|
|
1181
1297
|
* <p>
|
|
1182
1298
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1183
1299
|
* </p>
|
|
@@ -1194,6 +1310,7 @@ export interface DeleteSiteOutput {
|
|
|
1194
1310
|
*/
|
|
1195
1311
|
export interface GetCatalogItemInput {
|
|
1196
1312
|
/**
|
|
1313
|
+
* @public
|
|
1197
1314
|
* <p>The ID of the catalog item.</p>
|
|
1198
1315
|
*/
|
|
1199
1316
|
CatalogItemId: string | undefined;
|
|
@@ -1203,6 +1320,7 @@ export interface GetCatalogItemInput {
|
|
|
1203
1320
|
*/
|
|
1204
1321
|
export interface GetCatalogItemOutput {
|
|
1205
1322
|
/**
|
|
1323
|
+
* @public
|
|
1206
1324
|
* <p>Information about this catalog item.</p>
|
|
1207
1325
|
*/
|
|
1208
1326
|
CatalogItem?: CatalogItem;
|
|
@@ -1212,6 +1330,7 @@ export interface GetCatalogItemOutput {
|
|
|
1212
1330
|
*/
|
|
1213
1331
|
export interface GetConnectionRequest {
|
|
1214
1332
|
/**
|
|
1333
|
+
* @public
|
|
1215
1334
|
* <p>
|
|
1216
1335
|
* The ID of the connection.
|
|
1217
1336
|
* </p>
|
|
@@ -1223,12 +1342,14 @@ export interface GetConnectionRequest {
|
|
|
1223
1342
|
*/
|
|
1224
1343
|
export interface GetConnectionResponse {
|
|
1225
1344
|
/**
|
|
1345
|
+
* @public
|
|
1226
1346
|
* <p>
|
|
1227
1347
|
* The ID of the connection.
|
|
1228
1348
|
* </p>
|
|
1229
1349
|
*/
|
|
1230
1350
|
ConnectionId?: string;
|
|
1231
1351
|
/**
|
|
1352
|
+
* @public
|
|
1232
1353
|
* <p>
|
|
1233
1354
|
* Information about the connection.
|
|
1234
1355
|
* </p>
|
|
@@ -1240,6 +1361,7 @@ export interface GetConnectionResponse {
|
|
|
1240
1361
|
*/
|
|
1241
1362
|
export interface GetOrderInput {
|
|
1242
1363
|
/**
|
|
1364
|
+
* @public
|
|
1243
1365
|
* <p>The ID of the order.</p>
|
|
1244
1366
|
*/
|
|
1245
1367
|
OrderId: string | undefined;
|
|
@@ -1249,6 +1371,7 @@ export interface GetOrderInput {
|
|
|
1249
1371
|
*/
|
|
1250
1372
|
export interface GetOrderOutput {
|
|
1251
1373
|
/**
|
|
1374
|
+
* @public
|
|
1252
1375
|
* <p>Information about an order.</p>
|
|
1253
1376
|
*/
|
|
1254
1377
|
Order?: Order;
|
|
@@ -1258,6 +1381,7 @@ export interface GetOrderOutput {
|
|
|
1258
1381
|
*/
|
|
1259
1382
|
export interface GetOutpostInput {
|
|
1260
1383
|
/**
|
|
1384
|
+
* @public
|
|
1261
1385
|
* <p>
|
|
1262
1386
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1263
1387
|
* </p>
|
|
@@ -1269,6 +1393,7 @@ export interface GetOutpostInput {
|
|
|
1269
1393
|
*/
|
|
1270
1394
|
export interface GetOutpostOutput {
|
|
1271
1395
|
/**
|
|
1396
|
+
* @public
|
|
1272
1397
|
* <p>Information about an Outpost.</p>
|
|
1273
1398
|
*/
|
|
1274
1399
|
Outpost?: Outpost;
|
|
@@ -1278,16 +1403,19 @@ export interface GetOutpostOutput {
|
|
|
1278
1403
|
*/
|
|
1279
1404
|
export interface GetOutpostInstanceTypesInput {
|
|
1280
1405
|
/**
|
|
1406
|
+
* @public
|
|
1281
1407
|
* <p>
|
|
1282
1408
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1283
1409
|
* </p>
|
|
1284
1410
|
*/
|
|
1285
1411
|
OutpostId: string | undefined;
|
|
1286
1412
|
/**
|
|
1413
|
+
* @public
|
|
1287
1414
|
* <p>The pagination token.</p>
|
|
1288
1415
|
*/
|
|
1289
1416
|
NextToken?: string;
|
|
1290
1417
|
/**
|
|
1418
|
+
* @public
|
|
1291
1419
|
* <p>The maximum page size.</p>
|
|
1292
1420
|
*/
|
|
1293
1421
|
MaxResults?: number;
|
|
@@ -1298,6 +1426,7 @@ export interface GetOutpostInstanceTypesInput {
|
|
|
1298
1426
|
*/
|
|
1299
1427
|
export interface InstanceTypeItem {
|
|
1300
1428
|
/**
|
|
1429
|
+
* @public
|
|
1301
1430
|
* <p>The instance type.</p>
|
|
1302
1431
|
*/
|
|
1303
1432
|
InstanceType?: string;
|
|
@@ -1307,20 +1436,24 @@ export interface InstanceTypeItem {
|
|
|
1307
1436
|
*/
|
|
1308
1437
|
export interface GetOutpostInstanceTypesOutput {
|
|
1309
1438
|
/**
|
|
1439
|
+
* @public
|
|
1310
1440
|
* <p>Information about the instance types.</p>
|
|
1311
1441
|
*/
|
|
1312
1442
|
InstanceTypes?: InstanceTypeItem[];
|
|
1313
1443
|
/**
|
|
1444
|
+
* @public
|
|
1314
1445
|
* <p>The pagination token.</p>
|
|
1315
1446
|
*/
|
|
1316
1447
|
NextToken?: string;
|
|
1317
1448
|
/**
|
|
1449
|
+
* @public
|
|
1318
1450
|
* <p>
|
|
1319
1451
|
* The ID of the Outpost.
|
|
1320
1452
|
* </p>
|
|
1321
1453
|
*/
|
|
1322
1454
|
OutpostId?: string;
|
|
1323
1455
|
/**
|
|
1456
|
+
* @public
|
|
1324
1457
|
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
1325
1458
|
*/
|
|
1326
1459
|
OutpostArn?: string;
|
|
@@ -1330,6 +1463,7 @@ export interface GetOutpostInstanceTypesOutput {
|
|
|
1330
1463
|
*/
|
|
1331
1464
|
export interface GetSiteInput {
|
|
1332
1465
|
/**
|
|
1466
|
+
* @public
|
|
1333
1467
|
* <p>
|
|
1334
1468
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1335
1469
|
* </p>
|
|
@@ -1341,6 +1475,7 @@ export interface GetSiteInput {
|
|
|
1341
1475
|
*/
|
|
1342
1476
|
export interface GetSiteOutput {
|
|
1343
1477
|
/**
|
|
1478
|
+
* @public
|
|
1344
1479
|
* <p>Information about a site.</p>
|
|
1345
1480
|
*/
|
|
1346
1481
|
Site?: Site;
|
|
@@ -1350,12 +1485,14 @@ export interface GetSiteOutput {
|
|
|
1350
1485
|
*/
|
|
1351
1486
|
export interface GetSiteAddressInput {
|
|
1352
1487
|
/**
|
|
1488
|
+
* @public
|
|
1353
1489
|
* <p>
|
|
1354
1490
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1355
1491
|
* </p>
|
|
1356
1492
|
*/
|
|
1357
1493
|
SiteId: string | undefined;
|
|
1358
1494
|
/**
|
|
1495
|
+
* @public
|
|
1359
1496
|
* <p>The type of the address you request. </p>
|
|
1360
1497
|
*/
|
|
1361
1498
|
AddressType: AddressType | string | undefined;
|
|
@@ -1365,14 +1502,17 @@ export interface GetSiteAddressInput {
|
|
|
1365
1502
|
*/
|
|
1366
1503
|
export interface GetSiteAddressOutput {
|
|
1367
1504
|
/**
|
|
1505
|
+
* @public
|
|
1368
1506
|
* <p>The ID of the site.</p>
|
|
1369
1507
|
*/
|
|
1370
1508
|
SiteId?: string;
|
|
1371
1509
|
/**
|
|
1510
|
+
* @public
|
|
1372
1511
|
* <p>The type of the address you receive. </p>
|
|
1373
1512
|
*/
|
|
1374
1513
|
AddressType?: AddressType | string;
|
|
1375
1514
|
/**
|
|
1515
|
+
* @public
|
|
1376
1516
|
* <p>
|
|
1377
1517
|
* Information about the address.
|
|
1378
1518
|
* </p>
|
|
@@ -1384,24 +1524,29 @@ export interface GetSiteAddressOutput {
|
|
|
1384
1524
|
*/
|
|
1385
1525
|
export interface ListAssetsInput {
|
|
1386
1526
|
/**
|
|
1527
|
+
* @public
|
|
1387
1528
|
* <p>
|
|
1388
1529
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1389
1530
|
* </p>
|
|
1390
1531
|
*/
|
|
1391
1532
|
OutpostIdentifier: string | undefined;
|
|
1392
1533
|
/**
|
|
1534
|
+
* @public
|
|
1393
1535
|
* <p>Filters the results by the host ID of a Dedicated Host.</p>
|
|
1394
1536
|
*/
|
|
1395
1537
|
HostIdFilter?: string[];
|
|
1396
1538
|
/**
|
|
1539
|
+
* @public
|
|
1397
1540
|
* <p>The maximum page size.</p>
|
|
1398
1541
|
*/
|
|
1399
1542
|
MaxResults?: number;
|
|
1400
1543
|
/**
|
|
1544
|
+
* @public
|
|
1401
1545
|
* <p>The pagination token.</p>
|
|
1402
1546
|
*/
|
|
1403
1547
|
NextToken?: string;
|
|
1404
1548
|
/**
|
|
1549
|
+
* @public
|
|
1405
1550
|
* <p>Filters the results by state.</p>
|
|
1406
1551
|
*/
|
|
1407
1552
|
StatusFilter?: (AssetState | string)[];
|
|
@@ -1411,10 +1556,12 @@ export interface ListAssetsInput {
|
|
|
1411
1556
|
*/
|
|
1412
1557
|
export interface ListAssetsOutput {
|
|
1413
1558
|
/**
|
|
1559
|
+
* @public
|
|
1414
1560
|
* <p>Information about the hardware assets.</p>
|
|
1415
1561
|
*/
|
|
1416
1562
|
Assets?: AssetInfo[];
|
|
1417
1563
|
/**
|
|
1564
|
+
* @public
|
|
1418
1565
|
* <p>The pagination token.</p>
|
|
1419
1566
|
*/
|
|
1420
1567
|
NextToken?: string;
|
|
@@ -1424,22 +1571,27 @@ export interface ListAssetsOutput {
|
|
|
1424
1571
|
*/
|
|
1425
1572
|
export interface ListCatalogItemsInput {
|
|
1426
1573
|
/**
|
|
1574
|
+
* @public
|
|
1427
1575
|
* <p>The pagination token.</p>
|
|
1428
1576
|
*/
|
|
1429
1577
|
NextToken?: string;
|
|
1430
1578
|
/**
|
|
1579
|
+
* @public
|
|
1431
1580
|
* <p>The maximum page size.</p>
|
|
1432
1581
|
*/
|
|
1433
1582
|
MaxResults?: number;
|
|
1434
1583
|
/**
|
|
1584
|
+
* @public
|
|
1435
1585
|
* <p>Filters the results by item class.</p>
|
|
1436
1586
|
*/
|
|
1437
1587
|
ItemClassFilter?: (CatalogItemClass | string)[];
|
|
1438
1588
|
/**
|
|
1589
|
+
* @public
|
|
1439
1590
|
* <p>Filters the results by storage option.</p>
|
|
1440
1591
|
*/
|
|
1441
1592
|
SupportedStorageFilter?: (SupportedStorageEnum | string)[];
|
|
1442
1593
|
/**
|
|
1594
|
+
* @public
|
|
1443
1595
|
* <p>Filters the results by EC2 family (for example, M5).</p>
|
|
1444
1596
|
*/
|
|
1445
1597
|
EC2FamilyFilter?: string[];
|
|
@@ -1449,10 +1601,12 @@ export interface ListCatalogItemsInput {
|
|
|
1449
1601
|
*/
|
|
1450
1602
|
export interface ListCatalogItemsOutput {
|
|
1451
1603
|
/**
|
|
1604
|
+
* @public
|
|
1452
1605
|
* <p>Information about the catalog items.</p>
|
|
1453
1606
|
*/
|
|
1454
1607
|
CatalogItems?: CatalogItem[];
|
|
1455
1608
|
/**
|
|
1609
|
+
* @public
|
|
1456
1610
|
* <p>The pagination token.</p>
|
|
1457
1611
|
*/
|
|
1458
1612
|
NextToken?: string;
|
|
@@ -1462,16 +1616,19 @@ export interface ListCatalogItemsOutput {
|
|
|
1462
1616
|
*/
|
|
1463
1617
|
export interface ListOrdersInput {
|
|
1464
1618
|
/**
|
|
1619
|
+
* @public
|
|
1465
1620
|
* <p>
|
|
1466
1621
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1467
1622
|
* </p>
|
|
1468
1623
|
*/
|
|
1469
1624
|
OutpostIdentifierFilter?: string;
|
|
1470
1625
|
/**
|
|
1626
|
+
* @public
|
|
1471
1627
|
* <p>The pagination token.</p>
|
|
1472
1628
|
*/
|
|
1473
1629
|
NextToken?: string;
|
|
1474
1630
|
/**
|
|
1631
|
+
* @public
|
|
1475
1632
|
* <p>The maximum page size.</p>
|
|
1476
1633
|
*/
|
|
1477
1634
|
MaxResults?: number;
|
|
@@ -1484,24 +1641,28 @@ export interface ListOrdersInput {
|
|
|
1484
1641
|
*/
|
|
1485
1642
|
export interface OrderSummary {
|
|
1486
1643
|
/**
|
|
1644
|
+
* @public
|
|
1487
1645
|
* <p>
|
|
1488
1646
|
* The ID of the Outpost.
|
|
1489
1647
|
* </p>
|
|
1490
1648
|
*/
|
|
1491
1649
|
OutpostId?: string;
|
|
1492
1650
|
/**
|
|
1651
|
+
* @public
|
|
1493
1652
|
* <p>
|
|
1494
1653
|
* The ID of the order.
|
|
1495
1654
|
* </p>
|
|
1496
1655
|
*/
|
|
1497
1656
|
OrderId?: string;
|
|
1498
1657
|
/**
|
|
1658
|
+
* @public
|
|
1499
1659
|
* <p>
|
|
1500
1660
|
* The type of order.
|
|
1501
1661
|
* </p>
|
|
1502
1662
|
*/
|
|
1503
1663
|
OrderType?: OrderType | string;
|
|
1504
1664
|
/**
|
|
1665
|
+
* @public
|
|
1505
1666
|
* <p>The status of the order.</p>
|
|
1506
1667
|
* <ul>
|
|
1507
1668
|
* <li>
|
|
@@ -1533,18 +1694,21 @@ export interface OrderSummary {
|
|
|
1533
1694
|
*/
|
|
1534
1695
|
Status?: OrderStatus | string;
|
|
1535
1696
|
/**
|
|
1697
|
+
* @public
|
|
1536
1698
|
* <p>
|
|
1537
1699
|
* The status of all line items in the order.
|
|
1538
1700
|
* </p>
|
|
1539
1701
|
*/
|
|
1540
1702
|
LineItemCountsByStatus?: Record<string, number>;
|
|
1541
1703
|
/**
|
|
1704
|
+
* @public
|
|
1542
1705
|
* <p>
|
|
1543
1706
|
* The submission date for the order.
|
|
1544
1707
|
* </p>
|
|
1545
1708
|
*/
|
|
1546
1709
|
OrderSubmissionDate?: Date;
|
|
1547
1710
|
/**
|
|
1711
|
+
* @public
|
|
1548
1712
|
* <p>
|
|
1549
1713
|
* The fulfilment date for the order.
|
|
1550
1714
|
* </p>
|
|
@@ -1556,12 +1720,14 @@ export interface OrderSummary {
|
|
|
1556
1720
|
*/
|
|
1557
1721
|
export interface ListOrdersOutput {
|
|
1558
1722
|
/**
|
|
1723
|
+
* @public
|
|
1559
1724
|
* <p>
|
|
1560
1725
|
* Information about the orders.
|
|
1561
1726
|
* </p>
|
|
1562
1727
|
*/
|
|
1563
1728
|
Orders?: OrderSummary[];
|
|
1564
1729
|
/**
|
|
1730
|
+
* @public
|
|
1565
1731
|
* <p>The pagination token.</p>
|
|
1566
1732
|
*/
|
|
1567
1733
|
NextToken?: string;
|
|
@@ -1571,22 +1737,27 @@ export interface ListOrdersOutput {
|
|
|
1571
1737
|
*/
|
|
1572
1738
|
export interface ListOutpostsInput {
|
|
1573
1739
|
/**
|
|
1740
|
+
* @public
|
|
1574
1741
|
* <p>The pagination token.</p>
|
|
1575
1742
|
*/
|
|
1576
1743
|
NextToken?: string;
|
|
1577
1744
|
/**
|
|
1745
|
+
* @public
|
|
1578
1746
|
* <p>The maximum page size.</p>
|
|
1579
1747
|
*/
|
|
1580
1748
|
MaxResults?: number;
|
|
1581
1749
|
/**
|
|
1750
|
+
* @public
|
|
1582
1751
|
* <p>Filters the results by the lifecycle status.</p>
|
|
1583
1752
|
*/
|
|
1584
1753
|
LifeCycleStatusFilter?: string[];
|
|
1585
1754
|
/**
|
|
1755
|
+
* @public
|
|
1586
1756
|
* <p>Filters the results by Availability Zone (for example, <code>us-east-1a</code>).</p>
|
|
1587
1757
|
*/
|
|
1588
1758
|
AvailabilityZoneFilter?: string[];
|
|
1589
1759
|
/**
|
|
1760
|
+
* @public
|
|
1590
1761
|
* <p>Filters the results by AZ ID (for example, <code>use1-az1</code>).</p>
|
|
1591
1762
|
*/
|
|
1592
1763
|
AvailabilityZoneIdFilter?: string[];
|
|
@@ -1596,10 +1767,12 @@ export interface ListOutpostsInput {
|
|
|
1596
1767
|
*/
|
|
1597
1768
|
export interface ListOutpostsOutput {
|
|
1598
1769
|
/**
|
|
1770
|
+
* @public
|
|
1599
1771
|
* <p>Information about the Outposts.</p>
|
|
1600
1772
|
*/
|
|
1601
1773
|
Outposts?: Outpost[];
|
|
1602
1774
|
/**
|
|
1775
|
+
* @public
|
|
1603
1776
|
* <p>The pagination token.</p>
|
|
1604
1777
|
*/
|
|
1605
1778
|
NextToken?: string;
|
|
@@ -1609,22 +1782,27 @@ export interface ListOutpostsOutput {
|
|
|
1609
1782
|
*/
|
|
1610
1783
|
export interface ListSitesInput {
|
|
1611
1784
|
/**
|
|
1785
|
+
* @public
|
|
1612
1786
|
* <p>The pagination token.</p>
|
|
1613
1787
|
*/
|
|
1614
1788
|
NextToken?: string;
|
|
1615
1789
|
/**
|
|
1790
|
+
* @public
|
|
1616
1791
|
* <p>The maximum page size.</p>
|
|
1617
1792
|
*/
|
|
1618
1793
|
MaxResults?: number;
|
|
1619
1794
|
/**
|
|
1795
|
+
* @public
|
|
1620
1796
|
* <p>Filters the results by country code.</p>
|
|
1621
1797
|
*/
|
|
1622
1798
|
OperatingAddressCountryCodeFilter?: string[];
|
|
1623
1799
|
/**
|
|
1800
|
+
* @public
|
|
1624
1801
|
* <p>Filters the results by state or region.</p>
|
|
1625
1802
|
*/
|
|
1626
1803
|
OperatingAddressStateOrRegionFilter?: string[];
|
|
1627
1804
|
/**
|
|
1805
|
+
* @public
|
|
1628
1806
|
* <p>Filters the results by city.</p>
|
|
1629
1807
|
*/
|
|
1630
1808
|
OperatingAddressCityFilter?: string[];
|
|
@@ -1634,10 +1812,12 @@ export interface ListSitesInput {
|
|
|
1634
1812
|
*/
|
|
1635
1813
|
export interface ListSitesOutput {
|
|
1636
1814
|
/**
|
|
1815
|
+
* @public
|
|
1637
1816
|
* <p>Information about the sites.</p>
|
|
1638
1817
|
*/
|
|
1639
1818
|
Sites?: Site[];
|
|
1640
1819
|
/**
|
|
1820
|
+
* @public
|
|
1641
1821
|
* <p>The pagination token.</p>
|
|
1642
1822
|
*/
|
|
1643
1823
|
NextToken?: string;
|
|
@@ -1647,6 +1827,7 @@ export interface ListSitesOutput {
|
|
|
1647
1827
|
*/
|
|
1648
1828
|
export interface ListTagsForResourceRequest {
|
|
1649
1829
|
/**
|
|
1830
|
+
* @public
|
|
1650
1831
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1651
1832
|
*/
|
|
1652
1833
|
ResourceArn: string | undefined;
|
|
@@ -1656,6 +1837,7 @@ export interface ListTagsForResourceRequest {
|
|
|
1656
1837
|
*/
|
|
1657
1838
|
export interface ListTagsForResourceResponse {
|
|
1658
1839
|
/**
|
|
1840
|
+
* @public
|
|
1659
1841
|
* <p>The resource tags.</p>
|
|
1660
1842
|
*/
|
|
1661
1843
|
Tags?: Record<string, string>;
|
|
@@ -1665,24 +1847,28 @@ export interface ListTagsForResourceResponse {
|
|
|
1665
1847
|
*/
|
|
1666
1848
|
export interface StartConnectionRequest {
|
|
1667
1849
|
/**
|
|
1850
|
+
* @public
|
|
1668
1851
|
* <p>
|
|
1669
1852
|
* The serial number of the dongle.
|
|
1670
1853
|
* </p>
|
|
1671
1854
|
*/
|
|
1672
1855
|
DeviceSerialNumber: string | undefined;
|
|
1673
1856
|
/**
|
|
1857
|
+
* @public
|
|
1674
1858
|
* <p>
|
|
1675
1859
|
* The ID of the Outpost server.
|
|
1676
1860
|
* </p>
|
|
1677
1861
|
*/
|
|
1678
1862
|
AssetId: string | undefined;
|
|
1679
1863
|
/**
|
|
1864
|
+
* @public
|
|
1680
1865
|
* <p>
|
|
1681
1866
|
* The public key of the client.
|
|
1682
1867
|
* </p>
|
|
1683
1868
|
*/
|
|
1684
1869
|
ClientPublicKey: string | undefined;
|
|
1685
1870
|
/**
|
|
1871
|
+
* @public
|
|
1686
1872
|
* <p>
|
|
1687
1873
|
* The device index of the network interface on the Outpost server.
|
|
1688
1874
|
* </p>
|
|
@@ -1694,12 +1880,14 @@ export interface StartConnectionRequest {
|
|
|
1694
1880
|
*/
|
|
1695
1881
|
export interface StartConnectionResponse {
|
|
1696
1882
|
/**
|
|
1883
|
+
* @public
|
|
1697
1884
|
* <p>
|
|
1698
1885
|
* The ID of the connection.
|
|
1699
1886
|
* </p>
|
|
1700
1887
|
*/
|
|
1701
1888
|
ConnectionId?: string;
|
|
1702
1889
|
/**
|
|
1890
|
+
* @public
|
|
1703
1891
|
* <p>
|
|
1704
1892
|
* The underlay IP address.
|
|
1705
1893
|
* </p>
|
|
@@ -1711,10 +1899,12 @@ export interface StartConnectionResponse {
|
|
|
1711
1899
|
*/
|
|
1712
1900
|
export interface TagResourceRequest {
|
|
1713
1901
|
/**
|
|
1902
|
+
* @public
|
|
1714
1903
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1715
1904
|
*/
|
|
1716
1905
|
ResourceArn: string | undefined;
|
|
1717
1906
|
/**
|
|
1907
|
+
* @public
|
|
1718
1908
|
* <p>The tags to add to the resource.</p>
|
|
1719
1909
|
*/
|
|
1720
1910
|
Tags: Record<string, string> | undefined;
|
|
@@ -1729,10 +1919,12 @@ export interface TagResourceResponse {
|
|
|
1729
1919
|
*/
|
|
1730
1920
|
export interface UntagResourceRequest {
|
|
1731
1921
|
/**
|
|
1922
|
+
* @public
|
|
1732
1923
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1733
1924
|
*/
|
|
1734
1925
|
ResourceArn: string | undefined;
|
|
1735
1926
|
/**
|
|
1927
|
+
* @public
|
|
1736
1928
|
* <p>The tag keys.</p>
|
|
1737
1929
|
*/
|
|
1738
1930
|
TagKeys: string[] | undefined;
|
|
@@ -1747,20 +1939,24 @@ export interface UntagResourceResponse {
|
|
|
1747
1939
|
*/
|
|
1748
1940
|
export interface UpdateOutpostInput {
|
|
1749
1941
|
/**
|
|
1942
|
+
* @public
|
|
1750
1943
|
* <p>
|
|
1751
1944
|
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1752
1945
|
* </p>
|
|
1753
1946
|
*/
|
|
1754
1947
|
OutpostId: string | undefined;
|
|
1755
1948
|
/**
|
|
1949
|
+
* @public
|
|
1756
1950
|
* <p>The name of the Outpost.</p>
|
|
1757
1951
|
*/
|
|
1758
1952
|
Name?: string;
|
|
1759
1953
|
/**
|
|
1954
|
+
* @public
|
|
1760
1955
|
* <p>The description of the Outpost.</p>
|
|
1761
1956
|
*/
|
|
1762
1957
|
Description?: string;
|
|
1763
1958
|
/**
|
|
1959
|
+
* @public
|
|
1764
1960
|
* <p>
|
|
1765
1961
|
* The type of hardware for this Outpost.
|
|
1766
1962
|
* </p>
|
|
@@ -1772,6 +1968,7 @@ export interface UpdateOutpostInput {
|
|
|
1772
1968
|
*/
|
|
1773
1969
|
export interface UpdateOutpostOutput {
|
|
1774
1970
|
/**
|
|
1971
|
+
* @public
|
|
1775
1972
|
* <p>Information about an Outpost.</p>
|
|
1776
1973
|
*/
|
|
1777
1974
|
Outpost?: Outpost;
|
|
@@ -1781,20 +1978,24 @@ export interface UpdateOutpostOutput {
|
|
|
1781
1978
|
*/
|
|
1782
1979
|
export interface UpdateSiteInput {
|
|
1783
1980
|
/**
|
|
1981
|
+
* @public
|
|
1784
1982
|
* <p>
|
|
1785
1983
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1786
1984
|
* </p>
|
|
1787
1985
|
*/
|
|
1788
1986
|
SiteId: string | undefined;
|
|
1789
1987
|
/**
|
|
1988
|
+
* @public
|
|
1790
1989
|
* <p>The name of the site.</p>
|
|
1791
1990
|
*/
|
|
1792
1991
|
Name?: string;
|
|
1793
1992
|
/**
|
|
1993
|
+
* @public
|
|
1794
1994
|
* <p>The description of the site.</p>
|
|
1795
1995
|
*/
|
|
1796
1996
|
Description?: string;
|
|
1797
1997
|
/**
|
|
1998
|
+
* @public
|
|
1798
1999
|
* <p>Notes about a site.</p>
|
|
1799
2000
|
*/
|
|
1800
2001
|
Notes?: string;
|
|
@@ -1804,6 +2005,7 @@ export interface UpdateSiteInput {
|
|
|
1804
2005
|
*/
|
|
1805
2006
|
export interface UpdateSiteOutput {
|
|
1806
2007
|
/**
|
|
2008
|
+
* @public
|
|
1807
2009
|
* <p>Information about a site.</p>
|
|
1808
2010
|
*/
|
|
1809
2011
|
Site?: Site;
|
|
@@ -1813,18 +2015,21 @@ export interface UpdateSiteOutput {
|
|
|
1813
2015
|
*/
|
|
1814
2016
|
export interface UpdateSiteAddressInput {
|
|
1815
2017
|
/**
|
|
2018
|
+
* @public
|
|
1816
2019
|
* <p>
|
|
1817
2020
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1818
2021
|
* </p>
|
|
1819
2022
|
*/
|
|
1820
2023
|
SiteId: string | undefined;
|
|
1821
2024
|
/**
|
|
2025
|
+
* @public
|
|
1822
2026
|
* <p>
|
|
1823
2027
|
* The type of the address.
|
|
1824
2028
|
* </p>
|
|
1825
2029
|
*/
|
|
1826
2030
|
AddressType: AddressType | string | undefined;
|
|
1827
2031
|
/**
|
|
2032
|
+
* @public
|
|
1828
2033
|
* <p>
|
|
1829
2034
|
* The address for the site.
|
|
1830
2035
|
* </p>
|
|
@@ -1836,12 +2041,14 @@ export interface UpdateSiteAddressInput {
|
|
|
1836
2041
|
*/
|
|
1837
2042
|
export interface UpdateSiteAddressOutput {
|
|
1838
2043
|
/**
|
|
2044
|
+
* @public
|
|
1839
2045
|
* <p>
|
|
1840
2046
|
* The type of the address.
|
|
1841
2047
|
* </p>
|
|
1842
2048
|
*/
|
|
1843
2049
|
AddressType?: AddressType | string;
|
|
1844
2050
|
/**
|
|
2051
|
+
* @public
|
|
1845
2052
|
* <p>
|
|
1846
2053
|
* Information about an address.
|
|
1847
2054
|
* </p>
|
|
@@ -1853,17 +2060,20 @@ export interface UpdateSiteAddressOutput {
|
|
|
1853
2060
|
*/
|
|
1854
2061
|
export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
1855
2062
|
/**
|
|
2063
|
+
* @public
|
|
1856
2064
|
* <p>
|
|
1857
2065
|
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1858
2066
|
* </p>
|
|
1859
2067
|
*/
|
|
1860
2068
|
SiteId: string | undefined;
|
|
1861
2069
|
/**
|
|
2070
|
+
* @public
|
|
1862
2071
|
* <p>The power draw, in kVA, available at the hardware placement position for the
|
|
1863
2072
|
* rack.</p>
|
|
1864
2073
|
*/
|
|
1865
2074
|
PowerDrawKva?: PowerDrawKva | string;
|
|
1866
2075
|
/**
|
|
2076
|
+
* @public
|
|
1867
2077
|
* <p>The power option that you can provide for hardware. </p>
|
|
1868
2078
|
* <ul>
|
|
1869
2079
|
* <li>
|
|
@@ -1876,6 +2086,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
1876
2086
|
*/
|
|
1877
2087
|
PowerPhase?: PowerPhase | string;
|
|
1878
2088
|
/**
|
|
2089
|
+
* @public
|
|
1879
2090
|
* <p>The power connector that Amazon Web Services should plan to provide for connections to the
|
|
1880
2091
|
* hardware. Note the correlation between <code>PowerPhase</code> and
|
|
1881
2092
|
* <code>PowerConnector</code>. </p>
|
|
@@ -1913,15 +2124,18 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
1913
2124
|
*/
|
|
1914
2125
|
PowerConnector?: PowerConnector | string;
|
|
1915
2126
|
/**
|
|
2127
|
+
* @public
|
|
1916
2128
|
* <p>Indicates whether the power feed comes above or below the rack. </p>
|
|
1917
2129
|
*/
|
|
1918
2130
|
PowerFeedDrop?: PowerFeedDrop | string;
|
|
1919
2131
|
/**
|
|
2132
|
+
* @public
|
|
1920
2133
|
* <p>The uplink speed the rack should support for the connection to the Region.
|
|
1921
2134
|
* </p>
|
|
1922
2135
|
*/
|
|
1923
2136
|
UplinkGbps?: UplinkGbps | string;
|
|
1924
2137
|
/**
|
|
2138
|
+
* @public
|
|
1925
2139
|
* <p>Racks come with two Outpost network devices. Depending on the supported uplink speed at
|
|
1926
2140
|
* the site, the Outpost network devices provide a variable number of uplinks. Specify the number
|
|
1927
2141
|
* of uplinks for each Outpost network device that you intend to use to connect the rack to your
|
|
@@ -1940,11 +2154,13 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
1940
2154
|
*/
|
|
1941
2155
|
UplinkCount?: UplinkCount | string;
|
|
1942
2156
|
/**
|
|
2157
|
+
* @public
|
|
1943
2158
|
* <p>The type of fiber that you will use to attach the Outpost to your network.
|
|
1944
2159
|
* </p>
|
|
1945
2160
|
*/
|
|
1946
2161
|
FiberOpticCableType?: FiberOpticCableType | string;
|
|
1947
2162
|
/**
|
|
2163
|
+
* @public
|
|
1948
2164
|
* <p>The type of optical standard that you will use to attach the Outpost to your
|
|
1949
2165
|
* network. This field is dependent on uplink speed, fiber type, and distance to the upstream
|
|
1950
2166
|
* device. For more information
|
|
@@ -2008,6 +2224,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2008
2224
|
*/
|
|
2009
2225
|
OpticalStandard?: OpticalStandard | string;
|
|
2010
2226
|
/**
|
|
2227
|
+
* @public
|
|
2011
2228
|
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over
|
|
2012
2229
|
* 2000lbs. </p>
|
|
2013
2230
|
*/
|
|
@@ -2018,6 +2235,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2018
2235
|
*/
|
|
2019
2236
|
export interface UpdateSiteRackPhysicalPropertiesOutput {
|
|
2020
2237
|
/**
|
|
2238
|
+
* @public
|
|
2021
2239
|
* <p>Information about a site.</p>
|
|
2022
2240
|
*/
|
|
2023
2241
|
Site?: Site;
|