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