@aws-sdk/client-outposts 3.40.0 → 3.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/Outposts.js +165 -0
  4. package/dist-cjs/commands/CancelOrderCommand.js +36 -0
  5. package/dist-cjs/commands/CreateSiteCommand.js +36 -0
  6. package/dist-cjs/commands/GetCatalogItemCommand.js +36 -0
  7. package/dist-cjs/commands/GetOrderCommand.js +36 -0
  8. package/dist-cjs/commands/GetSiteAddressCommand.js +36 -0
  9. package/dist-cjs/commands/GetSiteCommand.js +36 -0
  10. package/dist-cjs/commands/ListCatalogItemsCommand.js +36 -0
  11. package/dist-cjs/commands/ListOrdersCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateSiteAddressCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateSiteCommand.js +36 -0
  14. package/dist-cjs/commands/UpdateSiteRackPhysicalPropertiesCommand.js +36 -0
  15. package/dist-cjs/commands/index.js +11 -0
  16. package/dist-cjs/endpoints.js +8 -0
  17. package/dist-cjs/models/models_0.js +306 -25
  18. package/dist-cjs/pagination/ListCatalogItemsPaginator.js +35 -0
  19. package/dist-cjs/pagination/ListOrdersPaginator.js +35 -0
  20. package/dist-cjs/pagination/index.js +2 -0
  21. package/dist-cjs/protocols/Aws_restJson1.js +1432 -103
  22. package/dist-es/Outposts.js +165 -0
  23. package/dist-es/commands/CancelOrderCommand.js +39 -0
  24. package/dist-es/commands/CreateSiteCommand.js +39 -0
  25. package/dist-es/commands/GetCatalogItemCommand.js +39 -0
  26. package/dist-es/commands/GetOrderCommand.js +39 -0
  27. package/dist-es/commands/GetSiteAddressCommand.js +39 -0
  28. package/dist-es/commands/GetSiteCommand.js +39 -0
  29. package/dist-es/commands/ListCatalogItemsCommand.js +39 -0
  30. package/dist-es/commands/ListOrdersCommand.js +39 -0
  31. package/dist-es/commands/UpdateSiteAddressCommand.js +39 -0
  32. package/dist-es/commands/UpdateSiteCommand.js +39 -0
  33. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +39 -0
  34. package/dist-es/commands/index.js +11 -0
  35. package/dist-es/endpoints.js +8 -0
  36. package/dist-es/models/models_0.js +242 -16
  37. package/dist-es/pagination/ListCatalogItemsPaginator.js +74 -0
  38. package/dist-es/pagination/ListOrdersPaginator.js +74 -0
  39. package/dist-es/pagination/index.js +2 -0
  40. package/dist-es/protocols/Aws_restJson1.js +1642 -167
  41. package/dist-types/Outposts.d.ts +114 -6
  42. package/dist-types/OutpostsClient.d.ts +16 -5
  43. package/dist-types/commands/CancelOrderCommand.d.ts +37 -0
  44. package/dist-types/commands/CreateOrderCommand.d.ts +1 -1
  45. package/dist-types/commands/CreateOutpostCommand.d.ts +1 -1
  46. package/dist-types/commands/CreateSiteCommand.d.ts +37 -0
  47. package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
  48. package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
  49. package/dist-types/commands/GetCatalogItemCommand.d.ts +35 -0
  50. package/dist-types/commands/GetOrderCommand.d.ts +35 -0
  51. package/dist-types/commands/GetOutpostCommand.d.ts +1 -1
  52. package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +1 -1
  53. package/dist-types/commands/GetSiteAddressCommand.d.ts +37 -0
  54. package/dist-types/commands/GetSiteCommand.d.ts +37 -0
  55. package/dist-types/commands/ListCatalogItemsCommand.d.ts +39 -0
  56. package/dist-types/commands/ListOrdersCommand.d.ts +36 -0
  57. package/dist-types/commands/ListOutpostsCommand.d.ts +3 -3
  58. package/dist-types/commands/ListSitesCommand.d.ts +2 -2
  59. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  60. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  61. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  62. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +46 -0
  63. package/dist-types/commands/UpdateSiteCommand.d.ts +37 -0
  64. package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +40 -0
  65. package/dist-types/commands/index.d.ts +11 -0
  66. package/dist-types/models/models_0.d.ts +1144 -146
  67. package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  68. package/dist-types/pagination/ListOrdersPaginator.d.ts +4 -0
  69. package/dist-types/pagination/index.d.ts +2 -0
  70. package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
  71. package/dist-types/ts3.4/Outposts.d.ts +55 -0
  72. package/dist-types/ts3.4/OutpostsClient.d.ts +13 -2
  73. package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +17 -0
  77. package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +17 -0
  78. package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +17 -0
  79. package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +17 -0
  80. package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +17 -0
  81. package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  85. package/dist-types/ts3.4/models/models_0.d.ts +518 -51
  86. package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  87. package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +4 -0
  88. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  89. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
  90. package/package.json +4 -4
