@aws-sdk/client-outposts 3.40.0 → 3.44.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 (90) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/Outposts.js +165 -0
  4. package/dist-cjs/commands/CancelOrderCommand.js +36 -0
  5. package/dist-cjs/commands/CreateSiteCommand.js +36 -0
  6. package/dist-cjs/commands/GetCatalogItemCommand.js +36 -0
  7. package/dist-cjs/commands/GetOrderCommand.js +36 -0
  8. package/dist-cjs/commands/GetSiteAddressCommand.js +36 -0
  9. package/dist-cjs/commands/GetSiteCommand.js +36 -0
  10. package/dist-cjs/commands/ListCatalogItemsCommand.js +36 -0
  11. package/dist-cjs/commands/ListOrdersCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateSiteAddressCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateSiteCommand.js +36 -0
  14. package/dist-cjs/commands/UpdateSiteRackPhysicalPropertiesCommand.js +36 -0
  15. package/dist-cjs/commands/index.js +11 -0
  16. package/dist-cjs/endpoints.js +8 -0
  17. package/dist-cjs/models/models_0.js +306 -25
  18. package/dist-cjs/pagination/ListCatalogItemsPaginator.js +35 -0
  19. package/dist-cjs/pagination/ListOrdersPaginator.js +35 -0
  20. package/dist-cjs/pagination/index.js +2 -0
  21. package/dist-cjs/protocols/Aws_restJson1.js +1432 -103
  22. package/dist-es/Outposts.js +165 -0
  23. package/dist-es/commands/CancelOrderCommand.js +39 -0
  24. package/dist-es/commands/CreateSiteCommand.js +39 -0
  25. package/dist-es/commands/GetCatalogItemCommand.js +39 -0
  26. package/dist-es/commands/GetOrderCommand.js +39 -0
  27. package/dist-es/commands/GetSiteAddressCommand.js +39 -0
  28. package/dist-es/commands/GetSiteCommand.js +39 -0
  29. package/dist-es/commands/ListCatalogItemsCommand.js +39 -0
  30. package/dist-es/commands/ListOrdersCommand.js +39 -0
  31. package/dist-es/commands/UpdateSiteAddressCommand.js +39 -0
  32. package/dist-es/commands/UpdateSiteCommand.js +39 -0
  33. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +39 -0
  34. package/dist-es/commands/index.js +11 -0
  35. package/dist-es/endpoints.js +8 -0
  36. package/dist-es/models/models_0.js +242 -16
  37. package/dist-es/pagination/ListCatalogItemsPaginator.js +74 -0
  38. package/dist-es/pagination/ListOrdersPaginator.js +74 -0
  39. package/dist-es/pagination/index.js +2 -0
  40. package/dist-es/protocols/Aws_restJson1.js +1642 -167
  41. package/dist-types/Outposts.d.ts +114 -6
  42. package/dist-types/OutpostsClient.d.ts +16 -5
  43. package/dist-types/commands/CancelOrderCommand.d.ts +37 -0
  44. package/dist-types/commands/CreateOrderCommand.d.ts +1 -1
  45. package/dist-types/commands/CreateOutpostCommand.d.ts +1 -1
  46. package/dist-types/commands/CreateSiteCommand.d.ts +37 -0
  47. package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
  48. package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
  49. package/dist-types/commands/GetCatalogItemCommand.d.ts +35 -0
  50. package/dist-types/commands/GetOrderCommand.d.ts +35 -0
  51. package/dist-types/commands/GetOutpostCommand.d.ts +1 -1
  52. package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +1 -1
  53. package/dist-types/commands/GetSiteAddressCommand.d.ts +37 -0
  54. package/dist-types/commands/GetSiteCommand.d.ts +37 -0
  55. package/dist-types/commands/ListCatalogItemsCommand.d.ts +39 -0
  56. package/dist-types/commands/ListOrdersCommand.d.ts +36 -0
  57. package/dist-types/commands/ListOutpostsCommand.d.ts +3 -3
  58. package/dist-types/commands/ListSitesCommand.d.ts +2 -2
  59. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  60. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  61. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  62. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +46 -0
  63. package/dist-types/commands/UpdateSiteCommand.d.ts +37 -0
  64. package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +40 -0
  65. package/dist-types/commands/index.d.ts +11 -0
  66. package/dist-types/models/models_0.d.ts +1144 -146
  67. package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  68. package/dist-types/pagination/ListOrdersPaginator.d.ts +4 -0
  69. package/dist-types/pagination/index.d.ts +2 -0
  70. package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
  71. package/dist-types/ts3.4/Outposts.d.ts +55 -0
  72. package/dist-types/ts3.4/OutpostsClient.d.ts +13 -2
  73. package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +17 -0
  77. package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +17 -0
  78. package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +17 -0
  79. package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +17 -0
  80. package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +17 -0
  81. package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  85. package/dist-types/ts3.4/models/models_0.d.ts +518 -51
  86. package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  87. package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +4 -0
  88. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  89. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
  90. package/package.json +4 -4
@@ -13,7 +13,91 @@ export declare namespace AccessDeniedException {
13
13
  */
14
14
  const filterSensitiveLog: (obj: AccessDeniedException) => any;
15
15
  }
16
+ /**
17
+ * <p>
18
+ * Information about an address.
19
+ * </p>
20
+ */
21
+ export interface Address {
22
+ /**
23
+ * <p>The name of the contact.</p>
24
+ */
25
+ ContactName?: string;
26
+ /**
27
+ * <p>The phone number of the contact.</p>
28
+ */
29
+ ContactPhoneNumber?: string;
30
+ /**
31
+ * <p>The first line of the address.</p>
32
+ */
33
+ AddressLine1: string | undefined;
34
+ /**
35
+ * <p>The second line of the address.</p>
36
+ */
37
+ AddressLine2?: string;
38
+ /**
39
+ * <p>The third line of the address.</p>
40
+ */
41
+ AddressLine3?: string;
42
+ /**
43
+ * <p>The city for the address.</p>
44
+ */
45
+ City: string | undefined;
46
+ /**
47
+ * <p>The state for the address.</p>
48
+ */
49
+ StateOrRegion: string | undefined;
50
+ /**
51
+ * <p>The district or county for the address.</p>
52
+ */
53
+ DistrictOrCounty?: string;
54
+ /**
55
+ * <p>The postal code for the address.</p>
56
+ */
57
+ PostalCode: string | undefined;
58
+ /**
59
+ * <p>The ISO-3166 two-letter country code for the address.</p>
60
+ */
61
+ CountryCode: string | undefined;
62
+ /**
63
+ * <p>The municipality for the address.</p>
64
+ */
65
+ Municipality?: string;
66
+ }
67
+ export declare namespace Address {
68
+ /**
69
+ * @internal
70
+ */
71
+ const filterSensitiveLog: (obj: Address) => any;
72
+ }
73
+ export declare enum AddressType {
74
+ OPERATING_ADDRESS = "OPERATING_ADDRESS",
75
+ SHIPPING_ADDRESS = "SHIPPING_ADDRESS"
76
+ }
77
+ export interface CancelOrderInput {
78
+ /**
79
+ * <p>
80
+ * The ID of the order to cancel.
81
+ * </p>
82
+ */
83
+ OrderId: string | undefined;
84
+ }
85
+ export declare namespace CancelOrderInput {
86
+ /**
87
+ * @internal
88
+ */
89
+ const filterSensitiveLog: (obj: CancelOrderInput) => any;
90
+ }
91
+ export interface CancelOrderOutput {
92
+ }
93
+ export declare namespace CancelOrderOutput {
94
+ /**
95
+ * @internal
96
+ */
97
+ const filterSensitiveLog: (obj: CancelOrderOutput) => any;
98
+ }
16
99
  export declare enum ResourceType {
100
+ ORDER = "ORDER",
17
101
  OUTPOST = "OUTPOST"
18
102
  }
