@aws-sdk/client-backup-gateway 3.130.0 → 3.141.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 (43) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AssociateGatewayToServerCommand.js +2 -2
  4. package/dist-cjs/commands/CreateGatewayCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteGatewayCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteHypervisorCommand.js +2 -2
  7. package/dist-cjs/commands/DisassociateGatewayFromServerCommand.js +2 -2
  8. package/dist-cjs/commands/GetGatewayCommand.js +2 -2
  9. package/dist-cjs/commands/ImportHypervisorConfigurationCommand.js +2 -2
  10. package/dist-cjs/commands/ListGatewaysCommand.js +2 -2
  11. package/dist-cjs/commands/ListHypervisorsCommand.js +2 -2
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  13. package/dist-cjs/commands/ListVirtualMachinesCommand.js +2 -2
  14. package/dist-cjs/commands/PutMaintenanceStartTimeCommand.js +2 -2
  15. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  16. package/dist-cjs/commands/TestHypervisorConfigurationCommand.js +2 -2
  17. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  18. package/dist-cjs/commands/UpdateGatewayInformationCommand.js +2 -2
  19. package/dist-cjs/commands/UpdateGatewaySoftwareNowCommand.js +2 -2
  20. package/dist-cjs/commands/UpdateHypervisorCommand.js +2 -2
  21. package/dist-cjs/models/models_0.js +171 -253
  22. package/dist-es/commands/AssociateGatewayToServerCommand.js +3 -3
  23. package/dist-es/commands/CreateGatewayCommand.js +3 -3
  24. package/dist-es/commands/DeleteGatewayCommand.js +3 -3
  25. package/dist-es/commands/DeleteHypervisorCommand.js +3 -3
  26. package/dist-es/commands/DisassociateGatewayFromServerCommand.js +3 -3
  27. package/dist-es/commands/GetGatewayCommand.js +3 -3
  28. package/dist-es/commands/ImportHypervisorConfigurationCommand.js +3 -3
  29. package/dist-es/commands/ListGatewaysCommand.js +3 -3
  30. package/dist-es/commands/ListHypervisorsCommand.js +3 -3
  31. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  32. package/dist-es/commands/ListVirtualMachinesCommand.js +3 -3
  33. package/dist-es/commands/PutMaintenanceStartTimeCommand.js +3 -3
  34. package/dist-es/commands/TagResourceCommand.js +3 -3
  35. package/dist-es/commands/TestHypervisorConfigurationCommand.js +3 -3
  36. package/dist-es/commands/UntagResourceCommand.js +3 -3
  37. package/dist-es/commands/UpdateGatewayInformationCommand.js +3 -3
  38. package/dist-es/commands/UpdateGatewaySoftwareNowCommand.js +3 -3
  39. package/dist-es/commands/UpdateHypervisorCommand.js +3 -3
  40. package/dist-es/models/models_0.js +41 -164
  41. package/dist-types/models/models_0.d.ts +164 -246
  42. package/dist-types/ts3.4/models/models_0.d.ts +82 -164
  43. package/package.json +7 -7
@@ -27,24 +27,12 @@ export interface AssociateGatewayToServerInput {
27
27
  */
28
28
  ServerArn: string | undefined;
29
29
  }
30
- export declare namespace AssociateGatewayToServerInput {
31
- /**
32
- * @internal
33
- */
34
- const filterSensitiveLog: (obj: AssociateGatewayToServerInput) => any;
35
- }
36
30
  export interface AssociateGatewayToServerOutput {
37
31
  /**
38
32
  * <p>The Amazon Resource Name (ARN) of a gateway.</p>
39
33
  */
40
34
  GatewayArn?: string;
41
35
  }
42
- export declare namespace AssociateGatewayToServerOutput {
43
- /**
44
- * @internal
45
- */
46
- const filterSensitiveLog: (obj: AssociateGatewayToServerOutput) => any;
47
- }
48
36
  /**
49
37
  * <p>The operation cannot proceed because it is not supported.</p>
50
38
  */
@@ -111,12 +99,6 @@ export interface Tag {
111
99
  */
112
100
  Value: string | undefined;
113
101
  }
