@aws-sdk/client-backup-gateway 3.295.0 → 3.297.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 (34) hide show
  1. package/dist-types/BackupGateway.d.ts +26 -0
  2. package/dist-types/BackupGatewayClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateGatewayToServerCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateGatewayCommand.d.ts +16 -0
  5. package/dist-types/commands/DeleteGatewayCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteHypervisorCommand.d.ts +16 -0
  7. package/dist-types/commands/DisassociateGatewayFromServerCommand.d.ts +16 -0
  8. package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +16 -0
  9. package/dist-types/commands/GetGatewayCommand.d.ts +16 -0
  10. package/dist-types/commands/GetHypervisorCommand.d.ts +16 -0
  11. package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +16 -0
  12. package/dist-types/commands/GetVirtualMachineCommand.d.ts +16 -0
  13. package/dist-types/commands/ImportHypervisorConfigurationCommand.d.ts +16 -0
  14. package/dist-types/commands/ListGatewaysCommand.d.ts +16 -0
  15. package/dist-types/commands/ListHypervisorsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  17. package/dist-types/commands/ListVirtualMachinesCommand.d.ts +16 -0
  18. package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +16 -0
  19. package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +16 -0
  20. package/dist-types/commands/PutMaintenanceStartTimeCommand.d.ts +16 -0
  21. package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +16 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/TestHypervisorConfigurationCommand.d.ts +16 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateGatewayInformationCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateGatewaySoftwareNowCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateHypervisorCommand.d.ts +16 -0
  28. package/dist-types/models/BackupGatewayServiceException.d.ts +2 -0
  29. package/dist-types/models/models_0.d.ts +176 -0
  30. package/dist-types/pagination/Interfaces.d.ts +3 -0
  31. package/dist-types/pagination/ListGatewaysPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListHypervisorsPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListVirtualMachinesPaginator.d.ts +3 -0
  34. package/package.json +29 -29
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { BackupGatewayServiceException as __BaseException } from "./BackupGatewayServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>The operation cannot proceed because you have insufficient permissions.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -16,6 +17,9 @@ export declare class AccessDeniedException extends __BaseException {
16
17
  */
17
18
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
18
19
  }
20
+ /**
21
+ * @public
22
+ */
19
23
  export interface AssociateGatewayToServerInput {
20
24
  /**
21
25
  * <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation
@@ -27,6 +31,9 @@ export interface AssociateGatewayToServerInput {
27
31
  */
28
32
  ServerArn: string | undefined;
29
33
  }