19
103
  /**
@@ -38,6 +122,141 @@ export declare namespace ConflictException {
38
122
  */
39
123
  const filterSensitiveLog: (obj: ConflictException) => any;
40
124
  }
125
+ /**
126
+ * <p>An internal error has occurred.</p>
127
+ */
128
+ export interface InternalServerException extends __SmithyException, $MetadataBearer {
129
+ name: "InternalServerException";
130
+ $fault: "server";
131
+ Message?: string;
132
+ }
133
+ export declare namespace InternalServerException {
134
+ /**
135
+ * @internal
136
+ */
137
+ const filterSensitiveLog: (obj: InternalServerException) => any;
138
+ }
139
+ /**
140
+ * <p>The specified request is not valid.</p>
141
+ */
142
+ export interface NotFoundException extends __SmithyException, $MetadataBearer {
143
+ name: "NotFoundException";
144
+ $fault: "client";
145
+ Message?: string;
146
+ }
147
+ export declare namespace NotFoundException {
148
+ /**
149
+ * @internal
150
+ */
151
+ const filterSensitiveLog: (obj: NotFoundException) => any;
152
+ }
153
+ /**
154
+ * <p>A parameter is not valid.</p>
155
+ */
156
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
157
+ name: "ValidationException";
158
+ $fault: "client";
159
+ Message?: string;
160
+ }
161
+ export declare namespace ValidationException {
162
+ /**
163
+ * @internal
164
+ */
165
+ const filterSensitiveLog: (obj: ValidationException) => any;
166
+ }
167
+ /**
168
+ * <p> Information about EC2 capacity. </p>
169
+ */
170
+ export interface EC2Capacity {
171
+ /**
172
+ * <p>
173
+ * The family of the EC2 capacity.
174
+ * </p>
175
+ */
176
+ Family?: string;
177
+ /**
178
+ * <p>
179
+ * The maximum size of the EC2 capacity.
180
+ * </p>
181
+ */
182
+ MaxSize?: string;
183
+ /**
184
+ * <p>
185
+ * The quantity of the EC2 capacity.
186
+ * </p>
187
+ */
188
+ Quantity?: string;
189
+ }
190
+ export declare namespace EC2Capacity {
191
+ /**
192
+ * @internal
193
+ */
194
+ const filterSensitiveLog: (obj: EC2Capacity) => any;
195
+ }
196
+ export declare enum CatalogItemStatus {
197
+ AVAILABLE = "AVAILABLE",
198
+ DISCONTINUED = "DISCONTINUED"
199
+ }
200
+ export declare enum SupportedStorageEnum {
201
+ EBS = "EBS",
202
+ S3 = "S3"
203
+ }
204
+ /**
205
+ * <p> Information about a catalog item. </p>
206
+ */
207
+ export interface CatalogItem {
208
+ /**
209
+ * <p>
210
+ * The ID of the catalog item.
211
+ * </p>
212
+ */
213
+ CatalogItemId?: string;
214
+ /**
215
+ * <p>
216
+ * The status of a catalog item.
217
+ * </p>
218
+ */
219
+ ItemStatus?: CatalogItemStatus | string;
220
+ /**
221
+ * <p>
222
+ * Information about the EC2 capacity of an item.
223
+ * </p>
224
+ */
225
+ EC2Capacities?: EC2Capacity[];
226
+ /**
227
+ * <p>
228
+ * Information about the power draw of an item.
229
+ * </p>
230
+ */
231
+ PowerKva?: number;
232
+ /**
233
+ * <p> The weight of the item in pounds. </p>
234
+ */
235
+ WeightLbs?: number;
236
+ /**
237
+ * <p>
238
+ * The uplink speed this catalog item requires for the
239
+ * connection to the Region.
240
+ * </p>
241
+ */
242
+ SupportedUplinkGbps?: number[];
243
+ /**
244
+ * <p>
245
+ * The supported storage options for the catalog item.
246
+ * </p>
247
+ */
248
+ SupportedStorage?: (SupportedStorageEnum | string)[];
249
+ }
250
+ export declare namespace CatalogItem {
251
+ /**
252
+ * @internal
253
+ */
254
+ const filterSensitiveLog: (obj: CatalogItem) => any;
255
+ }
256
+ export declare enum CatalogItemClass {
257
+ RACK = "RACK",
258
+ SERVER = "SERVER"
259
+ }
41
260
  /**
42
261
  * <p>Information about a line item request.</p>
43
262
  */
@@ -91,6 +310,16 @@ export declare namespace CreateOrderInput {
91
310
  */
92
311
  const filterSensitiveLog: (obj: CreateOrderInput) => any;
93
312
  }
313
+ export declare enum LineItemStatus {
314
+ BUILDING = "BUILDING",
315
+ CANCELLED = "CANCELLED",
316
+ DELIVERED = "DELIVERED",
317
+ ERROR = "ERROR",
318
+ INSTALLED = "INSTALLED",
319
+ INSTALLING = "INSTALLING",
320
+ PREPARING = "PREPARING",
321
+ SHIPPED = "SHIPPED"
322
+ }
94
323
  /**
95
324
  * <p>Information about a line item.</p>
96
325
  */
@@ -112,7 +341,7 @@ export interface LineItem {
112
341
  /**
113
342
  * <p>The status of the line item.</p>
114
343
  */
115
- Status?: string;
344
+ Status?: LineItemStatus | string;
116
345
  }
