@aws-sdk/client-outposts 3.128.0 → 3.137.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 (60) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist-cjs/commands/CancelOrderCommand.js +2 -2
  3. package/dist-cjs/commands/CreateOrderCommand.js +2 -2
  4. package/dist-cjs/commands/CreateOutpostCommand.js +2 -2
  5. package/dist-cjs/commands/CreateSiteCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteOutpostCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteSiteCommand.js +2 -2
  8. package/dist-cjs/commands/GetCatalogItemCommand.js +2 -2
  9. package/dist-cjs/commands/GetConnectionCommand.js +2 -2
  10. package/dist-cjs/commands/GetOrderCommand.js +2 -2
  11. package/dist-cjs/commands/GetOutpostCommand.js +2 -2
  12. package/dist-cjs/commands/GetOutpostInstanceTypesCommand.js +2 -2
  13. package/dist-cjs/commands/GetSiteAddressCommand.js +2 -2
  14. package/dist-cjs/commands/GetSiteCommand.js +2 -2
  15. package/dist-cjs/commands/ListAssetsCommand.js +2 -2
  16. package/dist-cjs/commands/ListCatalogItemsCommand.js +2 -2
  17. package/dist-cjs/commands/ListOrdersCommand.js +2 -2
  18. package/dist-cjs/commands/ListOutpostsCommand.js +2 -2
  19. package/dist-cjs/commands/ListSitesCommand.js +2 -2
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-cjs/commands/StartConnectionCommand.js +2 -2
  22. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  24. package/dist-cjs/commands/UpdateOutpostCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateSiteAddressCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateSiteCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateSiteRackPhysicalPropertiesCommand.js +2 -2
  28. package/dist-cjs/models/models_0.js +285 -404
  29. package/dist-cjs/protocols/Aws_restJson1.js +45 -0
  30. package/dist-es/commands/CancelOrderCommand.js +3 -3
  31. package/dist-es/commands/CreateOrderCommand.js +3 -3
  32. package/dist-es/commands/CreateOutpostCommand.js +3 -3
  33. package/dist-es/commands/CreateSiteCommand.js +3 -3
  34. package/dist-es/commands/DeleteOutpostCommand.js +3 -3
  35. package/dist-es/commands/DeleteSiteCommand.js +3 -3
  36. package/dist-es/commands/GetCatalogItemCommand.js +3 -3
  37. package/dist-es/commands/GetConnectionCommand.js +3 -3
  38. package/dist-es/commands/GetOrderCommand.js +3 -3
  39. package/dist-es/commands/GetOutpostCommand.js +3 -3
  40. package/dist-es/commands/GetOutpostInstanceTypesCommand.js +3 -3
  41. package/dist-es/commands/GetSiteAddressCommand.js +3 -3
  42. package/dist-es/commands/GetSiteCommand.js +3 -3
  43. package/dist-es/commands/ListAssetsCommand.js +3 -3
  44. package/dist-es/commands/ListCatalogItemsCommand.js +3 -3
  45. package/dist-es/commands/ListOrdersCommand.js +3 -3
  46. package/dist-es/commands/ListOutpostsCommand.js +3 -3
  47. package/dist-es/commands/ListSitesCommand.js +3 -3
  48. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  49. package/dist-es/commands/StartConnectionCommand.js +3 -3
  50. package/dist-es/commands/TagResourceCommand.js +3 -3
  51. package/dist-es/commands/UntagResourceCommand.js +3 -3
  52. package/dist-es/commands/UpdateOutpostCommand.js +3 -3
  53. package/dist-es/commands/UpdateSiteAddressCommand.js +3 -3
  54. package/dist-es/commands/UpdateSiteCommand.js +3 -3
  55. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +3 -3
  56. package/dist-es/models/models_0.js +76 -268
  57. package/dist-es/protocols/Aws_restJson1.js +45 -0
  58. package/dist-types/models/models_0.d.ts +327 -397
  59. package/dist-types/ts3.4/models/models_0.d.ts +159 -265
  60. package/package.json +9 -9
@@ -33,10 +33,6 @@ export interface Address {
33
33
 
34
34
  Municipality?: string;
35
35
  }
