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