117
346
  export declare namespace LineItem {
118
347
  /**
@@ -122,9 +351,13 @@ export declare namespace LineItem {
122
351
  }
123
352
  export declare enum OrderStatus {
124
353
  CANCELLED = "CANCELLED",
354
+ COMPLETED = "COMPLETED",
355
+ ERROR = "ERROR",
125
356
  FULFILLED = "FULFILLED",
126
357
  INSTALLING = "INSTALLING",
358
+ IN_PROGRESS = "IN_PROGRESS",
127
359
  PENDING = "PENDING",
360
+ PREPARING = "PREPARING",
128
361
  PROCESSING = "PROCESSING",
129
362
  RECEIVED = "RECEIVED"
130
363
  }
@@ -133,9 +366,7 @@ export declare enum OrderStatus {
133
366
  */
134
367
  export interface Order {
135
368
  /**
136
- * <p>
137
- * The ID of the Outpost.
138
- * </p>
369
+ * <p> The ID of the Outpost in the order. </p>
139
370
  */
140
371
  OutpostId?: string;
141
372
  /**
@@ -143,7 +374,35 @@ export interface Order {
143
374
  */
144
375
  OrderId?: string;
145
376
  /**
146
- * <p>The status of the order</p>
377
+ * <p>The status of the order.</p>
378
+ * <ul>
379
+ * <li>
380
+ * <p>
381
+ * <code>PREPARING</code> - Order is received and being prepared.</p>
382
+ * </li>
383
+ * <li>
384
+ * <p>
385
+ * <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. To get more
386
+ * details, see the <code>LineItem</code> status.</p>
387
+ * </li>
388
+ * <li>
389
+ * <p>
390
+ * <code>COMPLETED</code> - Order is complete.</p>
391
+ * </li>
392
+ * <li>
393
+ * <p>
394
+ * <code>CANCELLED</code> - Order is cancelled.</p>
395
+ * </li>
396
+ * <li>
397
+ * <p>
398
+ * <code>ERROR</code> - Customer should contact support.</p>
399
+ * </li>
400
+ * </ul>
401
+ *
402
+ * <note>
403
+ * <p>The following status are deprecated: <code>RECEIVED</code>, <code>PENDING</code>,
404
+ * <code>PROCESSING</code>, <code>INSTALLING</code>, and <code>FULFILLED</code>. </p>
405
+ * </note>
147
406
  */
148
407
  Status?: OrderStatus | string;
149
408
  /**
@@ -181,34 +440,6 @@ export declare namespace CreateOrderOutput {
181
440
  */
182
441
  const filterSensitiveLog: (obj: CreateOrderOutput) => any;
183
442
  }
184
- /**
185
- * <p>An internal error has occurred.</p>
186
- */
187
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
188
- name: "InternalServerException";
189
- $fault: "server";
190
- Message?: string;
191
- }
192
- export declare namespace InternalServerException {
193
- /**
194
- * @internal
195
- */
196
- const filterSensitiveLog: (obj: InternalServerException) => any;
197
- }
198
- /**
199
- * <p>The specified request is not valid.</p>
200
- */
201
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
202
- name: "NotFoundException";
203
- $fault: "client";
204
- Message?: string;
205
- }
206
- export declare namespace NotFoundException {
207
- /**
208
- * @internal
209
- */
210
- const filterSensitiveLog: (obj: NotFoundException) => any;
211
- }
212
443
  /**
213
444
  * <p>You have exceeded a service quota.</p>
214
445
  */
@@ -223,19 +454,9 @@ export declare namespace ServiceQuotaExceededException {
223
454
  */
224
455
  const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
225
456
  }
