@aws-sdk/client-outposts 3.296.0 → 3.297.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 (38) hide show
  1. package/dist-types/Outposts.d.ts +27 -0
  2. package/dist-types/OutpostsClient.d.ts +24 -4
  3. package/dist-types/commands/CancelOrderCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateOrderCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateOutpostCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateSiteCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteOutpostCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteSiteCommand.d.ts +16 -0
  9. package/dist-types/commands/GetCatalogItemCommand.d.ts +16 -0
  10. package/dist-types/commands/GetConnectionCommand.d.ts +16 -0
  11. package/dist-types/commands/GetOrderCommand.d.ts +16 -0
  12. package/dist-types/commands/GetOutpostCommand.d.ts +16 -0
  13. package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +16 -0
  14. package/dist-types/commands/GetSiteAddressCommand.d.ts +16 -0
  15. package/dist-types/commands/GetSiteCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAssetsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListCatalogItemsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListOrdersCommand.d.ts +16 -0
  19. package/dist-types/commands/ListOutpostsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListSitesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  22. package/dist-types/commands/StartConnectionCommand.d.ts +16 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateOutpostCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateSiteCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +16 -0
  29. package/dist-types/models/OutpostsServiceException.d.ts +2 -0
  30. package/dist-types/models/models_0.d.ts +251 -0
  31. package/dist-types/pagination/GetOutpostInstanceTypesPaginator.d.ts +3 -0
  32. package/dist-types/pagination/Interfaces.d.ts +3 -0
  33. package/dist-types/pagination/ListAssetsPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListOrdersPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListOutpostsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListSitesPaginator.d.ts +3 -0
  38. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have permission to perform this operation.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -13,6 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
13
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
15
  }
15
16
  /**
17
+ * @public
16
18
  * <p> Information about an address. </p>
17
19
  */
