@aws-sdk/client-backup-gateway 3.128.0 → 3.137.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.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/commands/AssociateGatewayToServerCommand.js +2 -2
- package/dist-cjs/commands/CreateGatewayCommand.js +2 -2
- package/dist-cjs/commands/DeleteGatewayCommand.js +2 -2
- package/dist-cjs/commands/DeleteHypervisorCommand.js +2 -2
- package/dist-cjs/commands/DisassociateGatewayFromServerCommand.js +2 -2
- package/dist-cjs/commands/GetGatewayCommand.js +2 -2
- package/dist-cjs/commands/ImportHypervisorConfigurationCommand.js +2 -2
- package/dist-cjs/commands/ListGatewaysCommand.js +2 -2
- package/dist-cjs/commands/ListHypervisorsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListVirtualMachinesCommand.js +2 -2
- package/dist-cjs/commands/PutMaintenanceStartTimeCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/TestHypervisorConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateGatewayInformationCommand.js +2 -2
- package/dist-cjs/commands/UpdateGatewaySoftwareNowCommand.js +2 -2
- package/dist-cjs/commands/UpdateHypervisorCommand.js +2 -2
- package/dist-cjs/models/models_0.js +171 -253
- package/dist-cjs/protocols/Aws_json1_0.js +3 -0
- package/dist-es/commands/AssociateGatewayToServerCommand.js +3 -3
- package/dist-es/commands/CreateGatewayCommand.js +3 -3
- package/dist-es/commands/DeleteGatewayCommand.js +3 -3
- package/dist-es/commands/DeleteHypervisorCommand.js +3 -3
- package/dist-es/commands/DisassociateGatewayFromServerCommand.js +3 -3
- package/dist-es/commands/GetGatewayCommand.js +3 -3
- package/dist-es/commands/ImportHypervisorConfigurationCommand.js +3 -3
- package/dist-es/commands/ListGatewaysCommand.js +3 -3
- package/dist-es/commands/ListHypervisorsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListVirtualMachinesCommand.js +3 -3
- package/dist-es/commands/PutMaintenanceStartTimeCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/TestHypervisorConfigurationCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateGatewayInformationCommand.js +3 -3
- package/dist-es/commands/UpdateGatewaySoftwareNowCommand.js +3 -3
- package/dist-es/commands/UpdateHypervisorCommand.js +3 -3
- package/dist-es/models/models_0.js +41 -164
- package/dist-es/protocols/Aws_json1_0.js +3 -0
- package/dist-types/models/models_0.d.ts +164 -246
- package/dist-types/ts3.4/models/models_0.d.ts +82 -164
- package/package.json +9 -9
|
@@ -16,18 +16,10 @@ export interface AssociateGatewayToServerInput {
|
|
|
16
16
|
|
|
17
17
|
ServerArn: string | undefined;
|
|
18
18
|
}
|
|
19
|
-
export declare namespace AssociateGatewayToServerInput {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: AssociateGatewayToServerInput) => any;
|
|
22
|
-
}
|
|
23
19
|
export interface AssociateGatewayToServerOutput {
|
|
24
20
|
|
|
25
21
|
GatewayArn?: string;
|
|
26
22
|
}
|
|
27
|
-
export declare namespace AssociateGatewayToServerOutput {
|
|
28
|
-
|
|
29
|
-
const filterSensitiveLog: (obj: AssociateGatewayToServerOutput) => any;
|
|
30
|
-
}
|
|
31
23
|
|
|
32
24
|
export declare class ConflictException extends __BaseException {
|
|
33
25
|
readonly name: "ConflictException";
|
|
@@ -68,10 +60,6 @@ export interface Tag {
|
|
|
68
60
|
|
|
69
61
|
Value: string | undefined;
|
|
70
62
|
}
|
|
71
|
-
export declare namespace Tag {
|
|
72
|
-
|
|
73
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
74
|
-
}
|
|
75
63
|
export interface CreateGatewayInput {
|
|
76
64
|
|
|
77
65
|
ActivationKey: string | undefined;
|
|
@@ -82,34 +70,18 @@ export interface CreateGatewayInput {
|
|
|
82
70
|
|
|
83
71
|
Tags?: Tag[];
|
|
84
72
|
}
|
|
85
|
-
export declare namespace CreateGatewayInput {
|
|
86
|
-
|
|
87
|
-
const filterSensitiveLog: (obj: CreateGatewayInput) => any;
|
|
88
|
-
}
|
|
89
73
|
export interface CreateGatewayOutput {
|
|
90
74
|
|
|
91
75
|
GatewayArn?: string;
|
|
92
76
|
}
|
|
93
|
-
export declare namespace CreateGatewayOutput {
|
|
94
|
-
|
|
95
|
-
const filterSensitiveLog: (obj: CreateGatewayOutput) => any;
|
|
96
|
-
}
|
|
97
77
|
export interface DeleteGatewayInput {
|
|
98
78
|
|
|
99
79
|
GatewayArn: string | undefined;
|
|
100
80
|
}
|
|
101
|
-
export declare namespace DeleteGatewayInput {
|
|
102
|
-
|
|
103
|
-
const filterSensitiveLog: (obj: DeleteGatewayInput) => any;
|
|
104
|
-
}
|
|
105
81
|
export interface DeleteGatewayOutput {
|
|
106
82
|
|
|
107
83
|
GatewayArn?: string;
|
|
108
84
|
}
|
|
109
|
-
export declare namespace DeleteGatewayOutput {
|
|
110
|
-
|
|
111
|
-
const filterSensitiveLog: (obj: DeleteGatewayOutput) => any;
|
|
112
|
-
}
|
|
113
85
|
|
|
114
86
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
115
87
|
readonly name: "ResourceNotFoundException";
|
|
@@ -124,26 +96,14 @@ export interface DisassociateGatewayFromServerInput {
|
|
|
124
96
|
|
|
125
97
|
GatewayArn: string | undefined;
|
|
126
98
|
}
|
|
127
|
-
export declare namespace DisassociateGatewayFromServerInput {
|
|
128
|
-
|
|
129
|
-
const filterSensitiveLog: (obj: DisassociateGatewayFromServerInput) => any;
|
|
130
|
-
}
|
|
131
99
|
export interface DisassociateGatewayFromServerOutput {
|
|
132
100
|
|
|
133
101
|
GatewayArn?: string;
|
|
134
102
|
}
|
|
135
|
-
export declare namespace DisassociateGatewayFromServerOutput {
|
|
136
|
-
|
|
137
|
-
const filterSensitiveLog: (obj: DisassociateGatewayFromServerOutput) => any;
|
|
138
|
-
}
|
|
139
103
|
export interface GetGatewayInput {
|
|
140
104
|
|
|
141
105
|
GatewayArn: string | undefined;
|
|
142
106
|
}
|
|
143
|
-
export declare namespace GetGatewayInput {
|
|
144
|
-
|
|
145
|
-
const filterSensitiveLog: (obj: GetGatewayInput) => any;
|
|
146
|
-
}
|
|
147
107
|
|
|
148
108
|
export interface GatewayDetails {
|
|
149
109
|
|
|
@@ -161,28 +121,16 @@ export interface GatewayDetails {
|
|
|
161
121
|
|
|
162
122
|
VpcEndpoint?: string;
|
|
163
123
|
}
|
|
164
|
-
export declare namespace GatewayDetails {
|
|
165
|
-
|
|
166
|
-
const filterSensitiveLog: (obj: GatewayDetails) => any;
|
|
167
|
-
}
|
|
168
124
|
export interface GetGatewayOutput {
|
|
169
125
|
|
|
170
126
|
Gateway?: GatewayDetails;
|
|
171
127
|
}
|
|
172
|
-
export declare namespace GetGatewayOutput {
|
|
173
|
-
|
|
174
|
-
const filterSensitiveLog: (obj: GetGatewayOutput) => any;
|
|
175
|
-
}
|
|
176
128
|
export interface ListGatewaysInput {
|
|
177
129
|
|
|
178
130
|
MaxResults?: number;
|
|
179
131
|
|
|
180
132
|
NextToken?: string;
|
|
181
133
|
}
|
|
182
|
-
export declare namespace ListGatewaysInput {
|
|
183
|
-
|
|
184
|
-
const filterSensitiveLog: (obj: ListGatewaysInput) => any;
|
|
185
|
-
}
|
|
186
134
|
|
|
187
135
|
export interface Gateway {
|
|
188
136
|
|
|
@@ -196,20 +144,12 @@ export interface Gateway {
|
|
|
196
144
|
|
|
197
145
|
LastSeenTime?: Date;
|
|
198
146
|
}
|
|
199
|
-
export declare namespace Gateway {
|
|
200
|
-
|
|
201
|
-
const filterSensitiveLog: (obj: Gateway) => any;
|
|
202
|
-
}
|
|
203
147
|
export interface ListGatewaysOutput {
|
|
204
148
|
|
|
205
149
|
Gateways?: Gateway[];
|
|
206
150
|
|
|
207
151
|
NextToken?: string;
|
|
208
152
|
}
|
|
209
|
-
export declare namespace ListGatewaysOutput {
|
|
210
|
-
|
|
211
|
-
const filterSensitiveLog: (obj: ListGatewaysOutput) => any;
|
|
212
|
-
}
|
|
213
153
|
export interface PutMaintenanceStartTimeInput {
|
|
214
154
|
|
|
215
155
|
GatewayArn: string | undefined;
|
|
@@ -222,18 +162,10 @@ export interface PutMaintenanceStartTimeInput {
|
|
|
222
162
|
|
|
223
163
|
DayOfMonth?: number;
|
|
224
164
|
}
|
|
225
|
-
export declare namespace PutMaintenanceStartTimeInput {
|
|
226
|
-
|
|
227
|
-
const filterSensitiveLog: (obj: PutMaintenanceStartTimeInput) => any;
|
|
228
|
-
}
|
|
229
165
|
export interface PutMaintenanceStartTimeOutput {
|
|
230
166
|
|
|
231
167
|
GatewayArn?: string;
|
|
232
168
|
}
|
|
233
|
-
export declare namespace PutMaintenanceStartTimeOutput {
|
|
234
|
-
|
|
235
|
-
const filterSensitiveLog: (obj: PutMaintenanceStartTimeOutput) => any;
|
|
236
|
-
}
|
|
237
169
|
export interface TestHypervisorConfigurationInput {
|
|
238
170
|
|
|
239
171
|
GatewayArn: string | undefined;
|
|
@@ -244,66 +176,34 @@ export interface TestHypervisorConfigurationInput {
|
|
|
244
176
|
|
|
245
177
|
Password?: string;
|
|
246
178
|
}
|
|
247
|
-
export declare namespace TestHypervisorConfigurationInput {
|
|
248
|
-
|
|
249
|
-
const filterSensitiveLog: (obj: TestHypervisorConfigurationInput) => any;
|
|
250
|
-
}
|
|
251
179
|
export interface TestHypervisorConfigurationOutput {
|
|
252
180
|
}
|
|
253
|
-
export declare namespace TestHypervisorConfigurationOutput {
|
|
254
|
-
|
|
255
|
-
const filterSensitiveLog: (obj: TestHypervisorConfigurationOutput) => any;
|
|
256
|
-
}
|
|
257
181
|
export interface UpdateGatewayInformationInput {
|
|
258
182
|
|
|
259
183
|
GatewayArn: string | undefined;
|
|
260
184
|
|
|
261
185
|
GatewayDisplayName?: string;
|
|
262
186
|
}
|
|
263
|
-
export declare namespace UpdateGatewayInformationInput {
|
|
264
|
-
|
|
265
|
-
const filterSensitiveLog: (obj: UpdateGatewayInformationInput) => any;
|
|
266
|
-
}
|
|
267
187
|
export interface UpdateGatewayInformationOutput {
|
|
268
188
|
|
|
269
189
|
GatewayArn?: string;
|
|
270
190
|
}
|
|
271
|
-
export declare namespace UpdateGatewayInformationOutput {
|
|
272
|
-
|
|
273
|
-
const filterSensitiveLog: (obj: UpdateGatewayInformationOutput) => any;
|
|
274
|
-
}
|
|
275
191
|
export interface UpdateGatewaySoftwareNowInput {
|
|
276
192
|
|
|
277
193
|
GatewayArn: string | undefined;
|
|
278
194
|
}
|
|
279
|
-
export declare namespace UpdateGatewaySoftwareNowInput {
|
|
280
|
-
|
|
281
|
-
const filterSensitiveLog: (obj: UpdateGatewaySoftwareNowInput) => any;
|
|
282
|
-
}
|
|
283
195
|
export interface UpdateGatewaySoftwareNowOutput {
|
|
284
196
|
|
|
285
197
|
GatewayArn?: string;
|
|
286
198
|
}
|
|
287
|
-
export declare namespace UpdateGatewaySoftwareNowOutput {
|
|
288
|
-
|
|
289
|
-
const filterSensitiveLog: (obj: UpdateGatewaySoftwareNowOutput) => any;
|
|
290
|
-
}
|
|
291
199
|
export interface DeleteHypervisorInput {
|
|
292
200
|
|
|
293
201
|
HypervisorArn: string | undefined;
|
|
294
202
|
}
|
|
295
|
-
export declare namespace DeleteHypervisorInput {
|
|
296
|
-
|
|
297
|
-
const filterSensitiveLog: (obj: DeleteHypervisorInput) => any;
|
|
298
|
-
}
|
|
299
203
|
export interface DeleteHypervisorOutput {
|
|
300
204
|
|
|
301
205
|
HypervisorArn?: string;
|
|
302
206
|
}
|
|
303
|
-
export declare namespace DeleteHypervisorOutput {
|
|
304
|
-
|
|
305
|
-
const filterSensitiveLog: (obj: DeleteHypervisorOutput) => any;
|
|
306
|
-
}
|
|
307
207
|
export interface ImportHypervisorConfigurationInput {
|
|
308
208
|
|
|
309
209
|
Name: string | undefined;
|
|
@@ -318,28 +218,16 @@ export interface ImportHypervisorConfigurationInput {
|
|
|
318
218
|
|
|
319
219
|
Tags?: Tag[];
|
|
320
220
|
}
|
|
321
|
-
export declare namespace ImportHypervisorConfigurationInput {
|
|
322
|
-
|
|
323
|
-
const filterSensitiveLog: (obj: ImportHypervisorConfigurationInput) => any;
|
|
324
|
-
}
|
|
325
221
|
export interface ImportHypervisorConfigurationOutput {
|
|
326
222
|
|
|
327
223
|
HypervisorArn?: string;
|
|
328
224
|
}
|
|
329
|
-
export declare namespace ImportHypervisorConfigurationOutput {
|
|
330
|
-
|
|
331
|
-
const filterSensitiveLog: (obj: ImportHypervisorConfigurationOutput) => any;
|
|
332
|
-
}
|
|
333
225
|
export interface ListHypervisorsInput {
|
|
334
226
|
|
|
335
227
|
MaxResults?: number;
|
|
336
228
|
|
|
337
229
|
NextToken?: string;
|
|
338
230
|
}
|
|
339
|
-
export declare namespace ListHypervisorsInput {
|
|
340
|
-
|
|
341
|
-
const filterSensitiveLog: (obj: ListHypervisorsInput) => any;
|
|
342
|
-
}
|
|
343
231
|
export declare enum HypervisorState {
|
|
344
232
|
ERROR = "ERROR",
|
|
345
233
|
OFFLINE = "OFFLINE",
|
|
@@ -359,20 +247,12 @@ export interface Hypervisor {
|
|
|
359
247
|
|
|
360
248
|
State?: HypervisorState | string;
|
|
361
249
|
}
|
|
362
|
-
export declare namespace Hypervisor {
|
|
363
|
-
|
|
364
|
-
const filterSensitiveLog: (obj: Hypervisor) => any;
|
|
365
|
-
}
|
|
366
250
|
export interface ListHypervisorsOutput {
|
|
367
251
|
|
|
368
252
|
Hypervisors?: Hypervisor[];
|
|
369
253
|
|
|
370
254
|
NextToken?: string;
|
|
371
255
|
}
|
|
372
|
-
export declare namespace ListHypervisorsOutput {
|
|
373
|
-
|
|
374
|
-
const filterSensitiveLog: (obj: ListHypervisorsOutput) => any;
|
|
375
|
-
}
|
|
376
256
|
export interface UpdateHypervisorInput {
|
|
377
257
|
|
|
378
258
|
HypervisorArn: string | undefined;
|
|
@@ -385,46 +265,26 @@ export interface UpdateHypervisorInput {
|
|
|
385
265
|
|
|
386
266
|
Name?: string;
|
|
387
267
|
}
|
|
388
|
-
export declare namespace UpdateHypervisorInput {
|
|
389
|
-
|
|
390
|
-
const filterSensitiveLog: (obj: UpdateHypervisorInput) => any;
|
|
391
|
-
}
|
|
392
268
|
export interface UpdateHypervisorOutput {
|
|
393
269
|
|
|
394
270
|
HypervisorArn?: string;
|
|
395
271
|
}
|
|
396
|
-
export declare namespace UpdateHypervisorOutput {
|
|
397
|
-
|
|
398
|
-
const filterSensitiveLog: (obj: UpdateHypervisorOutput) => any;
|
|
399
|
-
}
|
|
400
272
|
export interface ListTagsForResourceInput {
|
|
401
273
|
|
|
402
274
|
ResourceArn: string | undefined;
|
|
403
275
|
}
|
|
404
|
-
export declare namespace ListTagsForResourceInput {
|
|
405
|
-
|
|
406
|
-
const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
407
|
-
}
|
|
408
276
|
export interface ListTagsForResourceOutput {
|
|
409
277
|
|
|
410
278
|
ResourceArn?: string;
|
|
411
279
|
|
|
412
280
|
Tags?: Tag[];
|
|
413
281
|
}
|
|
414
|
-
export declare namespace ListTagsForResourceOutput {
|
|
415
|
-
|
|
416
|
-
const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
417
|
-
}
|
|
418
282
|
export interface ListVirtualMachinesInput {
|
|
419
283
|
|
|
420
284
|
MaxResults?: number;
|
|
421
285
|
|
|
422
286
|
NextToken?: string;
|
|
423
287
|
}
|
|
424
|
-
export declare namespace ListVirtualMachinesInput {
|
|
425
|
-
|
|
426
|
-
const filterSensitiveLog: (obj: ListVirtualMachinesInput) => any;
|
|
427
|
-
}
|
|
428
288
|
|
|
429
289
|
export interface VirtualMachine {
|
|
430
290
|
|
|
@@ -440,53 +300,111 @@ export interface VirtualMachine {
|
|
|
440
300
|
|
|
441
301
|
LastBackupDate?: Date;
|
|
442
302
|
}
|
|
443
|
-
export declare namespace VirtualMachine {
|
|
444
|
-
|
|
445
|
-
const filterSensitiveLog: (obj: VirtualMachine) => any;
|
|
446
|
-
}
|
|
447
303
|
export interface ListVirtualMachinesOutput {
|
|
448
304
|
|
|
449
305
|
VirtualMachines?: VirtualMachine[];
|
|
450
306
|
|
|
451
307
|
NextToken?: string;
|
|
452
308
|
}
|
|
453
|
-
export declare namespace ListVirtualMachinesOutput {
|
|
454
|
-
|
|
455
|
-
const filterSensitiveLog: (obj: ListVirtualMachinesOutput) => any;
|
|
456
|
-
}
|
|
457
309
|
export interface TagResourceInput {
|
|
458
310
|
|
|
459
311
|
ResourceARN: string | undefined;
|
|
460
312
|
|
|
461
313
|
Tags: Tag[] | undefined;
|
|
462
314
|
}
|
|
463
|
-
export declare namespace TagResourceInput {
|
|
464
|
-
|
|
465
|
-
const filterSensitiveLog: (obj: TagResourceInput) => any;
|
|
466
|
-
}
|
|
467
315
|
export interface TagResourceOutput {
|
|
468
316
|
|
|
469
317
|
ResourceARN?: string;
|
|
470
318
|
}
|
|
471
|
-
export declare namespace TagResourceOutput {
|
|
472
|
-
|
|
473
|
-
const filterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
474
|
-
}
|
|
475
319
|
export interface UntagResourceInput {
|
|
476
320
|
|
|
477
321
|
ResourceARN: string | undefined;
|
|
478
322
|
|
|
479
323
|
TagKeys: string[] | undefined;
|
|
480
324
|
}
|
|
481
|
-
export declare namespace UntagResourceInput {
|
|
482
|
-
|
|
483
|
-
const filterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
484
|
-
}
|
|
485
325
|
export interface UntagResourceOutput {
|
|
486
326
|
|
|
487
327
|
ResourceARN?: string;
|
|
488
328
|
}
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.137.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.137.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -30,21 +30,21 @@
|
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
31
|
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
32
|
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.130.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
35
|
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|