@aws-sdk/client-outposts 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/Outposts.d.ts +0 -26
- package/dist-types/ts3.4/OutpostsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/OutpostsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -246
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,64 +1,44 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
Message?: string;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export interface Address {
|
|
15
12
|
ContactName?: string;
|
|
16
|
-
|
|
17
13
|
ContactPhoneNumber?: string;
|
|
18
|
-
|
|
19
14
|
AddressLine1: string | undefined;
|
|
20
|
-
|
|
21
15
|
AddressLine2?: string;
|
|
22
|
-
|
|
23
16
|
AddressLine3?: string;
|
|
24
|
-
|
|
25
17
|
City: string | undefined;
|
|
26
|
-
|
|
27
18
|
StateOrRegion: string | undefined;
|
|
28
|
-
|
|
29
19
|
DistrictOrCounty?: string;
|
|
30
|
-
|
|
31
20
|
PostalCode: string | undefined;
|
|
32
|
-
|
|
33
21
|
CountryCode: string | undefined;
|
|
34
|
-
|
|
35
22
|
Municipality?: string;
|
|
36
23
|
}
|
|
37
24
|
export declare enum AddressType {
|
|
38
25
|
OPERATING_ADDRESS = "OPERATING_ADDRESS",
|
|
39
26
|
SHIPPING_ADDRESS = "SHIPPING_ADDRESS",
|
|
40
27
|
}
|
|
41
|
-
|
|
42
28
|
export interface AssetLocation {
|
|
43
29
|
RackElevation?: number;
|
|
44
30
|
}
|
|
45
31
|
export declare enum AssetType {
|
|
46
32
|
COMPUTE = "COMPUTE",
|
|
47
33
|
}
|
|
48
|
-
|
|
49
34
|
export interface ComputeAttributes {
|
|
50
35
|
HostId?: string;
|
|
51
36
|
}
|
|
52
|
-
|
|
53
37
|
export interface AssetInfo {
|
|
54
38
|
AssetId?: string;
|
|
55
|
-
|
|
56
39
|
RackId?: string;
|
|
57
|
-
|
|
58
40
|
AssetType?: AssetType | string;
|
|
59
|
-
|
|
60
41
|
ComputeAttributes?: ComputeAttributes;
|
|
61
|
-
|
|
62
42
|
AssetLocation?: AssetLocation;
|
|
63
43
|
}
|
|
64
44
|
export interface CancelOrderInput {
|
|
@@ -69,52 +49,39 @@ export declare enum ResourceType {
|
|
|
69
49
|
ORDER = "ORDER",
|
|
70
50
|
OUTPOST = "OUTPOST",
|
|
71
51
|
}
|
|
72
|
-
|
|
73
52
|
export declare class ConflictException extends __BaseException {
|
|
74
53
|
readonly name: "ConflictException";
|
|
75
54
|
readonly $fault: "client";
|
|
76
55
|
Message?: string;
|
|
77
|
-
|
|
78
56
|
ResourceId?: string;
|
|
79
|
-
|
|
80
57
|
ResourceType?: ResourceType | string;
|
|
81
|
-
|
|
82
58
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
83
59
|
}
|
|
84
|
-
|
|
85
60
|
export declare class InternalServerException extends __BaseException {
|
|
86
61
|
readonly name: "InternalServerException";
|
|
87
62
|
readonly $fault: "server";
|
|
88
63
|
Message?: string;
|
|
89
|
-
|
|
90
64
|
constructor(
|
|
91
65
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
92
66
|
);
|
|
93
67
|
}
|
|
94
|
-
|
|
95
68
|
export declare class NotFoundException extends __BaseException {
|
|
96
69
|
readonly name: "NotFoundException";
|
|
97
70
|
readonly $fault: "client";
|
|
98
71
|
Message?: string;
|
|
99
|
-
|
|
100
72
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
101
73
|
}
|
|
102
|
-
|
|
103
74
|
export declare class ValidationException extends __BaseException {
|
|
104
75
|
readonly name: "ValidationException";
|
|
105
76
|
readonly $fault: "client";
|
|
106
77
|
Message?: string;
|
|
107
|
-
|
|
108
78
|
constructor(
|
|
109
79
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
110
80
|
);
|
|
111
81
|
}
|
|
112
|
-
|
|
113
82
|
export interface EC2Capacity {
|
|
114
83
|
Family?: string;
|
|
115
|
-
|
|
116
84
|
MaxSize?: string;
|
|
117
|
-
|
|
118
85
|
Quantity?: string;
|
|
119
86
|
}
|
|
120
87
|
export declare enum CatalogItemStatus {
|
|
@@ -125,44 +92,29 @@ export declare enum SupportedStorageEnum {
|
|
|
125
92
|
EBS = "EBS",
|
|
126
93
|
S3 = "S3",
|
|
127
94
|
}
|
|
128
|
-
|
|
129
95
|
export interface CatalogItem {
|
|
130
96
|
CatalogItemId?: string;
|
|
131
|
-
|
|
132
97
|
ItemStatus?: CatalogItemStatus | string;
|
|
133
|
-
|
|
134
98
|
EC2Capacities?: EC2Capacity[];
|
|
135
|
-
|
|
136
99
|
PowerKva?: number;
|
|
137
|
-
|
|
138
100
|
WeightLbs?: number;
|
|
139
|
-
|
|
140
101
|
SupportedUplinkGbps?: number[];
|
|
141
|
-
|
|
142
102
|
SupportedStorage?: (SupportedStorageEnum | string)[];
|
|
143
103
|
}
|
|
144
104
|
export declare enum CatalogItemClass {
|
|
145
105
|
RACK = "RACK",
|
|
146
106
|
SERVER = "SERVER",
|
|
147
107
|
}
|
|
148
|
-
|
|
149
108
|
export interface ConnectionDetails {
|
|
150
109
|
ClientPublicKey?: string;
|
|
151
|
-
|
|
152
110
|
ServerPublicKey?: string;
|
|
153
|
-
|
|
154
111
|
ServerEndpoint?: string;
|
|
155
|
-
|
|
156
112
|
ClientTunnelAddress?: string;
|
|
157
|
-
|
|
158
113
|
ServerTunnelAddress?: string;
|
|
159
|
-
|
|
160
114
|
AllowedIps?: string[];
|
|
161
115
|
}
|
|
162
|
-
|
|
163
116
|
export interface LineItemRequest {
|
|
164
117
|
CatalogItemId?: string;
|
|
165
|
-
|
|
166
118
|
Quantity?: number;
|
|
167
119
|
}
|
|
168
120
|
export declare enum PaymentOption {
|
|
@@ -175,17 +127,12 @@ export declare enum PaymentTerm {
|
|
|
175
127
|
}
|
|
176
128
|
export interface CreateOrderInput {
|
|
177
129
|
OutpostIdentifier: string | undefined;
|
|
178
|
-
|
|
179
130
|
LineItems: LineItemRequest[] | undefined;
|
|
180
|
-
|
|
181
131
|
PaymentOption: PaymentOption | string | undefined;
|
|
182
|
-
|
|
183
132
|
PaymentTerm?: PaymentTerm | string;
|
|
184
133
|
}
|
|
185
|
-
|
|
186
134
|
export interface LineItemAssetInformation {
|
|
187
135
|
AssetId?: string;
|
|
188
|
-
|
|
189
136
|
MacAddressList?: string[];
|
|
190
137
|
}
|
|
191
138
|
export declare enum ShipmentCarrier {
|
|
@@ -194,10 +141,8 @@ export declare enum ShipmentCarrier {
|
|
|
194
141
|
FEDEX = "FEDEX",
|
|
195
142
|
UPS = "UPS",
|
|
196
143
|
}
|
|
197
|
-
|
|
198
144
|
export interface ShipmentInformation {
|
|
199
145
|
ShipmentTrackingNumber?: string;
|
|
200
|
-
|
|
201
146
|
ShipmentCarrier?: ShipmentCarrier | string;
|
|
202
147
|
}
|
|
203
148
|
export declare enum LineItemStatus {
|
|
@@ -210,18 +155,12 @@ export declare enum LineItemStatus {
|
|
|
210
155
|
PREPARING = "PREPARING",
|
|
211
156
|
SHIPPED = "SHIPPED",
|
|
212
157
|
}
|
|
213
|
-
|
|
214
158
|
export interface LineItem {
|
|
215
159
|
CatalogItemId?: string;
|
|
216
|
-
|
|
217
160
|
LineItemId?: string;
|
|
218
|
-
|
|
219
161
|
Quantity?: number;
|
|
220
|
-
|
|
221
162
|
Status?: LineItemStatus | string;
|
|
222
|
-
|
|
223
163
|
ShipmentInformation?: ShipmentInformation;
|
|
224
|
-
|
|
225
164
|
AssetInformationList?: LineItemAssetInformation[];
|
|
226
165
|
}
|
|
227
166
|
export declare enum OrderStatus {
|
|
@@ -236,31 +175,22 @@ export declare enum OrderStatus {
|
|
|
236
175
|
PROCESSING = "PROCESSING",
|
|
237
176
|
RECEIVED = "RECEIVED",
|
|
238
177
|
}
|
|
239
|
-
|
|
240
178
|
export interface Order {
|
|
241
179
|
OutpostId?: string;
|
|
242
|
-
|
|
243
180
|
OrderId?: string;
|
|
244
|
-
|
|
245
181
|
Status?: OrderStatus | string;
|
|
246
|
-
|
|
247
182
|
LineItems?: LineItem[];
|
|
248
|
-
|
|
249
183
|
PaymentOption?: PaymentOption | string;
|
|
250
|
-
|
|
251
184
|
OrderSubmissionDate?: Date;
|
|
252
|
-
|
|
253
185
|
OrderFulfilledDate?: Date;
|
|
254
186
|
}
|
|
255
187
|
export interface CreateOrderOutput {
|
|
256
188
|
Order?: Order;
|
|
257
189
|
}
|
|
258
|
-
|
|
259
190
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
260
191
|
readonly name: "ServiceQuotaExceededException";
|
|
261
192
|
readonly $fault: "client";
|
|
262
193
|
Message?: string;
|
|
263
|
-
|
|
264
194
|
constructor(
|
|
265
195
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
266
196
|
);
|
|
@@ -271,43 +201,25 @@ export declare enum SupportedHardwareType {
|
|
|
271
201
|
}
|
|
272
202
|
export interface CreateOutpostInput {
|
|
273
203
|
Name: string | undefined;
|
|
274
|
-
|
|
275
204
|
Description?: string;
|
|
276
|
-
|
|
277
205
|
SiteId: string | undefined;
|
|
278
|
-
|
|
279
206
|
AvailabilityZone?: string;
|
|
280
|
-
|
|
281
207
|
AvailabilityZoneId?: string;
|
|
282
|
-
|
|
283
208
|
Tags?: Record<string, string>;
|
|
284
|
-
|
|
285
209
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
286
210
|
}
|
|
287
|
-
|
|
288
211
|
export interface Outpost {
|
|
289
212
|
OutpostId?: string;
|
|
290
|
-
|
|
291
213
|
OwnerId?: string;
|
|
292
|
-
|
|
293
214
|
OutpostArn?: string;
|
|
294
|
-
|
|
295
215
|
SiteId?: string;
|
|
296
|
-
|
|
297
216
|
Name?: string;
|
|
298
|
-
|
|
299
217
|
Description?: string;
|
|
300
|
-
|
|
301
218
|
LifeCycleStatus?: string;
|
|
302
|
-
|
|
303
219
|
AvailabilityZone?: string;
|
|
304
|
-
|
|
305
220
|
AvailabilityZoneId?: string;
|
|
306
|
-
|
|
307
221
|
Tags?: Record<string, string>;
|
|
308
|
-
|
|
309
222
|
SiteArn?: string;
|
|
310
|
-
|
|
311
223
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
312
224
|
}
|
|
313
225
|
export interface CreateOutpostOutput {
|
|
@@ -376,63 +288,37 @@ export declare enum UplinkGbps {
|
|
|
376
288
|
UPLINK_1G = "UPLINK_1G",
|
|
377
289
|
UPLINK_40G = "UPLINK_40G",
|
|
378
290
|
}
|
|
379
|
-
|
|
380
291
|
export interface RackPhysicalProperties {
|
|
381
292
|
PowerDrawKva?: PowerDrawKva | string;
|
|
382
|
-
|
|
383
293
|
PowerPhase?: PowerPhase | string;
|
|
384
|
-
|
|
385
294
|
PowerConnector?: PowerConnector | string;
|
|
386
|
-
|
|
387
295
|
PowerFeedDrop?: PowerFeedDrop | string;
|
|
388
|
-
|
|
389
296
|
UplinkGbps?: UplinkGbps | string;
|
|
390
|
-
|
|
391
297
|
UplinkCount?: UplinkCount | string;
|
|
392
|
-
|
|
393
298
|
FiberOpticCableType?: FiberOpticCableType | string;
|
|
394
|
-
|
|
395
299
|
OpticalStandard?: OpticalStandard | string;
|
|
396
|
-
|
|
397
300
|
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
|
|
398
301
|
}
|
|
399
302
|
export interface CreateSiteInput {
|
|
400
303
|
Name: string | undefined;
|
|
401
|
-
|
|
402
304
|
Description?: string;
|
|
403
|
-
|
|
404
305
|
Notes?: string;
|
|
405
|
-
|
|
406
306
|
Tags?: Record<string, string>;
|
|
407
|
-
|
|
408
307
|
OperatingAddress?: Address;
|
|
409
|
-
|
|
410
308
|
ShippingAddress?: Address;
|
|
411
|
-
|
|
412
309
|
RackPhysicalProperties?: RackPhysicalProperties;
|
|
413
310
|
}
|
|
414
|
-
|
|
415
311
|
export interface Site {
|
|
416
312
|
SiteId?: string;
|
|
417
|
-
|
|
418
313
|
AccountId?: string;
|
|
419
|
-
|
|
420
314
|
Name?: string;
|
|
421
|
-
|
|
422
315
|
Description?: string;
|
|
423
|
-
|
|
424
316
|
Tags?: Record<string, string>;
|
|
425
|
-
|
|
426
317
|
SiteArn?: string;
|
|
427
|
-
|
|
428
318
|
Notes?: string;
|
|
429
|
-
|
|
430
319
|
OperatingAddressCountryCode?: string;
|
|
431
|
-
|
|
432
320
|
OperatingAddressStateOrRegion?: string;
|
|
433
|
-
|
|
434
321
|
OperatingAddressCity?: string;
|
|
435
|
-
|
|
436
322
|
RackPhysicalProperties?: RackPhysicalProperties;
|
|
437
323
|
}
|
|
438
324
|
export interface CreateSiteOutput {
|
|
@@ -457,7 +343,6 @@ export interface GetConnectionRequest {
|
|
|
457
343
|
}
|
|
458
344
|
export interface GetConnectionResponse {
|
|
459
345
|
ConnectionId?: string;
|
|
460
|
-
|
|
461
346
|
ConnectionDetails?: ConnectionDetails;
|
|
462
347
|
}
|
|
463
348
|
export interface GetOrderInput {
|
|
@@ -474,22 +359,16 @@ export interface GetOutpostOutput {
|
|
|
474
359
|
}
|
|
475
360
|
export interface GetOutpostInstanceTypesInput {
|
|
476
361
|
OutpostId: string | undefined;
|
|
477
|
-
|
|
478
362
|
NextToken?: string;
|
|
479
|
-
|
|
480
363
|
MaxResults?: number;
|
|
481
364
|
}
|
|
482
|
-
|
|
483
365
|
export interface InstanceTypeItem {
|
|
484
366
|
InstanceType?: string;
|
|
485
367
|
}
|
|
486
368
|
export interface GetOutpostInstanceTypesOutput {
|
|
487
369
|
InstanceTypes?: InstanceTypeItem[];
|
|
488
|
-
|
|
489
370
|
NextToken?: string;
|
|
490
|
-
|
|
491
371
|
OutpostId?: string;
|
|
492
|
-
|
|
493
372
|
OutpostArn?: string;
|
|
494
373
|
}
|
|
495
374
|
export interface GetSiteInput {
|
|
@@ -500,108 +379,76 @@ export interface GetSiteOutput {
|
|
|
500
379
|
}
|
|
501
380
|
export interface GetSiteAddressInput {
|
|
502
381
|
SiteId: string | undefined;
|
|
503
|
-
|
|
504
382
|
AddressType: AddressType | string | undefined;
|
|
505
383
|
}
|
|
506
384
|
export interface GetSiteAddressOutput {
|
|
507
385
|
SiteId?: string;
|
|
508
|
-
|
|
509
386
|
AddressType?: AddressType | string;
|
|
510
|
-
|
|
511
387
|
Address?: Address;
|
|
512
388
|
}
|
|
513
389
|
export interface ListAssetsInput {
|
|
514
390
|
OutpostIdentifier: string | undefined;
|
|
515
|
-
|
|
516
391
|
HostIdFilter?: string[];
|
|
517
|
-
|
|
518
392
|
MaxResults?: number;
|
|
519
|
-
|
|
520
393
|
NextToken?: string;
|
|
521
394
|
}
|
|
522
395
|
export interface ListAssetsOutput {
|
|
523
396
|
Assets?: AssetInfo[];
|
|
524
|
-
|
|
525
397
|
NextToken?: string;
|
|
526
398
|
}
|
|
527
399
|
export interface ListCatalogItemsInput {
|
|
528
400
|
NextToken?: string;
|
|
529
|
-
|
|
530
401
|
MaxResults?: number;
|
|
531
|
-
|
|
532
402
|
ItemClassFilter?: (CatalogItemClass | string)[];
|
|
533
|
-
|
|
534
403
|
SupportedStorageFilter?: (SupportedStorageEnum | string)[];
|
|
535
|
-
|
|
536
404
|
EC2FamilyFilter?: string[];
|
|
537
405
|
}
|
|
538
406
|
export interface ListCatalogItemsOutput {
|
|
539
407
|
CatalogItems?: CatalogItem[];
|
|
540
|
-
|
|
541
408
|
NextToken?: string;
|
|
542
409
|
}
|
|
543
410
|
export interface ListOrdersInput {
|
|
544
411
|
OutpostIdentifierFilter?: string;
|
|
545
|
-
|
|
546
412
|
NextToken?: string;
|
|
547
|
-
|
|
548
413
|
MaxResults?: number;
|
|
549
414
|
}
|
|
550
415
|
export declare enum OrderType {
|
|
551
416
|
OUTPOST = "OUTPOST",
|
|
552
417
|
REPLACEMENT = "REPLACEMENT",
|
|
553
418
|
}
|
|
554
|
-
|
|
555
419
|
export interface OrderSummary {
|
|
556
420
|
OutpostId?: string;
|
|
557
|
-
|
|
558
421
|
OrderId?: string;
|
|
559
|
-
|
|
560
422
|
OrderType?: OrderType | string;
|
|
561
|
-
|
|
562
423
|
Status?: OrderStatus | string;
|
|
563
|
-
|
|
564
424
|
LineItemCountsByStatus?: Record<string, number>;
|
|
565
|
-
|
|
566
425
|
OrderSubmissionDate?: Date;
|
|
567
|
-
|
|
568
426
|
OrderFulfilledDate?: Date;
|
|
569
427
|
}
|
|
570
428
|
export interface ListOrdersOutput {
|
|
571
429
|
Orders?: OrderSummary[];
|
|
572
|
-
|
|
573
430
|
NextToken?: string;
|
|
574
431
|
}
|
|
575
432
|
export interface ListOutpostsInput {
|
|
576
433
|
NextToken?: string;
|
|
577
|
-
|
|
578
434
|
MaxResults?: number;
|
|
579
|
-
|
|
580
435
|
LifeCycleStatusFilter?: string[];
|
|
581
|
-
|
|
582
436
|
AvailabilityZoneFilter?: string[];
|
|
583
|
-
|
|
584
437
|
AvailabilityZoneIdFilter?: string[];
|
|
585
438
|
}
|
|
586
439
|
export interface ListOutpostsOutput {
|
|
587
440
|
Outposts?: Outpost[];
|
|
588
|
-
|
|
589
441
|
NextToken?: string;
|
|
590
442
|
}
|
|
591
443
|
export interface ListSitesInput {
|
|
592
444
|
NextToken?: string;
|
|
593
|
-
|
|
594
445
|
MaxResults?: number;
|
|
595
|
-
|
|
596
446
|
OperatingAddressCountryCodeFilter?: string[];
|
|
597
|
-
|
|
598
447
|
OperatingAddressStateOrRegionFilter?: string[];
|
|
599
|
-
|
|
600
448
|
OperatingAddressCityFilter?: string[];
|
|
601
449
|
}
|
|
602
450
|
export interface ListSitesOutput {
|
|
603
451
|
Sites?: Site[];
|
|
604
|
-
|
|
605
452
|
NextToken?: string;
|
|
606
453
|
}
|
|
607
454
|
export interface ListTagsForResourceRequest {
|
|
@@ -612,37 +459,28 @@ export interface ListTagsForResourceResponse {
|
|
|
612
459
|
}
|
|
613
460
|
export interface StartConnectionRequest {
|
|
614
461
|
DeviceSerialNumber: string | undefined;
|
|
615
|
-
|
|
616
462
|
AssetId: string | undefined;
|
|
617
|
-
|
|
618
463
|
ClientPublicKey: string | undefined;
|
|
619
|
-
|
|
620
464
|
NetworkInterfaceDeviceIndex: number | undefined;
|
|
621
465
|
}
|
|
622
466
|
export interface StartConnectionResponse {
|
|
623
467
|
ConnectionId?: string;
|
|
624
|
-
|
|
625
468
|
UnderlayIpAddress?: string;
|
|
626
469
|
}
|
|
627
470
|
export interface TagResourceRequest {
|
|
628
471
|
ResourceArn: string | undefined;
|
|
629
|
-
|
|
630
472
|
Tags: Record<string, string> | undefined;
|
|
631
473
|
}
|
|
632
474
|
export interface TagResourceResponse {}
|
|
633
475
|
export interface UntagResourceRequest {
|
|
634
476
|
ResourceArn: string | undefined;
|
|
635
|
-
|
|
636
477
|
TagKeys: string[] | undefined;
|
|
637
478
|
}
|
|
638
479
|
export interface UntagResourceResponse {}
|
|
639
480
|
export interface UpdateOutpostInput {
|
|
640
481
|
OutpostId: string | undefined;
|
|
641
|
-
|
|
642
482
|
Name?: string;
|
|
643
|
-
|
|
644
483
|
Description?: string;
|
|
645
|
-
|
|
646
484
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
647
485
|
}
|
|
648
486
|
export interface UpdateOutpostOutput {
|
|
@@ -650,11 +488,8 @@ export interface UpdateOutpostOutput {
|
|
|
650
488
|
}
|
|
651
489
|
export interface UpdateSiteInput {
|
|
652
490
|
SiteId: string | undefined;
|
|
653
|
-
|
|
654
491
|
Name?: string;
|
|
655
|
-
|
|
656
492
|
Description?: string;
|
|
657
|
-
|
|
658
493
|
Notes?: string;
|
|
659
494
|
}
|
|
660
495
|
export interface UpdateSiteOutput {
|
|
@@ -662,293 +497,212 @@ export interface UpdateSiteOutput {
|
|
|
662
497
|
}
|
|
663
498
|
export interface UpdateSiteAddressInput {
|
|
664
499
|
SiteId: string | undefined;
|
|
665
|
-
|
|
666
500
|
AddressType: AddressType | string | undefined;
|
|
667
|
-
|
|
668
501
|
Address: Address | undefined;
|
|
669
502
|
}
|
|
670
503
|
export interface UpdateSiteAddressOutput {
|
|
671
504
|
AddressType?: AddressType | string;
|
|
672
|
-
|
|
673
505
|
Address?: Address;
|
|
674
506
|
}
|
|
675
507
|
export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
676
508
|
SiteId: string | undefined;
|
|
677
|
-
|
|
678
509
|
PowerDrawKva?: PowerDrawKva | string;
|
|
679
|
-
|
|
680
510
|
PowerPhase?: PowerPhase | string;
|
|
681
|
-
|
|
682
511
|
PowerConnector?: PowerConnector | string;
|
|
683
|
-
|
|
684
512
|
PowerFeedDrop?: PowerFeedDrop | string;
|
|
685
|
-
|
|
686
513
|
UplinkGbps?: UplinkGbps | string;
|
|
687
|
-
|
|
688
514
|
UplinkCount?: UplinkCount | string;
|
|
689
|
-
|
|
690
515
|
FiberOpticCableType?: FiberOpticCableType | string;
|
|
691
|
-
|
|
692
516
|
OpticalStandard?: OpticalStandard | string;
|
|
693
|
-
|
|
694
517
|
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
|
|
695
518
|
}
|
|
696
519
|
export interface UpdateSiteRackPhysicalPropertiesOutput {
|
|
697
520
|
Site?: Site;
|
|
698
521
|
}
|
|
699
|
-
|
|
700
522
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
701
|
-
|
|
702
523
|
export declare const AssetLocationFilterSensitiveLog: (
|
|
703
524
|
obj: AssetLocation
|
|
704
525
|
) => any;
|
|
705
|
-
|
|
706
526
|
export declare const ComputeAttributesFilterSensitiveLog: (
|
|
707
527
|
obj: ComputeAttributes
|
|
708
528
|
) => any;
|
|
709
|
-
|
|
710
529
|
export declare const AssetInfoFilterSensitiveLog: (obj: AssetInfo) => any;
|
|
711
|
-
|
|
712
530
|
export declare const CancelOrderInputFilterSensitiveLog: (
|
|
713
531
|
obj: CancelOrderInput
|
|
714
532
|
) => any;
|
|
715
|
-
|
|
716
533
|
export declare const CancelOrderOutputFilterSensitiveLog: (
|
|
717
534
|
obj: CancelOrderOutput
|
|
718
535
|
) => any;
|
|
719
|
-
|
|
720
536
|
export declare const EC2CapacityFilterSensitiveLog: (obj: EC2Capacity) => any;
|
|
721
|
-
|
|
722
537
|
export declare const CatalogItemFilterSensitiveLog: (obj: CatalogItem) => any;
|
|
723
|
-
|
|
724
538
|
export declare const ConnectionDetailsFilterSensitiveLog: (
|
|
725
539
|
obj: ConnectionDetails
|
|
726
540
|
) => any;
|
|
727
|
-
|
|
728
541
|
export declare const LineItemRequestFilterSensitiveLog: (
|
|
729
542
|
obj: LineItemRequest
|
|
730
543
|
) => any;
|
|
731
|
-
|
|
732
544
|
export declare const CreateOrderInputFilterSensitiveLog: (
|
|
733
545
|
obj: CreateOrderInput
|
|
734
546
|
) => any;
|
|
735
|
-
|
|
736
547
|
export declare const LineItemAssetInformationFilterSensitiveLog: (
|
|
737
548
|
obj: LineItemAssetInformation
|
|
738
549
|
) => any;
|
|
739
|
-
|
|
740
550
|
export declare const ShipmentInformationFilterSensitiveLog: (
|
|
741
551
|
obj: ShipmentInformation
|
|
742
552
|
) => any;
|
|
743
|
-
|
|
744
553
|
export declare const LineItemFilterSensitiveLog: (obj: LineItem) => any;
|
|
745
|
-
|
|
746
554
|
export declare const OrderFilterSensitiveLog: (obj: Order) => any;
|
|
747
|
-
|
|
748
555
|
export declare const CreateOrderOutputFilterSensitiveLog: (
|
|
749
556
|
obj: CreateOrderOutput
|
|
750
557
|
) => any;
|
|
751
|
-
|
|
752
558
|
export declare const CreateOutpostInputFilterSensitiveLog: (
|
|
753
559
|
obj: CreateOutpostInput
|
|
754
560
|
) => any;
|
|
755
|
-
|
|
756
561
|
export declare const OutpostFilterSensitiveLog: (obj: Outpost) => any;
|
|
757
|
-
|
|
758
562
|
export declare const CreateOutpostOutputFilterSensitiveLog: (
|
|
759
563
|
obj: CreateOutpostOutput
|
|
760
564
|
) => any;
|
|
761
|
-
|
|
762
565
|
export declare const RackPhysicalPropertiesFilterSensitiveLog: (
|
|
763
566
|
obj: RackPhysicalProperties
|
|
764
567
|
) => any;
|
|
765
|
-
|
|
766
568
|
export declare const CreateSiteInputFilterSensitiveLog: (
|
|
767
569
|
obj: CreateSiteInput
|
|
768
570
|
) => any;
|
|
769
|
-
|
|
770
571
|
export declare const SiteFilterSensitiveLog: (obj: Site) => any;
|
|
771
|
-
|
|
772
572
|
export declare const CreateSiteOutputFilterSensitiveLog: (
|
|
773
573
|
obj: CreateSiteOutput
|
|
774
574
|
) => any;
|
|
775
|
-
|
|
776
575
|
export declare const DeleteOutpostInputFilterSensitiveLog: (
|
|
777
576
|
obj: DeleteOutpostInput
|
|
778
577
|
) => any;
|
|
779
|
-
|
|
780
578
|
export declare const DeleteOutpostOutputFilterSensitiveLog: (
|
|
781
579
|
obj: DeleteOutpostOutput
|
|
782
580
|
) => any;
|
|
783
|
-
|
|
784
581
|
export declare const DeleteSiteInputFilterSensitiveLog: (
|
|
785
582
|
obj: DeleteSiteInput
|
|
786
583
|
) => any;
|
|
787
|
-
|
|
788
584
|
export declare const DeleteSiteOutputFilterSensitiveLog: (
|
|
789
585
|
obj: DeleteSiteOutput
|
|
790
586
|
) => any;
|
|
791
|
-
|
|
792
587
|
export declare const GetCatalogItemInputFilterSensitiveLog: (
|
|
793
588
|
obj: GetCatalogItemInput
|
|
794
589
|
) => any;
|
|
795
|
-
|
|
796
590
|
export declare const GetCatalogItemOutputFilterSensitiveLog: (
|
|
797
591
|
obj: GetCatalogItemOutput
|
|
798
592
|
) => any;
|
|
799
|
-
|
|
800
593
|
export declare const GetConnectionRequestFilterSensitiveLog: (
|
|
801
594
|
obj: GetConnectionRequest
|
|
802
595
|
) => any;
|
|
803
|
-
|
|
804
596
|
export declare const GetConnectionResponseFilterSensitiveLog: (
|
|
805
597
|
obj: GetConnectionResponse
|
|
806
598
|
) => any;
|
|
807
|
-
|
|
808
599
|
export declare const GetOrderInputFilterSensitiveLog: (
|
|
809
600
|
obj: GetOrderInput
|
|
810
601
|
) => any;
|
|
811
|
-
|
|
812
602
|
export declare const GetOrderOutputFilterSensitiveLog: (
|
|
813
603
|
obj: GetOrderOutput
|
|
814
604
|
) => any;
|
|
815
|
-
|
|
816
605
|
export declare const GetOutpostInputFilterSensitiveLog: (
|
|
817
606
|
obj: GetOutpostInput
|
|
818
607
|
) => any;
|
|
819
|
-
|
|
820
608
|
export declare const GetOutpostOutputFilterSensitiveLog: (
|
|
821
609
|
obj: GetOutpostOutput
|
|
822
610
|
) => any;
|
|
823
|
-
|
|
824
611
|
export declare const GetOutpostInstanceTypesInputFilterSensitiveLog: (
|
|
825
612
|
obj: GetOutpostInstanceTypesInput
|
|
826
613
|
) => any;
|
|
827
|
-
|
|
828
614
|
export declare const InstanceTypeItemFilterSensitiveLog: (
|
|
829
615
|
obj: InstanceTypeItem
|
|
830
616
|
) => any;
|
|
831
|
-
|
|
832
617
|
export declare const GetOutpostInstanceTypesOutputFilterSensitiveLog: (
|
|
833
618
|
obj: GetOutpostInstanceTypesOutput
|
|
834
619
|
) => any;
|
|
835
|
-
|
|
836
620
|
export declare const GetSiteInputFilterSensitiveLog: (obj: GetSiteInput) => any;
|
|
837
|
-
|
|
838
621
|
export declare const GetSiteOutputFilterSensitiveLog: (
|
|
839
622
|
obj: GetSiteOutput
|
|
840
623
|
) => any;
|
|
841
|
-
|
|
842
624
|
export declare const GetSiteAddressInputFilterSensitiveLog: (
|
|
843
625
|
obj: GetSiteAddressInput
|
|
844
626
|
) => any;
|
|
845
|
-
|
|
846
627
|
export declare const GetSiteAddressOutputFilterSensitiveLog: (
|
|
847
628
|
obj: GetSiteAddressOutput
|
|
848
629
|
) => any;
|
|
849
|
-
|
|
850
630
|
export declare const ListAssetsInputFilterSensitiveLog: (
|
|
851
631
|
obj: ListAssetsInput
|
|
852
632
|
) => any;
|
|
853
|
-
|
|
854
633
|
export declare const ListAssetsOutputFilterSensitiveLog: (
|
|
855
634
|
obj: ListAssetsOutput
|
|
856
635
|
) => any;
|
|
857
|
-
|
|
858
636
|
export declare const ListCatalogItemsInputFilterSensitiveLog: (
|
|
859
637
|
obj: ListCatalogItemsInput
|
|
860
638
|
) => any;
|
|
861
|
-
|
|
862
639
|
export declare const ListCatalogItemsOutputFilterSensitiveLog: (
|
|
863
640
|
obj: ListCatalogItemsOutput
|
|
864
641
|
) => any;
|
|
865
|
-
|
|
866
642
|
export declare const ListOrdersInputFilterSensitiveLog: (
|
|
867
643
|
obj: ListOrdersInput
|
|
868
644
|
) => any;
|
|
869
|
-
|
|
870
645
|
export declare const OrderSummaryFilterSensitiveLog: (obj: OrderSummary) => any;
|
|
871
|
-
|
|
872
646
|
export declare const ListOrdersOutputFilterSensitiveLog: (
|
|
873
647
|
obj: ListOrdersOutput
|
|
874
648
|
) => any;
|
|
875
|
-
|
|
876
649
|
export declare const ListOutpostsInputFilterSensitiveLog: (
|
|
877
650
|
obj: ListOutpostsInput
|
|
878
651
|
) => any;
|
|
879
|
-
|
|
880
652
|
export declare const ListOutpostsOutputFilterSensitiveLog: (
|
|
881
653
|
obj: ListOutpostsOutput
|
|
882
654
|
) => any;
|
|
883
|
-
|
|
884
655
|
export declare const ListSitesInputFilterSensitiveLog: (
|
|
885
656
|
obj: ListSitesInput
|
|
886
657
|
) => any;
|
|
887
|
-
|
|
888
658
|
export declare const ListSitesOutputFilterSensitiveLog: (
|
|
889
659
|
obj: ListSitesOutput
|
|
890
660
|
) => any;
|
|
891
|
-
|
|
892
661
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
893
662
|
obj: ListTagsForResourceRequest
|
|
894
663
|
) => any;
|
|
895
|
-
|
|
896
664
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
897
665
|
obj: ListTagsForResourceResponse
|
|
898
666
|
) => any;
|
|
899
|
-
|
|
900
667
|
export declare const StartConnectionRequestFilterSensitiveLog: (
|
|
901
668
|
obj: StartConnectionRequest
|
|
902
669
|
) => any;
|
|
903
|
-
|
|
904
670
|
export declare const StartConnectionResponseFilterSensitiveLog: (
|
|
905
671
|
obj: StartConnectionResponse
|
|
906
672
|
) => any;
|
|
907
|
-
|
|
908
673
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
909
674
|
obj: TagResourceRequest
|
|
910
675
|
) => any;
|
|
911
|
-
|
|
912
676
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
913
677
|
obj: TagResourceResponse
|
|
914
678
|
) => any;
|
|
915
|
-
|
|
916
679
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
917
680
|
obj: UntagResourceRequest
|
|
918
681
|
) => any;
|
|
919
|
-
|
|
920
682
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
921
683
|
obj: UntagResourceResponse
|
|
922
684
|
) => any;
|
|
923
|
-
|
|
924
685
|
export declare const UpdateOutpostInputFilterSensitiveLog: (
|
|
925
686
|
obj: UpdateOutpostInput
|
|
926
687
|
) => any;
|
|
927
|
-
|
|
928
688
|
export declare const UpdateOutpostOutputFilterSensitiveLog: (
|
|
929
689
|
obj: UpdateOutpostOutput
|
|
930
690
|
) => any;
|
|
931
|
-
|
|
932
691
|
export declare const UpdateSiteInputFilterSensitiveLog: (
|
|
933
692
|
obj: UpdateSiteInput
|
|
934
693
|
) => any;
|
|
935
|
-
|
|
936
694
|
export declare const UpdateSiteOutputFilterSensitiveLog: (
|
|
937
695
|
obj: UpdateSiteOutput
|
|
938
696
|
) => any;
|
|
939
|
-
|
|
940
697
|
export declare const UpdateSiteAddressInputFilterSensitiveLog: (
|
|
941
698
|
obj: UpdateSiteAddressInput
|
|
942
699
|
) => any;
|
|
943
|
-
|
|
944
700
|
export declare const UpdateSiteAddressOutputFilterSensitiveLog: (
|
|
945
701
|
obj: UpdateSiteAddressOutput
|
|
946
702
|
) => any;
|
|
947
|
-
|
|
948
703
|
export declare const UpdateSiteRackPhysicalPropertiesInputFilterSensitiveLog: (
|
|
949
704
|
obj: UpdateSiteRackPhysicalPropertiesInput
|
|
950
705
|
) => any;
|
|
951
|
-
|
|
952
706
|
export declare const UpdateSiteRackPhysicalPropertiesOutputFilterSensitiveLog: (
|
|
953
707
|
obj: UpdateSiteRackPhysicalPropertiesOutput
|
|
954
708
|
) => any;
|