@aws-sdk/client-backup-gateway 3.169.0 → 3.171.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 (38) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/BackupGateway.d.ts +310 -95
  3. package/dist-types/ts3.4/BackupGatewayClient.d.ts +213 -91
  4. package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/index.d.ts +18 -18
  23. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  24. package/dist-types/ts3.4/index.d.ts +6 -6
  25. package/dist-types/ts3.4/models/BackupGatewayServiceException.d.ts +7 -6
  26. package/dist-types/ts3.4/models/index.d.ts +1 -1
  27. package/dist-types/ts3.4/models/models_0.d.ts +342 -410
  28. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  29. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -4
  30. package/dist-types/ts3.4/pagination/ListHypervisorsPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListVirtualMachinesPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  33. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +221 -56
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  38. package/package.json +34 -34
@@ -1,410 +1,342 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { BackupGatewayServiceException as __BaseException } from "./BackupGatewayServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- ErrorCode: string | undefined;
9
- Message?: string;
10
-
11
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
- }
13
- export interface AssociateGatewayToServerInput {
14
-
15
- GatewayArn: string | undefined;
16
-
17
- ServerArn: string | undefined;
18
- }
19
- export interface AssociateGatewayToServerOutput {
20
-
21
- GatewayArn?: string;
22
- }
23
-
24
- export declare class ConflictException extends __BaseException {
25
- readonly name: "ConflictException";
26
- readonly $fault: "client";
27
-
28
- ErrorCode: string | undefined;
29
- Message?: string;
30
-
31
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
32
- }
33
-
34
- export declare class InternalServerException extends __BaseException {
35
- readonly name: "InternalServerException";
36
- readonly $fault: "server";
37
-
38
- ErrorCode?: string;
39
- Message?: string;
40
-
41
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
42
- }
43
-
44
- export declare class ValidationException extends __BaseException {
45
- readonly name: "ValidationException";
46
- readonly $fault: "client";
47
-
48
- ErrorCode?: string;
49
- Message?: string;
50
-
51
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
52
- }
53
- export declare enum GatewayType {
54
- BACKUP_VM = "BACKUP_VM"
55
- }
56
-
57
- export interface Tag {
58
-
59
- Key: string | undefined;
60
-
61
- Value: string | undefined;
62
- }
63
- export interface CreateGatewayInput {
64
-
65
- ActivationKey: string | undefined;
66
-
67
- GatewayDisplayName: string | undefined;
68
-
69
- GatewayType: GatewayType | string | undefined;
70
-
71
- Tags?: Tag[];
72
- }
73
- export interface CreateGatewayOutput {
74
-
75
- GatewayArn?: string;
76
- }
77
- export interface DeleteGatewayInput {
78
-
79
- GatewayArn: string | undefined;
80
- }
81
- export interface DeleteGatewayOutput {
82
-
83
- GatewayArn?: string;
84
- }
85
-
86
- export declare class ResourceNotFoundException extends __BaseException {
87
- readonly name: "ResourceNotFoundException";
88
- readonly $fault: "client";
89
-
90
- ErrorCode?: string;
91
- Message?: string;
92
-
93
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
94
- }
95
- export interface DisassociateGatewayFromServerInput {
96
-
97
- GatewayArn: string | undefined;
98
- }
99
- export interface DisassociateGatewayFromServerOutput {
100
-
101
- GatewayArn?: string;
102
- }
103
- export interface GetGatewayInput {
104
-
105
- GatewayArn: string | undefined;
106
- }
107
-
108
- export interface GatewayDetails {
109
-
110
- GatewayArn?: string;
111
-
112
- GatewayDisplayName?: string;
113
-
114
- GatewayType?: GatewayType | string;
115
-
116
- HypervisorId?: string;
117
-
118
- LastSeenTime?: Date;
119
-
120
- NextUpdateAvailabilityTime?: Date;
121
-
122
- VpcEndpoint?: string;
123
- }
124
- export interface GetGatewayOutput {
125
-
126
- Gateway?: GatewayDetails;
127
- }
128
- export interface ListGatewaysInput {
129
-
130
- MaxResults?: number;
131
-
132
- NextToken?: string;
133
- }
134
-
135
- export interface Gateway {
136
-
137
- GatewayArn?: string;
138
-
139
- GatewayDisplayName?: string;
140
-
141
- GatewayType?: GatewayType | string;
142
-
143
- HypervisorId?: string;
144
-
145
- LastSeenTime?: Date;
146
- }
147
- export interface ListGatewaysOutput {
148
-
149
- Gateways?: Gateway[];
150
-
151
- NextToken?: string;
152
- }
153
- export interface PutMaintenanceStartTimeInput {
154
-
155
- GatewayArn: string | undefined;
156
-
157
- HourOfDay: number | undefined;
158
-
159
- MinuteOfHour: number | undefined;
160
-
161
- DayOfWeek?: number;
162
-
163
- DayOfMonth?: number;
164
- }
165
- export interface PutMaintenanceStartTimeOutput {
166
-
167
- GatewayArn?: string;
168
- }
169
- export interface TestHypervisorConfigurationInput {
170
-
171
- GatewayArn: string | undefined;
172
-
173
- Host: string | undefined;
174
-
175
- Username?: string;
176
-
177
- Password?: string;
178
- }
179
- export interface TestHypervisorConfigurationOutput {
180
- }
181
- export interface UpdateGatewayInformationInput {
182
-
183
- GatewayArn: string | undefined;
184
-
185
- GatewayDisplayName?: string;
186
- }
187
- export interface UpdateGatewayInformationOutput {
188
-
189
- GatewayArn?: string;
190
- }
191
- export interface UpdateGatewaySoftwareNowInput {
192
-
193
- GatewayArn: string | undefined;
194
- }
195
- export interface UpdateGatewaySoftwareNowOutput {
196
-
197
- GatewayArn?: string;
198
- }
199
- export interface DeleteHypervisorInput {
200
-
201
- HypervisorArn: string | undefined;
202
- }
203
- export interface DeleteHypervisorOutput {
204
-
205
- HypervisorArn?: string;
206
- }
207
- export interface ImportHypervisorConfigurationInput {
208
-
209
- Name: string | undefined;
210
-
211
- Host: string | undefined;
212
-
213
- Username?: string;
214
-
215
- Password?: string;
216
-
217
- KmsKeyArn?: string;
218
-
219
- Tags?: Tag[];
220
- }
221
- export interface ImportHypervisorConfigurationOutput {
222
-
223
- HypervisorArn?: string;
224
- }
225
- export interface ListHypervisorsInput {
226
-
227
- MaxResults?: number;
228
-
229
- NextToken?: string;
230
- }
231
- export declare enum HypervisorState {
232
- ERROR = "ERROR",
233
- OFFLINE = "OFFLINE",
234
- ONLINE = "ONLINE",
235
- PENDING = "PENDING"
236
- }
237
-
238
- export interface Hypervisor {
239
-
240
- Host?: string;
241
-
242
- HypervisorArn?: string;
243
-
244
- KmsKeyArn?: string;
245
-
246
- Name?: string;
247
-
248
- State?: HypervisorState | string;
249
- }
250
- export interface ListHypervisorsOutput {
251
-
252
- Hypervisors?: Hypervisor[];
253
-
254
- NextToken?: string;
255
- }
256
- export interface UpdateHypervisorInput {
257
-
258
- HypervisorArn: string | undefined;
259
-
260
- Host?: string;
261
-
262
- Username?: string;
263
-
264
- Password?: string;
265
-
266
- Name?: string;
267
- }
268
- export interface UpdateHypervisorOutput {
269
-
270
- HypervisorArn?: string;
271
- }
272
- export interface ListTagsForResourceInput {
273
-
274
- ResourceArn: string | undefined;
275
- }
276
- export interface ListTagsForResourceOutput {
277
-
278
- ResourceArn?: string;
279
-
280
- Tags?: Tag[];
281
- }
282
- export interface ListVirtualMachinesInput {
283
-
284
- MaxResults?: number;
285
-
286
- NextToken?: string;
287
- }
288
-
289
- export interface VirtualMachine {
290
-
291
- HostName?: string;
292
-
293
- HypervisorId?: string;
294
-
295
- Name?: string;
296
-
297
- Path?: string;
298
-
299
- ResourceArn?: string;
300
-
301
- LastBackupDate?: Date;
302
- }
303
- export interface ListVirtualMachinesOutput {
304
-
305
- VirtualMachines?: VirtualMachine[];
306
-
307
- NextToken?: string;
308
- }
309
- export interface TagResourceInput {
310
-
311
- ResourceARN: string | undefined;
312
-
313
- Tags: Tag[] | undefined;
314
- }
315
- export interface TagResourceOutput {
316
-
317
- ResourceARN?: string;
318
- }
319
- export interface UntagResourceInput {
320
-
321
- ResourceARN: string | undefined;
322
-
323
- TagKeys: string[] | undefined;
324
- }
325
- export interface UntagResourceOutput {
326
-
327
- ResourceARN?: string;
328
- }
329
-
330
- export declare const AssociateGatewayToServerInputFilterSensitiveLog: (obj: AssociateGatewayToServerInput) => any;
331
-
332
- export declare const AssociateGatewayToServerOutputFilterSensitiveLog: (obj: AssociateGatewayToServerOutput) => any;
333
-
334
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
335
-
336
- export declare const CreateGatewayInputFilterSensitiveLog: (obj: CreateGatewayInput) => any;
337
-
338
- export declare const CreateGatewayOutputFilterSensitiveLog: (obj: CreateGatewayOutput) => any;
339
-
340
- export declare const DeleteGatewayInputFilterSensitiveLog: (obj: DeleteGatewayInput) => any;
341
-
342
- export declare const DeleteGatewayOutputFilterSensitiveLog: (obj: DeleteGatewayOutput) => any;
343
-
344
- export declare const DisassociateGatewayFromServerInputFilterSensitiveLog: (obj: DisassociateGatewayFromServerInput) => any;
345
-
346
- export declare const DisassociateGatewayFromServerOutputFilterSensitiveLog: (obj: DisassociateGatewayFromServerOutput) => any;
347
-
348
- export declare const GetGatewayInputFilterSensitiveLog: (obj: GetGatewayInput) => any;
349
-
350
- export declare const GatewayDetailsFilterSensitiveLog: (obj: GatewayDetails) => any;
351
-
352
- export declare const GetGatewayOutputFilterSensitiveLog: (obj: GetGatewayOutput) => any;
353
-
354
- export declare const ListGatewaysInputFilterSensitiveLog: (obj: ListGatewaysInput) => any;
355
-
356
- export declare const GatewayFilterSensitiveLog: (obj: Gateway) => any;
357
-
358
- export declare const ListGatewaysOutputFilterSensitiveLog: (obj: ListGatewaysOutput) => any;
359
-
360
- export declare const PutMaintenanceStartTimeInputFilterSensitiveLog: (obj: PutMaintenanceStartTimeInput) => any;
361
-
362
- export declare const PutMaintenanceStartTimeOutputFilterSensitiveLog: (obj: PutMaintenanceStartTimeOutput) => any;
363
-
364
- export declare const TestHypervisorConfigurationInputFilterSensitiveLog: (obj: TestHypervisorConfigurationInput) => any;
365
-
366
- export declare const TestHypervisorConfigurationOutputFilterSensitiveLog: (obj: TestHypervisorConfigurationOutput) => any;
367
-
368
- export declare const UpdateGatewayInformationInputFilterSensitiveLog: (obj: UpdateGatewayInformationInput) => any;
369
-
370
- export declare const UpdateGatewayInformationOutputFilterSensitiveLog: (obj: UpdateGatewayInformationOutput) => any;
371
-
372
- export declare const UpdateGatewaySoftwareNowInputFilterSensitiveLog: (obj: UpdateGatewaySoftwareNowInput) => any;
373
-
374
- export declare const UpdateGatewaySoftwareNowOutputFilterSensitiveLog: (obj: UpdateGatewaySoftwareNowOutput) => any;
375
-
376
- export declare const DeleteHypervisorInputFilterSensitiveLog: (obj: DeleteHypervisorInput) => any;
377
-
378
- export declare const DeleteHypervisorOutputFilterSensitiveLog: (obj: DeleteHypervisorOutput) => any;
379
-
380
- export declare const ImportHypervisorConfigurationInputFilterSensitiveLog: (obj: ImportHypervisorConfigurationInput) => any;
381
-
382
- export declare const ImportHypervisorConfigurationOutputFilterSensitiveLog: (obj: ImportHypervisorConfigurationOutput) => any;
383
-
384
- export declare const ListHypervisorsInputFilterSensitiveLog: (obj: ListHypervisorsInput) => any;
385
-
386
- export declare const HypervisorFilterSensitiveLog: (obj: Hypervisor) => any;
387
-
388
- export declare const ListHypervisorsOutputFilterSensitiveLog: (obj: ListHypervisorsOutput) => any;
389
-
390
- export declare const UpdateHypervisorInputFilterSensitiveLog: (obj: UpdateHypervisorInput) => any;
391
-
392
- export declare const UpdateHypervisorOutputFilterSensitiveLog: (obj: UpdateHypervisorOutput) => any;
393
-
394
- export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
395
-
396
- export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
397
-
398
- export declare const ListVirtualMachinesInputFilterSensitiveLog: (obj: ListVirtualMachinesInput) => any;
399
-
400
- export declare const VirtualMachineFilterSensitiveLog: (obj: VirtualMachine) => any;
401
-
402
- export declare const ListVirtualMachinesOutputFilterSensitiveLog: (obj: ListVirtualMachinesOutput) => any;
403
-
404
- export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
405
-
406
- export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
407
-
408
- export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
409
-
410
- export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { BackupGatewayServiceException as __BaseException } from "./BackupGatewayServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ ErrorCode: string | undefined;
7
+ Message?: string;
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export interface AssociateGatewayToServerInput {
13
+ GatewayArn: string | undefined;
14
+ ServerArn: string | undefined;
15
+ }
16
+ export interface AssociateGatewayToServerOutput {
17
+ GatewayArn?: string;
18
+ }
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ ErrorCode: string | undefined;
23
+ Message?: string;
24
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
25
+ }
26
+ export declare class InternalServerException extends __BaseException {
27
+ readonly name: "InternalServerException";
28
+ readonly $fault: "server";
29
+ ErrorCode?: string;
30
+ Message?: string;
31
+ constructor(
32
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ValidationException extends __BaseException {
36
+ readonly name: "ValidationException";
37
+ readonly $fault: "client";
38
+ ErrorCode?: string;
39
+ Message?: string;
40
+ constructor(
41
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
42
+ );
43
+ }
44
+ export declare enum GatewayType {
45
+ BACKUP_VM = "BACKUP_VM",
46
+ }
47
+ export interface Tag {
48
+ Key: string | undefined;
49
+ Value: string | undefined;
50
+ }
51
+ export interface CreateGatewayInput {
52
+ ActivationKey: string | undefined;
53
+ GatewayDisplayName: string | undefined;
54
+ GatewayType: GatewayType | string | undefined;
55
+ Tags?: Tag[];
56
+ }
57
+ export interface CreateGatewayOutput {
58
+ GatewayArn?: string;
59
+ }
60
+ export interface DeleteGatewayInput {
61
+ GatewayArn: string | undefined;
62
+ }
63
+ export interface DeleteGatewayOutput {
64
+ GatewayArn?: string;
65
+ }
66
+ export declare class ResourceNotFoundException extends __BaseException {
67
+ readonly name: "ResourceNotFoundException";
68
+ readonly $fault: "client";
69
+ ErrorCode?: string;
70
+ Message?: string;
71
+ constructor(
72
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
73
+ );
74
+ }
75
+ export interface DisassociateGatewayFromServerInput {
76
+ GatewayArn: string | undefined;
77
+ }
78
+ export interface DisassociateGatewayFromServerOutput {
79
+ GatewayArn?: string;
80
+ }
81
+ export interface GetGatewayInput {
82
+ GatewayArn: string | undefined;
83
+ }
84
+ export interface GatewayDetails {
85
+ GatewayArn?: string;
86
+ GatewayDisplayName?: string;
87
+ GatewayType?: GatewayType | string;
88
+ HypervisorId?: string;
89
+ LastSeenTime?: Date;
90
+ NextUpdateAvailabilityTime?: Date;
91
+ VpcEndpoint?: string;
92
+ }
93
+ export interface GetGatewayOutput {
94
+ Gateway?: GatewayDetails;
95
+ }
96
+ export interface ListGatewaysInput {
97
+ MaxResults?: number;
98
+ NextToken?: string;
99
+ }
100
+ export interface Gateway {
101
+ GatewayArn?: string;
102
+ GatewayDisplayName?: string;
103
+ GatewayType?: GatewayType | string;
104
+ HypervisorId?: string;
105
+ LastSeenTime?: Date;
106
+ }
107
+ export interface ListGatewaysOutput {
108
+ Gateways?: Gateway[];
109
+ NextToken?: string;
110
+ }
111
+ export interface PutMaintenanceStartTimeInput {
112
+ GatewayArn: string | undefined;
113
+ HourOfDay: number | undefined;
114
+ MinuteOfHour: number | undefined;
115
+ DayOfWeek?: number;
116
+ DayOfMonth?: number;
117
+ }
118
+ export interface PutMaintenanceStartTimeOutput {
119
+ GatewayArn?: string;
120
+ }
121
+ export interface TestHypervisorConfigurationInput {
122
+ GatewayArn: string | undefined;
123
+ Host: string | undefined;
124
+ Username?: string;
125
+ Password?: string;
126
+ }
127
+ export interface TestHypervisorConfigurationOutput {}
128
+ export interface UpdateGatewayInformationInput {
129
+ GatewayArn: string | undefined;
130
+ GatewayDisplayName?: string;
131
+ }
132
+ export interface UpdateGatewayInformationOutput {
133
+ GatewayArn?: string;
134
+ }
135
+ export interface UpdateGatewaySoftwareNowInput {
136
+ GatewayArn: string | undefined;
137
+ }
138
+ export interface UpdateGatewaySoftwareNowOutput {
139
+ GatewayArn?: string;
140
+ }
141
+ export interface DeleteHypervisorInput {
142
+ HypervisorArn: string | undefined;
143
+ }
144
+ export interface DeleteHypervisorOutput {
145
+ HypervisorArn?: string;
146
+ }
147
+ export interface ImportHypervisorConfigurationInput {
148
+ Name: string | undefined;
149
+ Host: string | undefined;
150
+ Username?: string;
151
+ Password?: string;
152
+ KmsKeyArn?: string;
153
+ Tags?: Tag[];
154
+ }
155
+ export interface ImportHypervisorConfigurationOutput {
156
+ HypervisorArn?: string;
157
+ }
158
+ export interface ListHypervisorsInput {
159
+ MaxResults?: number;
160
+ NextToken?: string;
161
+ }
162
+ export declare enum HypervisorState {
163
+ ERROR = "ERROR",
164
+ OFFLINE = "OFFLINE",
165
+ ONLINE = "ONLINE",
166
+ PENDING = "PENDING",
167
+ }
168
+ export interface Hypervisor {
169
+ Host?: string;
170
+ HypervisorArn?: string;
171
+ KmsKeyArn?: string;
172
+ Name?: string;
173
+ State?: HypervisorState | string;
174
+ }
175
+ export interface ListHypervisorsOutput {
176
+ Hypervisors?: Hypervisor[];
177
+ NextToken?: string;
178
+ }
179
+ export interface UpdateHypervisorInput {
180
+ HypervisorArn: string | undefined;
181
+ Host?: string;
182
+ Username?: string;
183
+ Password?: string;
184
+ Name?: string;
185
+ }
186
+ export interface UpdateHypervisorOutput {
187
+ HypervisorArn?: string;
188
+ }
189
+ export interface ListTagsForResourceInput {
190
+ ResourceArn: string | undefined;
191
+ }
192
+ export interface ListTagsForResourceOutput {
193
+ ResourceArn?: string;
194
+ Tags?: Tag[];
195
+ }
196
+ export interface ListVirtualMachinesInput {
197
+ MaxResults?: number;
198
+ NextToken?: string;
199
+ }
200
+ export interface VirtualMachine {
201
+ HostName?: string;
202
+ HypervisorId?: string;
203
+ Name?: string;
204
+ Path?: string;
205
+ ResourceArn?: string;
206
+ LastBackupDate?: Date;
207
+ }
208
+ export interface ListVirtualMachinesOutput {
209
+ VirtualMachines?: VirtualMachine[];
210
+ NextToken?: string;
211
+ }
212
+ export interface TagResourceInput {
213
+ ResourceARN: string | undefined;
214
+ Tags: Tag[] | undefined;
215
+ }
216
+ export interface TagResourceOutput {
217
+ ResourceARN?: string;
218
+ }
219
+ export interface UntagResourceInput {
220
+ ResourceARN: string | undefined;
221
+ TagKeys: string[] | undefined;
222
+ }
223
+ export interface UntagResourceOutput {
224
+ ResourceARN?: string;
225
+ }
226
+ export declare const AssociateGatewayToServerInputFilterSensitiveLog: (
227
+ obj: AssociateGatewayToServerInput
228
+ ) => any;
229
+ export declare const AssociateGatewayToServerOutputFilterSensitiveLog: (
230
+ obj: AssociateGatewayToServerOutput
231
+ ) => any;
232
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
233
+ export declare const CreateGatewayInputFilterSensitiveLog: (
234
+ obj: CreateGatewayInput
235
+ ) => any;
236
+ export declare const CreateGatewayOutputFilterSensitiveLog: (
237
+ obj: CreateGatewayOutput
238
+ ) => any;
239
+ export declare const DeleteGatewayInputFilterSensitiveLog: (
240
+ obj: DeleteGatewayInput
241
+ ) => any;
242
+ export declare const DeleteGatewayOutputFilterSensitiveLog: (
243
+ obj: DeleteGatewayOutput
244
+ ) => any;
245
+ export declare const DisassociateGatewayFromServerInputFilterSensitiveLog: (
246
+ obj: DisassociateGatewayFromServerInput
247
+ ) => any;
248
+ export declare const DisassociateGatewayFromServerOutputFilterSensitiveLog: (
249
+ obj: DisassociateGatewayFromServerOutput
250
+ ) => any;
251
+ export declare const GetGatewayInputFilterSensitiveLog: (
252
+ obj: GetGatewayInput
253
+ ) => any;
254
+ export declare const GatewayDetailsFilterSensitiveLog: (
255
+ obj: GatewayDetails
256
+ ) => any;
257
+ export declare const GetGatewayOutputFilterSensitiveLog: (
258
+ obj: GetGatewayOutput
259
+ ) => any;
260
+ export declare const ListGatewaysInputFilterSensitiveLog: (
261
+ obj: ListGatewaysInput
262
+ ) => any;
263
+ export declare const GatewayFilterSensitiveLog: (obj: Gateway) => any;
264
+ export declare const ListGatewaysOutputFilterSensitiveLog: (
265
+ obj: ListGatewaysOutput
266
+ ) => any;
267
+ export declare const PutMaintenanceStartTimeInputFilterSensitiveLog: (
268
+ obj: PutMaintenanceStartTimeInput
269
+ ) => any;
270
+ export declare const PutMaintenanceStartTimeOutputFilterSensitiveLog: (
271
+ obj: PutMaintenanceStartTimeOutput
272
+ ) => any;
273
+ export declare const TestHypervisorConfigurationInputFilterSensitiveLog: (
274
+ obj: TestHypervisorConfigurationInput
275
+ ) => any;
276
+ export declare const TestHypervisorConfigurationOutputFilterSensitiveLog: (
277
+ obj: TestHypervisorConfigurationOutput
278
+ ) => any;
279
+ export declare const UpdateGatewayInformationInputFilterSensitiveLog: (
280
+ obj: UpdateGatewayInformationInput
281
+ ) => any;
282
+ export declare const UpdateGatewayInformationOutputFilterSensitiveLog: (
283
+ obj: UpdateGatewayInformationOutput
284
+ ) => any;
285
+ export declare const UpdateGatewaySoftwareNowInputFilterSensitiveLog: (
286
+ obj: UpdateGatewaySoftwareNowInput
287
+ ) => any;
288
+ export declare const UpdateGatewaySoftwareNowOutputFilterSensitiveLog: (
289
+ obj: UpdateGatewaySoftwareNowOutput
290
+ ) => any;
291
+ export declare const DeleteHypervisorInputFilterSensitiveLog: (
292
+ obj: DeleteHypervisorInput
293
+ ) => any;
294
+ export declare const DeleteHypervisorOutputFilterSensitiveLog: (
295
+ obj: DeleteHypervisorOutput
296
+ ) => any;
297
+ export declare const ImportHypervisorConfigurationInputFilterSensitiveLog: (
298
+ obj: ImportHypervisorConfigurationInput
299
+ ) => any;
300
+ export declare const ImportHypervisorConfigurationOutputFilterSensitiveLog: (
301
+ obj: ImportHypervisorConfigurationOutput
302
+ ) => any;
303
+ export declare const ListHypervisorsInputFilterSensitiveLog: (
304
+ obj: ListHypervisorsInput
305
+ ) => any;
306
+ export declare const HypervisorFilterSensitiveLog: (obj: Hypervisor) => any;
307
+ export declare const ListHypervisorsOutputFilterSensitiveLog: (
308
+ obj: ListHypervisorsOutput
309
+ ) => any;
310
+ export declare const UpdateHypervisorInputFilterSensitiveLog: (
311
+ obj: UpdateHypervisorInput
312
+ ) => any;
313
+ export declare const UpdateHypervisorOutputFilterSensitiveLog: (
314
+ obj: UpdateHypervisorOutput
315
+ ) => any;
316
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (
317
+ obj: ListTagsForResourceInput
318
+ ) => any;
319
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (
320
+ obj: ListTagsForResourceOutput
321
+ ) => any;
322
+ export declare const ListVirtualMachinesInputFilterSensitiveLog: (
323
+ obj: ListVirtualMachinesInput
324
+ ) => any;
325
+ export declare const VirtualMachineFilterSensitiveLog: (
326
+ obj: VirtualMachine
327
+ ) => any;
328
+ export declare const ListVirtualMachinesOutputFilterSensitiveLog: (
329
+ obj: ListVirtualMachinesOutput
330
+ ) => any;
331
+ export declare const TagResourceInputFilterSensitiveLog: (
332
+ obj: TagResourceInput
333
+ ) => any;
334
+ export declare const TagResourceOutputFilterSensitiveLog: (
335
+ obj: TagResourceOutput
336
+ ) => any;
337
+ export declare const UntagResourceInputFilterSensitiveLog: (
338
+ obj: UntagResourceInput
339
+ ) => any;
340
+ export declare const UntagResourceOutputFilterSensitiveLog: (
341
+ obj: UntagResourceOutput
342
+ ) => any;