36
- export declare namespace Address {
37
-
38
- const filterSensitiveLog: (obj: Address) => any;
39
- }
40
36
  export declare enum AddressType {
41
37
  OPERATING_ADDRESS = "OPERATING_ADDRESS",
42
38
  SHIPPING_ADDRESS = "SHIPPING_ADDRESS"
@@ -46,10 +42,6 @@ export interface AssetLocation {
46
42
 
47
43
  RackElevation?: number;
48
44
  }
49
- export declare namespace AssetLocation {
50
-
51
- const filterSensitiveLog: (obj: AssetLocation) => any;
52
- }
53
45
  export declare enum AssetType {
54
46
  COMPUTE = "COMPUTE"
55
47
  }
@@ -58,10 +50,6 @@ export interface ComputeAttributes {
58
50
 
59
51
  HostId?: string;
60
52
  }
61
- export declare namespace ComputeAttributes {
62
-
63
- const filterSensitiveLog: (obj: ComputeAttributes) => any;
64
- }
65
53
 
66
54
  export interface AssetInfo {
67
55
 
@@ -75,24 +63,12 @@ export interface AssetInfo {
75
63
 
76
64
  AssetLocation?: AssetLocation;
77
65
  }
78
- export declare namespace AssetInfo {
79
-
80
- const filterSensitiveLog: (obj: AssetInfo) => any;
81
- }
82
66
  export interface CancelOrderInput {
83
67
 
84
68
  OrderId: string | undefined;
85
69
  }
86
- export declare namespace CancelOrderInput {
87
-
88
- const filterSensitiveLog: (obj: CancelOrderInput) => any;
89
- }
90
70
  export interface CancelOrderOutput {
91
71
  }
92
- export declare namespace CancelOrderOutput {
93
-
94
- const filterSensitiveLog: (obj: CancelOrderOutput) => any;
95
- }
96
72
  export declare enum ResourceType {
97
73
  ORDER = "ORDER",
98
74
  OUTPOST = "OUTPOST"
@@ -142,10 +118,6 @@ export interface EC2Capacity {
142
118
 
143
119
  Quantity?: string;
144
120
  }
145
- export declare namespace EC2Capacity {
146
-
147
- const filterSensitiveLog: (obj: EC2Capacity) => any;
148
- }
149
121
  export declare enum CatalogItemStatus {
150
122
  AVAILABLE = "AVAILABLE",
151
123
  DISCONTINUED = "DISCONTINUED"
@@ -171,10 +143,6 @@ export interface CatalogItem {
171
143
 
172
144
  SupportedStorage?: (SupportedStorageEnum | string)[];
173
145
  }
174
- export declare namespace CatalogItem {
175
-
176
- const filterSensitiveLog: (obj: CatalogItem) => any;
177
- }
178
146
  export declare enum CatalogItemClass {
179
147
  RACK = "RACK",
180
148
  SERVER = "SERVER"
@@ -194,10 +162,6 @@ export interface ConnectionDetails {
194
162
 
195
163
  AllowedIps?: string[];
196
164
  }
197
- export declare namespace ConnectionDetails {
198
-
199
- const filterSensitiveLog: (obj: ConnectionDetails) => any;
200
- }
201
165
 
202
166
  export interface LineItemRequest {
203
167
 
@@ -205,10 +169,6 @@ export interface LineItemRequest {
205
169
 
206
170
  Quantity?: number;
207
171
  }
208
- export declare namespace LineItemRequest {
209
-
210
- const filterSensitiveLog: (obj: LineItemRequest) => any;
211
- }
212
172
  export declare enum PaymentOption {
213
173
  ALL_UPFRONT = "ALL_UPFRONT",
214
174
  NO_UPFRONT = "NO_UPFRONT",
@@ -227,9 +187,25 @@ export interface CreateOrderInput {
227
187
 
228
188
  PaymentTerm?: PaymentTerm | string;
229
189
  }
230
- export declare namespace CreateOrderInput {
190
+
191
+ export interface LineItemAssetInformation {
231
192
 
232
- const filterSensitiveLog: (obj: CreateOrderInput) => any;
193
+ AssetId?: string;
194
+
195
+ MacAddressList?: string[];
196
+ }
197
+ export declare enum ShipmentCarrier {
198
+ DBS = "DBS",
199
+ DHL = "DHL",
200
+ FEDEX = "FEDEX",
201
+ UPS = "UPS"
202
+ }
203
+
204
+ export interface ShipmentInformation {
205
+
206
+ ShipmentTrackingNumber?: string;
207
+
208
+ ShipmentCarrier?: ShipmentCarrier | string;
233
209
  }
234
210
  export declare enum LineItemStatus {
235
211
  BUILDING = "BUILDING",
@@ -251,10 +227,10 @@ export interface LineItem {
251
227
  Quantity?: number;
252
228
 
253
229
  Status?: LineItemStatus | string;
254
- }
255
- export declare namespace LineItem {
256
230
 
257
- const filterSensitiveLog: (obj: LineItem) => any;
231
+ ShipmentInformation?: ShipmentInformation;
232
+
233
+ AssetInformationList?: LineItemAssetInformation[];
258
234
  }
259
235
  export declare enum OrderStatus {
260
236
  CANCELLED = "CANCELLED",
@@ -285,18 +261,10 @@ export interface Order {
285
261
 
286
262
  OrderFulfilledDate?: Date;
287
263
  }
288
- export declare namespace Order {
289
-
290
- const filterSensitiveLog: (obj: Order) => any;
291
- }
292
264
  export interface CreateOrderOutput {
293
265
 
294
266
  Order?: Order;
295
267
  }
296
- export declare namespace CreateOrderOutput {
297
-
298
- const filterSensitiveLog: (obj: CreateOrderOutput) => any;
299
- }
300
268
 
301
269
  export declare class ServiceQuotaExceededException extends __BaseException {
302
270
  readonly name: "ServiceQuotaExceededException";
@@ -325,10 +293,6 @@ export interface CreateOutpostInput {
325
293
 
326
294
  SupportedHardwareType?: SupportedHardwareType | string;
327
295
  }
328
- export declare namespace CreateOutpostInput {
329
-
330
- const filterSensitiveLog: (obj: CreateOutpostInput) => any;
331
- }
332
296
 
333
297
  export interface Outpost {
334
298
 
@@ -356,18 +320,10 @@ export interface Outpost {
356
320
 
357
321
  SupportedHardwareType?: SupportedHardwareType | string;
358
322
  }
359
- export declare namespace Outpost {
360
-
361
- const filterSensitiveLog: (obj: Outpost) => any;
362
- }
363
323
  export interface CreateOutpostOutput {
364
324
 
365
325
  Outpost?: Outpost;
366
326
  }
367
- export declare namespace CreateOutpostOutput {
368
-
369
- const filterSensitiveLog: (obj: CreateOutpostOutput) => any;
370
- }
371
327
  export declare enum FiberOpticCableType {
372
328
  MULTI_MODE = "MULTI_MODE",
373
329
  SINGLE_MODE = "SINGLE_MODE"
@@ -452,10 +408,6 @@ export interface RackPhysicalProperties {
452
408
 
453
409
  MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
454
410
  }
455
- export declare namespace RackPhysicalProperties {
456
-
457
- const filterSensitiveLog: (obj: RackPhysicalProperties) => any;
458
- }
459
411
  export interface CreateSiteInput {
460
412
 
461
413
  Name: string | undefined;
@@ -472,10 +424,6 @@ export interface CreateSiteInput {
472
424
 
473
425
  RackPhysicalProperties?: RackPhysicalProperties;
474
426
  }
475
- export declare namespace CreateSiteInput {
476
-
477
- const filterSensitiveLog: (obj: CreateSiteInput) => any;
478
- }
479
427
 
480
428
  export interface Site {
481
429
 
@@ -501,112 +449,56 @@ export interface Site {
501
449
 
502
450
  RackPhysicalProperties?: RackPhysicalProperties;
503
451
  }
504
- export declare namespace Site {
505
-
506
- const filterSensitiveLog: (obj: Site) => any;
507
- }
508
452
  export interface CreateSiteOutput {
509
453
 
510
454
  Site?: Site;
511
455
  }
512
- export declare namespace CreateSiteOutput {
513
-
514
- const filterSensitiveLog: (obj: CreateSiteOutput) => any;
515
- }
516
456
  export interface DeleteOutpostInput {
517
457
 
518
458
  OutpostId: string | undefined;
519
459
  }
520
- export declare namespace DeleteOutpostInput {
521
-
522
- const filterSensitiveLog: (obj: DeleteOutpostInput) => any;
523
- }
524
460
  export interface DeleteOutpostOutput {
525
461
  }
526
- export declare namespace DeleteOutpostOutput {
527
-
528
- const filterSensitiveLog: (obj: DeleteOutpostOutput) => any;
529
- }
530
462
  export interface DeleteSiteInput {
531
463
 
532
464
  SiteId: string | undefined;
533
465
  }
534
- export declare namespace DeleteSiteInput {
535
-
536
- const filterSensitiveLog: (obj: DeleteSiteInput) => any;
537
- }
538
466
  export interface DeleteSiteOutput {
539
467
  }
540
- export declare namespace DeleteSiteOutput {
541
-
542
- const filterSensitiveLog: (obj: DeleteSiteOutput) => any;
543
- }
544
468
  export interface GetCatalogItemInput {
545
469
 
546
470
  CatalogItemId: string | undefined;
547
471
  }
548
- export declare namespace GetCatalogItemInput {
549
-
550
- const filterSensitiveLog: (obj: GetCatalogItemInput) => any;
551
- }
552
472
  export interface GetCatalogItemOutput {
553
473
 
554
474
  CatalogItem?: CatalogItem;
555
475
  }
556
- export declare namespace GetCatalogItemOutput {
557
-
558
- const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
559
- }
560
476
  export interface GetConnectionRequest {
561
477
 
562
478
  ConnectionId: string | undefined;
563
479
  }
564
- export declare namespace GetConnectionRequest {
565
-
566
- const filterSensitiveLog: (obj: GetConnectionRequest) => any;
567
- }
568
480
  export interface GetConnectionResponse {
569
481
 
570
482
  ConnectionId?: string;
571
483
 
572
484
  ConnectionDetails?: ConnectionDetails;
573
485
  }
574
- export declare namespace GetConnectionResponse {
575
-
576
- const filterSensitiveLog: (obj: GetConnectionResponse) => any;
577
- }
578
486
  export interface GetOrderInput {
579
487
 
580
488
  OrderId: string | undefined;
581
489
  }
582
- export declare namespace GetOrderInput {
583
-
584
- const filterSensitiveLog: (obj: GetOrderInput) => any;
585
- }
586
490
  export interface GetOrderOutput {
587
491
 
588
492
  Order?: Order;
589
493
  }
590
- export declare namespace GetOrderOutput {
591
-
592
- const filterSensitiveLog: (obj: GetOrderOutput) => any;
593
- }
594
494
  export interface GetOutpostInput {
595
495
 
596
496
  OutpostId: string | undefined;
597
497
  }
598
- export declare namespace GetOutpostInput {
599
-
600
- const filterSensitiveLog: (obj: GetOutpostInput) => any;
601
- }
602
498
  export interface GetOutpostOutput {
603
499
 
604
500
  Outpost?: Outpost;
605
501
  }
606
- export declare namespace GetOutpostOutput {
607
-
608
- const filterSensitiveLog: (obj: GetOutpostOutput) => any;
609
- }
610
502
  export interface GetOutpostInstanceTypesInput {
611
503
 
612
504
  OutpostId: string | undefined;
@@ -615,19 +507,11 @@ export interface GetOutpostInstanceTypesInput {
615
507
 
616
508
  MaxResults?: number;
617
509
  }
618
- export declare namespace GetOutpostInstanceTypesInput {
619
-
620
- const filterSensitiveLog: (obj: GetOutpostInstanceTypesInput) => any;
621
- }
622
510
 
623
511
  export interface InstanceTypeItem {
624
512
 
625
513
  InstanceType?: string;
626
514
  }
627
- export declare namespace InstanceTypeItem {
628
-
629
- const filterSensitiveLog: (obj: InstanceTypeItem) => any;
630
- }
631
515
  export interface GetOutpostInstanceTypesOutput {
632
516
 
633
517
  InstanceTypes?: InstanceTypeItem[];
@@ -638,36 +522,20 @@ export interface GetOutpostInstanceTypesOutput {
638
522
 
639
523
  OutpostArn?: string;
640
524
  }
641
- export declare namespace GetOutpostInstanceTypesOutput {
642
-
643
- const filterSensitiveLog: (obj: GetOutpostInstanceTypesOutput) => any;
644
- }
645
525
  export interface GetSiteInput {
646
526
 
647
527
  SiteId: string | undefined;
648
528
  }
649
- export declare namespace GetSiteInput {
650
-
651
- const filterSensitiveLog: (obj: GetSiteInput) => any;
652
- }
653
529
  export interface GetSiteOutput {
654
530
 
655
531
  Site?: Site;
656
532
  }
657
- export declare namespace GetSiteOutput {
658
-
659
- const filterSensitiveLog: (obj: GetSiteOutput) => any;
660
- }
661
533
  export interface GetSiteAddressInput {
662
534
 
663
535
  SiteId: string | undefined;
664
536
 
665
537
  AddressType: AddressType | string | undefined;
666
538
  }
667
- export declare namespace GetSiteAddressInput {
668
-
669
- const filterSensitiveLog: (obj: GetSiteAddressInput) => any;
670
- }
671
539
  export interface GetSiteAddressOutput {
672
540
 
673
541
  SiteId?: string;
@@ -676,10 +544,6 @@ export interface GetSiteAddressOutput {
676
544
 
677
545
  Address?: Address;
678
546
  }
679
- export declare namespace GetSiteAddressOutput {
680
-
681
- const filterSensitiveLog: (obj: GetSiteAddressOutput) => any;
682
- }
683
547
  export interface ListAssetsInput {
684
548
 
685
549
  OutpostIdentifier: string | undefined;
@@ -690,20 +554,12 @@ export interface ListAssetsInput {
690
554
 
691
555
  NextToken?: string;
692
556
  }
693
- export declare namespace ListAssetsInput {
694
-
695
- const filterSensitiveLog: (obj: ListAssetsInput) => any;
696
- }
697
557
  export interface ListAssetsOutput {
698
558
 
699
559
  Assets?: AssetInfo[];
700
560
 
701
561
  NextToken?: string;
702
562
  }
703
- export declare namespace ListAssetsOutput {
704
-
705
- const filterSensitiveLog: (obj: ListAssetsOutput) => any;
706
- }
707
563
  export interface ListCatalogItemsInput {
708
564
 
709
565
  NextToken?: string;
@@ -716,20 +572,12 @@ export interface ListCatalogItemsInput {
716
572
 
717
573
  EC2FamilyFilter?: string[];
718
574
  }
719
- export declare namespace ListCatalogItemsInput {
720
-
721
- const filterSensitiveLog: (obj: ListCatalogItemsInput) => any;
722
- }
723
575
  export interface ListCatalogItemsOutput {
724
576
 
725
577
  CatalogItems?: CatalogItem[];
726
578
 
727
579
  NextToken?: string;
728
580
  }
729
- export declare namespace ListCatalogItemsOutput {
730
-
731
- const filterSensitiveLog: (obj: ListCatalogItemsOutput) => any;
732
- }
733
581
  export interface ListOrdersInput {
734
582
 
735
583
  OutpostIdentifierFilter?: string;
@@ -738,10 +586,6 @@ export interface ListOrdersInput {
738
586
 
739
587
  MaxResults?: number;
740
588
  }
741
- export declare namespace ListOrdersInput {
742
-
743
- const filterSensitiveLog: (obj: ListOrdersInput) => any;
744
- }
745
589
  export declare enum OrderType {
746
590
  OUTPOST = "OUTPOST",
747
591
  REPLACEMENT = "REPLACEMENT"
@@ -763,20 +607,12 @@ export interface OrderSummary {
763
607
 
764
608
  OrderFulfilledDate?: Date;
765
609
  }
766
- export declare namespace OrderSummary {
767
-
768
- const filterSensitiveLog: (obj: OrderSummary) => any;
769
- }
770
610
  export interface ListOrdersOutput {
771
611
 
772
612
  Orders?: OrderSummary[];
773
613
 
774
614
  NextToken?: string;
775
615
  }
776
- export declare namespace ListOrdersOutput {
777
-
778
- const filterSensitiveLog: (obj: ListOrdersOutput) => any;
779
- }
780
616
  export interface ListOutpostsInput {
781
617
 
782
618
  NextToken?: string;
@@ -789,20 +625,12 @@ export interface ListOutpostsInput {
789
625
 
790
626
  AvailabilityZoneIdFilter?: string[];
791
627
  }
792
- export declare namespace ListOutpostsInput {
793
-
794
- const filterSensitiveLog: (obj: ListOutpostsInput) => any;
795
- }
796
628
  export interface ListOutpostsOutput {
797
629
 
798
630
  Outposts?: Outpost[];
799
631
 
800
632
  NextToken?: string;
801
633
  }
802
- export declare namespace ListOutpostsOutput {
803
-
804
- const filterSensitiveLog: (obj: ListOutpostsOutput) => any;
805
- }
806
634
  export interface ListSitesInput {
807
635
 
808
636
  NextToken?: string;
@@ -815,36 +643,20 @@ export interface ListSitesInput {
815
643
 
816
644
  OperatingAddressCityFilter?: string[];
817
645
  }
818
- export declare namespace ListSitesInput {
819
-
820
- const filterSensitiveLog: (obj: ListSitesInput) => any;
821
- }
822
646
  export interface ListSitesOutput {
823
647
 
824
648
  Sites?: Site[];
825
649
 
826
650
  NextToken?: string;
827
651
  }
828
- export declare namespace ListSitesOutput {
829
-
830
- const filterSensitiveLog: (obj: ListSitesOutput) => any;
831
- }
832
652
  export interface ListTagsForResourceRequest {
833
653
 
834
654
  ResourceArn: string | undefined;
835
655
  }
836
- export declare namespace ListTagsForResourceRequest {
837
-
838
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
839
- }
840
656
  export interface ListTagsForResourceResponse {
841
657
 
842
658
  Tags?: Record<string, string>;
843
659
  }
844
- export declare namespace ListTagsForResourceResponse {
845
-
846
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
847
- }
848
660
  export interface StartConnectionRequest {
849
661
 
850
662
  DeviceSerialNumber: string | undefined;
@@ -855,52 +667,28 @@ export interface StartConnectionRequest {
855
667
 
856
668
  NetworkInterfaceDeviceIndex: number | undefined;
857
669
  }
858
- export declare namespace StartConnectionRequest {
859
-
860
- const filterSensitiveLog: (obj: StartConnectionRequest) => any;
861
- }
862
670
  export interface StartConnectionResponse {
863
671
 
864
672
  ConnectionId?: string;
865
673
 
866
674
  UnderlayIpAddress?: string;
867
675
  }
868
- export declare namespace StartConnectionResponse {
869
-
870
- const filterSensitiveLog: (obj: StartConnectionResponse) => any;
871
- }
872
676
  export interface TagResourceRequest {
873
677
 
874
678
  ResourceArn: string | undefined;
875
679
 
876
680
  Tags: Record<string, string> | undefined;
877
681
  }
878
- export declare namespace TagResourceRequest {
879
-
880
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
881
- }
882
682
  export interface TagResourceResponse {
883
683
  }
884
- export declare namespace TagResourceResponse {
885
-
886
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
887
- }
888
684
  export interface UntagResourceRequest {
889
685
 
890
686
  ResourceArn: string | undefined;
891
687
 
892
688
  TagKeys: string[] | undefined;
893
689
  }
894
- export declare namespace UntagResourceRequest {
895
-
896
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
897
- }
898
690
  export interface UntagResourceResponse {
899
691
  }
900
- export declare namespace UntagResourceResponse {
901
-
902
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
903
- }
904
692
  export interface UpdateOutpostInput {
905
693
 
906
694
  OutpostId: string | undefined;
@@ -911,18 +699,10 @@ export interface UpdateOutpostInput {
911
699
 
912
700
  SupportedHardwareType?: SupportedHardwareType | string;
913
701
  }
914
- export declare namespace UpdateOutpostInput {
915
-
916
- const filterSensitiveLog: (obj: UpdateOutpostInput) => any;
917
- }
918
702
  export interface UpdateOutpostOutput {
919
703
 
920
704
  Outpost?: Outpost;
921
705
  }
922
- export declare namespace UpdateOutpostOutput {
923
-
924
- const filterSensitiveLog: (obj: UpdateOutpostOutput) => any;
925
- }
926
706
  export interface UpdateSiteInput {
927
707
 
928
708
  SiteId: string | undefined;
@@ -933,18 +713,10 @@ export interface UpdateSiteInput {
933
713
 
934
714
  Notes?: string;
935
715
  }
936
- export declare namespace UpdateSiteInput {
937
-
938
- const filterSensitiveLog: (obj: UpdateSiteInput) => any;
939
- }
940
716
  export interface UpdateSiteOutput {
941
717
 
942
718
  Site?: Site;
943
719
  }
944
- export declare namespace UpdateSiteOutput {
945
-
946
- const filterSensitiveLog: (obj: UpdateSiteOutput) => any;
947
- }
948
720
  export interface UpdateSiteAddressInput {
949
721
 
950
722
  SiteId: string | undefined;
@@ -953,20 +725,12 @@ export interface UpdateSiteAddressInput {
953
725
 
954
726
  Address: Address | undefined;
955
727
  }
956
- export declare namespace UpdateSiteAddressInput {
957
-
958
- const filterSensitiveLog: (obj: UpdateSiteAddressInput) => any;
959
- }
960
728
  export interface UpdateSiteAddressOutput {
961
729
 
962
730
  AddressType?: AddressType | string;
963
731
 
964
732
  Address?: Address;
965
733
  }
966
- export declare namespace UpdateSiteAddressOutput {
967
-
968
- const filterSensitiveLog: (obj: UpdateSiteAddressOutput) => any;
969
- }
970
734
  export interface UpdateSiteRackPhysicalPropertiesInput {
971
735
 
972
736
  SiteId: string | undefined;
@@ -989,15 +753,145 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
989
753
 
990
754
  MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
991
755
  }
992
- export declare namespace UpdateSiteRackPhysicalPropertiesInput {
993
-
994
- const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesInput) => any;
995
- }
996
756
  export interface UpdateSiteRackPhysicalPropertiesOutput {
997
757
 
998
758
  Site?: Site;
999
759
  }
1000
- export declare namespace UpdateSiteRackPhysicalPropertiesOutput {
1001
-
1002
- const filterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesOutput) => any;
1003
- }
760
+
761
+ export declare const AddressFilterSensitiveLog: (obj: Address) => any;
762
+
763
+ export declare const AssetLocationFilterSensitiveLog: (obj: AssetLocation) => any;
764
+
765
+ export declare const ComputeAttributesFilterSensitiveLog: (obj: ComputeAttributes) => any;
766
+
767
+ export declare const AssetInfoFilterSensitiveLog: (obj: AssetInfo) => any;
768
+
769
+ export declare const CancelOrderInputFilterSensitiveLog: (obj: CancelOrderInput) => any;
770
+
771
+ export declare const CancelOrderOutputFilterSensitiveLog: (obj: CancelOrderOutput) => any;
772
+
773
+ export declare const EC2CapacityFilterSensitiveLog: (obj: EC2Capacity) => any;
774
+
775
+ export declare const CatalogItemFilterSensitiveLog: (obj: CatalogItem) => any;
776
+
777
+ export declare const ConnectionDetailsFilterSensitiveLog: (obj: ConnectionDetails) => any;
778
+
779
+ export declare const LineItemRequestFilterSensitiveLog: (obj: LineItemRequest) => any;
780
+
781
+ export declare const CreateOrderInputFilterSensitiveLog: (obj: CreateOrderInput) => any;
782
+
783
+ export declare const LineItemAssetInformationFilterSensitiveLog: (obj: LineItemAssetInformation) => any;
784
+
785
+ export declare const ShipmentInformationFilterSensitiveLog: (obj: ShipmentInformation) => any;
786
+
787
+ export declare const LineItemFilterSensitiveLog: (obj: LineItem) => any;
788
+
789
+ export declare const OrderFilterSensitiveLog: (obj: Order) => any;
790
+
791
+ export declare const CreateOrderOutputFilterSensitiveLog: (obj: CreateOrderOutput) => any;
792
+
793
+ export declare const CreateOutpostInputFilterSensitiveLog: (obj: CreateOutpostInput) => any;
794
+
795
+ export declare const OutpostFilterSensitiveLog: (obj: Outpost) => any;
796
+
797
+ export declare const CreateOutpostOutputFilterSensitiveLog: (obj: CreateOutpostOutput) => any;
798
+
799
+ export declare const RackPhysicalPropertiesFilterSensitiveLog: (obj: RackPhysicalProperties) => any;
800
+
801
+ export declare const CreateSiteInputFilterSensitiveLog: (obj: CreateSiteInput) => any;
802
+
803
+ export declare const SiteFilterSensitiveLog: (obj: Site) => any;
804
+
805
+ export declare const CreateSiteOutputFilterSensitiveLog: (obj: CreateSiteOutput) => any;
806
+
807
+ export declare const DeleteOutpostInputFilterSensitiveLog: (obj: DeleteOutpostInput) => any;
808
+
809
+ export declare const DeleteOutpostOutputFilterSensitiveLog: (obj: DeleteOutpostOutput) => any;
810
+
811
+ export declare const DeleteSiteInputFilterSensitiveLog: (obj: DeleteSiteInput) => any;
812
+
813
+ export declare const DeleteSiteOutputFilterSensitiveLog: (obj: DeleteSiteOutput) => any;
814
+
815
+ export declare const GetCatalogItemInputFilterSensitiveLog: (obj: GetCatalogItemInput) => any;
816
+
817
+ export declare const GetCatalogItemOutputFilterSensitiveLog: (obj: GetCatalogItemOutput) => any;
818
+
819
+ export declare const GetConnectionRequestFilterSensitiveLog: (obj: GetConnectionRequest) => any;
820
+
821
+ export declare const GetConnectionResponseFilterSensitiveLog: (obj: GetConnectionResponse) => any;
822
+
823
+ export declare const GetOrderInputFilterSensitiveLog: (obj: GetOrderInput) => any;
824
+
825
+ export declare const GetOrderOutputFilterSensitiveLog: (obj: GetOrderOutput) => any;
826
+
827
+ export declare const GetOutpostInputFilterSensitiveLog: (obj: GetOutpostInput) => any;
828
+
829
+ export declare const GetOutpostOutputFilterSensitiveLog: (obj: GetOutpostOutput) => any;
830
+
831
+ export declare const GetOutpostInstanceTypesInputFilterSensitiveLog: (obj: GetOutpostInstanceTypesInput) => any;
832
+
833
+ export declare const InstanceTypeItemFilterSensitiveLog: (obj: InstanceTypeItem) => any;
834
+
835
+ export declare const GetOutpostInstanceTypesOutputFilterSensitiveLog: (obj: GetOutpostInstanceTypesOutput) => any;
836
+
837
+ export declare const GetSiteInputFilterSensitiveLog: (obj: GetSiteInput) => any;
838
+
839
+ export declare const GetSiteOutputFilterSensitiveLog: (obj: GetSiteOutput) => any;
840
+
841
+ export declare const GetSiteAddressInputFilterSensitiveLog: (obj: GetSiteAddressInput) => any;
842
+
843
+ export declare const GetSiteAddressOutputFilterSensitiveLog: (obj: GetSiteAddressOutput) => any;
844
+
845
+ export declare const ListAssetsInputFilterSensitiveLog: (obj: ListAssetsInput) => any;
846
+
847
+ export declare const ListAssetsOutputFilterSensitiveLog: (obj: ListAssetsOutput) => any;
848
+
849
+ export declare const ListCatalogItemsInputFilterSensitiveLog: (obj: ListCatalogItemsInput) => any;
850
+
851
+ export declare const ListCatalogItemsOutputFilterSensitiveLog: (obj: ListCatalogItemsOutput) => any;
852
+
853
+ export declare const ListOrdersInputFilterSensitiveLog: (obj: ListOrdersInput) => any;
854
+
855
+ export declare const OrderSummaryFilterSensitiveLog: (obj: OrderSummary) => any;
856
+
857
+ export declare const ListOrdersOutputFilterSensitiveLog: (obj: ListOrdersOutput) => any;
858
+
859
+ export declare const ListOutpostsInputFilterSensitiveLog: (obj: ListOutpostsInput) => any;
860
+
861
+ export declare const ListOutpostsOutputFilterSensitiveLog: (obj: ListOutpostsOutput) => any;
862
+
863
+ export declare const ListSitesInputFilterSensitiveLog: (obj: ListSitesInput) => any;
864
+
865
+ export declare const ListSitesOutputFilterSensitiveLog: (obj: ListSitesOutput) => any;
866
+
867
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
868
+
869
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
870
+
871
+ export declare const StartConnectionRequestFilterSensitiveLog: (obj: StartConnectionRequest) => any;
872
+
873
+ export declare const StartConnectionResponseFilterSensitiveLog: (obj: StartConnectionResponse) => any;
874
+
875
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
876
+
877
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
878
+
879
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
880
+
881
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
882
+
883
+ export declare const UpdateOutpostInputFilterSensitiveLog: (obj: UpdateOutpostInput) => any;
884
+
885
+ export declare const UpdateOutpostOutputFilterSensitiveLog: (obj: UpdateOutpostOutput) => any;
886
+
887
+ export declare const UpdateSiteInputFilterSensitiveLog: (obj: UpdateSiteInput) => any;
888
+
889
+ export declare const UpdateSiteOutputFilterSensitiveLog: (obj: UpdateSiteOutput) => any;
890
+
891
+ export declare const UpdateSiteAddressInputFilterSensitiveLog: (obj: UpdateSiteAddressInput) => any;
892
+
893
+ export declare const UpdateSiteAddressOutputFilterSensitiveLog: (obj: UpdateSiteAddressOutput) => any;
894
+
895
+ export declare const UpdateSiteRackPhysicalPropertiesInputFilterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesInput) => any;
896
+
897
+ export declare const UpdateSiteRackPhysicalPropertiesOutputFilterSensitiveLog: (obj: UpdateSiteRackPhysicalPropertiesOutput) => any;