@aws-sdk/client-outposts 3.42.0 → 3.46.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.
- package/CHANGELOG.md +50 -0
- package/README.md +10 -10
- package/dist-cjs/Outposts.js +180 -0
- package/dist-cjs/commands/CancelOrderCommand.js +36 -0
- package/dist-cjs/commands/CreateSiteCommand.js +36 -0
- package/dist-cjs/commands/GetCatalogItemCommand.js +36 -0
- package/dist-cjs/commands/GetOrderCommand.js +36 -0
- package/dist-cjs/commands/GetSiteAddressCommand.js +36 -0
- package/dist-cjs/commands/GetSiteCommand.js +36 -0
- package/dist-cjs/commands/ListCatalogItemsCommand.js +36 -0
- package/dist-cjs/commands/ListOrdersCommand.js +36 -0
- package/dist-cjs/commands/UpdateOutpostCommand.js +36 -0
- package/dist-cjs/commands/UpdateSiteAddressCommand.js +36 -0
- package/dist-cjs/commands/UpdateSiteCommand.js +36 -0
- package/dist-cjs/commands/UpdateSiteRackPhysicalPropertiesCommand.js +36 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +318 -25
- package/dist-cjs/pagination/ListCatalogItemsPaginator.js +35 -0
- package/dist-cjs/pagination/ListOrdersPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1562 -119
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/Outposts.js +180 -0
- package/dist-es/commands/CancelOrderCommand.js +39 -0
- package/dist-es/commands/CreateSiteCommand.js +39 -0
- package/dist-es/commands/GetCatalogItemCommand.js +39 -0
- package/dist-es/commands/GetOrderCommand.js +39 -0
- package/dist-es/commands/GetSiteAddressCommand.js +39 -0
- package/dist-es/commands/GetSiteCommand.js +39 -0
- package/dist-es/commands/ListCatalogItemsCommand.js +39 -0
- package/dist-es/commands/ListOrdersCommand.js +39 -0
- package/dist-es/commands/UpdateOutpostCommand.js +39 -0
- package/dist-es/commands/UpdateSiteAddressCommand.js +39 -0
- package/dist-es/commands/UpdateSiteCommand.js +39 -0
- package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +39 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +250 -16
- package/dist-es/pagination/ListCatalogItemsPaginator.js +74 -0
- package/dist-es/pagination/ListOrdersPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1869 -265
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/Outposts.d.ts +123 -6
- package/dist-types/OutpostsClient.d.ts +17 -5
- package/dist-types/commands/CancelOrderCommand.d.ts +37 -0
- package/dist-types/commands/CreateSiteCommand.d.ts +37 -0
- package/dist-types/commands/GetCatalogItemCommand.d.ts +35 -0
- package/dist-types/commands/GetOrderCommand.d.ts +35 -0
- package/dist-types/commands/GetSiteAddressCommand.d.ts +37 -0
- package/dist-types/commands/GetSiteCommand.d.ts +37 -0
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +39 -0
- package/dist-types/commands/ListOrdersCommand.d.ts +36 -0
- package/dist-types/commands/ListOutpostsCommand.d.ts +2 -2
- package/dist-types/commands/ListSitesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOutpostCommand.d.ts +37 -0
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +46 -0
- package/dist-types/commands/UpdateSiteCommand.d.ts +37 -0
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +40 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +1206 -144
- package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListOrdersPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Outposts.d.ts +60 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +14 -2
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +540 -51
- package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +36 -43
|
@@ -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
|
}
|
|
@@ -134,7 +367,7 @@ export declare enum OrderStatus {
|
|
|
134
367
|
export interface Order {
|
|
135
368
|
/**
|
|
136
369
|
* <p>
|
|
137
|
-
* The ID of the Outpost.
|
|
370
|
+
* The ID of the Outpost in the order.
|
|
138
371
|
* </p>
|
|
139
372
|
*/
|
|
140
373
|
OutpostId?: string;
|
|
@@ -143,7 +376,35 @@ export interface Order {
|
|
|
143
376
|
*/
|
|
144
377
|
OrderId?: string;
|
|
145
378
|
/**
|
|
146
|
-
* <p>The status of the order
|
|
379
|
+
* <p>The status of the order.</p>
|
|
380
|
+
* <ul>
|
|
381
|
+
* <li>
|
|
382
|
+
* <p>
|
|
383
|
+
* <code>PREPARING</code> - Order is received and being prepared.</p>
|
|
384
|
+
* </li>
|
|
385
|
+
* <li>
|
|
386
|
+
* <p>
|
|
387
|
+
* <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. To get more
|
|
388
|
+
* details, see the <code>LineItem</code> status.</p>
|
|
389
|
+
* </li>
|
|
390
|
+
* <li>
|
|
391
|
+
* <p>
|
|
392
|
+
* <code>COMPLETED</code> - Order is complete.</p>
|
|
393
|
+
* </li>
|
|
394
|
+
* <li>
|
|
395
|
+
* <p>
|
|
396
|
+
* <code>CANCELLED</code> - Order is cancelled.</p>
|
|
397
|
+
* </li>
|
|
398
|
+
* <li>
|
|
399
|
+
* <p>
|
|
400
|
+
* <code>ERROR</code> - Customer should contact support.</p>
|
|
401
|
+
* </li>
|
|
402
|
+
* </ul>
|
|
403
|
+
*
|
|
404
|
+
* <note>
|
|
405
|
+
* <p>The following status are deprecated: <code>RECEIVED</code>, <code>PENDING</code>,
|
|
406
|
+
* <code>PROCESSING</code>, <code>INSTALLING</code>, and <code>FULFILLED</code>. </p>
|
|
407
|
+
* </note>
|
|
147
408
|
*/
|
|
148
409
|
Status?: OrderStatus | string;
|
|
149
410
|
/**
|
|
@@ -181,34 +442,6 @@ export declare namespace CreateOrderOutput {
|
|
|
181
442
|
*/
|
|
182
443
|
const filterSensitiveLog: (obj: CreateOrderOutput) => any;
|
|
183
444
|
}
|
|
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
445
|
/**
|
|
213
446
|
* <p>You have exceeded a service quota.</p>
|
|
214
447
|
*/
|
|
@@ -223,19 +456,9 @@ export declare namespace ServiceQuotaExceededException {
|
|
|
223
456
|
*/
|
|
224
457
|
const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
|
|
225
458
|
}
|
|
226
|
-
|
|
227
|
-
|
|
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;
|
|
459
|
+
export declare enum SupportedHardwareType {
|
|
460
|
+
RACK = "RACK",
|
|
461
|
+
SERVER = "SERVER"
|
|
239
462
|
}
|
|
240
463
|
export interface CreateOutpostInput {
|
|
241
464
|
/**
|
|
@@ -247,7 +470,9 @@ export interface CreateOutpostInput {
|
|
|
247
470
|
*/
|
|
248
471
|
Description?: string;
|
|
249
472
|
/**
|
|
250
|
-
* <p>
|
|
473
|
+
* <p>
|
|
474
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
475
|
+
* </p>
|
|
251
476
|
*/
|
|
252
477
|
SiteId: string | undefined;
|
|
253
478
|
/**
|
|
@@ -264,6 +489,12 @@ export interface CreateOutpostInput {
|
|
|
264
489
|
Tags?: {
|
|
265
490
|
[key: string]: string;
|
|
266
491
|
};
|
|
492
|
+
/**
|
|
493
|
+
* <p>
|
|
494
|
+
* The type of hardware for this Outpost.
|
|
495
|
+
* </p>
|
|
496
|
+
*/
|
|
497
|
+
SupportedHardwareType?: SupportedHardwareType | string;
|
|
267
498
|
}
|
|
268
499
|
export declare namespace CreateOutpostInput {
|
|
269
500
|
/**
|
|
@@ -282,7 +513,7 @@ export interface Outpost {
|
|
|
282
513
|
*/
|
|
283
514
|
OutpostId?: string;
|
|
284
515
|
/**
|
|
285
|
-
* <p>The
|
|
516
|
+
* <p>The Amazon Web Services account ID of the Outpost owner.</p>
|
|
286
517
|
*/
|
|
287
518
|
OwnerId?: string;
|
|
288
519
|
/**
|
|
@@ -290,7 +521,9 @@ export interface Outpost {
|
|
|
290
521
|
*/
|
|
291
522
|
OutpostArn?: string;
|
|
292
523
|
/**
|
|
293
|
-
* <p>
|
|
524
|
+
* <p>
|
|
525
|
+
* The ID of the site.
|
|
526
|
+
* </p>
|
|
294
527
|
*/
|
|
295
528
|
SiteId?: string;
|
|
296
529
|
/**
|
|
@@ -323,6 +556,12 @@ export interface Outpost {
|
|
|
323
556
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
324
557
|
*/
|
|
325
558
|
SiteArn?: string;
|
|
559
|
+
/**
|
|
560
|
+
* <p>
|
|
561
|
+
* The hardware type.
|
|
562
|
+
* </p>
|
|
563
|
+
*/
|
|
564
|
+
SupportedHardwareType?: SupportedHardwareType | string;
|
|
326
565
|
}
|
|
327
566
|
export declare namespace Outpost {
|
|
328
567
|
/**
|
|
@@ -342,83 +581,383 @@ export declare namespace CreateOutpostOutput {
|
|
|
342
581
|
*/
|
|
343
582
|
const filterSensitiveLog: (obj: CreateOutpostOutput) => any;
|
|
344
583
|
}
|
|
345
|
-
export
|
|
584
|
+
export declare enum FiberOpticCableType {
|
|
585
|
+
MULTI_MODE = "MULTI_MODE",
|
|
586
|
+
SINGLE_MODE = "SINGLE_MODE"
|
|
587
|
+
}
|
|
588
|
+
export declare enum MaximumSupportedWeightLbs {
|
|
589
|
+
MAX_1400_LBS = "MAX_1400_LBS",
|
|
590
|
+
MAX_1600_LBS = "MAX_1600_LBS",
|
|
591
|
+
MAX_1800_LBS = "MAX_1800_LBS",
|
|
592
|
+
MAX_2000_LBS = "MAX_2000_LBS",
|
|
593
|
+
NO_LIMIT = "NO_LIMIT"
|
|
594
|
+
}
|
|
595
|
+
export declare enum OpticalStandard {
|
|
596
|
+
OPTIC_1000BASE_LX = "OPTIC_1000BASE_LX",
|
|
597
|
+
OPTIC_1000BASE_SX = "OPTIC_1000BASE_SX",
|
|
598
|
+
OPTIC_100GBASE_CWDM4 = "OPTIC_100GBASE_CWDM4",
|
|
599
|
+
OPTIC_100GBASE_LR4 = "OPTIC_100GBASE_LR4",
|
|
600
|
+
OPTIC_100GBASE_SR4 = "OPTIC_100GBASE_SR4",
|
|
601
|
+
OPTIC_100G_PSM4_MSA = "OPTIC_100G_PSM4_MSA",
|
|
602
|
+
OPTIC_10GBASE_IR = "OPTIC_10GBASE_IR",
|
|
603
|
+
OPTIC_10GBASE_LR = "OPTIC_10GBASE_LR",
|
|
604
|
+
OPTIC_10GBASE_SR = "OPTIC_10GBASE_SR",
|
|
605
|
+
OPTIC_40GBASE_ESR = "OPTIC_40GBASE_ESR",
|
|
606
|
+
OPTIC_40GBASE_IR4_LR4L = "OPTIC_40GBASE_IR4_LR4L",
|
|
607
|
+
OPTIC_40GBASE_LR4 = "OPTIC_40GBASE_LR4",
|
|
608
|
+
OPTIC_40GBASE_SR = "OPTIC_40GBASE_SR"
|
|
609
|
+
}
|
|
610
|
+
export declare enum PowerConnector {
|
|
611
|
+
AH530P7W = "AH530P7W",
|
|
612
|
+
AH532P6W = "AH532P6W",
|
|
613
|
+
IEC309 = "IEC309",
|
|
614
|
+
L6_30P = "L6_30P"
|
|
615
|
+
}
|
|
616
|
+
export declare enum PowerDrawKva {
|
|
617
|
+
POWER_10_KVA = "POWER_10_KVA",
|
|
618
|
+
POWER_15_KVA = "POWER_15_KVA",
|
|
619
|
+
POWER_5_KVA = "POWER_5_KVA"
|
|
620
|
+
}
|
|
621
|
+
export declare enum PowerFeedDrop {
|
|
622
|
+
ABOVE_RACK = "ABOVE_RACK",
|
|
623
|
+
BELOW_RACK = "BELOW_RACK"
|
|
624
|
+
}
|
|
625
|
+
export declare enum PowerPhase {
|
|
626
|
+
SINGLE_PHASE = "SINGLE_PHASE",
|
|
627
|
+
THREE_PHASE = "THREE_PHASE"
|
|
628
|
+
}
|
|
629
|
+
export declare enum UplinkCount {
|
|
630
|
+
UPLINK_COUNT_1 = "UPLINK_COUNT_1",
|
|
631
|
+
UPLINK_COUNT_12 = "UPLINK_COUNT_12",
|
|
632
|
+
UPLINK_COUNT_16 = "UPLINK_COUNT_16",
|
|
633
|
+
UPLINK_COUNT_2 = "UPLINK_COUNT_2",
|
|
634
|
+
UPLINK_COUNT_3 = "UPLINK_COUNT_3",
|
|
635
|
+
UPLINK_COUNT_4 = "UPLINK_COUNT_4",
|
|
636
|
+
UPLINK_COUNT_5 = "UPLINK_COUNT_5",
|
|
637
|
+
UPLINK_COUNT_6 = "UPLINK_COUNT_6",
|
|
638
|
+
UPLINK_COUNT_7 = "UPLINK_COUNT_7",
|
|
639
|
+
UPLINK_COUNT_8 = "UPLINK_COUNT_8"
|
|
640
|
+
}
|
|
641
|
+
export declare enum UplinkGbps {
|
|
642
|
+
UPLINK_100G = "UPLINK_100G",
|
|
643
|
+
UPLINK_10G = "UPLINK_10G",
|
|
644
|
+
UPLINK_1G = "UPLINK_1G",
|
|
645
|
+
UPLINK_40G = "UPLINK_40G"
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* <p> Information about the physical and logistical details for racks at sites.
|
|
649
|
+
* For more information
|
|
650
|
+
* about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
|
|
651
|
+
* readiness checklist</a> in the Amazon Web Services Outposts User Guide.
|
|
652
|
+
* </p>
|
|
653
|
+
*/
|
|
654
|
+
export interface RackPhysicalProperties {
|
|
346
655
|
/**
|
|
347
|
-
* <p>
|
|
348
|
-
* The ID of the Outpost.
|
|
349
|
-
* </p>
|
|
656
|
+
* <p>The power draw available at the hardware placement position for the rack. </p>
|
|
350
657
|
*/
|
|
351
|
-
|
|
352
|
-
}
|
|
353
|
-
export declare namespace DeleteOutpostInput {
|
|
658
|
+
PowerDrawKva?: PowerDrawKva | string;
|
|
354
659
|
/**
|
|
355
|
-
*
|
|
660
|
+
* <p>The power option that you can provide for hardware.</p>
|
|
356
661
|
*/
|
|
357
|
-
|
|
358
|
-
}
|
|
359
|
-
export interface DeleteOutpostOutput {
|
|
360
|
-
}
|
|
361
|
-
export declare namespace DeleteOutpostOutput {
|
|
662
|
+
PowerPhase?: PowerPhase | string;
|
|
362
663
|
/**
|
|
363
|
-
*
|
|
664
|
+
* <p>The power connector for the hardware. </p>
|
|
364
665
|
*/
|
|
365
|
-
|
|
366
|
-
}
|
|
367
|
-
export interface DeleteSiteInput {
|
|
666
|
+
PowerConnector?: PowerConnector | string;
|
|
368
667
|
/**
|
|
369
|
-
* <p>The
|
|
668
|
+
* <p>The position of the power feed.</p>
|
|
370
669
|
*/
|
|
371
|
-
|
|
372
|
-
}
|
|
373
|
-
export declare namespace DeleteSiteInput {
|
|
670
|
+
PowerFeedDrop?: PowerFeedDrop | string;
|
|
374
671
|
/**
|
|
375
|
-
*
|
|
672
|
+
* <p>The uplink speed the rack supports for the connection to the Region. </p>
|
|
376
673
|
*/
|
|
377
|
-
|
|
378
|
-
}
|
|
379
|
-
export interface DeleteSiteOutput {
|
|
380
|
-
}
|
|
381
|
-
export declare namespace DeleteSiteOutput {
|
|
674
|
+
UplinkGbps?: UplinkGbps | string;
|
|
382
675
|
/**
|
|
383
|
-
*
|
|
676
|
+
* <p>The number of uplinks each Outpost network device.</p>
|
|
384
677
|
*/
|
|
385
|
-
|
|
386
|
-
}
|
|
387
|
-
export interface GetOutpostInput {
|
|
678
|
+
UplinkCount?: UplinkCount | string;
|
|
388
679
|
/**
|
|
389
|
-
* <p>
|
|
390
|
-
* The ID of the Outpost.
|
|
391
|
-
* </p>
|
|
680
|
+
* <p>The type of fiber used to attach the Outpost to the network. </p>
|
|
392
681
|
*/
|
|
393
|
-
|
|
394
|
-
}
|
|
395
|
-
export declare namespace GetOutpostInput {
|
|
682
|
+
FiberOpticCableType?: FiberOpticCableType | string;
|
|
396
683
|
/**
|
|
397
|
-
*
|
|
684
|
+
* <p>The type of optical standard used to attach the Outpost to the network. This field is
|
|
685
|
+
* dependent on uplink speed, fiber type, and distance to the upstream device. For more information
|
|
686
|
+
* about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
|
|
687
|
+
* in the Amazon Web Services Outposts User Guide.
|
|
688
|
+
* </p>
|
|
398
689
|
*/
|
|
399
|
-
|
|
400
|
-
}
|
|
401
|
-
export interface GetOutpostOutput {
|
|
690
|
+
OpticalStandard?: OpticalStandard | string;
|
|
402
691
|
/**
|
|
403
|
-
* <p>
|
|
692
|
+
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over 2000 lbs
|
|
693
|
+
* (907 kg). </p>
|
|
404
694
|
*/
|
|
405
|
-
|
|
695
|
+
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
|
|
406
696
|
}
|
|
407
|
-
export declare namespace
|
|
697
|
+
export declare namespace RackPhysicalProperties {
|
|
408
698
|
/**
|
|
409
699
|
* @internal
|
|
410
700
|
*/
|
|
411
|
-
const filterSensitiveLog: (obj:
|
|
701
|
+
const filterSensitiveLog: (obj: RackPhysicalProperties) => any;
|
|
412
702
|
}
|
|
413
|
-
export interface
|
|
703
|
+
export interface CreateSiteInput {
|
|
414
704
|
/**
|
|
415
|
-
* <p>
|
|
416
|
-
* The ID of the Outpost.
|
|
417
|
-
* </p>
|
|
705
|
+
* <p>The name of the site.</p>
|
|
418
706
|
*/
|
|
419
|
-
|
|
707
|
+
Name: string | undefined;
|
|
420
708
|
/**
|
|
421
|
-
* <p>The
|
|
709
|
+
* <p>The description of the site.</p>
|
|
710
|
+
*/
|
|
711
|
+
Description?: string;
|
|
712
|
+
/**
|
|
713
|
+
* <p>Additional information that you provide about site access requirements, electrician
|
|
714
|
+
* scheduling, personal protective equipment, or regulation of equipment materials that could
|
|
715
|
+
* affect your installation process. </p>
|
|
716
|
+
*/
|
|
717
|
+
Notes?: string;
|
|
718
|
+
/**
|
|
719
|
+
* <p>
|
|
720
|
+
* The tags to apply to a site.
|
|
721
|
+
* </p>
|
|
722
|
+
*/
|
|
723
|
+
Tags?: {
|
|
724
|
+
[key: string]: string;
|
|
725
|
+
};
|
|
726
|
+
/**
|
|
727
|
+
* <p>
|
|
728
|
+
* The location to install and power on the hardware. This address might be
|
|
729
|
+
* different from the shipping address.
|
|
730
|
+
* </p>
|
|
731
|
+
*/
|
|
732
|
+
OperatingAddress?: Address;
|
|
733
|
+
/**
|
|
734
|
+
* <p>
|
|
735
|
+
* The location to ship the hardware. This address might be different
|
|
736
|
+
* from the operating address.
|
|
737
|
+
* </p>
|
|
738
|
+
*/
|
|
739
|
+
ShippingAddress?: Address;
|
|
740
|
+
/**
|
|
741
|
+
* <p> Information about the physical and logistical details for the rack at this site.
|
|
742
|
+
* For more information
|
|
743
|
+
* about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
|
|
744
|
+
* readiness checklist</a> in the Amazon Web Services Outposts User Guide.
|
|
745
|
+
* </p>
|
|
746
|
+
*/
|
|
747
|
+
RackPhysicalProperties?: RackPhysicalProperties;
|
|
748
|
+
}
|
|
749
|
+
export declare namespace CreateSiteInput {
|
|
750
|
+
/**
|
|
751
|
+
* @internal
|
|
752
|
+
*/
|
|
753
|
+
const filterSensitiveLog: (obj: CreateSiteInput) => any;
|
|
754
|
+
}
|
|
755
|
+
/**
|
|
756
|
+
* <p>Information about a site.</p>
|
|
757
|
+
*/
|
|
758
|
+
export interface Site {
|
|
759
|
+
/**
|
|
760
|
+
* <p>
|
|
761
|
+
* The ID of the site.
|
|
762
|
+
* </p>
|
|
763
|
+
*/
|
|
764
|
+
SiteId?: string;
|
|
765
|
+
/**
|
|
766
|
+
* <p>The ID of the Amazon Web Services account.</p>
|
|
767
|
+
*/
|
|
768
|
+
AccountId?: string;
|
|
769
|
+
/**
|
|
770
|
+
* <p>The name of the site.</p>
|
|
771
|
+
*/
|
|
772
|
+
Name?: string;
|
|
773
|
+
/**
|
|
774
|
+
* <p>The description of the site.</p>
|
|
775
|
+
*/
|
|
776
|
+
Description?: string;
|
|
777
|
+
/**
|
|
778
|
+
* <p>The site tags.</p>
|
|
779
|
+
*/
|
|
780
|
+
Tags?: {
|
|
781
|
+
[key: string]: string;
|
|
782
|
+
};
|
|
783
|
+
/**
|
|
784
|
+
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
785
|
+
*/
|
|
786
|
+
SiteArn?: string;
|
|
787
|
+
/**
|
|
788
|
+
* <p>
|
|
789
|
+
* Notes about a site.
|
|
790
|
+
* </p>
|
|
791
|
+
*/
|
|
792
|
+
Notes?: string;
|
|
793
|
+
/**
|
|
794
|
+
* <p>
|
|
795
|
+
* The ISO-3166 two-letter country code where the hardware is installed and powered on.
|
|
796
|
+
* </p>
|
|
797
|
+
*/
|
|
798
|
+
OperatingAddressCountryCode?: string;
|
|
799
|
+
/**
|
|
800
|
+
* <p> State or region where the hardware is installed and powered on. </p>
|
|
801
|
+
*/
|
|
802
|
+
OperatingAddressStateOrRegion?: string;
|
|
803
|
+
/**
|
|
804
|
+
* <p>
|
|
805
|
+
* City where the hardware is installed and powered on.
|
|
806
|
+
* </p>
|
|
807
|
+
*/
|
|
808
|
+
OperatingAddressCity?: string;
|
|
809
|
+
/**
|
|
810
|
+
* <p>
|
|
811
|
+
* Information about the physical and logistical details for a rack at the site.
|
|
812
|
+
* </p>
|
|
813
|
+
*/
|
|
814
|
+
RackPhysicalProperties?: RackPhysicalProperties;
|
|
815
|
+
}
|
|
816
|
+
export declare namespace Site {
|
|
817
|
+
/**
|
|
818
|
+
* @internal
|
|
819
|
+
*/
|
|
820
|
+
const filterSensitiveLog: (obj: Site) => any;
|
|
821
|
+
}
|
|
822
|
+
export interface CreateSiteOutput {
|
|
823
|
+
/**
|
|
824
|
+
* <p>Information about a site.</p>
|
|
825
|
+
*/
|
|
826
|
+
Site?: Site;
|
|
827
|
+
}
|
|
828
|
+
export declare namespace CreateSiteOutput {
|
|
829
|
+
/**
|
|
830
|
+
* @internal
|
|
831
|
+
*/
|
|
832
|
+
const filterSensitiveLog: (obj: CreateSiteOutput) => any;
|
|
833
|
+
}
|
|
834
|
+
export interface DeleteOutpostInput {
|
|
835
|
+
/**
|
|
836
|
+
* <p>
|
|
837
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
838
|
+
* </p>
|
|
839
|
+
*/
|
|
840
|
+
OutpostId: string | undefined;
|
|
841
|
+
}
|
|
842
|
+
export declare namespace DeleteOutpostInput {
|
|
843
|
+
/**
|
|
844
|
+
* @internal
|
|
845
|
+
*/
|
|
846
|
+
const filterSensitiveLog: (obj: DeleteOutpostInput) => any;
|
|
847
|
+
}
|
|
848
|
+
export interface DeleteOutpostOutput {
|
|
849
|
+
}
|
|
850
|
+
export declare namespace DeleteOutpostOutput {
|
|
851
|
+
/**
|
|
852
|
+
* @internal
|
|
853
|
+
*/
|
|
854
|
+
const filterSensitiveLog: (obj: DeleteOutpostOutput) => any;
|
|
855
|
+
}
|
|
856
|
+
export interface DeleteSiteInput {
|
|
857
|
+
/**
|
|
858
|
+
* <p>
|
|
859
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
860
|
+
* </p>
|
|
861
|
+
*/
|
|
862
|
+
SiteId: string | undefined;
|
|
863
|
+
}
|
|
864
|
+
export declare namespace DeleteSiteInput {
|
|
865
|
+
/**
|
|
866
|
+
* @internal
|
|
867
|
+
*/
|
|
868
|
+
const filterSensitiveLog: (obj: DeleteSiteInput) => any;
|
|
869
|
+
}
|
|
870
|
+
export interface DeleteSiteOutput {
|
|
871
|
+
}
|
|
872
|
+
export declare namespace DeleteSiteOutput {
|
|
873
|
+
/**
|
|
874
|
+
* @internal
|
|
875
|
+
*/
|
|
876
|
+
const filterSensitiveLog: (obj: DeleteSiteOutput) => any;
|
|
877
|
+
}
|
|
878
|
+
export interface GetCatalogItemInput {
|
|
879
|
+
/**
|
|
880
|
+
* <p>The ID of the catalog item.</p>
|
|
881
|
+
*/
|
|
882
|
+
CatalogItemId: string | undefined;
|
|
883
|
+
}
|
|
884
|
+
export declare namespace GetCatalogItemInput {
|
|
885
|
+
/**
|
|
886
|
+
* @internal
|
|
887
|
+
*/
|
|
888
|
+
const filterSensitiveLog: (obj: GetCatalogItemInput) => any;
|
|
889
|
+
}
|
|
890
|
+
export interface GetCatalogItemOutput {
|
|
891
|
+
/**
|
|
892
|
+
* <p>Information about this catalog item.</p>
|
|
893
|
+
*/
|
|
894
|
+
CatalogItem?: CatalogItem;
|
|
895
|
+
}
|
|
896
|
+
export declare namespace GetCatalogItemOutput {
|
|
897
|
+
/**
|
|
898
|
+
* @internal
|
|
899
|
+
*/
|
|
900
|
+
const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
|
|
901
|
+
}
|
|
902
|
+
export interface GetOrderInput {
|
|
903
|
+
/**
|
|
904
|
+
* <p>The ID of the order.</p>
|
|
905
|
+
*/
|
|
906
|
+
OrderId: string | undefined;
|
|
907
|
+
}
|
|
908
|
+
export declare namespace GetOrderInput {
|
|
909
|
+
/**
|
|
910
|
+
* @internal
|
|
911
|
+
*/
|
|
912
|
+
const filterSensitiveLog: (obj: GetOrderInput) => any;
|
|
913
|
+
}
|
|
914
|
+
export interface GetOrderOutput {
|
|
915
|
+
/**
|
|
916
|
+
* <p>Information about an order.</p>
|
|
917
|
+
*/
|
|
918
|
+
Order?: Order;
|
|
919
|
+
}
|
|
920
|
+
export declare namespace GetOrderOutput {
|
|
921
|
+
/**
|
|
922
|
+
* @internal
|
|
923
|
+
*/
|
|
924
|
+
const filterSensitiveLog: (obj: GetOrderOutput) => any;
|
|
925
|
+
}
|
|
926
|
+
export interface GetOutpostInput {
|
|
927
|
+
/**
|
|
928
|
+
* <p>
|
|
929
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
930
|
+
* </p>
|
|
931
|
+
*/
|
|
932
|
+
OutpostId: string | undefined;
|
|
933
|
+
}
|
|
934
|
+
export declare namespace GetOutpostInput {
|
|
935
|
+
/**
|
|
936
|
+
* @internal
|
|
937
|
+
*/
|
|
938
|
+
const filterSensitiveLog: (obj: GetOutpostInput) => any;
|
|
939
|
+
}
|
|
940
|
+
export interface GetOutpostOutput {
|
|
941
|
+
/**
|
|
942
|
+
* <p>Information about an Outpost.</p>
|
|
943
|
+
*/
|
|
944
|
+
Outpost?: Outpost;
|
|
945
|
+
}
|
|
946
|
+
export declare namespace GetOutpostOutput {
|
|
947
|
+
/**
|
|
948
|
+
* @internal
|
|
949
|
+
*/
|
|
950
|
+
const filterSensitiveLog: (obj: GetOutpostOutput) => any;
|
|
951
|
+
}
|
|
952
|
+
export interface GetOutpostInstanceTypesInput {
|
|
953
|
+
/**
|
|
954
|
+
* <p>
|
|
955
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
956
|
+
* </p>
|
|
957
|
+
*/
|
|
958
|
+
OutpostId: string | undefined;
|
|
959
|
+
/**
|
|
960
|
+
* <p>The pagination token.</p>
|
|
422
961
|
*/
|
|
423
962
|
NextToken?: string;
|
|
424
963
|
/**
|
|
@@ -473,7 +1012,75 @@ export declare namespace GetOutpostInstanceTypesOutput {
|
|
|
473
1012
|
*/
|
|
474
1013
|
const filterSensitiveLog: (obj: GetOutpostInstanceTypesOutput) => any;
|
|
475
1014
|
}
|
|
476
|
-
export interface
|
|
1015
|
+
export interface GetSiteInput {
|
|
1016
|
+
/**
|
|
1017
|
+
* <p>
|
|
1018
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1019
|
+
* </p>
|
|
1020
|
+
*/
|
|
1021
|
+
SiteId: string | undefined;
|
|
1022
|
+
}
|
|
1023
|
+
export declare namespace GetSiteInput {
|
|
1024
|
+
/**
|
|
1025
|
+
* @internal
|
|
1026
|
+
*/
|
|
1027
|
+
const filterSensitiveLog: (obj: GetSiteInput) => any;
|
|
1028
|
+
}
|
|
1029
|
+
export interface GetSiteOutput {
|
|
1030
|
+
/**
|
|
1031
|
+
* <p>Information about a site.</p>
|
|
1032
|
+
*/
|
|
1033
|
+
Site?: Site;
|
|
1034
|
+
}
|
|
1035
|
+
export declare namespace GetSiteOutput {
|
|
1036
|
+
/**
|
|
1037
|
+
* @internal
|
|
1038
|
+
*/
|
|
1039
|
+
const filterSensitiveLog: (obj: GetSiteOutput) => any;
|
|
1040
|
+
}
|
|
1041
|
+
export interface GetSiteAddressInput {
|
|
1042
|
+
/**
|
|
1043
|
+
* <p>
|
|
1044
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1045
|
+
* </p>
|
|
1046
|
+
*/
|
|
1047
|
+
SiteId: string | undefined;
|
|
1048
|
+
/**
|
|
1049
|
+
* <p> The type of the address you request. </p>
|
|
1050
|
+
*/
|
|
1051
|
+
AddressType: AddressType | string | undefined;
|
|
1052
|
+
}
|
|
1053
|
+
export declare namespace GetSiteAddressInput {
|
|
1054
|
+
/**
|
|
1055
|
+
* @internal
|
|
1056
|
+
*/
|
|
1057
|
+
const filterSensitiveLog: (obj: GetSiteAddressInput) => any;
|
|
1058
|
+
}
|
|
1059
|
+
export interface GetSiteAddressOutput {
|
|
1060
|
+
/**
|
|
1061
|
+
* <p>
|
|
1062
|
+
* The ID of the site.
|
|
1063
|
+
* </p>
|
|
1064
|
+
*/
|
|
1065
|
+
SiteId?: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* <p> The type of the address you receive. </p>
|
|
1068
|
+
*/
|
|
1069
|
+
AddressType?: AddressType | string;
|
|
1070
|
+
/**
|
|
1071
|
+
* <p>
|
|
1072
|
+
* Information about the address.
|
|
1073
|
+
* </p>
|
|
1074
|
+
*/
|
|
1075
|
+
Address?: Address;
|
|
1076
|
+
}
|
|
1077
|
+
export declare namespace GetSiteAddressOutput {
|
|
1078
|
+
/**
|
|
1079
|
+
* @internal
|
|
1080
|
+
*/
|
|
1081
|
+
const filterSensitiveLog: (obj: GetSiteAddressOutput) => any;
|
|
1082
|
+
}
|
|
1083
|
+
export interface ListCatalogItemsInput {
|
|
477
1084
|
/**
|
|
478
1085
|
* <p>The pagination token.</p>
|
|
479
1086
|
*/
|
|
@@ -484,55 +1091,61 @@ export interface ListOutpostsInput {
|
|
|
484
1091
|
MaxResults?: number;
|
|
485
1092
|
/**
|
|
486
1093
|
* <p>
|
|
487
|
-
* A filter for the
|
|
1094
|
+
* A filter for the class of items in the catalog.
|
|
488
1095
|
* </p>
|
|
489
|
-
* <p>
|
|
490
|
-
*
|
|
491
|
-
*
|
|
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>
|
|
492
1099
|
*/
|
|
493
|
-
|
|
1100
|
+
ItemClassFilter?: (CatalogItemClass | string)[];
|
|
494
1101
|
/**
|
|
495
|
-
* <p>
|
|
496
|
-
*
|
|
497
|
-
*
|
|
498
|
-
*
|
|
499
|
-
*
|
|
1102
|
+
* <p>
|
|
1103
|
+
* A filter for the storage options of items in the catalog.
|
|
1104
|
+
* </p>
|
|
1105
|
+
* <p>Filter values are case sensitive. If you specify multiple
|
|
1106
|
+
* values for a filter, the values are joined with an <code>OR</code>, and the request returns
|
|
1107
|
+
* all results that match any of the specified values.</p>
|
|
500
1108
|
*/
|
|
501
|
-
|
|
1109
|
+
SupportedStorageFilter?: (SupportedStorageEnum | string)[];
|
|
502
1110
|
/**
|
|
503
1111
|
* <p>
|
|
504
|
-
* A filter for
|
|
1112
|
+
* A filter for EC2 family options for items in the catalog.
|
|
505
1113
|
* </p>
|
|
506
|
-
*
|
|
507
|
-
*
|
|
508
|
-
*
|
|
509
|
-
* specified values. </p>
|
|
1114
|
+
* <p>Filter values are case sensitive. If you specify multiple
|
|
1115
|
+
* values for a filter, the values are joined with an <code>OR</code>, and the request returns
|
|
1116
|
+
* all results that match any of the specified values.</p>
|
|
510
1117
|
*/
|
|
511
|
-
|
|
1118
|
+
EC2FamilyFilter?: string[];
|
|
512
1119
|
}
|
|
513
|
-
export declare namespace
|
|
1120
|
+
export declare namespace ListCatalogItemsInput {
|
|
514
1121
|
/**
|
|
515
1122
|
* @internal
|
|
516
1123
|
*/
|
|
517
|
-
const filterSensitiveLog: (obj:
|
|
1124
|
+
const filterSensitiveLog: (obj: ListCatalogItemsInput) => any;
|
|
518
1125
|
}
|
|
519
|
-
export interface
|
|
1126
|
+
export interface ListCatalogItemsOutput {
|
|
520
1127
|
/**
|
|
521
|
-
* <p>Information about the
|
|
1128
|
+
* <p>Information about the catalog items.</p>
|
|
522
1129
|
*/
|
|
523
|
-
|
|
1130
|
+
CatalogItems?: CatalogItem[];
|
|
524
1131
|
/**
|
|
525
1132
|
* <p>The pagination token.</p>
|
|
526
1133
|
*/
|
|
527
1134
|
NextToken?: string;
|
|
528
1135
|
}
|
|
529
|
-
export declare namespace
|
|
1136
|
+
export declare namespace ListCatalogItemsOutput {
|
|
530
1137
|
/**
|
|
531
1138
|
* @internal
|
|
532
1139
|
*/
|
|
533
|
-
const filterSensitiveLog: (obj:
|
|
1140
|
+
const filterSensitiveLog: (obj: ListCatalogItemsOutput) => any;
|
|
534
1141
|
}
|
|
535
|
-
export interface
|
|
1142
|
+
export interface ListOrdersInput {
|
|
1143
|
+
/**
|
|
1144
|
+
* <p>
|
|
1145
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1146
|
+
* </p>
|
|
1147
|
+
*/
|
|
1148
|
+
OutpostIdentifierFilter?: string;
|
|
536
1149
|
/**
|
|
537
1150
|
* <p>The pagination token.</p>
|
|
538
1151
|
*/
|
|
@@ -542,48 +1155,191 @@ export interface ListSitesInput {
|
|
|
542
1155
|
*/
|
|
543
1156
|
MaxResults?: number;
|
|
544
1157
|
}
|
|
545
|
-
export declare namespace
|
|
1158
|
+
export declare namespace ListOrdersInput {
|
|
546
1159
|
/**
|
|
547
1160
|
* @internal
|
|
548
1161
|
*/
|
|
549
|
-
const filterSensitiveLog: (obj:
|
|
1162
|
+
const filterSensitiveLog: (obj: ListOrdersInput) => any;
|
|
1163
|
+
}
|
|
1164
|
+
export declare enum OrderType {
|
|
1165
|
+
OUTPOST = "OUTPOST",
|
|
1166
|
+
REPLACEMENT = "REPLACEMENT"
|
|
550
1167
|
}
|
|
551
1168
|
/**
|
|
552
|
-
* <p>
|
|
1169
|
+
* <p>
|
|
1170
|
+
* A summary of line items in your order.
|
|
1171
|
+
* </p>
|
|
553
1172
|
*/
|
|
554
|
-
export interface
|
|
1173
|
+
export interface OrderSummary {
|
|
555
1174
|
/**
|
|
556
|
-
* <p>
|
|
1175
|
+
* <p>
|
|
1176
|
+
* The ID of the Outpost.
|
|
1177
|
+
* </p>
|
|
557
1178
|
*/
|
|
558
|
-
|
|
1179
|
+
OutpostId?: string;
|
|
559
1180
|
/**
|
|
560
|
-
* <p>
|
|
1181
|
+
* <p>
|
|
1182
|
+
* The ID of the order.
|
|
1183
|
+
* </p>
|
|
561
1184
|
*/
|
|
562
|
-
|
|
1185
|
+
OrderId?: string;
|
|
563
1186
|
/**
|
|
564
|
-
* <p>
|
|
1187
|
+
* <p>
|
|
1188
|
+
* The type of order.
|
|
1189
|
+
* </p>
|
|
565
1190
|
*/
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* <p>The
|
|
1191
|
+
OrderType?: OrderType | string;
|
|
1192
|
+
/**
|
|
1193
|
+
* <p>The status of the order.</p>
|
|
1194
|
+
* <ul>
|
|
1195
|
+
* <li>
|
|
1196
|
+
* <p>
|
|
1197
|
+
* <code>PREPARING</code> - Order is received and is being prepared.</p>
|
|
1198
|
+
* </li>
|
|
1199
|
+
* <li>
|
|
1200
|
+
* <p>
|
|
1201
|
+
* <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. For more
|
|
1202
|
+
* information, see the <code>LineItem</code> status.</p>
|
|
1203
|
+
* </li>
|
|
1204
|
+
* <li>
|
|
1205
|
+
* <p>
|
|
1206
|
+
* <code>COMPLETED</code> - Order is complete.</p>
|
|
1207
|
+
* </li>
|
|
1208
|
+
* <li>
|
|
1209
|
+
* <p>
|
|
1210
|
+
* <code>CANCELLED</code> - Order is cancelled.</p>
|
|
1211
|
+
* </li>
|
|
1212
|
+
* <li>
|
|
1213
|
+
* <p>
|
|
1214
|
+
* <code>ERROR</code> - Customer should contact support.</p>
|
|
1215
|
+
* </li>
|
|
1216
|
+
* </ul>
|
|
1217
|
+
*
|
|
1218
|
+
* <note>
|
|
1219
|
+
* <p>The following statuses are deprecated: <code>RECEIVED</code>, <code>PENDING</code>,
|
|
1220
|
+
* <code>PROCESSING</code>, <code>INSTALLING</code>, and <code>FULFILLED</code>. </p>
|
|
1221
|
+
* </note>
|
|
569
1222
|
*/
|
|
570
|
-
|
|
1223
|
+
Status?: OrderStatus | string;
|
|
571
1224
|
/**
|
|
572
|
-
* <p>
|
|
1225
|
+
* <p>
|
|
1226
|
+
* The status of all line items in the order.
|
|
1227
|
+
* </p>
|
|
573
1228
|
*/
|
|
574
|
-
|
|
575
|
-
[key: string]:
|
|
1229
|
+
LineItemCountsByStatus?: {
|
|
1230
|
+
[key: string]: number;
|
|
576
1231
|
};
|
|
577
1232
|
/**
|
|
578
|
-
* <p>
|
|
1233
|
+
* <p>
|
|
1234
|
+
* Submission date for the order.
|
|
1235
|
+
* </p>
|
|
579
1236
|
*/
|
|
580
|
-
|
|
1237
|
+
OrderSubmissionDate?: Date;
|
|
1238
|
+
/**
|
|
1239
|
+
* <p>
|
|
1240
|
+
* Fulfilment date for the order.
|
|
1241
|
+
* </p>
|
|
1242
|
+
*/
|
|
1243
|
+
OrderFulfilledDate?: Date;
|
|
581
1244
|
}
|
|
582
|
-
export declare namespace
|
|
1245
|
+
export declare namespace OrderSummary {
|
|
583
1246
|
/**
|
|
584
1247
|
* @internal
|
|
585
1248
|
*/
|
|
586
|
-
const filterSensitiveLog: (obj:
|
|
1249
|
+
const filterSensitiveLog: (obj: OrderSummary) => any;
|
|
1250
|
+
}
|
|
1251
|
+
export interface ListOrdersOutput {
|
|
1252
|
+
/**
|
|
1253
|
+
* <p>
|
|
1254
|
+
* Information about the orders.
|
|
1255
|
+
* </p>
|
|
1256
|
+
*/
|
|
1257
|
+
Orders?: OrderSummary[];
|
|
1258
|
+
/**
|
|
1259
|
+
* <p>The pagination token.</p>
|
|
1260
|
+
*/
|
|
1261
|
+
NextToken?: string;
|
|
1262
|
+
}
|
|
1263
|
+
export declare namespace ListOrdersOutput {
|
|
1264
|
+
/**
|
|
1265
|
+
* @internal
|
|
1266
|
+
*/
|
|
1267
|
+
const filterSensitiveLog: (obj: ListOrdersOutput) => any;
|
|
1268
|
+
}
|
|
1269
|
+
export interface ListOutpostsInput {
|
|
1270
|
+
/**
|
|
1271
|
+
* <p>The pagination token.</p>
|
|
1272
|
+
*/
|
|
1273
|
+
NextToken?: string;
|
|
1274
|
+
/**
|
|
1275
|
+
* <p>The maximum page size.</p>
|
|
1276
|
+
*/
|
|
1277
|
+
MaxResults?: number;
|
|
1278
|
+
/**
|
|
1279
|
+
* <p>
|
|
1280
|
+
* A filter for the lifecycle status of the Outpost.
|
|
1281
|
+
* </p>
|
|
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
|
+
LifeCycleStatusFilter?: string[];
|
|
1287
|
+
/**
|
|
1288
|
+
* <p> A filter for the Availability Zone (<code>us-east-1a</code>) of the Outpost. </p>
|
|
1289
|
+
*
|
|
1290
|
+
* <p>Filter values are case sensitive. If you specify multiple
|
|
1291
|
+
* values for a filter, the values are joined with an <code>OR</code>, and the request returns
|
|
1292
|
+
* all results that match any of the specified values.</p>
|
|
1293
|
+
*/
|
|
1294
|
+
AvailabilityZoneFilter?: string[];
|
|
1295
|
+
/**
|
|
1296
|
+
* <p>
|
|
1297
|
+
* A filter for the AZ IDs (<code>use1-az1</code>) of the Outpost.
|
|
1298
|
+
* </p>
|
|
1299
|
+
*
|
|
1300
|
+
* <p>Filter values are case sensitive. If you specify multiple
|
|
1301
|
+
* values for a filter, the values are joined with an <code>OR</code>, and the request returns
|
|
1302
|
+
* all results that match any of the specified values.</p>
|
|
1303
|
+
*/
|
|
1304
|
+
AvailabilityZoneIdFilter?: string[];
|
|
1305
|
+
}
|
|
1306
|
+
export declare namespace ListOutpostsInput {
|
|
1307
|
+
/**
|
|
1308
|
+
* @internal
|
|
1309
|
+
*/
|
|
1310
|
+
const filterSensitiveLog: (obj: ListOutpostsInput) => any;
|
|
1311
|
+
}
|
|
1312
|
+
export interface ListOutpostsOutput {
|
|
1313
|
+
/**
|
|
1314
|
+
* <p>Information about the Outposts.</p>
|
|
1315
|
+
*/
|
|
1316
|
+
Outposts?: Outpost[];
|
|
1317
|
+
/**
|
|
1318
|
+
* <p>The pagination token.</p>
|
|
1319
|
+
*/
|
|
1320
|
+
NextToken?: string;
|
|
1321
|
+
}
|
|
1322
|
+
export declare namespace ListOutpostsOutput {
|
|
1323
|
+
/**
|
|
1324
|
+
* @internal
|
|
1325
|
+
*/
|
|
1326
|
+
const filterSensitiveLog: (obj: ListOutpostsOutput) => any;
|
|
1327
|
+
}
|
|
1328
|
+
export interface ListSitesInput {
|
|
1329
|
+
/**
|
|
1330
|
+
* <p>The pagination token.</p>
|
|
1331
|
+
*/
|
|
1332
|
+
NextToken?: string;
|
|
1333
|
+
/**
|
|
1334
|
+
* <p>The maximum page size.</p>
|
|
1335
|
+
*/
|
|
1336
|
+
MaxResults?: number;
|
|
1337
|
+
}
|
|
1338
|
+
export declare namespace ListSitesInput {
|
|
1339
|
+
/**
|
|
1340
|
+
* @internal
|
|
1341
|
+
*/
|
|
1342
|
+
const filterSensitiveLog: (obj: ListSitesInput) => any;
|
|
587
1343
|
}
|
|
588
1344
|
export interface ListSitesOutput {
|
|
589
1345
|
/**
|
|
@@ -677,3 +1433,309 @@ export declare namespace UntagResourceResponse {
|
|
|
677
1433
|
*/
|
|
678
1434
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
679
1435
|
}
|
|
1436
|
+
export interface UpdateOutpostInput {
|
|
1437
|
+
/**
|
|
1438
|
+
* <p>
|
|
1439
|
+
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1440
|
+
* </p>
|
|
1441
|
+
*/
|
|
1442
|
+
OutpostId: string | undefined;
|
|
1443
|
+
/**
|
|
1444
|
+
* <p>The name of the Outpost.</p>
|
|
1445
|
+
*/
|
|
1446
|
+
Name?: string;
|
|
1447
|
+
/**
|
|
1448
|
+
* <p>The description of the Outpost.</p>
|
|
1449
|
+
*/
|
|
1450
|
+
Description?: string;
|
|
1451
|
+
/**
|
|
1452
|
+
* <p>
|
|
1453
|
+
* The type of hardware for this Outpost.
|
|
1454
|
+
* </p>
|
|
1455
|
+
*/
|
|
1456
|
+
SupportedHardwareType?: SupportedHardwareType | string;
|
|
1457
|
+
}
|
|
1458
|
+
export declare namespace UpdateOutpostInput {
|
|
1459
|
+
/**
|
|
1460
|
+
* @internal
|
|
1461
|
+
*/
|
|
1462
|
+
const filterSensitiveLog: (obj: UpdateOutpostInput) => any;
|
|
1463
|
+
}
|
|
1464
|
+
export interface UpdateOutpostOutput {
|
|
1465
|
+
/**
|
|
1466
|
+
* <p>Information about an Outpost.</p>
|
|
1467
|
+
*/
|
|
1468
|
+
Outpost?: Outpost;
|
|
1469
|
+
}
|
|
1470
|
+
export declare namespace UpdateOutpostOutput {
|
|
1471
|
+
/**
|
|
1472
|
+
* @internal
|
|
1473
|
+
*/
|
|
1474
|
+
const filterSensitiveLog: (obj: UpdateOutpostOutput) => any;
|
|
1475
|
+
}
|
|
1476
|
+
export interface UpdateSiteInput {
|
|
1477
|
+
/**
|
|
1478
|
+
* <p>
|
|
1479
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1480
|
+
* </p>
|
|
1481
|
+
*/
|
|
1482
|
+
SiteId: string | undefined;
|
|
1483
|
+
/**
|
|
1484
|
+
* <p>The name of the site.</p>
|
|
1485
|
+
*/
|
|
1486
|
+
Name?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* <p>The description of the site.</p>
|
|
1489
|
+
*/
|
|
1490
|
+
Description?: string;
|
|
1491
|
+
/**
|
|
1492
|
+
* <p>
|
|
1493
|
+
* Notes about a site.
|
|
1494
|
+
* </p>
|
|
1495
|
+
*/
|
|
1496
|
+
Notes?: string;
|
|
1497
|
+
}
|
|
1498
|
+
export declare namespace UpdateSiteInput {
|
|
1499
|
+
/**
|
|
1500
|
+
* @internal
|
|
1501
|
+
*/
|
|
1502
|
+
const filterSensitiveLog: (obj: UpdateSiteInput) => any;
|
|
1503
|
+
}
|
|
1504
|
+
export interface UpdateSiteOutput {
|
|
1505
|
+
/**
|
|
1506
|
+
* <p>Information about a site.</p>
|
|
1507
|
+
*/
|
|
1508
|
+
Site?: Site;
|
|
1509
|
+
}
|
|
1510
|
+
export declare namespace UpdateSiteOutput {
|
|
1511
|
+
/**
|
|
1512
|
+
* @internal
|
|
1513
|
+
*/
|
|
1514
|
+
const filterSensitiveLog: (obj: UpdateSiteOutput) => any;
|
|
1515
|
+
}
|
|
1516
|
+
export interface UpdateSiteAddressInput {
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>
|
|
1519
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1520
|
+
* </p>
|
|
1521
|
+
*/
|
|
1522
|
+
SiteId: string | undefined;
|
|
1523
|
+
/**
|
|
1524
|
+
* <p>
|
|
1525
|
+
* The type of the address.
|
|
1526
|
+
* </p>
|
|
1527
|
+
*/
|
|
1528
|
+
AddressType: AddressType | string | undefined;
|
|
1529
|
+
/**
|
|
1530
|
+
* <p>
|
|
1531
|
+
* The address for the site.
|
|
1532
|
+
* </p>
|
|
1533
|
+
*/
|
|
1534
|
+
Address: Address | undefined;
|
|
1535
|
+
}
|
|
1536
|
+
export declare namespace UpdateSiteAddressInput {
|
|
1537
|
+
/**
|
|
1538
|
+
* @internal
|
|
1539
|
+
*/
|
|
1540
|
+
const filterSensitiveLog: (obj: UpdateSiteAddressInput) => any;
|
|
1541
|
+
}
|
|
1542
|
+
export interface UpdateSiteAddressOutput {
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>
|
|
1545
|
+
* The type of the address.
|
|
1546
|
+
* </p>
|
|
1547
|
+
*/
|
|
1548
|
+
AddressType?: AddressType | string;
|
|
1549
|
+
/**
|
|
1550
|
+
* <p>
|
|
1551
|
+
* Information about an address.
|
|
1552
|
+
* </p>
|
|
1553
|
+
*/
|
|
1554
|
+
Address?: Address;
|
|
1555
|
+
}
|
|
1556
|
+
export declare namespace UpdateSiteAddressOutput {
|
|
1557
|
+
/**
|
|
1558
|
+
* @internal
|
|
1559
|
+
*/
|
|
1560
|
+
const filterSensitiveLog: (obj: UpdateSiteAddressOutput) => any;
|
|
1561
|
+
}
|
|
1562
|
+
export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
1563
|
+
/**
|
|
1564
|
+
* <p>
|
|
1565
|
+
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1566
|
+
* </p>
|
|
1567
|
+
*/
|
|
1568
|
+
SiteId: string | undefined;
|
|
1569
|
+
/**
|
|
1570
|
+
* <p>Specify in kVA the power draw available at the hardware placement position for the
|
|
1571
|
+
* rack.</p>
|
|
1572
|
+
*/
|
|
1573
|
+
PowerDrawKva?: PowerDrawKva | string;
|
|
1574
|
+
/**
|
|
1575
|
+
* <p> Specify the power option that you can provide for hardware. </p>
|
|
1576
|
+
* <ul>
|
|
1577
|
+
* <li>
|
|
1578
|
+
* <p>Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz</p>
|
|
1579
|
+
* </li>
|
|
1580
|
+
* <li>
|
|
1581
|
+
* <p>Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz</p>
|
|
1582
|
+
* </li>
|
|
1583
|
+
* </ul>
|
|
1584
|
+
*/
|
|
1585
|
+
PowerPhase?: PowerPhase | string;
|
|
1586
|
+
/**
|
|
1587
|
+
* <p> Specify the power connector that Amazon Web Services should plan to provide for connections to the
|
|
1588
|
+
* hardware. Note the correlation between <code>PowerPhase</code> and
|
|
1589
|
+
* <code>PowerConnector</code>. </p>
|
|
1590
|
+
* <ul>
|
|
1591
|
+
* <li>
|
|
1592
|
+
* <p>Single-phase AC feed</p>
|
|
1593
|
+
* <ul>
|
|
1594
|
+
* <li>
|
|
1595
|
+
* <p>
|
|
1596
|
+
* <b>L6-30P</b> – (common in US); 30A; single phase</p>
|
|
1597
|
+
* </li>
|
|
1598
|
+
* <li>
|
|
1599
|
+
* <p>
|
|
1600
|
+
* <b>IEC309 (blue)</b> – P+N+E, 6hr; 32 A; single
|
|
1601
|
+
* phase</p>
|
|
1602
|
+
* </li>
|
|
1603
|
+
* </ul>
|
|
1604
|
+
* </li>
|
|
1605
|
+
* <li>
|
|
1606
|
+
* <p>Three-phase AC feed</p>
|
|
1607
|
+
* <ul>
|
|
1608
|
+
* <li>
|
|
1609
|
+
* <p>
|
|
1610
|
+
* <b>AH530P7W (red)</b> – 3P+N+E, 7hr; 30A; three
|
|
1611
|
+
* phase</p>
|
|
1612
|
+
* </li>
|
|
1613
|
+
* <li>
|
|
1614
|
+
* <p>
|
|
1615
|
+
* <b>AH532P6W (red)</b> – 3P+N+E, 6hr; 32A; three
|
|
1616
|
+
* phase</p>
|
|
1617
|
+
* </li>
|
|
1618
|
+
* </ul>
|
|
1619
|
+
* </li>
|
|
1620
|
+
* </ul>
|
|
1621
|
+
*/
|
|
1622
|
+
PowerConnector?: PowerConnector | string;
|
|
1623
|
+
/**
|
|
1624
|
+
* <p> Specify whether the power feed comes above or below the rack. </p>
|
|
1625
|
+
*/
|
|
1626
|
+
PowerFeedDrop?: PowerFeedDrop | string;
|
|
1627
|
+
/**
|
|
1628
|
+
* <p> Specify the uplink speed the rack should support for the connection to the Region.
|
|
1629
|
+
* </p>
|
|
1630
|
+
*/
|
|
1631
|
+
UplinkGbps?: UplinkGbps | string;
|
|
1632
|
+
/**
|
|
1633
|
+
* <p>Racks come with two Outpost network devices. Depending on the supported uplink speed at
|
|
1634
|
+
* the site, the Outpost network devices provide a variable number of uplinks. Specify the number
|
|
1635
|
+
* of uplinks for each Outpost network device that you intend to use to connect the rack to your
|
|
1636
|
+
* network. Note the correlation between <code>UplinkGbps</code> and <code>UplinkCount</code>. </p>
|
|
1637
|
+
* <ul>
|
|
1638
|
+
* <li>
|
|
1639
|
+
* <p>1Gbps - Uplinks available: 1, 2, 4, 6, 8</p>
|
|
1640
|
+
* </li>
|
|
1641
|
+
* <li>
|
|
1642
|
+
* <p>10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16</p>
|
|
1643
|
+
* </li>
|
|
1644
|
+
* <li>
|
|
1645
|
+
* <p>40 and 100 Gbps- Uplinks available: 1, 2, 4</p>
|
|
1646
|
+
* </li>
|
|
1647
|
+
* </ul>
|
|
1648
|
+
*/
|
|
1649
|
+
UplinkCount?: UplinkCount | string;
|
|
1650
|
+
/**
|
|
1651
|
+
* <p> Specify the type of fiber that you will use to attach the Outpost to your network.
|
|
1652
|
+
* </p>
|
|
1653
|
+
*/
|
|
1654
|
+
FiberOpticCableType?: FiberOpticCableType | string;
|
|
1655
|
+
/**
|
|
1656
|
+
* <p>Specify the type of optical standard that you will use to attach the Outpost to your
|
|
1657
|
+
* network. This field is dependent on uplink speed, fiber type, and distance to the upstream
|
|
1658
|
+
* device. For more information
|
|
1659
|
+
* about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
|
|
1660
|
+
* in the Amazon Web Services Outposts User Guide.
|
|
1661
|
+
* </p>
|
|
1662
|
+
* <ul>
|
|
1663
|
+
* <li>
|
|
1664
|
+
* <p>
|
|
1665
|
+
* <code>OPTIC_10GBASE_SR</code>: 10GBASE-SR</p>
|
|
1666
|
+
* </li>
|
|
1667
|
+
* <li>
|
|
1668
|
+
* <p>
|
|
1669
|
+
* <code>OPTIC_10GBASE_IR</code>: 10GBASE-IR</p>
|
|
1670
|
+
* </li>
|
|
1671
|
+
* <li>
|
|
1672
|
+
* <p>
|
|
1673
|
+
* <code>OPTIC_10GBASE_LR</code>: 10GBASE-LR</p>
|
|
1674
|
+
* </li>
|
|
1675
|
+
* <li>
|
|
1676
|
+
* <p>
|
|
1677
|
+
* <code>OPTIC_40GBASE_SR</code>: 40GBASE-SR</p>
|
|
1678
|
+
* </li>
|
|
1679
|
+
* <li>
|
|
1680
|
+
* <p>
|
|
1681
|
+
* <code>OPTIC_40GBASE_ESR</code>: 40GBASE-ESR</p>
|
|
1682
|
+
* </li>
|
|
1683
|
+
* <li>
|
|
1684
|
+
* <p>
|
|
1685
|
+
* <code>OPTIC_40GBASE_IR4_LR4L</code>: 40GBASE-IR (LR4L)</p>
|
|
1686
|
+
* </li>
|
|
1687
|
+
* <li>
|
|
1688
|
+
* <p>
|
|
1689
|
+
* <code>OPTIC_40GBASE_LR4</code>: 40GBASE-LR4</p>
|
|
1690
|
+
* </li>
|
|
1691
|
+
* <li>
|
|
1692
|
+
* <p>
|
|
1693
|
+
* <code>OPTIC_100GBASE_SR4</code>: 100GBASE-SR4</p>
|
|
1694
|
+
* </li>
|
|
1695
|
+
* <li>
|
|
1696
|
+
* <p>
|
|
1697
|
+
* <code>OPTIC_100GBASE_CWDM4</code>: 100GBASE-CWDM4</p>
|
|
1698
|
+
* </li>
|
|
1699
|
+
* <li>
|
|
1700
|
+
* <p>
|
|
1701
|
+
* <code>OPTIC_100GBASE_LR4</code>: 100GBASE-LR4</p>
|
|
1702
|
+
* </li>
|
|
1703
|
+
* <li>
|
|
1704
|
+
* <p>
|
|
1705
|
+
* <code>OPTIC_100G_PSM4_MSA</code>: 100G PSM4 MSA</p>
|
|
1706
|
+
* </li>
|
|
1707
|
+
* <li>
|
|
1708
|
+
* <p>
|
|
1709
|
+
* <code>OPTIC_1000BASE_LX</code>: 1000Base-LX</p>
|
|
1710
|
+
* </li>
|
|
1711
|
+
* <li>
|
|
1712
|
+
* <p>
|
|
1713
|
+
* <code>OPTIC_1000BASE_SX</code> : 1000Base-SX</p>
|
|
1714
|
+
* </li>
|
|
1715
|
+
* </ul>
|
|
1716
|
+
*/
|
|
1717
|
+
OpticalStandard?: OpticalStandard | string;
|
|
1718
|
+
/**
|
|
1719
|
+
* <p> Specify the maximum rack weight that this site can support. <code>NO_LIMIT</code> is over
|
|
1720
|
+
* 2000lbs. </p>
|
|
1721
|
+
*/
|
|
1722
|
+
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
|
|
1723
|
+
}
|
|
1724
|
+
export declare namespace UpdateSiteRackPhysicalPropertiesInput {
|
|
1725
|
+
/**
|
|
1726
|
+
* @internal
|
|
1727
|
+
*/
|
|
1728
|
+
const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesInput) => any;
|
|
1729
|
+
}
|
|
1730
|
+
export interface UpdateSiteRackPhysicalPropertiesOutput {
|
|
1731
|
+
/**
|
|
1732
|
+
* <p>Information about a site.</p>
|
|
1733
|
+
*/
|
|
1734
|
+
Site?: Site;
|
|
1735
|
+
}
|
|
1736
|
+
export declare namespace UpdateSiteRackPhysicalPropertiesOutput {
|
|
1737
|
+
/**
|
|
1738
|
+
* @internal
|
|
1739
|
+
*/
|
|
1740
|
+
const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesOutput) => any;
|
|
1741
|
+
}
|