114
- export declare namespace Tag {
115
- /**
116
- * @internal
117
- */
118
- const filterSensitiveLog: (obj: Tag) => any;
119
- }
120
102
  export interface CreateGatewayInput {
121
103
  /**
122
104
  * <p>The activation key of the created gateway.</p>
@@ -135,48 +117,24 @@ export interface CreateGatewayInput {
135
117
  */
136
118
  Tags?: Tag[];
137
119
  }
138
- export declare namespace CreateGatewayInput {
139
- /**
140
- * @internal
141
- */
142
- const filterSensitiveLog: (obj: CreateGatewayInput) => any;
143
- }
144
120
  export interface CreateGatewayOutput {
145
121
  /**
146
122
  * <p>The Amazon Resource Name (ARN) of the gateway you create.</p>
147
123
  */
148
124
  GatewayArn?: string;
149
125
  }
150
- export declare namespace CreateGatewayOutput {
151
- /**
152
- * @internal
153
- */
154
- const filterSensitiveLog: (obj: CreateGatewayOutput) => any;
155
- }
156
126
  export interface DeleteGatewayInput {
157
127
  /**
158
128
  * <p>The Amazon Resource Name (ARN) of the gateway to delete.</p>
159
129
  */
160
130
  GatewayArn: string | undefined;
161
131
  }
162
- export declare namespace DeleteGatewayInput {
163
- /**
164
- * @internal
165
- */
166
- const filterSensitiveLog: (obj: DeleteGatewayInput) => any;
167
- }
168
132
  export interface DeleteGatewayOutput {
169
133
  /**
170
134
  * <p>The Amazon Resource Name (ARN) of the gateway you deleted.</p>
171
135
  */
172
136
  GatewayArn?: string;
173
137
  }
174
- export declare namespace DeleteGatewayOutput {
175
- /**
176
- * @internal
177
- */
178
- const filterSensitiveLog: (obj: DeleteGatewayOutput) => any;
179
- }
180
138
  /**
181
139
  * <p>A resource that is required for the action wasn't found.</p>
182
140
  */
@@ -199,36 +157,18 @@ export interface DisassociateGatewayFromServerInput {
199
157
  */
200
158
  GatewayArn: string | undefined;
201
159
  }
202
- export declare namespace DisassociateGatewayFromServerInput {
203
- /**
204
- * @internal
205
- */
206
- const filterSensitiveLog: (obj: DisassociateGatewayFromServerInput) => any;
207
- }
208
160
  export interface DisassociateGatewayFromServerOutput {
209
161
  /**
210
162
  * <p>The Amazon Resource Name (ARN) of the gateway you disassociated.</p>
211
163
  */
212
164
  GatewayArn?: string;
213
165
  }
214
- export declare namespace DisassociateGatewayFromServerOutput {
215
- /**
216
- * @internal
217
- */
218
- const filterSensitiveLog: (obj: DisassociateGatewayFromServerOutput) => any;
219
- }
220
166
  export interface GetGatewayInput {
221
167
  /**
222
168
  * <p>The Amazon Resource Name (ARN) of the gateway.</p>
223
169
  */
224
170
  GatewayArn: string | undefined;
225
171
  }
226
- export declare namespace GetGatewayInput {
227
- /**
228
- * @internal
229
- */
230
- const filterSensitiveLog: (obj: GetGatewayInput) => any;
231
- }
232
172
  /**
233
173
  * <p>The details of gateway.</p>
234
174
  */
@@ -268,12 +208,6 @@ export interface GatewayDetails {
268
208
  */
269
209
  VpcEndpoint?: string;
270
210
  }
271
- export declare namespace GatewayDetails {
272
- /**
273
- * @internal
274
- */
275
- const filterSensitiveLog: (obj: GatewayDetails) => any;
276
- }
277
211
  export interface GetGatewayOutput {
278
212
  /**
279
213
  * <p>By providing the ARN (Amazon Resource Name), this
@@ -281,12 +215,6 @@ export interface GetGatewayOutput {
281
215
  */
282
216
  Gateway?: GatewayDetails;
283
217
  }
