@aws-sdk/client-outposts 3.300.0 → 3.303.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.
Files changed (31) hide show
  1. package/dist-cjs/models/models_0.js +142 -166
  2. package/dist-es/models/models_0.js +142 -166
  3. package/dist-types/commands/CancelOrderCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateOrderCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateOutpostCommand.d.ts +2 -2
  6. package/dist-types/commands/CreateSiteCommand.d.ts +4 -4
  7. package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
  9. package/dist-types/commands/GetCatalogItemCommand.d.ts +1 -1
  10. package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
  11. package/dist-types/commands/GetOrderCommand.d.ts +1 -1
  12. package/dist-types/commands/GetOutpostCommand.d.ts +1 -1
  13. package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +1 -1
  14. package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -1
  15. package/dist-types/commands/GetSiteCommand.d.ts +1 -1
  16. package/dist-types/commands/ListAssetsCommand.d.ts +3 -3
  17. package/dist-types/commands/ListCatalogItemsCommand.d.ts +4 -4
  18. package/dist-types/commands/ListOrdersCommand.d.ts +1 -1
  19. package/dist-types/commands/ListOutpostsCommand.d.ts +4 -4
  20. package/dist-types/commands/ListSitesCommand.d.ts +4 -4
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/StartConnectionCommand.d.ts +1 -1
  23. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  24. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateOutpostCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +2 -2
  27. package/dist-types/commands/UpdateSiteCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +1 -1
  29. package/dist-types/models/models_0.d.ts +262 -142
  30. package/dist-types/ts3.4/models/models_0.d.ts +177 -142
  31. package/package.json +34 -34
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { OutpostsClient, UntagResourceCommand } from "@aws-sdk/client-outposts"; // ES Modules import
27
27
  * // const { OutpostsClient, UntagResourceCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
28
28
  * const client = new OutpostsClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __Metad
