@aws-sdk/client-backup-gateway 3.1093.0 → 3.1095.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 (39) hide show
  1. package/README.md +40 -9
  2. package/dist-cjs/index.js +1 -1
  3. package/dist-types/BackupGateway.d.ts +1 -9
  4. package/dist-types/BackupGatewayClient.d.ts +1 -9
  5. package/dist-types/commands/AssociateGatewayToServerCommand.d.ts +2 -4
  6. package/dist-types/commands/CreateGatewayCommand.d.ts +2 -4
  7. package/dist-types/commands/DeleteGatewayCommand.d.ts +1 -2
  8. package/dist-types/commands/DeleteHypervisorCommand.d.ts +1 -2
  9. package/dist-types/commands/DisassociateGatewayFromServerCommand.d.ts +2 -4
  10. package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +2 -6
  11. package/dist-types/commands/GetGatewayCommand.d.ts +2 -4
  12. package/dist-types/commands/GetHypervisorCommand.d.ts +2 -5
  13. package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +2 -5
  14. package/dist-types/commands/GetVirtualMachineCommand.d.ts +1 -2
  15. package/dist-types/commands/ImportHypervisorConfigurationCommand.d.ts +1 -2
  16. package/dist-types/commands/ListGatewaysCommand.d.ts +1 -2
  17. package/dist-types/commands/ListHypervisorsCommand.d.ts +1 -2
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -4
  19. package/dist-types/commands/ListVirtualMachinesCommand.d.ts +1 -2
  20. package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +2 -6
  21. package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +2 -5
  22. package/dist-types/commands/PutMaintenanceStartTimeCommand.d.ts +1 -2
  23. package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +1 -2
  24. package/dist-types/commands/TagResourceCommand.d.ts +1 -2
  25. package/dist-types/commands/TestHypervisorConfigurationCommand.d.ts +2 -4
  26. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  27. package/dist-types/commands/UpdateGatewayInformationCommand.d.ts +2 -4
  28. package/dist-types/commands/UpdateGatewaySoftwareNowCommand.d.ts +2 -9
  29. package/dist-types/commands/UpdateHypervisorCommand.d.ts +2 -5
  30. package/dist-types/index.d.ts +1 -9
  31. package/dist-types/models/errors.d.ts +2 -4
  32. package/dist-types/models/models_0.d.ts +60 -162
  33. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  34. package/dist-types/runtimeConfig.d.ts +2 -0
  35. package/dist-types/runtimeConfig.native.d.ts +2 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  39. package/package.json +6 -6
@@ -4,8 +4,7 @@ import type { GatewayType, HypervisorState, SyncMetadataStatus } from "./enums";
4
4
  */