284
- export declare namespace GetGatewayOutput {
285
- /**
286
- * @internal
287
- */
288
- const filterSensitiveLog: (obj: GetGatewayOutput) => any;
289
- }
290
218
  export interface ListGatewaysInput {
291
219
  /**
292
220
  * <p>The maximum number of gateways to list.</p>
@@ -300,12 +228,6 @@ export interface ListGatewaysInput {
300
228
  */
301
229
  NextToken?: string;
302
230
  }
303
- export declare namespace ListGatewaysInput {
304
- /**
305
- * @internal
306
- */
307
- const filterSensitiveLog: (obj: ListGatewaysInput) => any;
308
- }
309
231
  /**
310
232
  * <p>A gateway is an Backup Gateway appliance that runs on the customer's network
311
233
  * to provide seamless connectivity to backup storage in the Amazon Web Services Cloud.</p>
@@ -334,12 +256,6 @@ export interface Gateway {
334
256
  */
335
257
  LastSeenTime?: Date;
336
258
  }
337
- export declare namespace Gateway {
338
- /**
339
- * @internal
340
- */
341
- const filterSensitiveLog: (obj: Gateway) => any;
342
- }
343
259
  export interface ListGatewaysOutput {
344
260
  /**
345
261
  * <p>A list of your gateways.</p>
@@ -353,12 +269,6 @@ export interface ListGatewaysOutput {
353
269
  */
354
270
  NextToken?: string;
355
271
  }
356
- export declare namespace ListGatewaysOutput {
357
- /**
358
- * @internal
359
- */
360
- const filterSensitiveLog: (obj: ListGatewaysOutput) => any;
361
- }
362
272
  export interface PutMaintenanceStartTimeInput {
363
273
  /**
364
274
  * <p>The Amazon Resource Name (ARN) for the gateway, used to specify its maintenance start
@@ -383,12 +293,6 @@ export interface PutMaintenanceStartTimeInput {
383
293
  */
384
294
  DayOfMonth?: number;
385
295
  }
386
- export declare namespace PutMaintenanceStartTimeInput {
387
- /**
388
- * @internal
389
- */
390
- const filterSensitiveLog: (obj: PutMaintenanceStartTimeInput) => any;
391
- }
392
296
  export interface PutMaintenanceStartTimeOutput {
393
297
  /**
394
298
  * <p>The Amazon Resource Name (ARN) of a gateway for which you set the maintenance start
@@ -396,12 +300,6 @@ export interface PutMaintenanceStartTimeOutput {
396
300
  */
397
301
  GatewayArn?: string;
398
302
  }
399
- export declare namespace PutMaintenanceStartTimeOutput {
400
- /**
401
- * @internal
402
- */
403
- const filterSensitiveLog: (obj: PutMaintenanceStartTimeOutput) => any;
404
- }
405
303
  export interface TestHypervisorConfigurationInput {
406
304
  /**
407
305
  * <p>The Amazon Resource Name (ARN) of the gateway to the hypervisor to test.</p>
@@ -421,20 +319,8 @@ export interface TestHypervisorConfigurationInput {
421
319
  */
422
320
  Password?: string;
423
321
  }
424
- export declare namespace TestHypervisorConfigurationInput {
425
- /**
426
- * @internal
427
- */
428
- const filterSensitiveLog: (obj: TestHypervisorConfigurationInput) => any;
429
- }
430
322
  export interface TestHypervisorConfigurationOutput {
431
323
  }
432
- export declare namespace TestHypervisorConfigurationOutput {
433
- /**
434
- * @internal
435
- */
436
- const filterSensitiveLog: (obj: TestHypervisorConfigurationOutput) => any;
437
- }
438
324
  export interface UpdateGatewayInformationInput {
439
325
  /**
440
326
  * <p>The Amazon Resource Name (ARN) of the gateway to update.</p>
@@ -445,24 +331,12 @@ export interface UpdateGatewayInformationInput {
445
331
  */
446
332
  GatewayDisplayName?: string;
447
333
  }
448
- export declare namespace UpdateGatewayInformationInput {
449
- /**
450
- * @internal
451
- */
452
- const filterSensitiveLog: (obj: UpdateGatewayInformationInput) => any;
453
- }
454
334
  export interface UpdateGatewayInformationOutput {
455
335
  /**
456
336
  * <p>The Amazon Resource Name (ARN) of the gateway you updated.</p>
457
337
  */
458
338
  GatewayArn?: string;
459
339
  }