26
26
  * import { OutpostsClient, UpdateOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
27
27
  * // const { OutpostsClient, UpdateOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
28
28
  * const client = new OutpostsClient(config);
29
- * const input = {
29
+ * const input = { // UpdateOutpostInput
30
30
  * OutpostId: "STRING_VALUE", // required
31
31
  * Name: "STRING_VALUE",
32
32
  * Description: "STRING_VALUE",
@@ -30,10 +30,10 @@ export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput,
30
30
  * import { OutpostsClient, UpdateSiteAddressCommand } from "@aws-sdk/client-outposts"; // ES Modules import
31
31
  * // const { OutpostsClient, UpdateSiteAddressCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
32
32
  * const client = new OutpostsClient(config);
33
- * const input = {
33
+ * const input = { // UpdateSiteAddressInput
34
34
  * SiteId: "STRING_VALUE", // required
35
35
  * AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS", // required
36
- * Address: {
36
+ * Address: { // Address
37
37
  * ContactName: "STRING_VALUE",
38
38
  * ContactPhoneNumber: "STRING_VALUE",
39
39
  * AddressLine1: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBea
26
26
  * import { OutpostsClient, UpdateSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
27
27
  * // const { OutpostsClient, UpdateSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
28
28
  * const client = new OutpostsClient(config);
29
- * const input = {
29
+ * const input = { // UpdateSiteInput
30
30
  * SiteId: "STRING_VALUE", // required
31
31
  * Name: "STRING_VALUE",
32
32
  * Description: "STRING_VALUE",
@@ -31,7 +31,7 @@ export interface UpdateSiteRackPhysicalPropertiesCommandOutput extends UpdateSit
31
31
  * import { OutpostsClient, UpdateSiteRackPhysicalPropertiesCommand } from "@aws-sdk/client-outposts"; // ES Modules import
32
32
  * // const { OutpostsClient, UpdateSiteRackPhysicalPropertiesCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
33
33
  * const client = new OutpostsClient(config);
34
- * const input = {
34
+ * const input = { // UpdateSiteRackPhysicalPropertiesInput
35
35
  * SiteId: "STRING_VALUE", // required
36
36
  * PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
37
37
  * PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
@@ -65,11 +65,16 @@ export interface Address {
65
65
  }
66
66
  /**
67
67
  * @public
68
+ * @enum
68
69
  */
69
- export declare enum AddressType {
70
- OPERATING_ADDRESS = "OPERATING_ADDRESS",
71
- SHIPPING_ADDRESS = "SHIPPING_ADDRESS"
72
- }
70
+ export declare const AddressType: {
71
+ readonly OPERATING_ADDRESS: "OPERATING_ADDRESS";
72
+ readonly SHIPPING_ADDRESS: "SHIPPING_ADDRESS";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type AddressType = (typeof AddressType)[keyof typeof AddressType];
73
78
  /**
74
79
  * @public
75
80
  * <p> Information about the position of the asset in a rack. </p>
@@ -82,18 +87,28 @@ export interface AssetLocation {
82
87
  }
83
88
  /**
84
89
  * @public
90
+ * @enum
85
91
  */
86
- export declare enum AssetType {
87
- COMPUTE = "COMPUTE"
88
- }
92
+ export declare const AssetType: {
93
+ readonly COMPUTE: "COMPUTE";
94
+ };
89
95
  /**
90
96
  * @public
91
97
  */
92
- export declare enum ComputeAssetState {
93
- ACTIVE = "ACTIVE",
94
- ISOLATED = "ISOLATED",
95
- RETIRING = "RETIRING"
96
- }
98
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
99
+ /**
100
+ * @public
101
+ * @enum
102
+ */
103
+ export declare const ComputeAssetState: {
104
+ readonly ACTIVE: "ACTIVE";
105
+ readonly ISOLATED: "ISOLATED";
106
+ readonly RETIRING: "RETIRING";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type ComputeAssetState = (typeof ComputeAssetState)[keyof typeof ComputeAssetState];
97
112
  /**
98
113
  * @public
99
114
  * <p> Information about compute hardware assets. </p>
@@ -151,11 +166,16 @@ export interface AssetInfo {
151
166
  }
152
167
  /**
153
168
  * @public
169
+ * @enum
154
170
  */
155
- export declare enum AssetState {
156
- ACTIVE = "ACTIVE",
157
- RETIRING = "RETIRING"
158
- }
171
+ export declare const AssetState: {
172
+ readonly ACTIVE: "ACTIVE";
173
+ readonly RETIRING: "RETIRING";
174
+ };
175
+ /**
176
+ * @public
177
+ */
178
+ export type AssetState = (typeof AssetState)[keyof typeof AssetState];
159
179
  /**
160
180
  * @public
161
181
  */
@@ -172,11 +192,16 @@ export interface CancelOrderOutput {
172
192
  }
173
193
  /**
174
194
  * @public
195
+ * @enum
175
196
  */
176
- export declare enum ResourceType {
177
- ORDER = "ORDER",
178
- OUTPOST = "OUTPOST"
179
- }
197
+ export declare const ResourceType: {
198
+ readonly ORDER: "ORDER";
199
+ readonly OUTPOST: "OUTPOST";
200
+ };
201
+ /**
202
+ * @public
203
+ */
204
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
180
205
  /**
181
206
  * @public
182
207
  * <p>Updating or deleting this resource can cause an inconsistent state.</p>
@@ -257,18 +282,28 @@ export interface EC2Capacity {
257
282
  }
258
283
  /**
259
284
  * @public
285
+ * @enum
260
286
  */
261
- export declare enum CatalogItemStatus {
262
- AVAILABLE = "AVAILABLE",
263
- DISCONTINUED = "DISCONTINUED"
264
- }
287
+ export declare const CatalogItemStatus: {
288
+ readonly AVAILABLE: "AVAILABLE";
289
+ readonly DISCONTINUED: "DISCONTINUED";
290
+ };
265
291
  /**
266
292
  * @public
267
293
  */
268
- export declare enum SupportedStorageEnum {
269
- EBS = "EBS",
270
- S3 = "S3"
271
- }
294
+ export type CatalogItemStatus = (typeof CatalogItemStatus)[keyof typeof CatalogItemStatus];
295
+ /**
296
+ * @public
297
+ * @enum
298
+ */
299
+ export declare const SupportedStorageEnum: {
300
+ readonly EBS: "EBS";
301
+ readonly S3: "S3";
302
+ };
303
+ /**
304
+ * @public
305
+ */
306
+ export type SupportedStorageEnum = (typeof SupportedStorageEnum)[keyof typeof SupportedStorageEnum];
272
307
  /**
273
308
  * @public
274
309
  * <p> Information about a catalog item. </p>
@@ -305,11 +340,16 @@ export interface CatalogItem {
305
340
  }
306
341
  /**
307
342
  * @public
343
+ * @enum
308
344
  */
309
- export declare enum CatalogItemClass {
310
- RACK = "RACK",
311
- SERVER = "SERVER"
312
- }
345
+ export declare const CatalogItemClass: {
346
+ readonly RACK: "RACK";
347
+ readonly SERVER: "SERVER";
348
+ };
349
+ /**
350
+ * @public
351
+ */
352
+ export type CatalogItemClass = (typeof CatalogItemClass)[keyof typeof CatalogItemClass];
313
353
  /**
314
354
  * @public
315
355
  * <p> Information about a connection. </p>
@@ -356,19 +396,29 @@ export interface LineItemRequest {
356
396
  }
357
397
  /**
358
398
  * @public
399
+ * @enum
359
400
  */
360
- export declare enum PaymentOption {
361
- ALL_UPFRONT = "ALL_UPFRONT",
362
- NO_UPFRONT = "NO_UPFRONT",
363
- PARTIAL_UPFRONT = "PARTIAL_UPFRONT"
364
- }
401
+ export declare const PaymentOption: {
402
+ readonly ALL_UPFRONT: "ALL_UPFRONT";
403
+ readonly NO_UPFRONT: "NO_UPFRONT";
404
+ readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
405
+ };
365
406
  /**
366
407
  * @public
367
408
  */
368
- export declare enum PaymentTerm {
369
- ONE_YEAR = "ONE_YEAR",
370
- THREE_YEARS = "THREE_YEARS"
371
- }
409
+ export type PaymentOption = (typeof PaymentOption)[keyof typeof PaymentOption];
410
+ /**
411
+ * @public
412
+ * @enum
413
+ */
414
+ export declare const PaymentTerm: {
415
+ readonly ONE_YEAR: "ONE_YEAR";
416
+ readonly THREE_YEARS: "THREE_YEARS";
417
+ };
418
+ /**
419
+ * @public
420
+ */
421
+ export type PaymentTerm = (typeof PaymentTerm)[keyof typeof PaymentTerm];
372
422
  /**
373
423
  * @public
374
424
  */
@@ -406,13 +456,18 @@ export interface LineItemAssetInformation {
406
456
  }
407
457
  /**
408
458
  * @public
459
+ * @enum
409
460
  */
410
- export declare enum ShipmentCarrier {
411
- DBS = "DBS",
412
- DHL = "DHL",
413
- FEDEX = "FEDEX",
414
- UPS = "UPS"
415
- }
461
+ export declare const ShipmentCarrier: {
462
+ readonly DBS: "DBS";
463
+ readonly DHL: "DHL";
464
+ readonly FEDEX: "FEDEX";
465
+ readonly UPS: "UPS";
466
+ };
467
+ /**
468
+ * @public
469
+ */
470
+ export type ShipmentCarrier = (typeof ShipmentCarrier)[keyof typeof ShipmentCarrier];
416
471
  /**
417
472
  * @public
418
473
  * <p> Information about a line item shipment. </p>
@@ -429,18 +484,23 @@ export interface ShipmentInformation {
429
484
  }
430
485
  /**
431
486
  * @public
487
+ * @enum
432
488
  */
433
- export declare enum LineItemStatus {
434
- BUILDING = "BUILDING",
435
- CANCELLED = "CANCELLED",
436
- DELIVERED = "DELIVERED",
437
- ERROR = "ERROR",
438
- INSTALLED = "INSTALLED",
439
- INSTALLING = "INSTALLING",
440
- PREPARING = "PREPARING",
441
- REPLACED = "REPLACED",
442
- SHIPPED = "SHIPPED"
443
- }
489
+ export declare const LineItemStatus: {
490
+ readonly BUILDING: "BUILDING";
491
+ readonly CANCELLED: "CANCELLED";
492
+ readonly DELIVERED: "DELIVERED";
493
+ readonly ERROR: "ERROR";
494
+ readonly INSTALLED: "INSTALLED";
495
+ readonly INSTALLING: "INSTALLING";
496
+ readonly PREPARING: "PREPARING";
497
+ readonly REPLACED: "REPLACED";
498
+ readonly SHIPPED: "SHIPPED";
499
+ };
500
+ /**
501
+ * @public
502
+ */
503
+ export type LineItemStatus = (typeof LineItemStatus)[keyof typeof LineItemStatus];
444
504
  /**
445
505
  * @public
446
506
  * <p>Information about a line item.</p>
@@ -481,26 +541,36 @@ export interface LineItem {
481
541
  }
482
542
  /**
483
543
  * @public
544
+ * @enum
484
545
  */
485
- export declare enum OrderType {
486
- OUTPOST = "OUTPOST",
487
- REPLACEMENT = "REPLACEMENT"
488
- }
546
+ export declare const OrderType: {
547
+ readonly OUTPOST: "OUTPOST";
548
+ readonly REPLACEMENT: "REPLACEMENT";
549
+ };
489
550
  /**
490
551
  * @public
491
552
  */
492
- export declare enum OrderStatus {
493
- CANCELLED = "CANCELLED",
494
- COMPLETED = "COMPLETED",
495
- ERROR = "ERROR",
496
- FULFILLED = "FULFILLED",
497
- INSTALLING = "INSTALLING",
498
- IN_PROGRESS = "IN_PROGRESS",
499
- PENDING = "PENDING",
500
- PREPARING = "PREPARING",
501
- PROCESSING = "PROCESSING",
502
- RECEIVED = "RECEIVED"
503
- }
553
+ export type OrderType = (typeof OrderType)[keyof typeof OrderType];
554
+ /**
555
+ * @public
556
+ * @enum
557
+ */
558
+ export declare const OrderStatus: {
559
+ readonly CANCELLED: "CANCELLED";
560
+ readonly COMPLETED: "COMPLETED";
561
+ readonly ERROR: "ERROR";
562
+ readonly FULFILLED: "FULFILLED";
563
+ readonly INSTALLING: "INSTALLING";
564
+ readonly IN_PROGRESS: "IN_PROGRESS";
565
+ readonly PENDING: "PENDING";
566
+ readonly PREPARING: "PREPARING";
567
+ readonly PROCESSING: "PROCESSING";
568
+ readonly RECEIVED: "RECEIVED";
569
+ };
570
+ /**
571
+ * @public
572
+ */
573
+ export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];
504
574
  /**
505
575
  * @public
506
576
  * <p>Information about an order.</p>
@@ -594,11 +664,16 @@ export declare class ServiceQuotaExceededException extends __BaseException {
594
664
  }
595
665
  /**
596
666
  * @public
667
+ * @enum
597
668
  */
598
- export declare enum SupportedHardwareType {
599
- RACK = "RACK",
600
- SERVER = "SERVER"
601
- }
669
+ export declare const SupportedHardwareType: {
670
+ readonly RACK: "RACK";
671
+ readonly SERVER: "SERVER";
672
+ };
673
+ /**
674
+ * @public
675
+ */
676
+ export type SupportedHardwareType = (typeof SupportedHardwareType)[keyof typeof SupportedHardwareType];
602
677
  /**
603
678
  * @public
604
679
  */
@@ -697,95 +772,140 @@ export interface CreateOutpostOutput {
697
772
  }
698
773
  /**
699
774
  * @public
775
+ * @enum
700
776
  */
701
- export declare enum FiberOpticCableType {
702
- MULTI_MODE = "MULTI_MODE",
703
- SINGLE_MODE = "SINGLE_MODE"
704
- }
777
+ export declare const FiberOpticCableType: {
778
+ readonly MULTI_MODE: "MULTI_MODE";
779
+ readonly SINGLE_MODE: "SINGLE_MODE";
780
+ };
705
781
  /**
706
782
  * @public
707
783
  */
708
- export declare enum MaximumSupportedWeightLbs {
709
- MAX_1400_LBS = "MAX_1400_LBS",
710
- MAX_1600_LBS = "MAX_1600_LBS",
711
- MAX_1800_LBS = "MAX_1800_LBS",
712
- MAX_2000_LBS = "MAX_2000_LBS",
713
- NO_LIMIT = "NO_LIMIT"
714
- }
784
+ export type FiberOpticCableType = (typeof FiberOpticCableType)[keyof typeof FiberOpticCableType];
715
785
  /**
716
786
  * @public
787
+ * @enum
717
788
  */
718
- export declare enum OpticalStandard {
719
- OPTIC_1000BASE_LX = "OPTIC_1000BASE_LX",
720
- OPTIC_1000BASE_SX = "OPTIC_1000BASE_SX",
721
- OPTIC_100GBASE_CWDM4 = "OPTIC_100GBASE_CWDM4",
722
- OPTIC_100GBASE_LR4 = "OPTIC_100GBASE_LR4",
723
- OPTIC_100GBASE_SR4 = "OPTIC_100GBASE_SR4",
724
- OPTIC_100G_PSM4_MSA = "OPTIC_100G_PSM4_MSA",
725
- OPTIC_10GBASE_IR = "OPTIC_10GBASE_IR",
726
- OPTIC_10GBASE_LR = "OPTIC_10GBASE_LR",
727
- OPTIC_10GBASE_SR = "OPTIC_10GBASE_SR",
728
- OPTIC_40GBASE_ESR = "OPTIC_40GBASE_ESR",
729
- OPTIC_40GBASE_IR4_LR4L = "OPTIC_40GBASE_IR4_LR4L",
730
- OPTIC_40GBASE_LR4 = "OPTIC_40GBASE_LR4",
731
- OPTIC_40GBASE_SR = "OPTIC_40GBASE_SR"
732
- }
789
+ export declare const MaximumSupportedWeightLbs: {
790
+ readonly MAX_1400_LBS: "MAX_1400_LBS";
791
+ readonly MAX_1600_LBS: "MAX_1600_LBS";
792
+ readonly MAX_1800_LBS: "MAX_1800_LBS";
793
+ readonly MAX_2000_LBS: "MAX_2000_LBS";
794
+ readonly NO_LIMIT: "NO_LIMIT";
795
+ };
733
796
  /**
734
797
  * @public
735
798
  */
736
- export declare enum PowerConnector {
737
- AH530P7W = "AH530P7W",
738
- AH532P6W = "AH532P6W",
739
- IEC309 = "IEC309",
740
- L6_30P = "L6_30P"
741
- }
799
+ export type MaximumSupportedWeightLbs = (typeof MaximumSupportedWeightLbs)[keyof typeof MaximumSupportedWeightLbs];
742
800
  /**
743
801
  * @public
802
+ * @enum
744
803
  */
745
- export declare enum PowerDrawKva {
746
- POWER_10_KVA = "POWER_10_KVA",
747
- POWER_15_KVA = "POWER_15_KVA",
748
- POWER_30_KVA = "POWER_30_KVA",
749
- POWER_5_KVA = "POWER_5_KVA"
750
- }
804
+ export declare const OpticalStandard: {
805
+ readonly OPTIC_1000BASE_LX: "OPTIC_1000BASE_LX";
806
+ readonly OPTIC_1000BASE_SX: "OPTIC_1000BASE_SX";
807
+ readonly OPTIC_100GBASE_CWDM4: "OPTIC_100GBASE_CWDM4";
808
+ readonly OPTIC_100GBASE_LR4: "OPTIC_100GBASE_LR4";
809
+ readonly OPTIC_100GBASE_SR4: "OPTIC_100GBASE_SR4";
810
+ readonly OPTIC_100G_PSM4_MSA: "OPTIC_100G_PSM4_MSA";
811
+ readonly OPTIC_10GBASE_IR: "OPTIC_10GBASE_IR";
812
+ readonly OPTIC_10GBASE_LR: "OPTIC_10GBASE_LR";
813
+ readonly OPTIC_10GBASE_SR: "OPTIC_10GBASE_SR";
814
+ readonly OPTIC_40GBASE_ESR: "OPTIC_40GBASE_ESR";
815
+ readonly OPTIC_40GBASE_IR4_LR4L: "OPTIC_40GBASE_IR4_LR4L";
816
+ readonly OPTIC_40GBASE_LR4: "OPTIC_40GBASE_LR4";
817
+ readonly OPTIC_40GBASE_SR: "OPTIC_40GBASE_SR";
818
+ };
751
819
  /**
752
820
  * @public
753
821
  */
754
- export declare enum PowerFeedDrop {
755
- ABOVE_RACK = "ABOVE_RACK",
756
- BELOW_RACK = "BELOW_RACK"
757
- }
822
+ export type OpticalStandard = (typeof OpticalStandard)[keyof typeof OpticalStandard];
758
823
  /**
759
824
  * @public
825
+ * @enum
760
826
  */
761
- export declare enum PowerPhase {
762
- SINGLE_PHASE = "SINGLE_PHASE",
763
- THREE_PHASE = "THREE_PHASE"
764
- }
827
+ export declare const PowerConnector: {
828
+ readonly AH530P7W: "AH530P7W";
829
+ readonly AH532P6W: "AH532P6W";
830
+ readonly IEC309: "IEC309";
831
+ readonly L6_30P: "L6_30P";
832
+ };
765
833
  /**
766
834
  * @public
767
835
  */
768
- export declare enum UplinkCount {
769
- UPLINK_COUNT_1 = "UPLINK_COUNT_1",
770
- UPLINK_COUNT_12 = "UPLINK_COUNT_12",
771
- UPLINK_COUNT_16 = "UPLINK_COUNT_16",
772
- UPLINK_COUNT_2 = "UPLINK_COUNT_2",
773
- UPLINK_COUNT_3 = "UPLINK_COUNT_3",
774
- UPLINK_COUNT_4 = "UPLINK_COUNT_4",
775
- UPLINK_COUNT_5 = "UPLINK_COUNT_5",
776
- UPLINK_COUNT_6 = "UPLINK_COUNT_6",
777
- UPLINK_COUNT_7 = "UPLINK_COUNT_7",
778
- UPLINK_COUNT_8 = "UPLINK_COUNT_8"
779
- }
836
+ export type PowerConnector = (typeof PowerConnector)[keyof typeof PowerConnector];
780
837
  /**
781
838
  * @public
839
+ * @enum
782
840
  */
783
- export declare enum UplinkGbps {
784
- UPLINK_100G = "UPLINK_100G",
785
- UPLINK_10G = "UPLINK_10G",
786
- UPLINK_1G = "UPLINK_1G",
787
- UPLINK_40G = "UPLINK_40G"
788
- }
841
+ export declare const PowerDrawKva: {
842
+ readonly POWER_10_KVA: "POWER_10_KVA";
843
+ readonly POWER_15_KVA: "POWER_15_KVA";
844
+ readonly POWER_30_KVA: "POWER_30_KVA";
845
+ readonly POWER_5_KVA: "POWER_5_KVA";
846
+ };
847
+ /**
848
+ * @public
849
+ */
850
+ export type PowerDrawKva = (typeof PowerDrawKva)[keyof typeof PowerDrawKva];
851
+ /**
852
+ * @public
853
+ * @enum
854
+ */
855
+ export declare const PowerFeedDrop: {
856
+ readonly ABOVE_RACK: "ABOVE_RACK";
857
+ readonly BELOW_RACK: "BELOW_RACK";
858
+ };
859
+ /**
860
+ * @public
861
+ */
862
+ export type PowerFeedDrop = (typeof PowerFeedDrop)[keyof typeof PowerFeedDrop];
863
+ /**
864
+ * @public
865
+ * @enum
866
+ */
867
+ export declare const PowerPhase: {
868
+ readonly SINGLE_PHASE: "SINGLE_PHASE";
869
+ readonly THREE_PHASE: "THREE_PHASE";
870
+ };
871
+ /**
872
+ * @public
873
+ */
874
+ export type PowerPhase = (typeof PowerPhase)[keyof typeof PowerPhase];
875
+ /**
876
+ * @public
877
+ * @enum
878
+ */
879
+ export declare const UplinkCount: {
880
+ readonly UPLINK_COUNT_1: "UPLINK_COUNT_1";
881
+ readonly UPLINK_COUNT_12: "UPLINK_COUNT_12";
882
+ readonly UPLINK_COUNT_16: "UPLINK_COUNT_16";
883
+ readonly UPLINK_COUNT_2: "UPLINK_COUNT_2";
884
+ readonly UPLINK_COUNT_3: "UPLINK_COUNT_3";
885
+ readonly UPLINK_COUNT_4: "UPLINK_COUNT_4";
886
+ readonly UPLINK_COUNT_5: "UPLINK_COUNT_5";
887
+ readonly UPLINK_COUNT_6: "UPLINK_COUNT_6";
888
+ readonly UPLINK_COUNT_7: "UPLINK_COUNT_7";
889
+ readonly UPLINK_COUNT_8: "UPLINK_COUNT_8";
890
+ };
891
+ /**
892
+ * @public
893
+ */
894
+ export type UplinkCount = (typeof UplinkCount)[keyof typeof UplinkCount];
895
+ /**
896
+ * @public
897
+ * @enum
898
+ */
899
+ export declare const UplinkGbps: {
900
+ readonly UPLINK_100G: "UPLINK_100G";
901
+ readonly UPLINK_10G: "UPLINK_10G";
902
+ readonly UPLINK_1G: "UPLINK_1G";
903
+ readonly UPLINK_40G: "UPLINK_40G";
904
+ };
905
+ /**
906
+ * @public
907
+ */
908
+ export type UplinkGbps = (typeof UplinkGbps)[keyof typeof UplinkGbps];
789
909
  /**
790
910
  * @public
791
911
  * <p> Information about the physical and logistical details for racks at sites.