@@ -9,7 +9,55 @@ export declare namespace AccessDeniedException {
9
9
 
10
10
  const filterSensitiveLog: (obj: AccessDeniedException) => any;
11
11
  }
12
+
13
+ export interface Address {
14
+
15
+ ContactName?: string;
16
+
17
+ ContactPhoneNumber?: string;
18
+
19
+ AddressLine1: string | undefined;
20
+
21
+ AddressLine2?: string;
22
+
23
+ AddressLine3?: string;
24
+
25
+ City: string | undefined;
26
+
27
+ StateOrRegion: string | undefined;
28
+
29
+ DistrictOrCounty?: string;
30
+
31
+ PostalCode: string | undefined;
32
+
33
+ CountryCode: string | undefined;
34
+
35
+ Municipality?: string;
36
+ }
37
+ export declare namespace Address {
38
+
39
+ const filterSensitiveLog: (obj: Address) => any;
40
+ }
41
+ export declare enum AddressType {
42
+ OPERATING_ADDRESS = "OPERATING_ADDRESS",
43
+ SHIPPING_ADDRESS = "SHIPPING_ADDRESS"
44
+ }
45
+ export interface CancelOrderInput {
46
+
47
+ OrderId: string | undefined;
48
+ }
49
+ export declare namespace CancelOrderInput {
50
+
51
+ const filterSensitiveLog: (obj: CancelOrderInput) => any;
52
+ }
53
+ export interface CancelOrderOutput {
54
+ }
55
+ export declare namespace CancelOrderOutput {
56
+
57
+ const filterSensitiveLog: (obj: CancelOrderOutput) => any;
58
+ }
12
59
  export declare enum ResourceType {
60
+ ORDER = "ORDER",
13
61
  OUTPOST = "OUTPOST"
14
62
  }
15
63
 
@@ -27,6 +75,82 @@ export declare namespace ConflictException {
27
75
  const filterSensitiveLog: (obj: ConflictException) => any;
28
76
  }
29
77
 