34
+ /**
35
+ * @public
36
+ */
30
37
  export interface AssociateGatewayToServerOutput {
31
38
  /**
32
39
  * <p>The Amazon Resource Name (ARN) of a gateway.</p>
@@ -34,6 +41,7 @@ export interface AssociateGatewayToServerOutput {
34
41
  GatewayArn?: string;
35
42
  }
36
43
  /**
44
+ * @public
37
45
  * <p>The operation cannot proceed because it is not supported.</p>
38
46
  */
39
47
  export declare class ConflictException extends __BaseException {
@@ -50,6 +58,7 @@ export declare class ConflictException extends __BaseException {
50
58
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
51
59
  }
52
60
  /**
61
+ * @public
53
62
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
54
63
  */
55
64
  export declare class InternalServerException extends __BaseException {
@@ -66,6 +75,7 @@ export declare class InternalServerException extends __BaseException {
66
75
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
67
76
  }
68
77
  /**
78
+ * @public
69
79
  * <p>TPS has been limited to protect against intentional or unintentional
70
80
  * high request volumes.</p>
71
81
  */
@@ -84,6 +94,7 @@ export declare class ThrottlingException extends __BaseException {
84
94
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
85
95
  }
86
96
  /**
97
+ * @public
87
98
  * <p>The operation did not succeed because a validation error occurred.</p>
88
99
  */
89
100
  export declare class ValidationException extends __BaseException {
@@ -99,6 +110,9 @@ export declare class ValidationException extends __BaseException {
99
110
  */
100
111
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
101
112
  }
113
+ /**
114
+ * @public
115
+ */
102
116
  export interface GetBandwidthRateLimitScheduleInput {
103
117
  /**
104
118
  * <p>The Amazon Resource Name (ARN) of the gateway. Use the
@@ -110,6 +124,7 @@ export interface GetBandwidthRateLimitScheduleInput {
110
124
  GatewayArn: string | undefined;
111
125
  }
112
126
  /**
127
+ * @public
113
128
  * <p>Describes a bandwidth rate limit interval for a gateway. A bandwidth
114
129
  * rate limit schedule consists of one or more bandwidth rate limit intervals.
115
130
  * A bandwidth rate limit interval defines a period of time on one or more days
@@ -155,6 +170,9 @@ export interface BandwidthRateLimitInterval {
155
170
  */
156
171
  DaysOfWeek: number[] | undefined;
157
172
  }
173
+ /**
174
+ * @public
175
+ */
158
176
  export interface GetBandwidthRateLimitScheduleOutput {
159
177
  /**
160
178
  * <p>The Amazon Resource Name (ARN) of the gateway. Use the
@@ -171,6 +189,7 @@ export interface GetBandwidthRateLimitScheduleOutput {
171
189
  BandwidthRateLimitIntervals?: BandwidthRateLimitInterval[];
172
190
  }
173
191
  /**
192
+ * @public
174
193
  * <p>A resource that is required for the action wasn't found.</p>
175
194
  */
176
195
  export declare class ResourceNotFoundException extends __BaseException {
@@ -186,6 +205,9 @@ export declare class ResourceNotFoundException extends __BaseException {
186
205
  */
187
206
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
188
207
  }
208
+ /**
209
+ * @public
210
+ */
189
211
  export interface PutBandwidthRateLimitScheduleInput {
190
212
  /**
191
213
  * <p>The Amazon Resource Name (ARN) of the gateway. Use the
@@ -201,6 +223,9 @@ export interface PutBandwidthRateLimitScheduleInput {
201
223
  */
202
224
  BandwidthRateLimitIntervals: BandwidthRateLimitInterval[] | undefined;
203
225
  }
226
+ /**
227
+ * @public
228
+ */
204
229
  export interface PutBandwidthRateLimitScheduleOutput {
205
230
  /**
206
231
  * <p>The Amazon Resource Name (ARN) of the gateway. Use the
@@ -211,10 +236,14 @@ export interface PutBandwidthRateLimitScheduleOutput {
211
236
  */
212
237
  GatewayArn?: string;
213
238
  }
239
+ /**
240
+ * @public
241
+ */
214
242
  export declare enum GatewayType {
215
243
  BACKUP_VM = "BACKUP_VM"
216
244
  }
217
245
  /**
246
+ * @public
218
247
  * <p>A key-value pair you can use to manage, filter, and search for your resources. Allowed
219
248
  * characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ :
220
249
  * /.</p>
@@ -229,6 +258,9 @@ export interface Tag {
229
258
  */
230
259
  Value: string | undefined;
231
260
  }
261
+ /**
262
+ * @public
263
+ */
232
264
  export interface CreateGatewayInput {
233
265
  /**
234
266
  * <p>The activation key of the created gateway.</p>
@@ -247,36 +279,54 @@ export interface CreateGatewayInput {
247
279
  */
248
280
  Tags?: Tag[];
249
281
  }
282
+ /**
283
+ * @public
284
+ */
250
285
  export interface CreateGatewayOutput {
251
286
  /**
252
287
  * <p>The Amazon Resource Name (ARN) of the gateway you create.</p>
253
288
  */
254
289
  GatewayArn?: string;
255
290
  }
291
+ /**
292
+ * @public
293
+ */
256
294
  export interface DeleteGatewayInput {
257
295
  /**
258
296
  * <p>The Amazon Resource Name (ARN) of the gateway to delete.</p>
259
297
  */
260
298
  GatewayArn: string | undefined;
261
299
  }
300
+ /**
301
+ * @public
302
+ */
262
303
  export interface DeleteGatewayOutput {
263
304
  /**
264
305
  * <p>The Amazon Resource Name (ARN) of the gateway you deleted.</p>
265
306
  */
266
307
  GatewayArn?: string;
267
308
  }
309
+ /**
310
+ * @public
311
+ */
268
312
  export interface DisassociateGatewayFromServerInput {
269
313
  /**
270
314
  * <p>The Amazon Resource Name (ARN) of the gateway to disassociate.</p>
271
315
  */
272
316
  GatewayArn: string | undefined;
273
317
  }
318
+ /**
319
+ * @public
320
+ */
274
321
  export interface DisassociateGatewayFromServerOutput {
275
322
  /**
276
323
  * <p>The Amazon Resource Name (ARN) of the gateway you disassociated.</p>
277
324
  */
278
325
  GatewayArn?: string;
279
326
  }
327
+ /**
328
+ * @public
329
+ */
280
330
  export interface GetGatewayInput {
281
331
  /**
282
332
  * <p>The Amazon Resource Name (ARN) of the gateway.</p>
@@ -284,6 +334,7 @@ export interface GetGatewayInput {
284
334
  GatewayArn: string | undefined;
285
335
  }
286
336
  /**
337
+ * @public
287
338
  * <p>This is your gateway's weekly maintenance start time including the day and time of the week.
288
339
  * Note that values are in terms of the gateway's time zone. Can be weekly or monthly.</p>
289
340
  */
@@ -310,6 +361,7 @@ export interface MaintenanceStartTime {
310
361
  MinuteOfHour: number | undefined;
311
362
  }
312
363
  /**
364
+ * @public
313
365
  * <p>The details of gateway.</p>
314
366
  */
315
367
  export interface GatewayDetails {
@@ -353,6 +405,9 @@ export interface GatewayDetails {
353
405
  */
354
406
  VpcEndpoint?: string;
355
407
  }
408
+ /**
409
+ * @public
410
+ */
356
411
  export interface GetGatewayOutput {
357
412
  /**
358
413
  * <p>By providing the ARN (Amazon Resource Name), this
@@ -360,6 +415,9 @@ export interface GetGatewayOutput {
360
415
  */
361
416
  Gateway?: GatewayDetails;
362
417
  }
418
+ /**
419
+ * @public
420
+ */
363
421
  export interface ListGatewaysInput {
364
422
  /**
365
423
  * <p>The maximum number of gateways to list.</p>
@@ -374,6 +432,7 @@ export interface ListGatewaysInput {
374
432
  NextToken?: string;
375
433
  }
376
434
  /**
435
+ * @public
377
436
  * <p>A gateway is an Backup Gateway appliance that runs on the customer's network
378
437
  * to provide seamless connectivity to backup storage in the Amazon Web Services Cloud.</p>
379
438
  */
@@ -401,6 +460,9 @@ export interface Gateway {
401
460
  */
402
461
  LastSeenTime?: Date;
403
462
  }
463
+ /**
464
+ * @public
465
+ */
404
466
  export interface ListGatewaysOutput {
405
467
  /**
406
468
  * <p>A list of your gateways.</p>
@@ -414,6 +476,9 @@ export interface ListGatewaysOutput {
414
476
  */
415
477
  NextToken?: string;
416
478
  }
479
+ /**
480
+ * @public
481
+ */
417
482
  export interface PutMaintenanceStartTimeInput {
418
483
  /**
419
484
  * <p>The Amazon Resource Name (ARN) for the gateway, used to specify its maintenance start
@@ -438,6 +503,9 @@ export interface PutMaintenanceStartTimeInput {
438
503
  */
439
504
  DayOfMonth?: number;
440
505
  }
506
+ /**
507
+ * @public
508
+ */
441
509
  export interface PutMaintenanceStartTimeOutput {
442
510
  /**
443
511
  * <p>The Amazon Resource Name (ARN) of a gateway for which you set the maintenance start
@@ -445,6 +513,9 @@ export interface PutMaintenanceStartTimeOutput {
445
513
  */
446
514
  GatewayArn?: string;
447
515
  }
516
+ /**
517
+ * @public
518
+ */
448
519
  export interface TestHypervisorConfigurationInput {
449
520
  /**
450
521
  * <p>The Amazon Resource Name (ARN) of the gateway to the hypervisor to test.</p>
@@ -464,8 +535,14 @@ export interface TestHypervisorConfigurationInput {
464
535
  */
465
536
  Password?: string;
466
537
  }
538
+ /**
539
+ * @public
540
+ */
467
541
  export interface TestHypervisorConfigurationOutput {
468
542
  }
543
+ /**
544
+ * @public
545
+ */
469
546
  export interface UpdateGatewayInformationInput {
470
547
  /**
471
548
  * <p>The Amazon Resource Name (ARN) of the gateway to update.</p>
@@ -476,12 +553,18 @@ export interface UpdateGatewayInformationInput {
476
553
  */
477
554
  GatewayDisplayName?: string;
478
555
  }
556
+ /**
557
+ * @public
558
+ */
479
559
  export interface UpdateGatewayInformationOutput {
480
560
  /**
481
561
  * <p>The Amazon Resource Name (ARN) of the gateway you updated.</p>
482
562
  */
483
563
  GatewayArn?: string;
484
564
  }
565
+ /**
566
+ * @public
567
+ */
485
568
  export interface UpdateGatewaySoftwareNowInput {
486
569
  /**
487
570
  * <p>The Amazon Resource Name (ARN) of the gateway
@@ -489,6 +572,9 @@ export interface UpdateGatewaySoftwareNowInput {
489
572
  */
490
573
  GatewayArn: string | undefined;
491
574
  }
575
+ /**
576
+ * @public
577
+ */
492
578
  export interface UpdateGatewaySoftwareNowOutput {
493
579
  /**
494
580
  * <p>The Amazon Resource Name (ARN) of the gateway
@@ -496,24 +582,36 @@ export interface UpdateGatewaySoftwareNowOutput {
496
582
  */
497
583
  GatewayArn?: string;
498
584
  }
585
+ /**
586
+ * @public
587
+ */
499
588
  export interface DeleteHypervisorInput {
500
589
  /**
501
590
  * <p>The Amazon Resource Name (ARN) of the hypervisor to delete.</p>
502
591
  */
503
592
  HypervisorArn: string | undefined;
504
593
  }
594
+ /**
595
+ * @public
596
+ */
505
597
  export interface DeleteHypervisorOutput {
506
598
  /**
507
599
  * <p>The Amazon Resource Name (ARN) of the hypervisor you deleted.</p>
508
600
  */
509
601
  HypervisorArn?: string;
510
602
  }
603
+ /**
604
+ * @public
605
+ */
511
606
  export interface GetHypervisorInput {
512
607
  /**
513
608
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
514
609
  */
515
610
  HypervisorArn: string | undefined;
516
611
  }
612
+ /**
613
+ * @public
614
+ */
517
615
  export declare enum SyncMetadataStatus {
518
616
  CREATED = "CREATED",
519
617
  FAILED = "FAILED",
@@ -521,6 +619,9 @@ export declare enum SyncMetadataStatus {
521
619
  RUNNING = "RUNNING",
522
620
  SUCCEEDED = "SUCCEEDED"
523
621
  }
622
+ /**
623
+ * @public
624
+ */
524
625
  export declare enum HypervisorState {
525
626
  ERROR = "ERROR",
526
627
  OFFLINE = "OFFLINE",
@@ -528,6 +629,7 @@ export declare enum HypervisorState {
528
629
  PENDING = "PENDING"
529
630
  }
530
631
  /**
632
+ * @public
531
633
  * <p>These are the details of the specified hypervisor. A hypervisor is hardware,
532
634
  * software, or firmware that creates and manages virtual machines, and allocates
533
635
  * resources to them.</p>
@@ -576,12 +678,18 @@ export interface HypervisorDetails {
576
678
  */
577
679
  LatestMetadataSyncStatus?: SyncMetadataStatus | string;
578
680
  }
681
+ /**
682
+ * @public
683
+ */
579
684
  export interface GetHypervisorOutput {
580
685
  /**
581
686
  * <p>Details about the requested hypervisor.</p>
582
687
  */
583
688
  Hypervisor?: HypervisorDetails;
584
689
  }
690
+ /**
691
+ * @public
692
+ */
585
693
  export interface GetHypervisorPropertyMappingsInput {
586
694
  /**
587
695
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
@@ -589,6 +697,7 @@ export interface GetHypervisorPropertyMappingsInput {
589
697
  HypervisorArn: string | undefined;
590
698
  }
591
699
  /**
700
+ * @public
592
701
  * <p>This displays the mapping of on-premises VMware tags to the
593
702
  * corresponding Amazon Web Services tags.</p>
594
703
  */
@@ -610,6 +719,9 @@ export interface VmwareToAwsTagMapping {
610
719
  */
611
720
  AwsTagValue: string | undefined;
612
721
  }
722
+ /**
723
+ * @public
724
+ */
613
725
  export interface GetHypervisorPropertyMappingsOutput {
614
726
  /**
615
727
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
@@ -625,6 +737,9 @@ export interface GetHypervisorPropertyMappingsOutput {
625
737
  */
626
738
  IamRoleArn?: string;
627
739
  }
740
+ /**
741
+ * @public
742
+ */
628
743
  export interface PutHypervisorPropertyMappingsInput {
629
744
  /**
630
745
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
@@ -640,12 +755,18 @@ export interface PutHypervisorPropertyMappingsInput {
640
755
  */
641
756
  IamRoleArn: string | undefined;
642
757
  }
758
+ /**
759
+ * @public
760
+ */
643
761
  export interface PutHypervisorPropertyMappingsOutput {
644
762
  /**
645
763
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
646
764
  */
647
765
  HypervisorArn?: string;
648
766
  }
767
+ /**
768
+ * @public
769
+ */
649
770
  export interface ImportHypervisorConfigurationInput {
650
771
  /**
651
772
  * <p>The name of the hypervisor.</p>
@@ -673,12 +794,18 @@ export interface ImportHypervisorConfigurationInput {
673
794
  */
674
795
  Tags?: Tag[];
675
796
  }
797
+ /**
798
+ * @public
799
+ */
676
800
  export interface ImportHypervisorConfigurationOutput {
677
801
  /**
678
802
  * <p>The Amazon Resource Name (ARN) of the hypervisor you disassociated.</p>
679
803
  */
680
804
  HypervisorArn?: string;
681
805
  }
806
+ /**
807
+ * @public
808
+ */
682
809
  export interface ListHypervisorsInput {
683
810
  /**
684
811
  * <p>The maximum number of hypervisors to list.</p>
@@ -693,6 +820,7 @@ export interface ListHypervisorsInput {
693
820
  NextToken?: string;
694
821
  }
695
822
  /**
823
+ * @public
696
824
  * <p>Represents the hypervisor's permissions to which the gateway will connect.</p>
697
825
  * <p>A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
698
826
  * and allocates resources to them.</p>
@@ -721,6 +849,9 @@ export interface Hypervisor {
721
849
  */
722
850
  State?: HypervisorState | string;
723
851
  }
852
+ /**
853
+ * @public
854
+ */
724
855
  export interface ListHypervisorsOutput {
725
856
  /**
726
857
  * <p>A list of your <code>Hypervisor</code> objects, ordered by their Amazon Resource Names
@@ -735,18 +866,27 @@ export interface ListHypervisorsOutput {
735
866
  */
736
867
  NextToken?: string;
737
868
  }
869
+ /**
870
+ * @public
871
+ */
738
872
  export interface StartVirtualMachinesMetadataSyncInput {
739
873
  /**
740
874
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
741
875
  */
742
876
  HypervisorArn: string | undefined;
743
877
  }
878
+ /**
879
+ * @public
880
+ */
744
881
  export interface StartVirtualMachinesMetadataSyncOutput {
745
882
  /**
746
883
  * <p>The Amazon Resource Name (ARN) of the hypervisor.</p>
747
884
  */
748
885
  HypervisorArn?: string;
749
886
  }
887
+ /**
888
+ * @public
889
+ */
750
890
  export interface UpdateHypervisorInput {
751
891
  /**
752
892
  * <p>The Amazon Resource Name (ARN) of the hypervisor to update.</p>
@@ -774,18 +914,27 @@ export interface UpdateHypervisorInput {
774
914
  */
775
915
  LogGroupArn?: string;
776
916
  }
917
+ /**
918
+ * @public
919
+ */
777
920
  export interface UpdateHypervisorOutput {
778
921
  /**
779
922
  * <p>The Amazon Resource Name (ARN) of the hypervisor you updated.</p>
780
923
  */
781
924
  HypervisorArn?: string;
782
925
  }
926
+ /**
927
+ * @public
928
+ */
783
929
  export interface ListTagsForResourceInput {
784
930
  /**
785
931
  * <p>The Amazon Resource Name (ARN) of the resource's tags to list.</p>
786
932
  */
787
933
  ResourceArn: string | undefined;
788
934
  }
935
+ /**
936
+ * @public
937
+ */
789
938
  export interface ListTagsForResourceOutput {
790
939
  /**
791
940
  * <p>The Amazon Resource Name (ARN) of the resource's tags that you listed.</p>
@@ -796,6 +945,9 @@ export interface ListTagsForResourceOutput {
796
945
  */
797
946
  Tags?: Tag[];
798
947
  }
948
+ /**
949
+ * @public
950
+ */
799
951
  export interface TagResourceInput {
800
952
  /**
801
953
  * <p>The Amazon Resource Name (ARN) of the resource to tag.</p>
@@ -806,12 +958,18 @@ export interface TagResourceInput {
806
958
  */
807
959
  Tags: Tag[] | undefined;
808
960
  }
961
+ /**
962
+ * @public
963
+ */
809
964
  export interface TagResourceOutput {
810
965
  /**
811
966
  * <p>The Amazon Resource Name (ARN) of the resource you tagged.</p>
812
967
  */
813
968
  ResourceARN?: string;
814
969
  }
970
+ /**
971
+ * @public
972
+ */
815
973
  export interface UntagResourceInput {
816
974
  /**
817
975
  * <p>The Amazon Resource Name (ARN) of the resource from which to remove tags.</p>
@@ -822,12 +980,18 @@ export interface UntagResourceInput {
822
980
  */
823
981
  TagKeys: string[] | undefined;
824
982
  }
983
+ /**
984
+ * @public
985
+ */
825
986
  export interface UntagResourceOutput {
826
987
  /**
827
988
  * <p>The Amazon Resource Name (ARN) of the resource from which you removed tags.</p>
828
989
  */
829
990
  ResourceARN?: string;
830
991
  }
992
+ /**
993
+ * @public
994
+ */
831
995
  export interface GetVirtualMachineInput {
832
996
  /**
833
997
  * <p>The Amazon Resource Name (ARN) of the virtual machine.</p>
@@ -835,6 +999,7 @@ export interface GetVirtualMachineInput {
835
999
  ResourceArn: string | undefined;
836
1000
  }
837
1001
  /**
1002
+ * @public
838
1003
  * <p>A VMware tag is a tag attached to a specific virtual machine.
839
1004
  * A <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_Tag.html">tag</a>
840
1005
  * is a key-value pair you can use to manage, filter, and search for your resources.</p>
@@ -855,6 +1020,7 @@ export interface VmwareTag {
855
1020
  VmwareTagDescription?: string;
856
1021
  }
857
1022
  /**
1023
+ * @public
858
1024
  * <p>Your <code>VirtualMachine</code> objects, ordered by their Amazon Resource Names (ARNs).</p>
859
1025
  */
860
1026
  export interface VirtualMachineDetails {
@@ -889,6 +1055,9 @@ export interface VirtualMachineDetails {
889
1055
  */
890
1056
  VmwareTags?: VmwareTag[];
891
1057
  }
1058
+ /**
1059
+ * @public
1060
+ */
892
1061
  export interface GetVirtualMachineOutput {
893
1062
  /**
894
1063
  * <p>This object contains the basic attributes of <code>VirtualMachine</code> contained by the output of
@@ -897,6 +1066,9 @@ export interface GetVirtualMachineOutput {
897
1066
  */
898
1067
  VirtualMachine?: VirtualMachineDetails;
899
1068
  }
1069
+ /**
1070
+ * @public
1071
+ */
900
1072
  export interface ListVirtualMachinesInput {
901
1073
  /**
902
1074
  * <p>The Amazon Resource Name (ARN) of the hypervisor connected to your virtual machine.</p>
@@ -915,6 +1087,7 @@ export interface ListVirtualMachinesInput {
915
1087
  NextToken?: string;
916
1088
  }
917
1089
  /**
1090
+ * @public
918
1091
  * <p>A virtual machine that is on a hypervisor.</p>
919
1092
  */
920
1093
  export interface VirtualMachine {
@@ -944,6 +1117,9 @@ export interface VirtualMachine {
944
1117
  */
945
1118
  LastBackupDate?: Date;
946
1119
  }
1120
+ /**
1121
+ * @public
1122
+ */
947
1123
  export interface ListVirtualMachinesOutput {
948
1124
  /**
949
1125
  * <p>A list of your <code>VirtualMachine</code> objects, ordered by their Amazon Resource Names
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { BackupGatewayClient } from "../BackupGatewayClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface BackupGatewayPaginationConfiguration extends PaginationConfiguration {
4
7
  client: BackupGatewayClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
3
3
  import { BackupGatewayPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGateways(config: BackupGatewayPaginationConfiguration, input: ListGatewaysCommandInput, ...additionalArguments: any): Paginator<ListGatewaysCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "../commands/ListHypervisorsCommand";
3
3
  import { BackupGatewayPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListHypervisors(config: BackupGatewayPaginationConfiguration, input: ListHypervisorsCommandInput, ...additionalArguments: any): Paginator<ListHypervisorsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "../commands/ListVirtualMachinesCommand";
3
3
  import { BackupGatewayPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListVirtualMachines(config: BackupGatewayPaginationConfiguration, input: ListVirtualMachinesCommandInput, ...additionalArguments: any): Paginator<ListVirtualMachinesCommandOutput>;