460
- export declare namespace UpdateGatewayInformationOutput {
461
- /**
462
- * @internal
463
- */
464
- const filterSensitiveLog: (obj: UpdateGatewayInformationOutput) => any;
465
- }
466
340
  export interface UpdateGatewaySoftwareNowInput {
467
341
  /**
468
342
  * <p>The Amazon Resource Name (ARN) of the gateway
@@ -470,12 +344,6 @@ export interface UpdateGatewaySoftwareNowInput {
470
344
  */
471
345
  GatewayArn: string | undefined;
472
346
  }
473
- export declare namespace UpdateGatewaySoftwareNowInput {
474
- /**
475
- * @internal
476
- */
477
- const filterSensitiveLog: (obj: UpdateGatewaySoftwareNowInput) => any;
478
- }
479
347
  export interface UpdateGatewaySoftwareNowOutput {
480
348
  /**
481
349
  * <p>The Amazon Resource Name (ARN) of the gateway
@@ -483,36 +351,18 @@ export interface UpdateGatewaySoftwareNowOutput {
483
351
  */
484
352
  GatewayArn?: string;
485
353
  }
486
- export declare namespace UpdateGatewaySoftwareNowOutput {
487
- /**
488
- * @internal
489
- */
490
- const filterSensitiveLog: (obj: UpdateGatewaySoftwareNowOutput) => any;
491
- }
492
354
  export interface DeleteHypervisorInput {
493
355
  /**
494
356
  * <p>The Amazon Resource Name (ARN) of the hypervisor to delete.</p>
495
357
  */
496
358
  HypervisorArn: string | undefined;
497
359
  }
498
- export declare namespace DeleteHypervisorInput {
499
- /**
500
- * @internal
501
- */
502
- const filterSensitiveLog: (obj: DeleteHypervisorInput) => any;
503
- }
504
360
  export interface DeleteHypervisorOutput {
505
361
  /**
506
362
  * <p>The Amazon Resource Name (ARN) of the hypervisor you deleted.</p>
507
363
  */
508
364
  HypervisorArn?: string;
509
365
  }
510
- export declare namespace DeleteHypervisorOutput {
511
- /**
512
- * @internal
513
- */
514
- const filterSensitiveLog: (obj: DeleteHypervisorOutput) => any;
515
- }
516
366
  export interface ImportHypervisorConfigurationInput {
517
367
  /**
518
368
  * <p>The name of the hypervisor.</p>
@@ -540,24 +390,12 @@ export interface ImportHypervisorConfigurationInput {
540
390
  */
541
391
  Tags?: Tag[];
542
392
  }
543
- export declare namespace ImportHypervisorConfigurationInput {
544
- /**
545
- * @internal
546
- */
547
- const filterSensitiveLog: (obj: ImportHypervisorConfigurationInput) => any;
548
- }
549
393
  export interface ImportHypervisorConfigurationOutput {
550
394
  /**
551
395
  * <p>The Amazon Resource Name (ARN) of the hypervisor you disassociated.</p>
552
396
  */
553
397
  HypervisorArn?: string;
554
398
  }
555
- export declare namespace ImportHypervisorConfigurationOutput {
556
- /**
557
- * @internal
558
- */
559
- const filterSensitiveLog: (obj: ImportHypervisorConfigurationOutput) => any;
560
- }
561
399
  export interface ListHypervisorsInput {
562
400
  /**
563
401
  * <p>The maximum number of hypervisors to list.</p>
@@ -571,12 +409,6 @@ export interface ListHypervisorsInput {
571
409
  */
572
410
  NextToken?: string;
573
411
  }