78
+ export interface InternalServerException extends __SmithyException, $MetadataBearer {
79
+ name: "InternalServerException";
80
+ $fault: "server";
81
+ Message?: string;
82
+ }
83
+ export declare namespace InternalServerException {
84
+
85
+ const filterSensitiveLog: (obj: InternalServerException) => any;
86
+ }
87
+
88
+ export interface NotFoundException extends __SmithyException, $MetadataBearer {
89
+ name: "NotFoundException";
90
+ $fault: "client";
91
+ Message?: string;
92
+ }
93
+ export declare namespace NotFoundException {
94
+
95
+ const filterSensitiveLog: (obj: NotFoundException) => any;
96
+ }
97
+
98
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
99
+ name: "ValidationException";
100
+ $fault: "client";
101
+ Message?: string;
102
+ }
103
+ export declare namespace ValidationException {
104
+
105
+ const filterSensitiveLog: (obj: ValidationException) => any;
106
+ }
107
+
108
+ export interface EC2Capacity {
109
+
110
+ Family?: string;
111
+
112
+ MaxSize?: string;
113
+
114
+ Quantity?: string;
115
+ }
116
+ export declare namespace EC2Capacity {
117
+
118
+ const filterSensitiveLog: (obj: EC2Capacity) => any;
119
+ }
120
+ export declare enum CatalogItemStatus {
121
+ AVAILABLE = "AVAILABLE",
122
+ DISCONTINUED = "DISCONTINUED"
123
+ }
124
+ export declare enum SupportedStorageEnum {
125
+ EBS = "EBS",
126
+ S3 = "S3"
127
+ }
128
+
129
+ export interface CatalogItem {
130
+
131
+ CatalogItemId?: string;
132
+
133
+ ItemStatus?: CatalogItemStatus | string;
134
+
135
+ EC2Capacities?: EC2Capacity[];
136
+
137
+ PowerKva?: number;
138
+
139
+ WeightLbs?: number;
140
+
141
+ SupportedUplinkGbps?: number[];
142
+
143
+ SupportedStorage?: (SupportedStorageEnum | string)[];
144
+ }
145
+ export declare namespace CatalogItem {
146
+
147
+ const filterSensitiveLog: (obj: CatalogItem) => any;
148
+ }
149
+ export declare enum CatalogItemClass {
150
+ RACK = "RACK",
151
+ SERVER = "SERVER"
152
+ }
153
+
30
154
  export interface LineItemRequest {
31
155
 
32
156
  CatalogItemId?: string;
@@ -59,6 +183,16 @@ export declare namespace CreateOrderInput {
59
183
 
60
184
  const filterSensitiveLog: (obj: CreateOrderInput) => any;
61
185
  }
186
+ export declare enum LineItemStatus {
187
+ BUILDING = "BUILDING",
188
+ CANCELLED = "CANCELLED",
189
+ DELIVERED = "DELIVERED",
190
+ ERROR = "ERROR",
191
+ INSTALLED = "INSTALLED",
192
+ INSTALLING = "INSTALLING",
193
+ PREPARING = "PREPARING",
194
+ SHIPPED = "SHIPPED"
195
+ }
62
196
 
63
197
  export interface LineItem {
64
198
 
@@ -68,7 +202,7 @@ export interface LineItem {
68
202
 
69
203
  Quantity?: number;
70
204
 
71
- Status?: string;
205
+ Status?: LineItemStatus | string;
72
206
  }
73
207
  export declare namespace LineItem {
74
208
 
@@ -76,9 +210,13 @@ export declare namespace LineItem {
76
210
  }
77
211
  export declare enum OrderStatus {
78
212
  CANCELLED = "CANCELLED",
213
+ COMPLETED = "COMPLETED",
214
+ ERROR = "ERROR",
79
215
  FULFILLED = "FULFILLED",
80
216
  INSTALLING = "INSTALLING",
217
+ IN_PROGRESS = "IN_PROGRESS",
81
218
  PENDING = "PENDING",
219
+ PREPARING = "PREPARING",
82
220
  PROCESSING = "PROCESSING",
83
221
  RECEIVED = "RECEIVED"
84
222
  }
@@ -112,26 +250,6 @@ export declare namespace CreateOrderOutput {
112
250
  const filterSensitiveLog: (obj: CreateOrderOutput) => any;
113
251
  }
114
252
 
115
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
116
- name: "InternalServerException";
117
- $fault: "server";
118
- Message?: string;
119
- }
120
- export declare namespace InternalServerException {
121
-
122
- const filterSensitiveLog: (obj: InternalServerException) => any;
123
- }
124
-
125
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
126
- name: "NotFoundException";
127
- $fault: "client";
128
- Message?: string;
129
- }
130
- export declare namespace NotFoundException {
131
-
132
- const filterSensitiveLog: (obj: NotFoundException) => any;
133
- }
134
-
135
253
  export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
136
254
  name: "ServiceQuotaExceededException";
137
255
  $fault: "client";
@@ -141,15 +259,9 @@ export declare namespace ServiceQuotaExceededException {
141
259
 
142
260
  const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
143
261
  }
144
-
145
- export interface ValidationException extends __SmithyException, $MetadataBearer {
146
- name: "ValidationException";
147
- $fault: "client";
148
- Message?: string;
149
- }
150
- export declare namespace ValidationException {
151
-
152
- const filterSensitiveLog: (obj: ValidationException) => any;
262
+ export declare enum SupportedHardwareType {
263
+ RACK = "RACK",
264
+ SERVER = "SERVER"
153
265
  }
154
266
  export interface CreateOutpostInput {
155
267
 
@@ -166,6 +278,8 @@ export interface CreateOutpostInput {
166
278
  Tags?: {
167
279
  [key: string]: string;
168
280
  };
281
+
282
+ SupportedHardwareType?: SupportedHardwareType | string;
169
283
  }
170
284
  export declare namespace CreateOutpostInput {
171
285
 
@@ -197,6 +311,8 @@ export interface Outpost {
197
311
  };
198
312
 
199
313
  SiteArn?: string;
314
+
315
+ SupportedHardwareType?: SupportedHardwareType | string;
200
316
  }
201
317
  export declare namespace Outpost {
202
318
 
@@ -210,6 +326,155 @@ export declare namespace CreateOutpostOutput {
210
326
 
211
327
  const filterSensitiveLog: (obj: CreateOutpostOutput) => any;
212
328
  }
329
+ export declare enum FiberOpticCableType {
330
+ MULTI_MODE = "MULTI_MODE",
331
+ SINGLE_MODE = "SINGLE_MODE"
332
+ }
333
+ export declare enum MaximumSupportedWeightLbs {
334
+ MAX_1400_LBS = "MAX_1400_LBS",
335
+ MAX_1600_LBS = "MAX_1600_LBS",
336
+ MAX_1800_LBS = "MAX_1800_LBS",
337
+ MAX_2000_LBS = "MAX_2000_LBS",
338
+ NO_LIMIT = "NO_LIMIT"
339
+ }
340
+ export declare enum OpticalStandard {
341
+ OPTIC_1000BASE_LX = "OPTIC_1000BASE_LX",
342
+ OPTIC_1000BASE_SX = "OPTIC_1000BASE_SX",
343
+ OPTIC_100GBASE_CWDM4 = "OPTIC_100GBASE_CWDM4",
344
+ OPTIC_100GBASE_LR4 = "OPTIC_100GBASE_LR4",
345
+ OPTIC_100GBASE_SR4 = "OPTIC_100GBASE_SR4",
346
+ OPTIC_100G_PSM4_MSA = "OPTIC_100G_PSM4_MSA",
347
+ OPTIC_10GBASE_IR = "OPTIC_10GBASE_IR",
348
+ OPTIC_10GBASE_LR = "OPTIC_10GBASE_LR",
349
+ OPTIC_10GBASE_SR = "OPTIC_10GBASE_SR",
350
+ OPTIC_40GBASE_ESR = "OPTIC_40GBASE_ESR",
351
+ OPTIC_40GBASE_IR4_LR4L = "OPTIC_40GBASE_IR4_LR4L",
352
+ OPTIC_40GBASE_LR4 = "OPTIC_40GBASE_LR4",
353
+ OPTIC_40GBASE_SR = "OPTIC_40GBASE_SR"
354
+ }
355
+ export declare enum PowerConnector {
356
+ AH530P7W = "AH530P7W",
357
+ AH532P6W = "AH532P6W",
358
+ IEC309 = "IEC309",
359
+ L6_30P = "L6_30P"
360
+ }
361
+ export declare enum PowerDrawKva {
362
+ POWER_10_KVA = "POWER_10_KVA",
363
+ POWER_15_KVA = "POWER_15_KVA",
364
+ POWER_5_KVA = "POWER_5_KVA"
365
+ }
366
+ export declare enum PowerFeedDrop {
367
+ ABOVE_RACK = "ABOVE_RACK",
368
+ BELOW_RACK = "BELOW_RACK"
369
+ }
370
+ export declare enum PowerPhase {
371
+ SINGLE_PHASE = "SINGLE_PHASE",
372
+ THREE_PHASE = "THREE_PHASE"
373
+ }
374
+ export declare enum UplinkCount {
375
+ UPLINK_COUNT_1 = "UPLINK_COUNT_1",
376
+ UPLINK_COUNT_12 = "UPLINK_COUNT_12",
377
+ UPLINK_COUNT_16 = "UPLINK_COUNT_16",
378
+ UPLINK_COUNT_2 = "UPLINK_COUNT_2",
379
+ UPLINK_COUNT_3 = "UPLINK_COUNT_3",
380
+ UPLINK_COUNT_4 = "UPLINK_COUNT_4",
381
+ UPLINK_COUNT_5 = "UPLINK_COUNT_5",
382
+ UPLINK_COUNT_6 = "UPLINK_COUNT_6",
383
+ UPLINK_COUNT_7 = "UPLINK_COUNT_7",
384
+ UPLINK_COUNT_8 = "UPLINK_COUNT_8"
385
+ }
386
+ export declare enum UplinkGbps {
387
+ UPLINK_100G = "UPLINK_100G",
388
+ UPLINK_10G = "UPLINK_10G",
389
+ UPLINK_1G = "UPLINK_1G",
390
+ UPLINK_40G = "UPLINK_40G"
391
+ }
392
+
393
+ export interface RackPhysicalProperties {
394
+
395
+ PowerDrawKva?: PowerDrawKva | string;
396
+
397
+ PowerPhase?: PowerPhase | string;
398
+
399
+ PowerConnector?: PowerConnector | string;
400
+
401
+ PowerFeedDrop?: PowerFeedDrop | string;
402
+
403
+ UplinkGbps?: UplinkGbps | string;
404
+
405
+ UplinkCount?: UplinkCount | string;
406
+
407
+ FiberOpticCableType?: FiberOpticCableType | string;
408
+
409
+ OpticalStandard?: OpticalStandard | string;
410
+
411
+ MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
412
+ }
413
+ export declare namespace RackPhysicalProperties {
414
+
415
+ const filterSensitiveLog: (obj: RackPhysicalProperties) => any;
416
+ }
417
+ export interface CreateSiteInput {
418
+
419
+ Name: string | undefined;
420
+
421
+ Description?: string;
422
+
423
+ Notes?: string;
424
+
425
+ Tags?: {
426
+ [key: string]: string;
427
+ };
428
+
429
+ OperatingAddress?: Address;
430
+
431
+ ShippingAddress?: Address;
432
+
433
+ RackPhysicalProperties?: RackPhysicalProperties;
434
+ }
435
+ export declare namespace CreateSiteInput {
436
+
437
+ const filterSensitiveLog: (obj: CreateSiteInput) => any;
438
+ }
439
+
440
+ export interface Site {
441
+
442
+ SiteId?: string;
443
+
444
+ AccountId?: string;
445
+
446
+ Name?: string;
447
+
448
+ Description?: string;
449
+
450
+ Tags?: {
451
+ [key: string]: string;
452
+ };
453
+
454
+ SiteArn?: string;
455
+
456
+ Notes?: string;
457
+
458
+ OperatingAddressCountryCode?: string;
459
+
460
+ OperatingAddressStateOrRegion?: string;
461
+
462
+ OperatingAddressCity?: string;
463
+
464
+ RackPhysicalProperties?: RackPhysicalProperties;
465
+ }
466
+ export declare namespace Site {
467
+
468
+ const filterSensitiveLog: (obj: Site) => any;
469
+ }
470
+ export interface CreateSiteOutput {
471
+
472
+ Site?: Site;
473
+ }
474
+ export declare namespace CreateSiteOutput {
475
+
476
+ const filterSensitiveLog: (obj: CreateSiteOutput) => any;
477
+ }
213
478
  export interface DeleteOutpostInput {
214
479
 
215
480
  OutpostId: string | undefined;
@@ -238,6 +503,38 @@ export declare namespace DeleteSiteOutput {
238
503
 
239
504
  const filterSensitiveLog: (obj: DeleteSiteOutput) => any;
240
505
  }
506
+ export interface GetCatalogItemInput {
507
+
508
+ CatalogItemId: string | undefined;
509
+ }
510
+ export declare namespace GetCatalogItemInput {
511
+
512
+ const filterSensitiveLog: (obj: GetCatalogItemInput) => any;
513
+ }
514
+ export interface GetCatalogItemOutput {
515
+
516
+ CatalogItem?: CatalogItem;
517
+ }
518
+ export declare namespace GetCatalogItemOutput {
519
+
520
+ const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
521
+ }
522
+ export interface GetOrderInput {
523
+
524
+ OrderId: string | undefined;
525
+ }
526
+ export declare namespace GetOrderInput {
527
+
528
+ const filterSensitiveLog: (obj: GetOrderInput) => any;
529
+ }
530
+ export interface GetOrderOutput {
531
+
532
+ Order?: Order;
533
+ }
534
+ export declare namespace GetOrderOutput {
535
+
536
+ const filterSensitiveLog: (obj: GetOrderOutput) => any;
537
+ }
241
538
  export interface GetOutpostInput {
242
539
 
243
540
  OutpostId: string | undefined;
@@ -289,6 +586,119 @@ export declare namespace GetOutpostInstanceTypesOutput {
289
586
 
290
587
  const filterSensitiveLog: (obj: GetOutpostInstanceTypesOutput) => any;
291
588
  }
589
+ export interface GetSiteInput {
590
+
591
+ SiteId: string | undefined;
592
+ }
593
+ export declare namespace GetSiteInput {
594
+
595
+ const filterSensitiveLog: (obj: GetSiteInput) => any;
596
+ }
597
+ export interface GetSiteOutput {
598
+
599
+ Site?: Site;
600
+ }
601
+ export declare namespace GetSiteOutput {
602
+
603
+ const filterSensitiveLog: (obj: GetSiteOutput) => any;
604
+ }
605
+ export interface GetSiteAddressInput {
606
+
607
+ SiteId: string | undefined;
608
+
609
+ AddressType: AddressType | string | undefined;
610
+ }
611
+ export declare namespace GetSiteAddressInput {
612
+
613
+ const filterSensitiveLog: (obj: GetSiteAddressInput) => any;
614
+ }
615
+ export interface GetSiteAddressOutput {
616
+
617
+ SiteId?: string;
618
+
619
+ AddressType?: AddressType | string;
620
+
621
+ Address?: Address;
622
+ }
623
+ export declare namespace GetSiteAddressOutput {
624
+
625
+ const filterSensitiveLog: (obj: GetSiteAddressOutput) => any;
626
+ }
627
+ export interface ListCatalogItemsInput {
628
+
629
+ NextToken?: string;
630
+
631
+ MaxResults?: number;
632
+
633
+ ItemClassFilter?: (CatalogItemClass | string)[];
634
+
635
+ SupportedStorageFilter?: (SupportedStorageEnum | string)[];
636
+
637
+ EC2FamilyFilter?: string[];
638
+ }
639
+ export declare namespace ListCatalogItemsInput {
640
+
641
+ const filterSensitiveLog: (obj: ListCatalogItemsInput) => any;
642
+ }
643
+ export interface ListCatalogItemsOutput {
644
+
645
+ CatalogItems?: CatalogItem[];
646
+
647
+ NextToken?: string;
648
+ }
649
+ export declare namespace ListCatalogItemsOutput {
650
+
651
+ const filterSensitiveLog: (obj: ListCatalogItemsOutput) => any;
652
+ }
653
+ export interface ListOrdersInput {
654
+
655
+ OutpostIdentifierFilter?: string;
656
+
657
+ NextToken?: string;
658
+
659
+ MaxResults?: number;
660
+ }
661
+ export declare namespace ListOrdersInput {
662
+
663
+ const filterSensitiveLog: (obj: ListOrdersInput) => any;
664
+ }
665
+ export declare enum OrderType {
666
+ OUTPOST = "OUTPOST",
667
+ REPLACEMENT = "REPLACEMENT"
668
+ }
669
+
670
+ export interface OrderSummary {
671
+
672
+ OutpostId?: string;
673
+
674
+ OrderId?: string;
675
+
676
+ OrderType?: OrderType | string;
677
+
678
+ Status?: OrderStatus | string;
679
+
680
+ LineItemCountsByStatus?: {
681
+ [key: string]: number;
682
+ };
683
+
684
+ OrderSubmissionDate?: Date;
685
+
686
+ OrderFulfilledDate?: Date;
687
+ }
688
+ export declare namespace OrderSummary {
689
+
690
+ const filterSensitiveLog: (obj: OrderSummary) => any;
691
+ }
692
+ export interface ListOrdersOutput {
693
+
694
+ Orders?: OrderSummary[];
695
+
696
+ NextToken?: string;
697
+ }
698
+ export declare namespace ListOrdersOutput {
699
+
700
+ const filterSensitiveLog: (obj: ListOrdersOutput) => any;
701
+ }
292
702
  export interface ListOutpostsInput {
293
703
 
294
704
  NextToken?: string;
@@ -325,27 +735,6 @@ export declare namespace ListSitesInput {
325
735
 
326
736
  const filterSensitiveLog: (obj: ListSitesInput) => any;
327
737
  }
328
-
329
- export interface Site {
330
-
331
- SiteId?: string;
332
-
333
- AccountId?: string;
334
-
335
- Name?: string;
336
-
337
- Description?: string;
338
-
339
- Tags?: {
340
- [key: string]: string;
341
- };
342
-
343
- SiteArn?: string;
344
- }
345
- export declare namespace Site {
346
-
347
- const filterSensitiveLog: (obj: Site) => any;
348
- }
349
738
  export interface ListSitesOutput {
350
739
 
351
740
  Sites?: Site[];
@@ -408,3 +797,81 @@ export declare namespace UntagResourceResponse {
408
797
 
409
798
  const filterSensitiveLog: (obj: UntagResourceResponse) => any;
410
799
  }
800
+ export interface UpdateSiteInput {
801
+
802
+ SiteId: string | undefined;
803
+
804
+ Name?: string;
805
+
806
+ Description?: string;
807
+
808
+ Notes?: string;
809
+ }
810
+ export declare namespace UpdateSiteInput {
811
+
812
+ const filterSensitiveLog: (obj: UpdateSiteInput) => any;
813
+ }
814
+ export interface UpdateSiteOutput {
815
+
816
+ Site?: Site;
817
+ }
818
+ export declare namespace UpdateSiteOutput {
819
+
820
+ const filterSensitiveLog: (obj: UpdateSiteOutput) => any;
821
+ }
822
+ export interface UpdateSiteAddressInput {
823
+
824
+ SiteId: string | undefined;
825
+
826
+ AddressType: AddressType | string | undefined;
827
+
828
+ Address: Address | undefined;
829
+ }
830
+ export declare namespace UpdateSiteAddressInput {
831
+
832
+ const filterSensitiveLog: (obj: UpdateSiteAddressInput) => any;
833
+ }
834
+ export interface UpdateSiteAddressOutput {
835
+
836
+ AddressType?: AddressType | string;
837
+
838
+ Address?: Address;
839
+ }
840
+ export declare namespace UpdateSiteAddressOutput {
841
+
842
+ const filterSensitiveLog: (obj: UpdateSiteAddressOutput) => any;
843
+ }
844
+ export interface UpdateSiteRackPhysicalPropertiesInput {
845
+
846
+ SiteId: string | undefined;
847
+
848
+ PowerDrawKva?: PowerDrawKva | string;
849
+
850
+ PowerPhase?: PowerPhase | string;
851
+
852
+ PowerConnector?: PowerConnector | string;
853
+
854
+ PowerFeedDrop?: PowerFeedDrop | string;
855
+
856
+ UplinkGbps?: UplinkGbps | string;
857
+
858
+ UplinkCount?: UplinkCount | string;
859
+
860
+ FiberOpticCableType?: FiberOpticCableType | string;
861
+
862
+ OpticalStandard?: OpticalStandard | string;
863
+
864
+ MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
865
+ }
866
+ export declare namespace UpdateSiteRackPhysicalPropertiesInput {
867
+
868
+ const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesInput) => any;
869
+ }
870
+ export interface UpdateSiteRackPhysicalPropertiesOutput {
871
+
872
+ Site?: Site;
873
+ }
874
+ export declare namespace UpdateSiteRackPhysicalPropertiesOutput {
875
+
876
+ const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesOutput) => any;
877
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "../commands/ListCatalogItemsCommand";
3
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListCatalogItems(config: OutpostsPaginationConfiguration, input: ListCatalogItemsCommandInput, ...additionalArguments: any): Paginator<ListCatalogItemsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/ListOrdersCommand";
3
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListOrders(config: OutpostsPaginationConfiguration, input: ListOrdersCommandInput, ...additionalArguments: any): Paginator<ListOrdersCommandOutput>;
@@ -1,3 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListCatalogItemsPaginator";
3
+ export * from "./ListOrdersPaginator";
2
4
  export * from "./ListOutpostsPaginator";
3
5
  export * from "./ListSitesPaginator";