18
20
  export interface Address {
@@ -61,11 +63,15 @@ export interface Address {
61
63
  */
62
64
  Municipality?: string;
63
65
  }
66
+ /**
67
+ * @public
68
+ */
64
69
  export declare enum AddressType {
65
70
  OPERATING_ADDRESS = "OPERATING_ADDRESS",
66
71
  SHIPPING_ADDRESS = "SHIPPING_ADDRESS"
67
72
  }
68
73
  /**
74
+ * @public
69
75
  * <p> Information about the position of the asset in a rack. </p>
70
76
  */
71
77
  export interface AssetLocation {
@@ -74,15 +80,22 @@ export interface AssetLocation {
74
80
  */
75
81
  RackElevation?: number;
76
82
  }
83
+ /**
84
+ * @public
85
+ */
77
86
  export declare enum AssetType {
78
87
  COMPUTE = "COMPUTE"
79
88
  }
89
+ /**
90
+ * @public
91
+ */
80
92
  export declare enum ComputeAssetState {
81
93
  ACTIVE = "ACTIVE",
82
94
  ISOLATED = "ISOLATED",
83
95
  RETIRING = "RETIRING"
84
96
  }
85
97
  /**
98
+ * @public
86
99
  * <p> Information about compute hardware assets. </p>
87
100
  */
88
101
  export interface ComputeAttributes {
@@ -111,6 +124,7 @@ export interface ComputeAttributes {
111
124
  State?: ComputeAssetState | string;
112
125
  }
113
126
  /**
127
+ * @public
114
128
  * <p> Information about hardware assets. </p>
115
129
  */
116
130
  export interface AssetInfo {
@@ -135,23 +149,36 @@ export interface AssetInfo {
135
149
  */
136
150
  AssetLocation?: AssetLocation;
137
151
  }
152
+ /**
153
+ * @public
154
+ */
138
155
  export declare enum AssetState {
139
156
  ACTIVE = "ACTIVE",
140
157
  RETIRING = "RETIRING"
141
158
  }
159
+ /**
160
+ * @public
161
+ */
142
162
  export interface CancelOrderInput {
143
163
  /**
144
164
  * <p> The ID of the order. </p>
145
165
  */
146
166
  OrderId: string | undefined;
147
167
  }
168
+ /**
169
+ * @public
170
+ */
148
171
  export interface CancelOrderOutput {
149
172
  }
173
+ /**
174
+ * @public
175
+ */
150
176
  export declare enum ResourceType {
151
177
  ORDER = "ORDER",
152
178
  OUTPOST = "OUTPOST"
153
179
  }
154
180
  /**
181
+ * @public
155
182
  * <p>Updating or deleting this resource can cause an inconsistent state.</p>
156
183
  */
157
184
  export declare class ConflictException extends __BaseException {
@@ -172,6 +199,7 @@ export declare class ConflictException extends __BaseException {
172
199
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
173
200
  }
174
201
  /**
202
+ * @public
175
203
  * <p>An internal error has occurred.</p>
176
204
  */
177
205
  export declare class InternalServerException extends __BaseException {
@@ -184,6 +212,7 @@ export declare class InternalServerException extends __BaseException {
184
212
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
185
213
  }
186
214
  /**
215
+ * @public
187
216
  * <p>The specified request is not valid.</p>
188
217
  */
189
218
  export declare class NotFoundException extends __BaseException {
@@ -196,6 +225,7 @@ export declare class NotFoundException extends __BaseException {
196
225
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
197
226
  }
198
227
  /**
228
+ * @public
199
229
  * <p>A parameter is not valid.</p>
200
230
  */
201
231
  export declare class ValidationException extends __BaseException {
@@ -208,6 +238,7 @@ export declare class ValidationException extends __BaseException {
208
238
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
209
239
  }
210
240
  /**
241
+ * @public
211
242
  * <p> Information about EC2 capacity. </p>
212
243
  */
213
244
  export interface EC2Capacity {
@@ -224,15 +255,22 @@ export interface EC2Capacity {
224
255
  */
225
256
  Quantity?: string;
226
257
  }
258
+ /**
259
+ * @public
260
+ */
227
261
  export declare enum CatalogItemStatus {
228
262
  AVAILABLE = "AVAILABLE",
229
263
  DISCONTINUED = "DISCONTINUED"
230
264
  }
265
+ /**
266
+ * @public
267
+ */
231
268
  export declare enum SupportedStorageEnum {
232
269
  EBS = "EBS",
233
270
  S3 = "S3"
234
271
  }
235
272
  /**
273
+ * @public
236
274
  * <p> Information about a catalog item. </p>
237
275
  */
238
276
  export interface CatalogItem {
@@ -265,11 +303,15 @@ export interface CatalogItem {
265
303
  */
266
304
  SupportedStorage?: (SupportedStorageEnum | string)[];
267
305
  }
306
+ /**
307
+ * @public
308
+ */
268
309
  export declare enum CatalogItemClass {
269
310
  RACK = "RACK",
270
311
  SERVER = "SERVER"
271
312
  }
272
313
  /**
314
+ * @public
273
315
  * <p> Information about a connection. </p>
274
316
  */
275
317
  export interface ConnectionDetails {
@@ -299,6 +341,7 @@ export interface ConnectionDetails {
299
341
  AllowedIps?: string[];
300
342
  }
301
343
  /**
344
+ * @public
302
345
  * <p>Information about a line item request.</p>
303
346
  */
304
347
  export interface LineItemRequest {
@@ -311,15 +354,24 @@ export interface LineItemRequest {
311
354
  */
312
355
  Quantity?: number;
313
356
  }
357
+ /**
358
+ * @public
359
+ */
314
360
  export declare enum PaymentOption {
315
361
  ALL_UPFRONT = "ALL_UPFRONT",
316
362
  NO_UPFRONT = "NO_UPFRONT",
317
363
  PARTIAL_UPFRONT = "PARTIAL_UPFRONT"
318
364
  }
365
+ /**
366
+ * @public
367
+ */
319
368
  export declare enum PaymentTerm {
320
369
  ONE_YEAR = "ONE_YEAR",
321
370
  THREE_YEARS = "THREE_YEARS"
322
371
  }
372
+ /**
373
+ * @public
374
+ */
323
375
  export interface CreateOrderInput {
324
376
  /**
325
377
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
@@ -339,6 +391,7 @@ export interface CreateOrderInput {
339
391
  PaymentTerm?: PaymentTerm | string;
340
392
  }
341
393
  /**
394
+ * @public
342
395
  * <p> Information about a line item asset. </p>
343
396
  */
344
397
  export interface LineItemAssetInformation {
@@ -351,6 +404,9 @@ export interface LineItemAssetInformation {
351
404
  */
352
405
  MacAddressList?: string[];
353
406
  }
407
+ /**
408
+ * @public
409
+ */
354
410
  export declare enum ShipmentCarrier {
355
411
  DBS = "DBS",
356
412
  DHL = "DHL",
@@ -358,6 +414,7 @@ export declare enum ShipmentCarrier {
358
414
  UPS = "UPS"
359
415
  }
360
416
  /**
417
+ * @public
361
418
  * <p> Information about a line item shipment. </p>
362
419
  */
363
420
  export interface ShipmentInformation {
@@ -370,6 +427,9 @@ export interface ShipmentInformation {
370
427
  */
371
428
  ShipmentCarrier?: ShipmentCarrier | string;
372
429
  }
430
+ /**
431
+ * @public
432
+ */
373
433
  export declare enum LineItemStatus {
374
434
  BUILDING = "BUILDING",
375
435
  CANCELLED = "CANCELLED",
@@ -382,6 +442,7 @@ export declare enum LineItemStatus {
382
442
  SHIPPED = "SHIPPED"
383
443
  }
384
444
  /**
445
+ * @public
385
446
  * <p>Information about a line item.</p>
386
447
  */
387
448
  export interface LineItem {
@@ -418,10 +479,16 @@ export interface LineItem {
418
479
  */
419
480
  PreviousOrderId?: string;
420
481
  }
482
+ /**
483
+ * @public
484
+ */
421
485
  export declare enum OrderType {
422
486
  OUTPOST = "OUTPOST",
423
487
  REPLACEMENT = "REPLACEMENT"
424
488
  }
489
+ /**
490
+ * @public
491
+ */
425
492
  export declare enum OrderStatus {
426
493
  CANCELLED = "CANCELLED",
427
494
  COMPLETED = "COMPLETED",
@@ -435,6 +502,7 @@ export declare enum OrderStatus {
435
502
  RECEIVED = "RECEIVED"
436
503
  }
437
504
  /**
505
+ * @public
438
506
  * <p>Information about an order.</p>
439
507
  */
440
508
  export interface Order {
@@ -502,6 +570,9 @@ export interface Order {
502
570
  */
503
571
  OrderType?: OrderType | string;
504
572
  }
573
+ /**
574
+ * @public
575
+ */
505
576
  export interface CreateOrderOutput {
506
577
  /**
507
578
  * <p>Information about this order.</p>
@@ -509,6 +580,7 @@ export interface CreateOrderOutput {
509
580
  Order?: Order;
510
581
  }
511
582
  /**
583
+ * @public
512
584
  * <p>You have exceeded a service quota.</p>
513
585
  */
514
586
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -520,10 +592,16 @@ export declare class ServiceQuotaExceededException extends __BaseException {
520
592
  */
521
593
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
522
594
  }
595
+ /**
596
+ * @public
597
+ */
523
598
  export declare enum SupportedHardwareType {
524
599
  RACK = "RACK",
525
600
  SERVER = "SERVER"
526
601
  }
602
+ /**
603
+ * @public
604
+ */
527
605
  export interface CreateOutpostInput {
528
606
  /**
529
607
  * <p>The name of the Outpost.</p>
@@ -555,6 +633,7 @@ export interface CreateOutpostInput {
555
633
  SupportedHardwareType?: SupportedHardwareType | string;
556
634
  }
557
635
  /**
636
+ * @public
558
637
  * <p>Information about an Outpost.</p>
559
638
  */
560
639
  export interface Outpost {
@@ -607,16 +686,25 @@ export interface Outpost {
607
686
  */
608
687
  SupportedHardwareType?: SupportedHardwareType | string;
609
688
  }
689
+ /**
690
+ * @public
691
+ */
610
692
  export interface CreateOutpostOutput {
611
693
  /**
612
694
  * <p>Information about an Outpost.</p>
613
695
  */
614
696
  Outpost?: Outpost;
615
697
  }
698
+ /**
699
+ * @public
700
+ */
616
701
  export declare enum FiberOpticCableType {
617
702
  MULTI_MODE = "MULTI_MODE",
618
703
  SINGLE_MODE = "SINGLE_MODE"
619
704
  }
705
+ /**
706
+ * @public
707
+ */
620
708
  export declare enum MaximumSupportedWeightLbs {
621
709
  MAX_1400_LBS = "MAX_1400_LBS",
622
710
  MAX_1600_LBS = "MAX_1600_LBS",
@@ -624,6 +712,9 @@ export declare enum MaximumSupportedWeightLbs {
624
712
  MAX_2000_LBS = "MAX_2000_LBS",
625
713
  NO_LIMIT = "NO_LIMIT"
626
714
  }
715
+ /**
716
+ * @public
717
+ */
627
718
  export declare enum OpticalStandard {
628
719
  OPTIC_1000BASE_LX = "OPTIC_1000BASE_LX",
629
720
  OPTIC_1000BASE_SX = "OPTIC_1000BASE_SX",
@@ -639,26 +730,41 @@ export declare enum OpticalStandard {
639
730
  OPTIC_40GBASE_LR4 = "OPTIC_40GBASE_LR4",
640
731
  OPTIC_40GBASE_SR = "OPTIC_40GBASE_SR"
641
732
  }
733
+ /**
734
+ * @public
735
+ */
642
736
  export declare enum PowerConnector {
643
737
  AH530P7W = "AH530P7W",
644
738
  AH532P6W = "AH532P6W",
645
739
  IEC309 = "IEC309",
646
740
  L6_30P = "L6_30P"
647
741
  }
742
+ /**
743
+ * @public
744
+ */
648
745
  export declare enum PowerDrawKva {
649
746
  POWER_10_KVA = "POWER_10_KVA",
650
747
  POWER_15_KVA = "POWER_15_KVA",
651
748
  POWER_30_KVA = "POWER_30_KVA",
652
749
  POWER_5_KVA = "POWER_5_KVA"
653
750
  }
751
+ /**
752
+ * @public
753
+ */
654
754
  export declare enum PowerFeedDrop {
655
755
  ABOVE_RACK = "ABOVE_RACK",
656
756
  BELOW_RACK = "BELOW_RACK"
657
757
  }
758
+ /**
759
+ * @public
760
+ */
658
761
  export declare enum PowerPhase {
659
762
  SINGLE_PHASE = "SINGLE_PHASE",
660
763
  THREE_PHASE = "THREE_PHASE"
661
764
  }
765
+ /**
766
+ * @public
767
+ */
662
768
  export declare enum UplinkCount {
663
769
  UPLINK_COUNT_1 = "UPLINK_COUNT_1",
664
770
  UPLINK_COUNT_12 = "UPLINK_COUNT_12",
@@ -671,6 +777,9 @@ export declare enum UplinkCount {
671
777
  UPLINK_COUNT_7 = "UPLINK_COUNT_7",
672
778
  UPLINK_COUNT_8 = "UPLINK_COUNT_8"
673
779
  }
780
+ /**
781
+ * @public
782
+ */
674
783
  export declare enum UplinkGbps {
675
784
  UPLINK_100G = "UPLINK_100G",
676
785
  UPLINK_10G = "UPLINK_10G",
@@ -678,6 +787,7 @@ export declare enum UplinkGbps {
678
787
  UPLINK_40G = "UPLINK_40G"
679
788
  }
680
789
  /**
790
+ * @public
681
791
  * <p> Information about the physical and logistical details for racks at sites.
682
792
  * For more information
683
793
  * about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
@@ -728,6 +838,9 @@ export interface RackPhysicalProperties {
728
838
  */
729
839
  MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
730
840
  }
841
+ /**
842
+ * @public
843
+ */
731
844
  export interface CreateSiteInput {
732
845
  /**
733
846
  * <p>The name of the site.</p>
@@ -767,6 +880,7 @@ export interface CreateSiteInput {
767
880
  RackPhysicalProperties?: RackPhysicalProperties;
768
881
  }
769
882
  /**
883
+ * @public
770
884
  * <p>Information about a site.</p>
771
885
  */
772
886
  export interface Site {
@@ -816,46 +930,73 @@ export interface Site {
816
930
  */
817
931
  RackPhysicalProperties?: RackPhysicalProperties;
818
932
  }
933
+ /**
934
+ * @public
935
+ */
819
936
  export interface CreateSiteOutput {
820
937
  /**
821
938
  * <p>Information about a site.</p>
822
939
  */
823
940
  Site?: Site;
824
941
  }
942
+ /**
943
+ * @public
944
+ */
825
945
  export interface DeleteOutpostInput {
826
946
  /**
827
947
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
828
948
  */
829
949
  OutpostId: string | undefined;
830
950
  }
951
+ /**
952
+ * @public
953
+ */
831
954
  export interface DeleteOutpostOutput {
832
955
  }
956
+ /**
957
+ * @public
958
+ */
833
959
  export interface DeleteSiteInput {
834
960
  /**
835
961
  * <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
836
962
  */
837
963
  SiteId: string | undefined;
838
964
  }
965
+ /**
966
+ * @public
967
+ */
839
968
  export interface DeleteSiteOutput {
840
969
  }
970
+ /**
971
+ * @public
972
+ */
841
973
  export interface GetCatalogItemInput {
842
974
  /**
843
975
  * <p>The ID of the catalog item.</p>
844
976
  */
845
977
  CatalogItemId: string | undefined;
846
978
  }
979
+ /**
980
+ * @public
981
+ */
847
982
  export interface GetCatalogItemOutput {
848
983
  /**
849
984
  * <p>Information about this catalog item.</p>
850
985
  */
851
986
  CatalogItem?: CatalogItem;
852
987
  }
988
+ /**
989
+ * @public
990
+ */
853
991
  export interface GetConnectionRequest {
854
992
  /**
855
993
  * <p> The ID of the connection. </p>
856
994
  */
857
995
  ConnectionId: string | undefined;
858
996
  }
997
+ /**
998
+ * @public
999
+ */
859
1000
  export interface GetConnectionResponse {
860
1001
  /**
861
1002
  * <p> The ID of the connection. </p>
@@ -866,30 +1007,45 @@ export interface GetConnectionResponse {
866
1007
  */
867
1008
  ConnectionDetails?: ConnectionDetails;
868
1009
  }
1010
+ /**
1011
+ * @public
1012
+ */
869
1013
  export interface GetOrderInput {
870
1014
  /**
871
1015
  * <p>The ID of the order.</p>
872
1016
  */
873
1017
  OrderId: string | undefined;
874
1018
  }
1019
+ /**
1020
+ * @public
1021
+ */
875
1022
  export interface GetOrderOutput {
876
1023
  /**
877
1024
  * <p>Information about an order.</p>
878
1025
  */
879
1026
  Order?: Order;
880
1027
  }
1028
+ /**
1029
+ * @public
1030
+ */
881
1031
  export interface GetOutpostInput {
882
1032
  /**
883
1033
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
884
1034
  */
885
1035
  OutpostId: string | undefined;
886
1036
  }
1037
+ /**
1038
+ * @public
1039
+ */
887
1040
  export interface GetOutpostOutput {
888
1041
  /**
889
1042
  * <p>Information about an Outpost.</p>
890
1043
  */
891
1044
  Outpost?: Outpost;
892
1045
  }
1046
+ /**
1047
+ * @public
1048
+ */
893
1049
  export interface GetOutpostInstanceTypesInput {
894
1050
  /**
895
1051
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
@@ -905,6 +1061,7 @@ export interface GetOutpostInstanceTypesInput {
905
1061
  MaxResults?: number;
906
1062
  }
907
1063
  /**
1064
+ * @public
908
1065
  * <p>Information about an instance type.</p>
909
1066
  */
910
1067
  export interface InstanceTypeItem {
@@ -913,6 +1070,9 @@ export interface InstanceTypeItem {
913
1070
  */
914
1071
  InstanceType?: string;
915
1072
  }
1073
+ /**
1074
+ * @public
1075
+ */
916
1076
  export interface GetOutpostInstanceTypesOutput {
917
1077
  /**
918
1078
  * <p>Information about the instance types.</p>
@@ -931,18 +1091,27 @@ export interface GetOutpostInstanceTypesOutput {
931
1091
  */
932
1092
  OutpostArn?: string;
933
1093
  }
1094
+ /**
1095
+ * @public
1096
+ */
934
1097
  export interface GetSiteInput {
935
1098
  /**
936
1099
  * <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
937
1100
  */
938
1101
  SiteId: string | undefined;
939
1102
  }
1103
+ /**
1104
+ * @public
1105
+ */
940
1106
  export interface GetSiteOutput {
941
1107
  /**
942
1108
  * <p>Information about a site.</p>
943
1109
  */
944
1110
  Site?: Site;
945
1111
  }
1112
+ /**
1113
+ * @public
1114
+ */
946
1115
  export interface GetSiteAddressInput {
947
1116
  /**
948
1117
  * <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
@@ -953,6 +1122,9 @@ export interface GetSiteAddressInput {
953
1122
  */
954
1123
  AddressType: AddressType | string | undefined;
955
1124
  }
1125
+ /**
1126
+ * @public
1127
+ */
956
1128
  export interface GetSiteAddressOutput {
957
1129
  /**
958
1130
  * <p>The ID of the site.</p>
@@ -967,6 +1139,9 @@ export interface GetSiteAddressOutput {
967
1139
  */
968
1140
  Address?: Address;
969
1141
  }
1142
+ /**
1143
+ * @public
1144
+ */
970
1145
  export interface ListAssetsInput {
971
1146
  /**
972
1147
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
@@ -989,6 +1164,9 @@ export interface ListAssetsInput {
989
1164
  */
990
1165
  StatusFilter?: (AssetState | string)[];
991
1166
  }
1167
+ /**
1168
+ * @public
1169
+ */
992
1170
  export interface ListAssetsOutput {
993
1171
  /**
994
1172
  * <p>Information about the hardware assets.</p>
@@ -999,6 +1177,9 @@ export interface ListAssetsOutput {
999
1177
  */
1000
1178
  NextToken?: string;
1001
1179
  }
1180
+ /**
1181
+ * @public
1182
+ */
1002
1183
  export interface ListCatalogItemsInput {
1003
1184
  /**
1004
1185
  * <p>The pagination token.</p>
@@ -1021,6 +1202,9 @@ export interface ListCatalogItemsInput {
1021
1202
  */
1022
1203
  EC2FamilyFilter?: string[];
1023
1204
  }
1205
+ /**
1206
+ * @public
1207
+ */
1024
1208
  export interface ListCatalogItemsOutput {
1025
1209
  /**
1026
1210
  * <p>Information about the catalog items.</p>
@@ -1031,6 +1215,9 @@ export interface ListCatalogItemsOutput {
1031
1215
  */
1032
1216
  NextToken?: string;
1033
1217
  }
1218
+ /**
1219
+ * @public
1220
+ */
1034
1221
  export interface ListOrdersInput {
1035
1222
  /**
1036
1223
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
@@ -1046,6 +1233,7 @@ export interface ListOrdersInput {
1046
1233
  MaxResults?: number;
1047
1234
  }
1048
1235
  /**
1236
+ * @public
1049
1237
  * <p> A summary of line items in your order. </p>
1050
1238
  */
1051
1239
  export interface OrderSummary {
@@ -1105,6 +1293,9 @@ export interface OrderSummary {
1105
1293
  */
1106
1294
  OrderFulfilledDate?: Date;
1107
1295
  }
1296
+ /**
1297
+ * @public
1298
+ */
1108
1299
  export interface ListOrdersOutput {
1109
1300
  /**
1110
1301
  * <p> Information about the orders. </p>
@@ -1115,6 +1306,9 @@ export interface ListOrdersOutput {
1115
1306
  */
1116
1307
  NextToken?: string;
1117
1308
  }
1309
+ /**
1310
+ * @public
1311
+ */
1118
1312
  export interface ListOutpostsInput {
1119
1313
  /**
1120
1314
  * <p>The pagination token.</p>
@@ -1137,6 +1331,9 @@ export interface ListOutpostsInput {
1137
1331
  */
1138
1332
  AvailabilityZoneIdFilter?: string[];
1139
1333
  }
1334
+ /**
1335
+ * @public
1336
+ */
1140
1337
  export interface ListOutpostsOutput {
1141
1338
  /**
1142
1339
  * <p>Information about the Outposts.</p>
@@ -1147,6 +1344,9 @@ export interface ListOutpostsOutput {
1147
1344
  */
1148
1345
  NextToken?: string;
1149
1346
  }
1347
+ /**
1348
+ * @public
1349
+ */
1150
1350
  export interface ListSitesInput {
1151
1351
  /**
1152
1352
  * <p>The pagination token.</p>
@@ -1169,6 +1369,9 @@ export interface ListSitesInput {
1169
1369
  */
1170
1370
  OperatingAddressCityFilter?: string[];
1171
1371
  }
1372
+ /**
1373
+ * @public
1374
+ */
1172
1375
  export interface ListSitesOutput {
1173
1376
  /**
1174
1377
  * <p>Information about the sites.</p>
@@ -1179,18 +1382,27 @@ export interface ListSitesOutput {
1179
1382
  */
1180
1383
  NextToken?: string;
1181
1384
  }
1385
+ /**
1386
+ * @public
1387
+ */
1182
1388
  export interface ListTagsForResourceRequest {
1183
1389
  /**
1184
1390
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1185
1391
  */
1186
1392
  ResourceArn: string | undefined;
1187
1393
  }
1394
+ /**
1395
+ * @public
1396
+ */
1188
1397
  export interface ListTagsForResourceResponse {
1189
1398
  /**
1190
1399
  * <p>The resource tags.</p>
1191
1400
  */
1192
1401
  Tags?: Record<string, string>;
1193
1402
  }
1403
+ /**
1404
+ * @public
1405
+ */
1194
1406
  export interface StartConnectionRequest {
1195
1407
  /**
1196
1408
  * <p> The serial number of the dongle. </p>
@@ -1209,6 +1421,9 @@ export interface StartConnectionRequest {
1209
1421
  */
1210
1422
  NetworkInterfaceDeviceIndex: number | undefined;
1211
1423
  }
1424
+ /**
1425
+ * @public
1426
+ */
1212
1427
  export interface StartConnectionResponse {
1213
1428
  /**
1214
1429
  * <p> The ID of the connection. </p>
@@ -1219,6 +1434,9 @@ export interface StartConnectionResponse {
1219
1434
  */
1220
1435
  UnderlayIpAddress?: string;
1221
1436
  }
1437
+ /**
1438
+ * @public
1439
+ */
1222
1440
  export interface TagResourceRequest {
1223
1441
  /**
1224
1442
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -1229,8 +1447,14 @@ export interface TagResourceRequest {
1229
1447
  */
1230
1448
  Tags: Record<string, string> | undefined;
1231
1449
  }
1450
+ /**
1451
+ * @public
1452
+ */
1232
1453
  export interface TagResourceResponse {
1233
1454
  }
1455
+ /**
1456
+ * @public
1457
+ */
1234
1458
  export interface UntagResourceRequest {
1235
1459
  /**
1236
1460
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -1241,8 +1465,14 @@ export interface UntagResourceRequest {
1241
1465
  */
1242
1466
  TagKeys: string[] | undefined;
1243
1467
  }
1468
+ /**
1469
+ * @public
1470
+ */
1244
1471
  export interface UntagResourceResponse {
1245
1472
  }
1473
+ /**
1474
+ * @public
1475
+ */
1246
1476
  export interface UpdateOutpostInput {
1247
1477
  /**
1248
1478
  * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
@@ -1261,12 +1491,18 @@ export interface UpdateOutpostInput {
1261
1491
  */
1262
1492
  SupportedHardwareType?: SupportedHardwareType | string;
1263
1493
  }
1494
+ /**
1495
+ * @public
1496
+ */
1264
1497
  export interface UpdateOutpostOutput {
1265
1498
  /**
1266
1499
  * <p>Information about an Outpost.</p>
1267
1500
  */
1268
1501
  Outpost?: Outpost;
1269
1502
  }
1503
+ /**
1504
+ * @public
1505
+ */
1270
1506
  export interface UpdateSiteInput {
1271
1507
  /**
1272
1508
  * <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
@@ -1285,12 +1521,18 @@ export interface UpdateSiteInput {
1285
1521
  */
1286
1522
  Notes?: string;
1287
1523
  }
1524
+ /**
1525
+ * @public
1526
+ */
1288
1527
  export interface UpdateSiteOutput {
1289
1528
  /**
1290
1529
  * <p>Information about a site.</p>
1291
1530
  */
1292
1531
  Site?: Site;
1293
1532
  }
1533
+ /**
1534
+ * @public
1535
+ */
1294
1536
  export interface UpdateSiteAddressInput {
1295
1537
  /**
1296
1538
  * <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
@@ -1305,6 +1547,9 @@ export interface UpdateSiteAddressInput {
1305
1547
  */
1306
1548
  Address: Address | undefined;
1307
1549
  }
1550
+ /**
1551
+ * @public
1552
+ */
1308
1553
  export interface UpdateSiteAddressOutput {
1309
1554
  /**
1310
1555
  * <p> The type of the address. </p>
@@ -1315,6 +1560,9 @@ export interface UpdateSiteAddressOutput {
1315
1560
  */
1316
1561
  Address?: Address;
1317
1562
  }
1563
+ /**
1564
+ * @public
1565
+ */
1318
1566
  export interface UpdateSiteRackPhysicalPropertiesInput {
1319
1567
  /**
1320
1568
  * <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
@@ -1471,6 +1719,9 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
1471
1719
  */
1472
1720
  MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
1473
1721
  }
1722
+ /**
1723
+ * @public
1724
+ */
1474
1725
  export interface UpdateSiteRackPhysicalPropertiesOutput {
1475
1726
  /**
1476
1727
  * <p>Information about a site.</p>