574
- export declare namespace ListHypervisorsInput {
575
- /**
576
- * @internal
577
- */
578
- const filterSensitiveLog: (obj: ListHypervisorsInput) => any;
579
- }
580
412
  export declare enum HypervisorState {
581
413
  ERROR = "ERROR",
582
414
  OFFLINE = "OFFLINE",
@@ -612,12 +444,6 @@ export interface Hypervisor {
612
444
  */
613
445
  State?: HypervisorState | string;
614
446
  }
615
- export declare namespace Hypervisor {
616
- /**
617
- * @internal
618
- */
619
- const filterSensitiveLog: (obj: Hypervisor) => any;
620
- }
621
447
  export interface ListHypervisorsOutput {
622
448
  /**
623
449
  * <p>A list of your <code>Hypervisor</code> objects, ordered by their Amazon Resource Names
@@ -632,12 +458,6 @@ export interface ListHypervisorsOutput {
632
458
  */
633
459
  NextToken?: string;
634
460
  }
635
- export declare namespace ListHypervisorsOutput {
636
- /**
637
- * @internal
638
- */
639
- const filterSensitiveLog: (obj: ListHypervisorsOutput) => any;
640
- }
641
461
  export interface UpdateHypervisorInput {
642
462
  /**
643
463
  * <p>The Amazon Resource Name (ARN) of the hypervisor to update.</p>
@@ -661,36 +481,18 @@ export interface UpdateHypervisorInput {
661
481
  */
662
482
  Name?: string;
663
483
  }
664
- export declare namespace UpdateHypervisorInput {
665
- /**
666
- * @internal
667
- */
668
- const filterSensitiveLog: (obj: UpdateHypervisorInput) => any;
669
- }
670
484
  export interface UpdateHypervisorOutput {
671
485
  /**
672
486
  * <p>The Amazon Resource Name (ARN) of the hypervisor you updated.</p>
673
487
  */
674
488
  HypervisorArn?: string;
675
489
  }
676
- export declare namespace UpdateHypervisorOutput {
677
- /**
678
- * @internal
679
- */
680
- const filterSensitiveLog: (obj: UpdateHypervisorOutput) => any;
681
- }
682
490
  export interface ListTagsForResourceInput {
683
491
  /**
684
492
  * <p>The Amazon Resource Name (ARN) of the resource's tags to list.</p>
685
493
  */
686
494
  ResourceArn: string | undefined;
687
495
  }
688
- export declare namespace ListTagsForResourceInput {
689
- /**
690
- * @internal
691
- */
692
- const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
693
- }
694
496
  export interface ListTagsForResourceOutput {
695
497
  /**
696
498
  * <p>The Amazon Resource Name (ARN) of the resource's tags that you listed.</p>
@@ -701,12 +503,6 @@ export interface ListTagsForResourceOutput {
701
503
  */
702
504
  Tags?: Tag[];
703
505
  }
704
- export declare namespace ListTagsForResourceOutput {
705
- /**
706
- * @internal
707
- */
708
- const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
709
- }
710
506
  export interface ListVirtualMachinesInput {
711
507
  /**
712
508
  * <p>The maximum number of virtual machines to list.</p>
@@ -720,12 +516,6 @@ export interface ListVirtualMachinesInput {
720
516
  */
721
517
  NextToken?: string;
722
518
  }
723
- export declare namespace ListVirtualMachinesInput {
724
- /**
725
- * @internal
726
- */
727
- const filterSensitiveLog: (obj: ListVirtualMachinesInput) => any;
728
- }
729
519
  /**
730
520
  * <p>A virtual machine that is on a hypervisor.</p>
731
521
  */
@@ -756,12 +546,6 @@ export interface VirtualMachine {
756
546
  */
757
547
  LastBackupDate?: Date;
758
548
  }
759
- export declare namespace VirtualMachine {
760
- /**
761
- * @internal
762
- */
763
- const filterSensitiveLog: (obj: VirtualMachine) => any;
764
- }
765
549
  export interface ListVirtualMachinesOutput {
766
550
  /**
767
551
  * <p>A list of your <code>VirtualMachine</code> objects, ordered by their Amazon Resource Names
@@ -776,12 +560,6 @@ export interface ListVirtualMachinesOutput {
776
560
  */
777
561
  NextToken?: string;
778
562
  }
779
- export declare namespace ListVirtualMachinesOutput {
780
- /**
781
- * @internal
782
- */
783
- const filterSensitiveLog: (obj: ListVirtualMachinesOutput) => any;
784
- }
785
563
  export interface TagResourceInput {
786
564
  /**
787
565
  * <p>The Amazon Resource Name (ARN) of the resource to tag.</p>
@@ -792,24 +570,12 @@ export interface TagResourceInput {
792
570
  */
793
571
  Tags: Tag[] | undefined;
794
572
  }
795
- export declare namespace TagResourceInput {
796
- /**
797
- * @internal
798
- */
799
- const filterSensitiveLog: (obj: TagResourceInput) => any;
800
- }
801
573
  export interface TagResourceOutput {
802
574
  /**
803
575
  * <p>The Amazon Resource Name (ARN) of the resource you tagged.</p>
804
576
  */
805
577
  ResourceARN?: string;
806
578
  }
807
- export declare namespace TagResourceOutput {
808
- /**
809
- * @internal
810
- */
811
- const filterSensitiveLog: (obj: TagResourceOutput) => any;
812
- }
813
579
  export interface UntagResourceInput {
814
580
  /**
815
581
  * <p>The Amazon Resource Name (ARN) of the resource from which to remove tags.</p>
@@ -820,21 +586,173 @@ export interface UntagResourceInput {
820
586
  */
821
587
  TagKeys: string[] | undefined;
822
588
  }
823
- export declare namespace UntagResourceInput {
824
- /**
825
- * @internal
826
- */
827
- const filterSensitiveLog: (obj: UntagResourceInput) => any;
828
- }
829
589
  export interface UntagResourceOutput {
830
590
  /**
831
591
  * <p>The Amazon Resource Name (ARN) of the resource from which you removed tags.</p>
832
592
  */
833
593
  ResourceARN?: string;
834
594
  }
835
- export declare namespace UntagResourceOutput {
836
- /**
837
- * @internal
838
- */
839
- const filterSensitiveLog: (obj: UntagResourceOutput) => any;
840
- }
595
+ /**
596
+ * @internal
597
+ */
598
+ export declare const AssociateGatewayToServerInputFilterSensitiveLog: (obj: AssociateGatewayToServerInput) => any;
599
+ /**
600
+ * @internal
601
+ */
602
+ export declare const AssociateGatewayToServerOutputFilterSensitiveLog: (obj: AssociateGatewayToServerOutput) => any;
603
+ /**
604
+ * @internal
605
+ */
606
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
607
+ /**
608
+ * @internal
609
+ */
610
+ export declare const CreateGatewayInputFilterSensitiveLog: (obj: CreateGatewayInput) => any;
611
+ /**
612
+ * @internal
613
+ */
614
+ export declare const CreateGatewayOutputFilterSensitiveLog: (obj: CreateGatewayOutput) => any;
615
+ /**
616
+ * @internal
617
+ */
618
+ export declare const DeleteGatewayInputFilterSensitiveLog: (obj: DeleteGatewayInput) => any;
619
+ /**
620
+ * @internal
621
+ */
622
+ export declare const DeleteGatewayOutputFilterSensitiveLog: (obj: DeleteGatewayOutput) => any;
623
+ /**
624
+ * @internal
625
+ */
626
+ export declare const DisassociateGatewayFromServerInputFilterSensitiveLog: (obj: DisassociateGatewayFromServerInput) => any;
627
+ /**
628
+ * @internal
629
+ */
630
+ export declare const DisassociateGatewayFromServerOutputFilterSensitiveLog: (obj: DisassociateGatewayFromServerOutput) => any;
631
+ /**
632
+ * @internal
633
+ */
634
+ export declare const GetGatewayInputFilterSensitiveLog: (obj: GetGatewayInput) => any;
635
+ /**
636
+ * @internal
637
+ */
638
+ export declare const GatewayDetailsFilterSensitiveLog: (obj: GatewayDetails) => any;
639
+ /**
640
+ * @internal
641
+ */
642
+ export declare const GetGatewayOutputFilterSensitiveLog: (obj: GetGatewayOutput) => any;
643
+ /**
644
+ * @internal
645
+ */
646
+ export declare const ListGatewaysInputFilterSensitiveLog: (obj: ListGatewaysInput) => any;
647
+ /**
648
+ * @internal
649
+ */
650
+ export declare const GatewayFilterSensitiveLog: (obj: Gateway) => any;
651
+ /**
652
+ * @internal
653
+ */
654
+ export declare const ListGatewaysOutputFilterSensitiveLog: (obj: ListGatewaysOutput) => any;
655
+ /**
656
+ * @internal
657
+ */
658
+ export declare const PutMaintenanceStartTimeInputFilterSensitiveLog: (obj: PutMaintenanceStartTimeInput) => any;
659
+ /**
660
+ * @internal
661
+ */
662
+ export declare const PutMaintenanceStartTimeOutputFilterSensitiveLog: (obj: PutMaintenanceStartTimeOutput) => any;
663
+ /**
664
+ * @internal
665
+ */
666
+ export declare const TestHypervisorConfigurationInputFilterSensitiveLog: (obj: TestHypervisorConfigurationInput) => any;
667
+ /**
668
+ * @internal
669
+ */
670
+ export declare const TestHypervisorConfigurationOutputFilterSensitiveLog: (obj: TestHypervisorConfigurationOutput) => any;
671
+ /**
672
+ * @internal
673
+ */
674
+ export declare const UpdateGatewayInformationInputFilterSensitiveLog: (obj: UpdateGatewayInformationInput) => any;
675
+ /**
676
+ * @internal
677
+ */
678
+ export declare const UpdateGatewayInformationOutputFilterSensitiveLog: (obj: UpdateGatewayInformationOutput) => any;
679
+ /**
680
+ * @internal
681
+ */
682
+ export declare const UpdateGatewaySoftwareNowInputFilterSensitiveLog: (obj: UpdateGatewaySoftwareNowInput) => any;
683
+ /**
684
+ * @internal
685
+ */
686
+ export declare const UpdateGatewaySoftwareNowOutputFilterSensitiveLog: (obj: UpdateGatewaySoftwareNowOutput) => any;
687
+ /**
688
+ * @internal
689
+ */
690
+ export declare const DeleteHypervisorInputFilterSensitiveLog: (obj: DeleteHypervisorInput) => any;
691
+ /**
692
+ * @internal
693
+ */
694
+ export declare const DeleteHypervisorOutputFilterSensitiveLog: (obj: DeleteHypervisorOutput) => any;
695
+ /**
696
+ * @internal
697
+ */
698
+ export declare const ImportHypervisorConfigurationInputFilterSensitiveLog: (obj: ImportHypervisorConfigurationInput) => any;
699
+ /**
700
+ * @internal
701
+ */
702
+ export declare const ImportHypervisorConfigurationOutputFilterSensitiveLog: (obj: ImportHypervisorConfigurationOutput) => any;
703
+ /**
704
+ * @internal
705
+ */
706
+ export declare const ListHypervisorsInputFilterSensitiveLog: (obj: ListHypervisorsInput) => any;
707
+ /**
708
+ * @internal
709
+ */
710
+ export declare const HypervisorFilterSensitiveLog: (obj: Hypervisor) => any;
711
+ /**
712
+ * @internal
713
+ */
714
+ export declare const ListHypervisorsOutputFilterSensitiveLog: (obj: ListHypervisorsOutput) => any;
715
+ /**
716
+ * @internal
717
+ */
718
+ export declare const UpdateHypervisorInputFilterSensitiveLog: (obj: UpdateHypervisorInput) => any;
719
+ /**
720
+ * @internal
721
+ */
722
+ export declare const UpdateHypervisorOutputFilterSensitiveLog: (obj: UpdateHypervisorOutput) => any;
723
+ /**
724
+ * @internal
725
+ */
726
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
727
+ /**
728
+ * @internal
729
+ */
730
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
731
+ /**
732
+ * @internal
733
+ */
734
+ export declare const ListVirtualMachinesInputFilterSensitiveLog: (obj: ListVirtualMachinesInput) => any;
735
+ /**
736
+ * @internal
737
+ */
738
+ export declare const VirtualMachineFilterSensitiveLog: (obj: VirtualMachine) => any;
739
+ /**
740
+ * @internal
741
+ */
742
+ export declare const ListVirtualMachinesOutputFilterSensitiveLog: (obj: ListVirtualMachinesOutput) => any;
743
+ /**
744
+ * @internal
745
+ */
746
+ export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
747
+ /**
748
+ * @internal
749
+ */
750
+ export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
751
+ /**
752
+ * @internal
753
+ */
754
+ export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
755
+ /**
756
+ * @internal
757
+ */
758
+ export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;