5
5
  export interface AssociateGatewayToServerInput {
6
6
  /**
7
- * <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation
8
- * to return a list of gateways for your account and Amazon Web Services Region.</p>
7
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
9
8
  * @public
10
9
  */
11
10
  GatewayArn: string | undefined;
@@ -30,28 +29,18 @@ export interface AssociateGatewayToServerOutput {
30
29
  */
31
30
  export interface GetBandwidthRateLimitScheduleInput {
32
31
  /**
33
- * <p>The Amazon Resource Name (ARN) of the gateway. Use the
34
- * <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
35
- * <code>ListGateways</code>
36
- * </a> operation to return a list of gateways
37
- * for your account and Amazon Web Services Region.</p>
32
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html"> <code>ListGateways</code> </a> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
38
33
  * @public
39
34
  */
40
35
  GatewayArn: string | undefined;
41
36
  }
42
37
  /**
43
- * <p>Describes a bandwidth rate limit interval for a gateway. A bandwidth
44
- * rate limit schedule consists of one or more bandwidth rate limit intervals.
45
- * A bandwidth rate limit interval defines a period of time on one or more days
46
- * of the week, during which bandwidth rate limits are specified for uploading,
47
- * downloading, or both.</p>
38
+ * <p>Describes a bandwidth rate limit interval for a gateway. A bandwidth rate limit schedule consists of one or more bandwidth rate limit intervals. A bandwidth rate limit interval defines a period of time on one or more days of the week, during which bandwidth rate limits are specified for uploading, downloading, or both.</p>
48
39
  * @public
49
40
  */
50
41
  export interface BandwidthRateLimitInterval {
51
42
  /**
52
- * <p>The average upload rate limit component of the bandwidth rate limit
53
- * interval, in bits per second. This field does not appear in the response if
54
- * the upload rate limit is not set.</p>
43
+ * <p>The average upload rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the upload rate limit is not set.</p>
55
44
  * @public
56
45
  */
57
46
  AverageUploadRateLimitInBitsPerSec?: number | undefined;
@@ -66,25 +55,17 @@ export interface BandwidthRateLimitInterval {
66
55
  */
67
56
  EndHourOfDay: number | undefined;
68
57
  /**
69
- * <p>The minute of the hour to start the bandwidth rate limit interval. The
70
- * interval begins at the start of that minute. To begin an interval exactly at
71
- * the start of the hour, use the value <code>0</code>.</p>
58
+ * <p>The minute of the hour to start the bandwidth rate limit interval. The interval begins at the start of that minute. To begin an interval exactly at the start of the hour, use the value <code>0</code>.</p>
72
59
  * @public
73
60
  */
74
61
  StartMinuteOfHour: number | undefined;
75
62
  /**
76
- * <p>The minute of the hour to end the bandwidth rate limit interval.</p>
77
- * <important>
78
- * <p>The bandwidth rate limit interval ends at the end of the minute.
79
- * To end an interval at the end of an hour, use the value <code>59</code>.</p>
80
- * </important>
63
+ * <p>The minute of the hour to end the bandwidth rate limit interval.</p> <important> <p>The bandwidth rate limit interval ends at the end of the minute. To end an interval at the end of an hour, use the value <code>59</code>.</p> </important>
81
64
  * @public
82
65
  */
83
66
  EndMinuteOfHour: number | undefined;
84
67
  /**
85
- * <p>The days of the week component of the bandwidth rate limit interval,
86
- * represented as ordinal numbers from 0 to 6, where 0 represents Sunday and 6 represents
87
- * Saturday.</p>
68
+ * <p>The days of the week component of the bandwidth rate limit interval, represented as ordinal numbers from 0 to 6, where 0 represents Sunday and 6 represents Saturday.</p>
88
69
  * @public
89
70
  */
90
71
  DaysOfWeek: number[] | undefined;
@@ -94,17 +75,12 @@ export interface BandwidthRateLimitInterval {
94
75
  */
95
76
  export interface GetBandwidthRateLimitScheduleOutput {
96
77
  /**
97
- * <p>The Amazon Resource Name (ARN) of the gateway. Use the
98
- * <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
99
- * <code>ListGateways</code>
100
- * </a> operation to return a list of gateways
101
- * for your account and Amazon Web Services Region.</p>
78
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html"> <code>ListGateways</code> </a> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
102
79
  * @public
103
80
  */
104
81
  GatewayArn?: string | undefined;
105
82
  /**
106
- * <p>An array containing bandwidth rate limit schedule intervals for a gateway.
107
- * When no bandwidth rate limit intervals have been scheduled, the array is empty.</p>
83
+ * <p>An array containing bandwidth rate limit schedule intervals for a gateway. When no bandwidth rate limit intervals have been scheduled, the array is empty.</p>
108
84
  * @public
109
85
  */
110
86
  BandwidthRateLimitIntervals?: BandwidthRateLimitInterval[] | undefined;
@@ -114,17 +90,12 @@ export interface GetBandwidthRateLimitScheduleOutput {
114
90
  */
115
91
  export interface PutBandwidthRateLimitScheduleInput {
116
92
  /**
117
- * <p>The Amazon Resource Name (ARN) of the gateway. Use the
118
- * <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
119
- * <code>ListGateways</code>
120
- * </a> operation to return a list of gateways
121
- * for your account and Amazon Web Services Region.</p>
93
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html"> <code>ListGateways</code> </a> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
122
94
  * @public
123
95
  */
124
96
  GatewayArn: string | undefined;
125
97
  /**
126
- * <p>An array containing bandwidth rate limit schedule intervals for a gateway.
127
- * When no bandwidth rate limit intervals have been scheduled, the array is empty.</p>
98
+ * <p>An array containing bandwidth rate limit schedule intervals for a gateway. When no bandwidth rate limit intervals have been scheduled, the array is empty.</p>
128
99
  * @public
129
100
  */
130
101
  BandwidthRateLimitIntervals: BandwidthRateLimitInterval[] | undefined;
@@ -134,19 +105,13 @@ export interface PutBandwidthRateLimitScheduleInput {
134
105
  */
135
106
  export interface PutBandwidthRateLimitScheduleOutput {
136
107
  /**
137
- * <p>The Amazon Resource Name (ARN) of the gateway. Use the
138
- * <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html">
139
- * <code>ListGateways</code>
140
- * </a> operation to return a list of gateways
141
- * for your account and Amazon Web Services Region.</p>
108
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_ListGateways.html"> <code>ListGateways</code> </a> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
142
109
  * @public
143
110
  */
144
111
  GatewayArn?: string | undefined;
145
112
  }
146
113
  /**
147
- * <p>A key-value pair you can use to manage, filter, and search for your resources. Allowed
148
- * characters include UTF-8 letters, numbers, and the following characters: + - = . _ :
149
- * /. Spaces are not allowed in tag values.</p>
114
+ * <p>A key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, and the following characters: + - = . _ : /. Spaces are not allowed in tag values.</p>
150
115
  * @public
151
116
  */
152
117
  export interface Tag {
@@ -247,32 +212,27 @@ export interface GetGatewayInput {
247
212
  GatewayArn: string | undefined;
248
213
  }
249
214
  /**
250
- * <p>This is your gateway's weekly maintenance start time including the day and time of the week.
251
- * Note that values are in terms of the gateway's time zone. Can be weekly or monthly.</p>
215
+ * <p>This is your gateway's weekly maintenance start time including the day and time of the week. Note that values are in terms of the gateway's time zone. Can be weekly or monthly.</p>
252
216
  * @public
253
217
  */
254
218
  export interface MaintenanceStartTime {
255
219
  /**
256
- * <p>The day of the month component of the maintenance start time represented as an ordinal number from
257
- * 1 to 28, where 1 represents the first day of the month and 28 represents the last day of the month.</p>
220
+ * <p>The day of the month component of the maintenance start time represented as an ordinal number from 1 to 28, where 1 represents the first day of the month and 28 represents the last day of the month.</p>
258
221
  * @public
259
222
  */
260
223
  DayOfMonth?: number | undefined;
261
224
  /**
262
- * <p>An ordinal number between 0 and 6 that represents the day of the week, where 0 represents Sunday
263
- * and 6 represents Saturday. The day of week is in the time zone of the gateway.</p>
225
+ * <p>An ordinal number between 0 and 6 that represents the day of the week, where 0 represents Sunday and 6 represents Saturday. The day of week is in the time zone of the gateway.</p>
264
226
  * @public
265
227
  */
266
228
  DayOfWeek?: number | undefined;
267
229
  /**
268
- * <p>The hour component of the maintenance start time represented as <i>hh</i>,
269
- * where <i>hh</i> is the hour (0 to 23). The hour of the day is in the time zone of the gateway.</p>
230
+ * <p>The hour component of the maintenance start time represented as <i>hh</i>, where <i>hh</i> is the hour (0 to 23). The hour of the day is in the time zone of the gateway.</p>
270
231
  * @public
271
232
  */
272
233
  HourOfDay: number | undefined;
273
234
  /**
274
- * <p>The minute component of the maintenance start time represented as <i>mm</i>, where
275
- * <i>mm</i> is the minute (0 to 59). The minute of the hour is in the time zone of the gateway.</p>
235
+ * <p>The minute component of the maintenance start time represented as <i>mm</i>, where <i>mm</i> is the minute (0 to 59). The minute of the hour is in the time zone of the gateway.</p>
276
236
  * @public
277
237
  */
278
238
  MinuteOfHour: number | undefined;
@@ -283,10 +243,7 @@ export interface MaintenanceStartTime {
283
243
  */
284
244
  export interface GatewayDetails {
285
245
  /**
286
- * <p>The Amazon Resource Name (ARN) of the
287
- * gateway. Use the <code>ListGateways</code> operation
288
- * to return a list of gateways for your account and
289
- * Amazon Web Services Region.</p>
246
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
290
247
  * @public
291
248
  */
292
249
  GatewayArn?: string | undefined;
@@ -306,26 +263,22 @@ export interface GatewayDetails {
306
263
  */
307
264
  HypervisorId?: string | undefined;
308
265
  /**
309
- * <p>Details showing the last time Backup gateway communicated
310
- * with the cloud, in Unix format and UTC time.</p>
266
+ * <p>Details showing the last time Backup gateway communicated with the cloud, in Unix format and UTC time.</p>
311
267
  * @public
312
268
  */
313
269
  LastSeenTime?: Date | undefined;
314
270
  /**
315
- * <p>Returns your gateway's weekly maintenance start time including the day and time of the week.
316
- * Note that values are in terms of the gateway's time zone. Can be weekly or monthly.</p>
271
+ * <p>Returns your gateway's weekly maintenance start time including the day and time of the week. Note that values are in terms of the gateway's time zone. Can be weekly or monthly.</p>
317
272
  * @public
318
273
  */
319
274
  MaintenanceStartTime?: MaintenanceStartTime | undefined;
320
275
  /**
321
- * <p>Details showing the next update availability time of the
322
- * gateway.</p>
276
+ * <p>Details showing the next update availability time of the gateway.</p>
323
277
  * @public
324
278
  */
325
279
  NextUpdateAvailabilityTime?: Date | undefined;
326
280
  /**
327
- * <p>The DNS name for the virtual private cloud (VPC) endpoint the gateway
328
- * uses to connect to the cloud for backup gateway.</p>
281
+ * <p>The DNS name for the virtual private cloud (VPC) endpoint the gateway uses to connect to the cloud for backup gateway.</p>
329
282
  * @public
330
283
  */
331
284
  VpcEndpoint?: string | undefined;
@@ -345,8 +298,7 @@ export interface GatewayDetails {
345
298
  */
346
299
  export interface GetGatewayOutput {
347
300
  /**
348
- * <p>By providing the ARN (Amazon Resource Name), this
349
- * API returns the gateway.</p>
301
+ * <p>By providing the ARN (Amazon Resource Name), this API returns the gateway.</p>
350
302
  * @public
351
303
  */
352
304
  Gateway?: GatewayDetails | undefined;
@@ -361,23 +313,18 @@ export interface ListGatewaysInput {
361
313
  */
362
314
  MaxResults?: number | undefined;
363
315
  /**
364
- * <p>The next item following a partial list of returned resources. For example, if a request is
365
- * made to return <code>MaxResults</code> number of resources, <code>NextToken</code> allows you
366
- * to return more items in your list starting at the location pointed to by the next
367
- * token.</p>
316
+ * <p>The next item following a partial list of returned resources. For example, if a request is made to return <code>MaxResults</code> number of resources, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
368
317
  * @public
369
318
  */
370
319
  NextToken?: string | undefined;
371
320
  }
372
321
  /**
373
- * <p>A gateway is an Backup Gateway appliance that runs on the customer's network
374
- * to provide seamless connectivity to backup storage in the Amazon Web Services Cloud.</p>
322
+ * <p>A gateway is an Backup Gateway appliance that runs on the customer's network to provide seamless connectivity to backup storage in the Amazon Web Services Cloud.</p>
375
323
  * @public
376
324
  */
377
325
  export interface Gateway {
378
326
  /**
379
- * <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation
380
- * to return a list of gateways for your account and Amazon Web Services Region.</p>
327
+ * <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
381
328
  * @public
382
329
  */
383
330
  GatewayArn?: string | undefined;
@@ -397,8 +344,7 @@ export interface Gateway {
397
344
  */
398
345
  HypervisorId?: string | undefined;
399
346
  /**
400
- * <p>The last time Backup gateway communicated with the gateway, in Unix format and
401
- * UTC time.</p>
347
+ * <p>The last time Backup gateway communicated with the gateway, in Unix format and UTC time.</p>
402
348
  * @public
403
349
  */
404
350
  LastSeenTime?: Date | undefined;
@@ -413,10 +359,7 @@ export interface ListGatewaysOutput {
413
359
  */
414
360
  Gateways?: Gateway[] | undefined;
415
361
  /**
416
- * <p>The next item following a partial list of returned resources. For example, if a request is
417
- * made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you
418
- * to return more items in your list starting at the location pointed to by the next
419
- * token.</p>
362
+ * <p>The next item following a partial list of returned resources. For example, if a request is made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
420
363
  * @public
421
364
  */
422
365
  NextToken?: string | undefined;
@@ -426,8 +369,7 @@ export interface ListGatewaysOutput {
426
369
  */
427
370
  export interface PutMaintenanceStartTimeInput {
428
371
  /**
429
- * <p>The Amazon Resource Name (ARN) for the gateway, used to specify its maintenance start
430
- * time.</p>
372
+ * <p>The Amazon Resource Name (ARN) for the gateway, used to specify its maintenance start time.</p>
431
373
  * @public
432
374
  */
433
375
  GatewayArn: string | undefined;
@@ -447,8 +389,7 @@ export interface PutMaintenanceStartTimeInput {
447
389
  */
448
390
  DayOfWeek?: number | undefined;
449
391
  /**
450
- * <p>The day of the month start maintenance on a gateway.</p>
451
- * <p>Valid values range from <code>Sunday</code> to <code>Saturday</code>.</p>
392
+ * <p>The day of the month start maintenance on a gateway.</p> <p>Valid values range from <code>Sunday</code> to <code>Saturday</code>.</p>
452
393
  * @public
453
394
  */
454
395
  DayOfMonth?: number | undefined;
@@ -458,8 +399,7 @@ export interface PutMaintenanceStartTimeInput {
458
399
  */
459
400
  export interface PutMaintenanceStartTimeOutput {
460
401
  /**
461
- * <p>The Amazon Resource Name (ARN) of a gateway for which you set the maintenance start
462
- * time.</p>
402
+ * <p>The Amazon Resource Name (ARN) of a gateway for which you set the maintenance start time.</p>
463
403
  * @public
464
404
  */
465
405
  GatewayArn?: string | undefined;
@@ -474,8 +414,7 @@ export interface TestHypervisorConfigurationInput {
474
414
  */
475
415
  GatewayArn: string | undefined;
476
416
  /**
477
- * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified
478
- * domain name (FQDN).</p>
417
+ * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).</p>
479
418
  * @public
480
419
  */
481
420
  Host: string | undefined;
@@ -525,8 +464,7 @@ export interface UpdateGatewayInformationOutput {
525
464
  */
526
465
  export interface UpdateGatewaySoftwareNowInput {
527
466
  /**
528
- * <p>The Amazon Resource Name (ARN) of the gateway
529
- * to be updated.</p>
467
+ * <p>The Amazon Resource Name (ARN) of the gateway to be updated.</p>
530
468
  * @public
531
469
  */
532
470
  GatewayArn: string | undefined;
@@ -536,8 +474,7 @@ export interface UpdateGatewaySoftwareNowInput {
536
474
  */
537
475
  export interface UpdateGatewaySoftwareNowOutput {
538
476
  /**
539
- * <p>The Amazon Resource Name (ARN) of the gateway
540
- * you updated.</p>
477
+ * <p>The Amazon Resource Name (ARN) of the gateway you updated.</p>
541
478
  * @public
542
479
  */
543
480
  GatewayArn?: string | undefined;
@@ -573,15 +510,12 @@ export interface GetHypervisorInput {
573
510
  HypervisorArn: string | undefined;
574
511
  }
575
512
  /**
576
- * <p>These are the details of the specified hypervisor. A hypervisor is hardware,
577
- * software, or firmware that creates and manages virtual machines, and allocates
578
- * resources to them.</p>
513
+ * <p>These are the details of the specified hypervisor. A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.</p>
579
514
  * @public
580
515
  */
581
516
  export interface HypervisorDetails {
582
517
  /**
583
- * <p>The server host of the hypervisor. This can be either an IP address or
584
- * a fully-qualified domain name (FQDN).</p>
518
+ * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).</p>
585
519
  * @public
586
520
  */
587
521
  Host?: string | undefined;
@@ -591,8 +525,7 @@ export interface HypervisorDetails {
591
525
  */
592
526
  HypervisorArn?: string | undefined;
593
527
  /**
594
- * <p>The Amazon Resource Name (ARN) of the KMS
595
- * used to encrypt the hypervisor.</p>
528
+ * <p>The Amazon Resource Name (ARN) of the KMS used to encrypt the hypervisor.</p>
596
529
  * @public
597
530
  */
598
531
  KmsKeyArn?: string | undefined;
@@ -602,21 +535,17 @@ export interface HypervisorDetails {
602
535
  */
603
536
  Name?: string | undefined;
604
537
  /**
605
- * <p>The Amazon Resource Name (ARN) of the group of gateways within
606
- * the requested log.</p>
538
+ * <p>The Amazon Resource Name (ARN) of the group of gateways within the requested log.</p>
607
539
  * @public
608
540
  */
609
541
  LogGroupArn?: string | undefined;
610
542
  /**
611
- * <p>This is the current state of the specified hypervisor.</p>
612
- * <p>The possible states are <code>PENDING</code>, <code>ONLINE</code>,
613
- * <code>OFFLINE</code>, or <code>ERROR</code>.</p>
543
+ * <p>This is the current state of the specified hypervisor.</p> <p>The possible states are <code>PENDING</code>, <code>ONLINE</code>, <code>OFFLINE</code>, or <code>ERROR</code>.</p>
614
544
  * @public
615
545
  */
616
546
  State?: HypervisorState | undefined;
617
547
  /**
618
- * <p>This is the time when the most recent successful sync
619
- * of metadata occurred.</p>
548
+ * <p>This is the time when the most recent successful sync of metadata occurred.</p>
620
549
  * @public
621
550
  */
622
551
  LastSuccessfulMetadataSyncTime?: Date | undefined;
@@ -652,8 +581,7 @@ export interface GetHypervisorPropertyMappingsInput {
652
581
  HypervisorArn: string | undefined;
653
582
  }
654
583
  /**
655
- * <p>This displays the mapping of VMware tags to the
656
- * corresponding Amazon Web Services tags.</p>
584
+ * <p>This displays the mapping of VMware tags to the corresponding Amazon Web Services tags.</p>
657
585
  * @public
658
586
  */
659
587
  export interface VmwareToAwsTagMapping {
@@ -688,8 +616,7 @@ export interface GetHypervisorPropertyMappingsOutput {
688
616
  */
689
617
  HypervisorArn?: string | undefined;
690
618
  /**
691
- * <p>This is a display of the mappings of VMware tags to the
692
- * Amazon Web Services tags.</p>
619
+ * <p>This is a display of the mappings of VMware tags to the Amazon Web Services tags.</p>
693
620
  * @public
694
621
  */
695
622
  VmwareToAwsTagMappings?: VmwareToAwsTagMapping[] | undefined;
@@ -709,8 +636,7 @@ export interface PutHypervisorPropertyMappingsInput {
709
636
  */
710
637
  HypervisorArn: string | undefined;
711
638
  /**
712
- * <p>This action requests the mappings of VMware tags to the
713
- * Amazon Web Services tags.</p>
639
+ * <p>This action requests the mappings of VMware tags to the Amazon Web Services tags.</p>
714
640
  * @public
715
641
  */
716
642
  VmwareToAwsTagMappings: VmwareToAwsTagMapping[] | undefined;
@@ -740,8 +666,7 @@ export interface ImportHypervisorConfigurationInput {
740
666
  */
741
667
  Name: string | undefined;
742
668
  /**
743
- * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified
744
- * domain name (FQDN).</p>
669
+ * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).</p>
745
670
  * @public
746
671
  */
747
672
  Host: string | undefined;
@@ -786,24 +711,18 @@ export interface ListHypervisorsInput {
786
711
  */
787
712
  MaxResults?: number | undefined;
788
713
  /**
789
- * <p>The next item following a partial list of returned resources. For example, if a request is
790
- * made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you
791
- * to return more items in your list starting at the location pointed to by the next
792
- * token.</p>
714
+ * <p>The next item following a partial list of returned resources. For example, if a request is made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
793
715
  * @public
794
716
  */
795
717
  NextToken?: string | undefined;
796
718
  }
797
719
  /**
798
- * <p>Represents the hypervisor's permissions to which the gateway will connect.</p>
799
- * <p>A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
800
- * and allocates resources to them.</p>
720
+ * <p>Represents the hypervisor's permissions to which the gateway will connect.</p> <p>A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.</p>
801
721
  * @public
802
722
  */
803
723
  export interface Hypervisor {
804
724
  /**
805
- * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified
806
- * domain name (FQDN).</p>
725
+ * <p>The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).</p>
807
726
  * @public
808
727
  */
809
728
  Host?: string | undefined;
@@ -813,8 +732,7 @@ export interface Hypervisor {
813
732
  */
814
733
  HypervisorArn?: string | undefined;
815
734
  /**
816
- * <p>The Amazon Resource Name (ARN) of the Key Management Service used to encrypt the
817
- * hypervisor.</p>
735
+ * <p>The Amazon Resource Name (ARN) of the Key Management Service used to encrypt the hypervisor.</p>
818
736
  * @public
819
737
  */
820
738
  KmsKeyArn?: string | undefined;
@@ -834,16 +752,12 @@ export interface Hypervisor {
834
752
  */
835
753
  export interface ListHypervisorsOutput {
836
754
  /**
837
- * <p>A list of your <code>Hypervisor</code> objects, ordered by their Amazon Resource Names
838
- * (ARNs).</p>
755
+ * <p>A list of your <code>Hypervisor</code> objects, ordered by their Amazon Resource Names (ARNs).</p>
839
756
  * @public
840
757
  */
841
758
  Hypervisors?: Hypervisor[] | undefined;
842
759
  /**
843
- * <p>The next item following a partial list of returned resources. For example, if a request is
844
- * made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you
845
- * to return more items in your list starting at the location pointed to by the next
846
- * token.</p>
760
+ * <p>The next item following a partial list of returned resources. For example, if a request is made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
847
761
  * @public
848
762
  */
849
763
  NextToken?: string | undefined;
@@ -878,8 +792,7 @@ export interface UpdateHypervisorInput {
878
792
  */
879
793
  HypervisorArn: string | undefined;
880
794
  /**
881
- * <p>The updated host of the hypervisor. This can be either an IP address or a fully-qualified
882
- * domain name (FQDN).</p>
795
+ * <p>The updated host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).</p>
883
796
  * @public
884
797
  */
885
798
  Host?: string | undefined;
@@ -1000,10 +913,7 @@ export interface GetVirtualMachineInput {
1000
913
  ResourceArn: string | undefined;
1001
914
  }
1002
915
  /**
1003
- * <p>A VMware tag is a tag attached to a specific virtual machine.
1004
- * A <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_Tag.html">tag</a>
1005
- * is a key-value pair you can use to manage, filter, and search for your resources.</p>
1006
- * <p>The content of VMware tags can be matched to Amazon Web Services tags.</p>
916
+ * <p>A VMware tag is a tag attached to a specific virtual machine. A <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/API_BGW_Tag.html">tag</a> is a key-value pair you can use to manage, filter, and search for your resources.</p> <p>The content of VMware tags can be matched to Amazon Web Services tags.</p>
1007
917
  * @public
1008
918
  */
1009
919
  export interface VmwareTag {
@@ -1049,8 +959,7 @@ export interface VirtualMachineDetails {
1049
959
  */
1050
960
  Path?: string | undefined;
1051
961
  /**
1052
- * <p>The Amazon Resource Name (ARN) of the virtual machine. For example,
1053
- * <code>arn:aws:backup-gateway:us-west-1:0000000000000:vm/vm-0000ABCDEFGIJKL</code>.</p>
962
+ * <p>The Amazon Resource Name (ARN) of the virtual machine. For example, <code>arn:aws:backup-gateway:us-west-1:0000000000000:vm/vm-0000ABCDEFGIJKL</code>.</p>
1054
963
  * @public
1055
964
  */
1056
965
  ResourceArn?: string | undefined;
@@ -1060,8 +969,7 @@ export interface VirtualMachineDetails {
1060
969
  */
1061
970
  LastBackupDate?: Date | undefined;
1062
971
  /**
1063
- * <p>These are the details of the VMware tags associated with the specified
1064
- * virtual machine.</p>
972
+ * <p>These are the details of the VMware tags associated with the specified virtual machine.</p>
1065
973
  * @public
1066
974
  */
1067
975
  VmwareTags?: VmwareTag[] | undefined;
@@ -1071,9 +979,7 @@ export interface VirtualMachineDetails {
1071
979
  */
1072
980
  export interface GetVirtualMachineOutput {
1073
981
  /**
1074
- * <p>This object contains the basic attributes of <code>VirtualMachine</code> contained by the output of
1075
- * <code>GetVirtualMachine</code>
1076
- * </p>
982
+ * <p>This object contains the basic attributes of <code>VirtualMachine</code> contained by the output of <code>GetVirtualMachine</code> </p>
1077
983
  * @public
1078
984
  */
1079
985
  VirtualMachine?: VirtualMachineDetails | undefined;
@@ -1093,10 +999,7 @@ export interface ListVirtualMachinesInput {
1093
999
  */
1094
1000
  MaxResults?: number | undefined;
1095
1001
  /**
1096
- * <p>The next item following a partial list of returned resources. For example, if a request is
1097
- * made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you
1098
- * to return more items in your list starting at the location pointed to by the next
1099
- * token.</p>
1002
+ * <p>The next item following a partial list of returned resources. For example, if a request is made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
1100
1003
  * @public
1101
1004
  */
1102
1005
  NextToken?: string | undefined;
@@ -1127,8 +1030,7 @@ export interface VirtualMachine {
1127
1030
  */
1128
1031
  Path?: string | undefined;
1129
1032
  /**
1130
- * <p>The Amazon Resource Name (ARN) of the virtual machine. For example,
1131
- * <code>arn:aws:backup-gateway:us-west-1:0000000000000:vm/vm-0000ABCDEFGIJKL</code>.</p>
1033
+ * <p>The Amazon Resource Name (ARN) of the virtual machine. For example, <code>arn:aws:backup-gateway:us-west-1:0000000000000:vm/vm-0000ABCDEFGIJKL</code>.</p>
1132
1034
  * @public
1133
1035
  */
1134
1036
  ResourceArn?: string | undefined;
@@ -1143,16 +1045,12 @@ export interface VirtualMachine {
1143
1045
  */
1144
1046
  export interface ListVirtualMachinesOutput {
1145
1047
  /**
1146
- * <p>A list of your <code>VirtualMachine</code> objects, ordered by their Amazon Resource Names
1147
- * (ARNs).</p>
1048
+ * <p>A list of your <code>VirtualMachine</code> objects, ordered by their Amazon Resource Names (ARNs).</p>
1148
1049
  * @public
1149
1050
  */
1150
1051
  VirtualMachines?: VirtualMachine[] | undefined;
1151
1052
  /**
1152
- * <p>The next item following a partial list of returned resources. For example, if a request is
1153
- * made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you
1154
- * to return more items in your list starting at the location pointed to by the next
1155
- * token.</p>
1053
+ * <p>The next item following a partial list of returned resources. For example, if a request is made to return <code>maxResults</code> number of resources, <code>NextToken</code> allows you to return more items in your list starting at the location pointed to by the next token.</p>
1156
1054
  * @public
1157
1055
  */
1158
1056
  NextToken?: string | undefined;
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
42
42
  logger?: import("@smithy/types").Logger;
43
43
  }) => import("@smithy/types").EndpointV2;
44
44
  tls?: boolean;
45
+ ignoreConfiguredEndpointUrls?: boolean;
45
46
  serviceConfiguredEndpoint?: never;
46
47
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
47
48
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
52
53
  systemClockOffset?: number;
53
54
  signingRegion?: string;
54
55
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
55
57
  };
@@ -43,6 +43,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
43
43
  logger?: import("@smithy/types").Logger;
44
44
  }) => import("@smithy/types").EndpointV2;
45
45
  tls?: boolean;
46
+ ignoreConfiguredEndpointUrls?: boolean;
46
47
  serviceConfiguredEndpoint?: never;
47
48
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
48
49
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
52
53
  systemClockOffset?: number;
53
54
  signingRegion?: string;
54
55
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
55
57
  };
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
41
41
  logger?: import("@smithy/types").Logger;
42
42
  }) => import("@smithy/types").EndpointV2;
43
43
  tls?: boolean;
44
+ ignoreConfiguredEndpointUrls?: boolean;
44
45
  serviceConfiguredEndpoint?: never;
45
46
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
46
47
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -51,4 +52,5 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
51
52
  systemClockOffset?: number;
52
53
  signingRegion?: string;
53
54
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
54
56
  };
@@ -71,6 +71,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
71
71
  },
72
72
  ) => import("@smithy/types").EndpointV2;
73
73
  tls?: boolean;
74
+ ignoreConfiguredEndpointUrls?: boolean;
74
75
  serviceConfiguredEndpoint?: never;
75
76
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
76
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
90
91
  options: import("@smithy/signature-v4").SignatureV4Init &
91
92
  import("@smithy/signature-v4").SignatureV4CryptoInit,
92
93
  ) => import("@smithy/types").RequestSigner;
94
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
93
95
  };
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
72
72
  },
73
73
  ) => import("@smithy/types").EndpointV2;
74
74
  tls?: boolean;
75
+ ignoreConfiguredEndpointUrls?: boolean;
75
76
  serviceConfiguredEndpoint?: never;
76
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
77
78
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
90
91
  options: import("@smithy/signature-v4").SignatureV4Init &
91
92
  import("@smithy/signature-v4").SignatureV4CryptoInit,
92
93
  ) => import("@smithy/types").RequestSigner;
94
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
93
95
  };