226
- /**
227
- * <p>A parameter is not valid.</p>
228
- */
229
- export interface ValidationException extends __SmithyException, $MetadataBearer {
230
- name: "ValidationException";
231
- $fault: "client";
232
- Message?: string;
233
- }
234
- export declare namespace ValidationException {
235
- /**
236
- * @internal
237
- */
238
- const filterSensitiveLog: (obj: ValidationException) => any;
457
+ export declare enum SupportedHardwareType {
458
+ RACK = "RACK",
459
+ SERVER = "SERVER"
239
460
  }
240
461
  export interface CreateOutpostInput {
241
462
  /**
@@ -264,6 +485,12 @@ export interface CreateOutpostInput {
264
485
  Tags?: {
265
486
  [key: string]: string;
266
487
  };
488
+ /**
489
+ * <p>
490
+ * The type of hardware for this Outpost.
491
+ * </p>
492
+ */
493
+ SupportedHardwareType?: SupportedHardwareType | string;
267
494
  }
268
495
  export declare namespace CreateOutpostInput {
269
496
  /**
@@ -276,13 +503,11 @@ export declare namespace CreateOutpostInput {
276
503
  */
277
504
  export interface Outpost {
278
505
  /**
279
- * <p>
280
- * The ID of the Outpost.
281
- * </p>
506
+ * <p> The ID of the Outpost. </p>
282
507
  */
283
508
  OutpostId?: string;
284
509
  /**
285
- * <p>The AWS account ID of the Outpost owner.</p>
510
+ * <p>The Amazon Web Services account ID of the Outpost owner.</p>
286
511
  */
287
512
  OwnerId?: string;
288
513
  /**
@@ -323,6 +548,12 @@ export interface Outpost {
323
548
  * <p>The Amazon Resource Name (ARN) of the site.</p>
324
549
  */
325
550
  SiteArn?: string;
551
+ /**
552
+ * <p>
553
+ * The hardware type.
554
+ * </p>
555
+ */
556
+ SupportedHardwareType?: SupportedHardwareType | string;
326
557
  }
327
558
  export declare namespace Outpost {
328
559
  /**
@@ -342,81 +573,377 @@ export declare namespace CreateOutpostOutput {
342
573
  */
343
574
  const filterSensitiveLog: (obj: CreateOutpostOutput) => any;
344
575
  }
345
- export interface DeleteOutpostInput {
576
+ export declare enum FiberOpticCableType {
577
+ MULTI_MODE = "MULTI_MODE",
578
+ SINGLE_MODE = "SINGLE_MODE"
579
+ }
580
+ export declare enum MaximumSupportedWeightLbs {
581
+ MAX_1400_LBS = "MAX_1400_LBS",
582
+ MAX_1600_LBS = "MAX_1600_LBS",
583
+ MAX_1800_LBS = "MAX_1800_LBS",
584
+ MAX_2000_LBS = "MAX_2000_LBS",
585
+ NO_LIMIT = "NO_LIMIT"
586
+ }
587
+ export declare enum OpticalStandard {
588
+ OPTIC_1000BASE_LX = "OPTIC_1000BASE_LX",
589
+ OPTIC_1000BASE_SX = "OPTIC_1000BASE_SX",
590
+ OPTIC_100GBASE_CWDM4 = "OPTIC_100GBASE_CWDM4",
591
+ OPTIC_100GBASE_LR4 = "OPTIC_100GBASE_LR4",
592
+ OPTIC_100GBASE_SR4 = "OPTIC_100GBASE_SR4",
593
+ OPTIC_100G_PSM4_MSA = "OPTIC_100G_PSM4_MSA",
594
+ OPTIC_10GBASE_IR = "OPTIC_10GBASE_IR",
595
+ OPTIC_10GBASE_LR = "OPTIC_10GBASE_LR",
596
+ OPTIC_10GBASE_SR = "OPTIC_10GBASE_SR",
597
+ OPTIC_40GBASE_ESR = "OPTIC_40GBASE_ESR",
598
+ OPTIC_40GBASE_IR4_LR4L = "OPTIC_40GBASE_IR4_LR4L",
599
+ OPTIC_40GBASE_LR4 = "OPTIC_40GBASE_LR4",
600
+ OPTIC_40GBASE_SR = "OPTIC_40GBASE_SR"
601
+ }
602
+ export declare enum PowerConnector {
603
+ AH530P7W = "AH530P7W",
604
+ AH532P6W = "AH532P6W",
605
+ IEC309 = "IEC309",
606
+ L6_30P = "L6_30P"
607
+ }
608
+ export declare enum PowerDrawKva {
609
+ POWER_10_KVA = "POWER_10_KVA",
610
+ POWER_15_KVA = "POWER_15_KVA",
611
+ POWER_5_KVA = "POWER_5_KVA"
612
+ }
613
+ export declare enum PowerFeedDrop {
614
+ ABOVE_RACK = "ABOVE_RACK",
615
+ BELOW_RACK = "BELOW_RACK"
616
+ }
617
+ export declare enum PowerPhase {
618
+ SINGLE_PHASE = "SINGLE_PHASE",
619
+ THREE_PHASE = "THREE_PHASE"
620
+ }
621
+ export declare enum UplinkCount {
622
+ UPLINK_COUNT_1 = "UPLINK_COUNT_1",
623
+ UPLINK_COUNT_12 = "UPLINK_COUNT_12",
624
+ UPLINK_COUNT_16 = "UPLINK_COUNT_16",
625
+ UPLINK_COUNT_2 = "UPLINK_COUNT_2",
626
+ UPLINK_COUNT_3 = "UPLINK_COUNT_3",
627
+ UPLINK_COUNT_4 = "UPLINK_COUNT_4",
628
+ UPLINK_COUNT_5 = "UPLINK_COUNT_5",
629
+ UPLINK_COUNT_6 = "UPLINK_COUNT_6",
630
+ UPLINK_COUNT_7 = "UPLINK_COUNT_7",
631
+ UPLINK_COUNT_8 = "UPLINK_COUNT_8"
632
+ }
633
+ export declare enum UplinkGbps {
634
+ UPLINK_100G = "UPLINK_100G",
635
+ UPLINK_10G = "UPLINK_10G",
636
+ UPLINK_1G = "UPLINK_1G",
637
+ UPLINK_40G = "UPLINK_40G"
638
+ }
639
+ /**
640
+ * <p> Information about the physical and logistical details for racks at sites.
641
+ * For more information
642
+ * about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
643
+ * readiness checklist</a> in the Amazon Web Services Outposts User Guide.
644
+ * </p>
645
+ */
646
+ export interface RackPhysicalProperties {
346
647
  /**
347
- * <p>
348
- * The ID of the Outpost.
349
- * </p>
648
+ * <p>The power draw available at the hardware placement position for the rack. </p>
350
649
  */
351
- OutpostId: string | undefined;
352
- }
353
- export declare namespace DeleteOutpostInput {
650
+ PowerDrawKva?: PowerDrawKva | string;
354
651
  /**
355
- * @internal
652
+ * <p>The power option that you can provide for hardware.</p>
356
653
  */
357
- const filterSensitiveLog: (obj: DeleteOutpostInput) => any;
358
- }
359
- export interface DeleteOutpostOutput {
360
- }
361
- export declare namespace DeleteOutpostOutput {
654
+ PowerPhase?: PowerPhase | string;
362
655
  /**
363
- * @internal
656
+ * <p>The power connector for the hardware. </p>
364
657
  */
365
- const filterSensitiveLog: (obj: DeleteOutpostOutput) => any;
366
- }
367
- export interface DeleteSiteInput {
658
+ PowerConnector?: PowerConnector | string;
368
659
  /**
369
- * <p>The ID of the site.</p>
660
+ * <p>The position of the power feed.</p>
370
661
  */
371
- SiteId: string | undefined;
372
- }
373
- export declare namespace DeleteSiteInput {
662
+ PowerFeedDrop?: PowerFeedDrop | string;
374
663
  /**
375
- * @internal
664
+ * <p>The uplink speed the rack supports for the connection to the Region. </p>
376
665
  */
377
- const filterSensitiveLog: (obj: DeleteSiteInput) => any;
378
- }
379
- export interface DeleteSiteOutput {
380
- }
381
- export declare namespace DeleteSiteOutput {
666
+ UplinkGbps?: UplinkGbps | string;
382
667
  /**
383
- * @internal
668
+ * <p>The number of uplinks each Outpost network device.</p>
384
669
  */
385
- const filterSensitiveLog: (obj: DeleteSiteOutput) => any;
386
- }
387
- export interface GetOutpostInput {
670
+ UplinkCount?: UplinkCount | string;
388
671
  /**
389
- * <p>
390
- * The ID of the Outpost.
391
- * </p>
672
+ * <p>The type of fiber used to attach the Outpost to the network. </p>
392
673
  */
393
- OutpostId: string | undefined;
394
- }
395
- export declare namespace GetOutpostInput {
674
+ FiberOpticCableType?: FiberOpticCableType | string;
396
675
  /**
397
- * @internal
676
+ * <p>The type of optical standard used to attach the Outpost to the network. This field is
677
+ * dependent on uplink speed, fiber type, and distance to the upstream device. For more information
678
+ * about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
679
+ * in the Amazon Web Services Outposts User Guide.
680
+ * </p>
398
681
  */
399
- const filterSensitiveLog: (obj: GetOutpostInput) => any;
400
- }
401
- export interface GetOutpostOutput {
682
+ OpticalStandard?: OpticalStandard | string;
402
683
  /**
403
- * <p>Information about an Outpost.</p>
684
+ * <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over 2000 lbs
685
+ * (907 kg). </p>
404
686
  */
405
- Outpost?: Outpost;
687
+ MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
406
688
  }
407
- export declare namespace GetOutpostOutput {
689
+ export declare namespace RackPhysicalProperties {
408
690
  /**
409
691
  * @internal
410
692
  */
411
- const filterSensitiveLog: (obj: GetOutpostOutput) => any;
693
+ const filterSensitiveLog: (obj: RackPhysicalProperties) => any;
412
694
  }
413
- export interface GetOutpostInstanceTypesInput {
695
+ export interface CreateSiteInput {
414
696
  /**
415
- * <p>
416
- * The ID of the Outpost.
417
- * </p>
697
+ * <p>The name of the site.</p>
418
698
  */
419
- OutpostId: string | undefined;
699
+ Name: string | undefined;
700
+ /**
701
+ * <p>The description of the site.</p>
702
+ */
703
+ Description?: string;
704
+ /**
705
+ * <p>Additional information that you provide about site access requirements, electrician
706
+ * scheduling, personal protective equipment, or regulation of equipment materials that could
707
+ * affect your installation process. </p>
708
+ */
709
+ Notes?: string;
710
+ /**
711
+ * <p>
712
+ * The tags to apply to a site.
713
+ * </p>
714
+ */
715
+ Tags?: {
716
+ [key: string]: string;
717
+ };
718
+ /**
719
+ * <p>
720
+ * The location to install and power on the hardware. This address might be
721
+ * different from the shipping address.
722
+ * </p>
723
+ */
724
+ OperatingAddress?: Address;
725
+ /**
726
+ * <p>
727
+ * The location to ship the hardware. This address might be different
728
+ * from the operating address.
729
+ * </p>
730
+ */
731
+ ShippingAddress?: Address;
732
+ /**
733
+ * <p> Information about the physical and logistical details for the rack at this site.
734
+ * For more information
735
+ * about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
736
+ * readiness checklist</a> in the Amazon Web Services Outposts User Guide.
737
+ * </p>
738
+ */
739
+ RackPhysicalProperties?: RackPhysicalProperties;
740
+ }
741
+ export declare namespace CreateSiteInput {
742
+ /**
743
+ * @internal
744
+ */
745
+ const filterSensitiveLog: (obj: CreateSiteInput) => any;
746
+ }
747
+ /**
748
+ * <p>Information about a site.</p>
749
+ */
750
+ export interface Site {
751
+ /**
752
+ * <p>The ID of the site.</p>
753
+ */
754
+ SiteId?: string;
755
+ /**
756
+ * <p>The ID of the Amazon Web Services account.</p>
757
+ */
758
+ AccountId?: string;
759
+ /**
760
+ * <p>The name of the site.</p>
761
+ */
762
+ Name?: string;
763
+ /**
764
+ * <p>The description of the site.</p>
765
+ */
766
+ Description?: string;
767
+ /**
768
+ * <p>The site tags.</p>
769
+ */
770
+ Tags?: {
771
+ [key: string]: string;
772
+ };
773
+ /**
774
+ * <p>The Amazon Resource Name (ARN) of the site.</p>
775
+ */
776
+ SiteArn?: string;
777
+ /**
778
+ * <p>
779
+ * Notes about a site.
780
+ * </p>
781
+ */
782
+ Notes?: string;
783
+ /**
784
+ * <p>
785
+ * The ISO-3166 two-letter country code where the hardware is installed and powered on.
786
+ * </p>
787
+ */
788
+ OperatingAddressCountryCode?: string;
789
+ /**
790
+ * <p> State or region where the hardware is installed and powered on. </p>
791
+ */
792
+ OperatingAddressStateOrRegion?: string;
793
+ /**
794
+ * <p>
795
+ * City where the hardware is installed and powered on.
796
+ * </p>
797
+ */
798
+ OperatingAddressCity?: string;
799
+ /**
800
+ * <p>
801
+ * Information about the physical and logistical details for a rack at the site.
802
+ * </p>
803
+ */
804
+ RackPhysicalProperties?: RackPhysicalProperties;
805
+ }
806
+ export declare namespace Site {
807
+ /**
808
+ * @internal
809
+ */
810
+ const filterSensitiveLog: (obj: Site) => any;
811
+ }
812
+ export interface CreateSiteOutput {
813
+ /**
814
+ * <p>Information about a site.</p>
815
+ */
816
+ Site?: Site;
817
+ }
818
+ export declare namespace CreateSiteOutput {
819
+ /**
820
+ * @internal
821
+ */
822
+ const filterSensitiveLog: (obj: CreateSiteOutput) => any;
823
+ }
824
+ export interface DeleteOutpostInput {
825
+ /**
826
+ * <p>
827
+ * The ID of the Outpost.
828
+ * </p>
829
+ */
830
+ OutpostId: string | undefined;
831
+ }
832
+ export declare namespace DeleteOutpostInput {
833
+ /**
834
+ * @internal
835
+ */
836
+ const filterSensitiveLog: (obj: DeleteOutpostInput) => any;
837
+ }
838
+ export interface DeleteOutpostOutput {
839
+ }
840
+ export declare namespace DeleteOutpostOutput {
841
+ /**
842
+ * @internal
843
+ */
844
+ const filterSensitiveLog: (obj: DeleteOutpostOutput) => any;
845
+ }
846
+ export interface DeleteSiteInput {
847
+ /**
848
+ * <p>The ID of the site.</p>
849
+ */
850
+ SiteId: string | undefined;
851
+ }
852
+ export declare namespace DeleteSiteInput {
853
+ /**
854
+ * @internal
855
+ */
856
+ const filterSensitiveLog: (obj: DeleteSiteInput) => any;
857
+ }
858
+ export interface DeleteSiteOutput {
859
+ }
860
+ export declare namespace DeleteSiteOutput {
861
+ /**
862
+ * @internal
863
+ */
864
+ const filterSensitiveLog: (obj: DeleteSiteOutput) => any;
865
+ }
866
+ export interface GetCatalogItemInput {
867
+ /**
868
+ * <p>The ID of the catalog item.</p>
869
+ */
870
+ CatalogItemId: string | undefined;
871
+ }
872
+ export declare namespace GetCatalogItemInput {
873
+ /**
874
+ * @internal
875
+ */
876
+ const filterSensitiveLog: (obj: GetCatalogItemInput) => any;
877
+ }
878
+ export interface GetCatalogItemOutput {
879
+ /**
880
+ * <p>Information about this catalog item.</p>
881
+ */
882
+ CatalogItem?: CatalogItem;
883
+ }
884
+ export declare namespace GetCatalogItemOutput {
885
+ /**
886
+ * @internal
887
+ */
888
+ const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
889
+ }
890
+ export interface GetOrderInput {
891
+ /**
892
+ * <p>The ID of the order.</p>
893
+ */
894
+ OrderId: string | undefined;
895
+ }
896
+ export declare namespace GetOrderInput {
897
+ /**
898
+ * @internal
899
+ */
900
+ const filterSensitiveLog: (obj: GetOrderInput) => any;
901
+ }
902
+ export interface GetOrderOutput {
903
+ /**
904
+ * <p>Information about an order.</p>
905
+ */
906
+ Order?: Order;
907
+ }
908
+ export declare namespace GetOrderOutput {
909
+ /**
910
+ * @internal
911
+ */
912
+ const filterSensitiveLog: (obj: GetOrderOutput) => any;
913
+ }
914
+ export interface GetOutpostInput {
915
+ /**
916
+ * <p>
917
+ * The ID of the Outpost.
918
+ * </p>
919
+ */
920
+ OutpostId: string | undefined;
921
+ }
922
+ export declare namespace GetOutpostInput {
923
+ /**
924
+ * @internal
925
+ */
926
+ const filterSensitiveLog: (obj: GetOutpostInput) => any;
927
+ }
928
+ export interface GetOutpostOutput {
929
+ /**
930
+ * <p>Information about an Outpost.</p>
931
+ */
932
+ Outpost?: Outpost;
933
+ }
934
+ export declare namespace GetOutpostOutput {
935
+ /**
936
+ * @internal
937
+ */
938
+ const filterSensitiveLog: (obj: GetOutpostOutput) => any;
939
+ }
940
+ export interface GetOutpostInstanceTypesInput {
941
+ /**
942
+ * <p>
943
+ * The ID of the Outpost.
944
+ * </p>
945
+ */
946
+ OutpostId: string | undefined;
420
947
  /**
421
948
  * <p>The pagination token.</p>
422
949
  */
@@ -473,7 +1000,69 @@ export declare namespace GetOutpostInstanceTypesOutput {
473
1000
  */
474
1001
  const filterSensitiveLog: (obj: GetOutpostInstanceTypesOutput) => any;
475
1002
  }
476
- export interface ListOutpostsInput {
1003
+ export interface GetSiteInput {
1004
+ /**
1005
+ * <p>The ID of the site.</p>
1006
+ */
1007
+ SiteId: string | undefined;
1008
+ }
1009
+ export declare namespace GetSiteInput {
1010
+ /**
1011
+ * @internal
1012
+ */
1013
+ const filterSensitiveLog: (obj: GetSiteInput) => any;
1014
+ }
1015
+ export interface GetSiteOutput {
1016
+ /**
1017
+ * <p>Information about a site.</p>
1018
+ */
1019
+ Site?: Site;
1020
+ }
1021
+ export declare namespace GetSiteOutput {
1022
+ /**
1023
+ * @internal
1024
+ */
1025
+ const filterSensitiveLog: (obj: GetSiteOutput) => any;
1026
+ }
1027
+ export interface GetSiteAddressInput {
1028
+ /**
1029
+ * <p>The ID of the site.</p>
1030
+ */
1031
+ SiteId: string | undefined;
1032
+ /**
1033
+ * <p> The type of the address you request. </p>
1034
+ */
1035
+ AddressType: AddressType | string | undefined;
1036
+ }
1037
+ export declare namespace GetSiteAddressInput {
1038
+ /**
1039
+ * @internal
1040
+ */
1041
+ const filterSensitiveLog: (obj: GetSiteAddressInput) => any;
1042
+ }
1043
+ export interface GetSiteAddressOutput {
1044
+ /**
1045
+ * <p>The ID of the site.</p>
1046
+ */
1047
+ SiteId?: string;
1048
+ /**
1049
+ * <p> The type of the address you receive. </p>
1050
+ */
1051
+ AddressType?: AddressType | string;
1052
+ /**
1053
+ * <p>
1054
+ * Information about the address.
1055
+ * </p>
1056
+ */
1057
+ Address?: Address;
1058
+ }
1059
+ export declare namespace GetSiteAddressOutput {
1060
+ /**
1061
+ * @internal
1062
+ */
1063
+ const filterSensitiveLog: (obj: GetSiteAddressOutput) => any;
1064
+ }
1065
+ export interface ListCatalogItemsInput {
477
1066
  /**
478
1067
  * <p>The pagination token.</p>
479
1068
  */
@@ -484,55 +1073,61 @@ export interface ListOutpostsInput {
484
1073
  MaxResults?: number;
485
1074
  /**
486
1075
  * <p>
487
- * A filter for the lifecycle status of the Outpost.
1076
+ * A filter for the class of items in the catalog.
488
1077
  * </p>
489
- * <p> Filter values are case sensitive. If you specify multiple values for a filter, the values
490
- * are joined with an <code>OR</code>, and the request returns all results that match any of the
491
- * specified values. </p>
1078
+ * <p>Filter values are case sensitive. If you specify multiple
1079
+ * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1080
+ * all results that match any of the specified values.</p>
492
1081
  */
493
- LifeCycleStatusFilter?: string[];
1082
+ ItemClassFilter?: (CatalogItemClass | string)[];
494
1083
  /**
495
- * <p> A filter for the Availibility Zone (<code>us-east-1a</code>) of the Outpost. </p>
496
- *
497
- * <p> Filter values are case sensitive. If you specify multiple values for a filter, the values
498
- * are joined with an <code>OR</code>, and the request returns all results that match any of the
499
- * specified values. </p>
1084
+ * <p>
1085
+ * A filter for the storage options of items in the catalog.
1086
+ * </p>
1087
+ * <p>Filter values are case sensitive. If you specify multiple
1088
+ * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1089
+ * all results that match any of the specified values.</p>
500
1090
  */
501
- AvailabilityZoneFilter?: string[];
1091
+ SupportedStorageFilter?: (SupportedStorageEnum | string)[];
502
1092
  /**
503
1093
  * <p>
504
- * A filter for the AZ IDs (<code>use1-az1</code>) of the Outpost.
1094
+ * A filter for EC2 family options for items in the catalog.
505
1095
  * </p>
506
- *
507
- * <p> Filter values are case sensitive. If you specify multiple values for a filter, the values
508
- * are joined with an <code>OR</code>, and the request returns all results that match any of the
509
- * specified values. </p>
1096
+ * <p>Filter values are case sensitive. If you specify multiple
1097
+ * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1098
+ * all results that match any of the specified values.</p>
510
1099
  */
511
- AvailabilityZoneIdFilter?: string[];
1100
+ EC2FamilyFilter?: string[];
512
1101
  }
513
- export declare namespace ListOutpostsInput {
1102
+ export declare namespace ListCatalogItemsInput {
514
1103
  /**
515
1104
  * @internal
516
1105
  */
517
- const filterSensitiveLog: (obj: ListOutpostsInput) => any;
1106
+ const filterSensitiveLog: (obj: ListCatalogItemsInput) => any;
518
1107
  }
519
- export interface ListOutpostsOutput {
1108
+ export interface ListCatalogItemsOutput {
520
1109
  /**
521
- * <p>Information about the Outposts.</p>
1110
+ * <p>Information about the catalog items.</p>
522
1111
  */
523
- Outposts?: Outpost[];
1112
+ CatalogItems?: CatalogItem[];
524
1113
  /**
525
1114
  * <p>The pagination token.</p>
526
1115
  */
527
1116
  NextToken?: string;
528
1117
  }
529
- export declare namespace ListOutpostsOutput {
1118
+ export declare namespace ListCatalogItemsOutput {
530
1119
  /**
531
1120
  * @internal
532
1121
  */
533
- const filterSensitiveLog: (obj: ListOutpostsOutput) => any;
1122
+ const filterSensitiveLog: (obj: ListCatalogItemsOutput) => any;
534
1123
  }
535
- export interface ListSitesInput {
1124
+ export interface ListOrdersInput {
1125
+ /**
1126
+ * <p>
1127
+ * The ID or the Amazon Resource Name (ARN) of the Outpost.
1128
+ * </p>
1129
+ */
1130
+ OutpostIdentifierFilter?: string;
536
1131
  /**
537
1132
  * <p>The pagination token.</p>
538
1133
  */
@@ -542,48 +1137,191 @@ export interface ListSitesInput {
542
1137
  */
543
1138
  MaxResults?: number;
544
1139
  }
545
- export declare namespace ListSitesInput {
1140
+ export declare namespace ListOrdersInput {
546
1141
  /**
547
1142
  * @internal
548
1143
  */
549
- const filterSensitiveLog: (obj: ListSitesInput) => any;
1144
+ const filterSensitiveLog: (obj: ListOrdersInput) => any;
1145
+ }
1146
+ export declare enum OrderType {
1147
+ OUTPOST = "OUTPOST",
1148
+ REPLACEMENT = "REPLACEMENT"
550
1149
  }
551
1150
  /**
552
- * <p>Information about a site.</p>
1151
+ * <p>
1152
+ * A summary of line items in your order.
1153
+ * </p>
553
1154
  */
554
- export interface Site {
1155
+ export interface OrderSummary {
555
1156
  /**
556
- * <p>The ID of the site.</p>
1157
+ * <p>
1158
+ * The ID of the Outpost.
1159
+ * </p>
557
1160
  */
558
- SiteId?: string;
1161
+ OutpostId?: string;
559
1162
  /**
560
- * <p>The ID of the AWS account.</p>
1163
+ * <p>
1164
+ * The ID of the order.
1165
+ * </p>
561
1166
  */
562
- AccountId?: string;
1167
+ OrderId?: string;
563
1168
  /**
564
- * <p>The name of the site.</p>
1169
+ * <p>
1170
+ * The type of order.
1171
+ * </p>
565
1172
  */
566
- Name?: string;
567
- /**
568
- * <p>The description of the site.</p>
1173
+ OrderType?: OrderType | string;
1174
+ /**
1175
+ * <p>The status of the order.</p>
1176
+ * <ul>
1177
+ * <li>
1178
+ * <p>
1179
+ * <code>PREPARING</code> - Order is received and is being prepared.</p>
1180
+ * </li>
1181
+ * <li>
1182
+ * <p>
1183
+ * <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. For more
1184
+ * information, see the <code>LineItem</code> status.</p>
1185
+ * </li>
1186
+ * <li>
1187
+ * <p>
1188
+ * <code>COMPLETED</code> - Order is complete.</p>
1189
+ * </li>
1190
+ * <li>
1191
+ * <p>
1192
+ * <code>CANCELLED</code> - Order is cancelled.</p>
1193
+ * </li>
1194
+ * <li>
1195
+ * <p>
1196
+ * <code>ERROR</code> - Customer should contact support.</p>
1197
+ * </li>
1198
+ * </ul>
1199
+ *
1200
+ * <note>
1201
+ * <p>The following statuses are deprecated: <code>RECEIVED</code>, <code>PENDING</code>,
1202
+ * <code>PROCESSING</code>, <code>INSTALLING</code>, and <code>FULFILLED</code>. </p>
1203
+ * </note>
569
1204
  */
570
- Description?: string;
1205
+ Status?: OrderStatus | string;
571
1206
  /**
572
- * <p>The site tags.</p>
1207
+ * <p>
1208
+ * The status of all line items in the order.
1209
+ * </p>
573
1210
  */
574
- Tags?: {
575
- [key: string]: string;
1211
+ LineItemCountsByStatus?: {
1212
+ [key: string]: number;
576
1213
  };
577
1214
  /**
578
- * <p>The Amazon Resource Name (ARN) of the site.</p>
1215
+ * <p>
1216
+ * Submission date for the order.
1217
+ * </p>
579
1218
  */
580
- SiteArn?: string;
1219
+ OrderSubmissionDate?: Date;
1220
+ /**
1221
+ * <p>
1222
+ * Fulfilment date for the order.
1223
+ * </p>
1224
+ */
1225
+ OrderFulfilledDate?: Date;
581
1226
  }
582
- export declare namespace Site {
1227
+ export declare namespace OrderSummary {
583
1228
  /**
584
1229
  * @internal
585
1230
  */
586
- const filterSensitiveLog: (obj: Site) => any;
1231
+ const filterSensitiveLog: (obj: OrderSummary) => any;
1232
+ }
1233
+ export interface ListOrdersOutput {
1234
+ /**
1235
+ * <p>
1236
+ * Information about the orders.
1237
+ * </p>
1238
+ */
1239
+ Orders?: OrderSummary[];
1240
+ /**
1241
+ * <p>The pagination token.</p>
1242
+ */
1243
+ NextToken?: string;
1244
+ }
1245
+ export declare namespace ListOrdersOutput {
1246
+ /**
1247
+ * @internal
1248
+ */
1249
+ const filterSensitiveLog: (obj: ListOrdersOutput) => any;
1250
+ }
1251
+ export interface ListOutpostsInput {
1252
+ /**
1253
+ * <p>The pagination token.</p>
1254
+ */
1255
+ NextToken?: string;
1256
+ /**
1257
+ * <p>The maximum page size.</p>
1258
+ */
1259
+ MaxResults?: number;
1260
+ /**
1261
+ * <p>
1262
+ * A filter for the lifecycle status of the Outpost.
1263
+ * </p>
1264
+ * <p>Filter values are case sensitive. If you specify multiple
1265
+ * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1266
+ * all results that match any of the specified values.</p>
1267
+ */
1268
+ LifeCycleStatusFilter?: string[];
1269
+ /**
1270
+ * <p> A filter for the Availability Zone (<code>us-east-1a</code>) of the Outpost. </p>
1271
+ *
1272
+ * <p>Filter values are case sensitive. If you specify multiple
1273
+ * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1274
+ * all results that match any of the specified values.</p>
1275
+ */
1276
+ AvailabilityZoneFilter?: string[];
1277
+ /**
1278
+ * <p>
1279
+ * A filter for the AZ IDs (<code>use1-az1</code>) of the Outpost.
1280
+ * </p>
1281
+ *
1282
+ * <p>Filter values are case sensitive. If you specify multiple
1283
+ * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1284
+ * all results that match any of the specified values.</p>
1285
+ */
1286
+ AvailabilityZoneIdFilter?: string[];
1287
+ }
1288
+ export declare namespace ListOutpostsInput {
1289
+ /**
1290
+ * @internal
1291
+ */
1292
+ const filterSensitiveLog: (obj: ListOutpostsInput) => any;
1293
+ }
1294
+ export interface ListOutpostsOutput {
1295
+ /**
1296
+ * <p>Information about the Outposts.</p>
1297
+ */
1298
+ Outposts?: Outpost[];
1299
+ /**
1300
+ * <p>The pagination token.</p>
1301
+ */
1302
+ NextToken?: string;
1303
+ }
1304
+ export declare namespace ListOutpostsOutput {
1305
+ /**
1306
+ * @internal
1307
+ */
1308
+ const filterSensitiveLog: (obj: ListOutpostsOutput) => any;
1309
+ }
1310
+ export interface ListSitesInput {
1311
+ /**
1312
+ * <p>The pagination token.</p>
1313
+ */
1314
+ NextToken?: string;
1315
+ /**
1316
+ * <p>The maximum page size.</p>
1317
+ */
1318
+ MaxResults?: number;
1319
+ }
1320
+ export declare namespace ListSitesInput {
1321
+ /**
1322
+ * @internal
1323
+ */
1324
+ const filterSensitiveLog: (obj: ListSitesInput) => any;
587
1325
  }
588
1326
  export interface ListSitesOutput {
589
1327
  /**
@@ -677,3 +1415,263 @@ export declare namespace UntagResourceResponse {
677
1415
  */
678
1416
  const filterSensitiveLog: (obj: UntagResourceResponse) => any;
679
1417
  }
1418
+ export interface UpdateSiteInput {
1419
+ /**
1420
+ * <p>The ID of the site.</p>
1421
+ */
1422
+ SiteId: string | undefined;
1423
+ /**
1424
+ * <p>The name of the site.</p>
1425
+ */
1426
+ Name?: string;
1427
+ /**
1428
+ * <p>The description of the site.</p>
1429
+ */
1430
+ Description?: string;
1431
+ /**
1432
+ * <p>
1433
+ * Notes about a site.
1434
+ * </p>
1435
+ */
1436
+ Notes?: string;
1437
+ }
1438
+ export declare namespace UpdateSiteInput {
1439
+ /**
1440
+ * @internal
1441
+ */
1442
+ const filterSensitiveLog: (obj: UpdateSiteInput) => any;
1443
+ }
1444
+ export interface UpdateSiteOutput {
1445
+ /**
1446
+ * <p>Information about a site.</p>
1447
+ */
1448
+ Site?: Site;
1449
+ }
1450
+ export declare namespace UpdateSiteOutput {
1451
+ /**
1452
+ * @internal
1453
+ */
1454
+ const filterSensitiveLog: (obj: UpdateSiteOutput) => any;
1455
+ }
1456
+ export interface UpdateSiteAddressInput {
1457
+ /**
1458
+ * <p>The ID of the site.</p>
1459
+ */
1460
+ SiteId: string | undefined;
1461
+ /**
1462
+ * <p>
1463
+ * The type of the address.
1464
+ * </p>
1465
+ */
1466
+ AddressType: AddressType | string | undefined;
1467
+ /**
1468
+ * <p>
1469
+ * The address for the site.
1470
+ * </p>
1471
+ */
1472
+ Address: Address | undefined;
1473
+ }
1474
+ export declare namespace UpdateSiteAddressInput {
1475
+ /**
1476
+ * @internal
1477
+ */
1478
+ const filterSensitiveLog: (obj: UpdateSiteAddressInput) => any;
1479
+ }
1480
+ export interface UpdateSiteAddressOutput {
1481
+ /**
1482
+ * <p>
1483
+ * The type of the address.
1484
+ * </p>
1485
+ */
1486
+ AddressType?: AddressType | string;
1487
+ /**
1488
+ * <p>
1489
+ * Information about an address.
1490
+ * </p>
1491
+ */
1492
+ Address?: Address;
1493
+ }
1494
+ export declare namespace UpdateSiteAddressOutput {
1495
+ /**
1496
+ * @internal
1497
+ */
1498
+ const filterSensitiveLog: (obj: UpdateSiteAddressOutput) => any;
1499
+ }
1500
+ export interface UpdateSiteRackPhysicalPropertiesInput {
1501
+ /**
1502
+ * <p>The ID of the site.</p>
1503
+ */
1504
+ SiteId: string | undefined;
1505
+ /**
1506
+ * <p>Specify in kVA the power draw available at the hardware placement position for the
1507
+ * rack.</p>
1508
+ */
1509
+ PowerDrawKva?: PowerDrawKva | string;
1510
+ /**
1511
+ * <p> Specify the power option that you can provide for hardware. </p>
1512
+ * <ul>
1513
+ * <li>
1514
+ * <p>Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz</p>
1515
+ * </li>
1516
+ * <li>
1517
+ * <p>Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz</p>
1518
+ * </li>
1519
+ * </ul>
1520
+ */
1521
+ PowerPhase?: PowerPhase | string;
1522
+ /**
1523
+ * <p> Specify the power connector that Amazon Web Services should plan to provide for connections to the
1524
+ * hardware. Note the correlation between <code>PowerPhase</code> and
1525
+ * <code>PowerConnector</code>. </p>
1526
+ * <ul>
1527
+ * <li>
1528
+ * <p>Single-phase AC feed</p>
1529
+ * <ul>
1530
+ * <li>
1531
+ * <p>
1532
+ * <b>L6-30P</b> – (common in US); 30A; single phase</p>
1533
+ * </li>
1534
+ * <li>
1535
+ * <p>
1536
+ * <b>IEC309 (blue)</b> – P+N+E, 6hr; 32 A; single
1537
+ * phase</p>
1538
+ * </li>
1539
+ * </ul>
1540
+ * </li>
1541
+ * <li>
1542
+ * <p>Three-phase AC feed</p>
1543
+ * <ul>
1544
+ * <li>
1545
+ * <p>
1546
+ * <b>AH530P7W (red)</b> – 3P+N+E, 7hr; 30A; three
1547
+ * phase</p>
1548
+ * </li>
1549
+ * <li>
1550
+ * <p>
1551
+ * <b>AH532P6W (red)</b> – 3P+N+E, 6hr; 32A; three
1552
+ * phase</p>
1553
+ * </li>
1554
+ * </ul>
1555
+ * </li>
1556
+ * </ul>
1557
+ */
1558
+ PowerConnector?: PowerConnector | string;
1559
+ /**
1560
+ * <p> Specify whether the power feed comes above or below the rack. </p>
1561
+ */
1562
+ PowerFeedDrop?: PowerFeedDrop | string;
1563
+ /**
1564
+ * <p> Specify the uplink speed the rack should support for the connection to the Region.
1565
+ * </p>
1566
+ */
1567
+ UplinkGbps?: UplinkGbps | string;
1568
+ /**
1569
+ * <p>Racks come with two Outpost network devices. Depending on the supported uplink speed at
1570
+ * the site, the Outpost network devices provide a variable number of uplinks. Specify the number
1571
+ * of uplinks for each Outpost network device that you intend to use to connect the rack to your
1572
+ * network. Note the correlation between <code>UplinkGbps</code> and <code>UplinkCount</code>. </p>
1573
+ * <ul>
1574
+ * <li>
1575
+ * <p>1Gbps - Uplinks available: 1, 2, 4, 6, 8</p>
1576
+ * </li>
1577
+ * <li>
1578
+ * <p>10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16</p>
1579
+ * </li>
1580
+ * <li>
1581
+ * <p>40 and 100 Gbps- Uplinks available: 1, 2, 4</p>
1582
+ * </li>
1583
+ * </ul>
1584
+ */
1585
+ UplinkCount?: UplinkCount | string;
1586
+ /**
1587
+ * <p> Specify the type of fiber that you will use to attach the Outpost to your network.
1588
+ * </p>
1589
+ */
1590
+ FiberOpticCableType?: FiberOpticCableType | string;
1591
+ /**
1592
+ * <p>Specify the type of optical standard that you will use to attach the Outpost to your
1593
+ * network. This field is dependent on uplink speed, fiber type, and distance to the upstream
1594
+ * device. For more information
1595
+ * about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
1596
+ * in the Amazon Web Services Outposts User Guide.
1597
+ * </p>
1598
+ * <ul>
1599
+ * <li>
1600
+ * <p>
1601
+ * <code>OPTIC_10GBASE_SR</code>: 10GBASE-SR</p>
1602
+ * </li>
1603
+ * <li>
1604
+ * <p>
1605
+ * <code>OPTIC_10GBASE_IR</code>: 10GBASE-IR</p>
1606
+ * </li>
1607
+ * <li>
1608
+ * <p>
1609
+ * <code>OPTIC_10GBASE_LR</code>: 10GBASE-LR</p>
1610
+ * </li>
1611
+ * <li>
1612
+ * <p>
1613
+ * <code>OPTIC_40GBASE_SR</code>: 40GBASE-SR</p>
1614
+ * </li>
1615
+ * <li>
1616
+ * <p>
1617
+ * <code>OPTIC_40GBASE_ESR</code>: 40GBASE-ESR</p>
1618
+ * </li>
1619
+ * <li>
1620
+ * <p>
1621
+ * <code>OPTIC_40GBASE_IR4_LR4L</code>: 40GBASE-IR (LR4L)</p>
1622
+ * </li>
1623
+ * <li>
1624
+ * <p>
1625
+ * <code>OPTIC_40GBASE_LR4</code>: 40GBASE-LR4</p>
1626
+ * </li>
1627
+ * <li>
1628
+ * <p>
1629
+ * <code>OPTIC_100GBASE_SR4</code>: 100GBASE-SR4</p>
1630
+ * </li>
1631
+ * <li>
1632
+ * <p>
1633
+ * <code>OPTIC_100GBASE_CWDM4</code>: 100GBASE-CWDM4</p>
1634
+ * </li>
1635
+ * <li>
1636
+ * <p>
1637
+ * <code>OPTIC_100GBASE_LR4</code>: 100GBASE-LR4</p>
1638
+ * </li>
1639
+ * <li>
1640
+ * <p>
1641
+ * <code>OPTIC_100G_PSM4_MSA</code>: 100G PSM4 MSA</p>
1642
+ * </li>
1643
+ * <li>
1644
+ * <p>
1645
+ * <code>OPTIC_1000BASE_LX</code>: 1000Base-LX</p>
1646
+ * </li>
1647
+ * <li>
1648
+ * <p>
1649
+ * <code>OPTIC_1000BASE_SX</code> : 1000Base-SX</p>
1650
+ * </li>
1651
+ * </ul>
1652
+ */
1653
+ OpticalStandard?: OpticalStandard | string;
1654
+ /**
1655
+ * <p> Specify the maximum rack weight that this site can support. <code>NO_LIMIT</code> is over
1656
+ * 2000lbs. </p>
1657
+ */
1658
+ MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
1659
+ }
1660
+ export declare namespace UpdateSiteRackPhysicalPropertiesInput {
1661
+ /**
1662
+ * @internal
1663
+ */
1664
+ const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesInput) => any;
1665
+ }
1666
+ export interface UpdateSiteRackPhysicalPropertiesOutput {
1667
+ /**
1668
+ * <p>Information about a site.</p>
1669
+ */
1670
+ Site?: Site;
1671
+ }
1672
+ export declare namespace UpdateSiteRackPhysicalPropertiesOutput {
1673
+ /**
1674
+ * @internal
1675
+ */
1676
+ const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesOutput) => any;
1677
+ }