@aws-sdk/client-ebs 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CompleteSnapshotCommand.js +2 -2
- package/dist-cjs/commands/GetSnapshotBlockCommand.js +2 -2
- package/dist-cjs/commands/ListChangedBlocksCommand.js +2 -2
- package/dist-cjs/commands/ListSnapshotBlocksCommand.js +2 -2
- package/dist-cjs/commands/PutSnapshotBlockCommand.js +2 -2
- package/dist-cjs/commands/StartSnapshotCommand.js +2 -2
- package/dist-cjs/models/models_0.js +67 -97
- package/dist-cjs/protocols/Aws_restJson1.js +136 -254
- package/dist-es/commands/CompleteSnapshotCommand.js +3 -3
- package/dist-es/commands/GetSnapshotBlockCommand.js +3 -3
- package/dist-es/commands/ListChangedBlocksCommand.js +3 -3
- package/dist-es/commands/ListSnapshotBlocksCommand.js +3 -3
- package/dist-es/commands/PutSnapshotBlockCommand.js +3 -3
- package/dist-es/commands/StartSnapshotCommand.js +3 -3
- package/dist-es/models/models_0.js +15 -60
- package/dist-es/protocols/Aws_restJson1.js +160 -237
- package/dist-types/models/models_0.d.ts +60 -90
- package/dist-types/ts3.4/models/models_0.d.ts +30 -60
- package/package.json +6 -6
|
@@ -35,12 +35,6 @@ export interface Block {
|
|
|
35
35
|
*/
|
|
36
36
|
BlockToken?: string;
|
|
37
37
|
}
|
|
38
|
-
export declare namespace Block {
|
|
39
|
-
/**
|
|
40
|
-
* @internal
|
|
41
|
-
*/
|
|
42
|
-
const filterSensitiveLog: (obj: Block) => any;
|
|
43
|
-
}
|
|
44
38
|
/**
|
|
45
39
|
* <p>A block of data in an Amazon Elastic Block Store snapshot that is different from another snapshot of
|
|
46
40
|
* the same volume/snapshot lineage.</p>
|
|
@@ -62,12 +56,6 @@ export interface ChangedBlock {
|
|
|
62
56
|
*/
|
|
63
57
|
SecondBlockToken?: string;
|
|
64
58
|
}
|
|
65
|
-
export declare namespace ChangedBlock {
|
|
66
|
-
/**
|
|
67
|
-
* @internal
|
|
68
|
-
*/
|
|
69
|
-
const filterSensitiveLog: (obj: ChangedBlock) => any;
|
|
70
|
-
}
|
|
71
59
|
export declare enum ChecksumAggregationMethod {
|
|
72
60
|
CHECKSUM_AGGREGATION_LINEAR = "LINEAR"
|
|
73
61
|
}
|
|
@@ -103,12 +91,6 @@ export interface CompleteSnapshotRequest {
|
|
|
103
91
|
*/
|
|
104
92
|
ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
|
|
105
93
|
}
|
|
106
|
-
export declare namespace CompleteSnapshotRequest {
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
const filterSensitiveLog: (obj: CompleteSnapshotRequest) => any;
|
|
111
|
-
}
|
|
112
94
|
export declare enum Status {
|
|
113
95
|
COMPLETED = "completed",
|
|
114
96
|
ERROR = "error",
|
|
@@ -120,12 +102,6 @@ export interface CompleteSnapshotResponse {
|
|
|
120
102
|
*/
|
|
121
103
|
Status?: Status | string;
|
|
122
104
|
}
|
|
123
|
-
export declare namespace CompleteSnapshotResponse {
|
|
124
|
-
/**
|
|
125
|
-
* @internal
|
|
126
|
-
*/
|
|
127
|
-
const filterSensitiveLog: (obj: CompleteSnapshotResponse) => any;
|
|
128
|
-
}
|
|
129
105
|
/**
|
|
130
106
|
* <p>An internal error has occurred.</p>
|
|
131
107
|
*/
|
|
@@ -282,12 +258,6 @@ export interface GetSnapshotBlockRequest {
|
|
|
282
258
|
*/
|
|
283
259
|
BlockToken: string | undefined;
|
|
284
260
|
}
|
|
285
|
-
export declare namespace GetSnapshotBlockRequest {
|
|
286
|
-
/**
|
|
287
|
-
* @internal
|
|
288
|
-
*/
|
|
289
|
-
const filterSensitiveLog: (obj: GetSnapshotBlockRequest) => any;
|
|
290
|
-
}
|
|
291
261
|
export interface GetSnapshotBlockResponse {
|
|
292
262
|
/**
|
|
293
263
|
* <p>The size of the data in the block.</p>
|
|
@@ -306,12 +276,6 @@ export interface GetSnapshotBlockResponse {
|
|
|
306
276
|
*/
|
|
307
277
|
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
308
278
|
}
|
|
309
|
-
export declare namespace GetSnapshotBlockResponse {
|
|
310
|
-
/**
|
|
311
|
-
* @internal
|
|
312
|
-
*/
|
|
313
|
-
const filterSensitiveLog: (obj: GetSnapshotBlockResponse) => any;
|
|
314
|
-
}
|
|
315
279
|
export interface ListChangedBlocksRequest {
|
|
316
280
|
/**
|
|
317
281
|
* <p>The ID of the first snapshot to use for the comparison.</p>
|
|
@@ -355,12 +319,6 @@ export interface ListChangedBlocksRequest {
|
|
|
355
319
|
*/
|
|
356
320
|
StartingBlockIndex?: number;
|
|
357
321
|
}
|
|
358
|
-
export declare namespace ListChangedBlocksRequest {
|
|
359
|
-
/**
|
|
360
|
-
* @internal
|
|
361
|
-
*/
|
|
362
|
-
const filterSensitiveLog: (obj: ListChangedBlocksRequest) => any;
|
|
363
|
-
}
|
|
364
322
|
export interface ListChangedBlocksResponse {
|
|
365
323
|
/**
|
|
366
324
|
* <p>An array of objects containing information about the changed blocks.</p>
|
|
@@ -384,12 +342,6 @@ export interface ListChangedBlocksResponse {
|
|
|
384
342
|
*/
|
|
385
343
|
NextToken?: string;
|
|
386
344
|
}
|
|
387
|
-
export declare namespace ListChangedBlocksResponse {
|
|
388
|
-
/**
|
|
389
|
-
* @internal
|
|
390
|
-
*/
|
|
391
|
-
const filterSensitiveLog: (obj: ListChangedBlocksResponse) => any;
|
|
392
|
-
}
|
|
393
345
|
export interface ListSnapshotBlocksRequest {
|
|
394
346
|
/**
|
|
395
347
|
* <p>The ID of the snapshot from which to get block indexes and block tokens.</p>
|
|
@@ -420,12 +372,6 @@ export interface ListSnapshotBlocksRequest {
|
|
|
420
372
|
*/
|
|
421
373
|
StartingBlockIndex?: number;
|
|
422
374
|
}
|
|
423
|
-
export declare namespace ListSnapshotBlocksRequest {
|
|
424
|
-
/**
|
|
425
|
-
* @internal
|
|
426
|
-
*/
|
|
427
|
-
const filterSensitiveLog: (obj: ListSnapshotBlocksRequest) => any;
|
|
428
|
-
}
|
|
429
375
|
export interface ListSnapshotBlocksResponse {
|
|
430
376
|
/**
|
|
431
377
|
* <p>An array of objects containing information about the blocks.</p>
|
|
@@ -449,12 +395,6 @@ export interface ListSnapshotBlocksResponse {
|
|
|
449
395
|
*/
|
|
450
396
|
NextToken?: string;
|
|
451
397
|
}
|
|
452
|
-
export declare namespace ListSnapshotBlocksResponse {
|
|
453
|
-
/**
|
|
454
|
-
* @internal
|
|
455
|
-
*/
|
|
456
|
-
const filterSensitiveLog: (obj: ListSnapshotBlocksResponse) => any;
|
|
457
|
-
}
|
|
458
398
|
export interface PutSnapshotBlockRequest {
|
|
459
399
|
/**
|
|
460
400
|
* <p>The ID of the snapshot.</p>
|
|
@@ -511,12 +451,6 @@ export interface PutSnapshotBlockRequest {
|
|
|
511
451
|
*/
|
|
512
452
|
ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
|
|
513
453
|
}
|
|
514
|
-
export declare namespace PutSnapshotBlockRequest {
|
|
515
|
-
/**
|
|
516
|
-
* @internal
|
|
517
|
-
*/
|
|
518
|
-
const filterSensitiveLog: (obj: PutSnapshotBlockRequest) => any;
|
|
519
|
-
}
|
|
520
454
|
export interface PutSnapshotBlockResponse {
|
|
521
455
|
/**
|
|
522
456
|
* <p>The SHA256 checksum generated for the block data by Amazon EBS.</p>
|
|
@@ -527,12 +461,6 @@ export interface PutSnapshotBlockResponse {
|
|
|
527
461
|
*/
|
|
528
462
|
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
529
463
|
}
|
|
530
|
-
export declare namespace PutSnapshotBlockResponse {
|
|
531
|
-
/**
|
|
532
|
-
* @internal
|
|
533
|
-
*/
|
|
534
|
-
const filterSensitiveLog: (obj: PutSnapshotBlockResponse) => any;
|
|
535
|
-
}
|
|
536
464
|
/**
|
|
537
465
|
* <p>Describes a tag.</p>
|
|
538
466
|
*/
|
|
@@ -546,12 +474,6 @@ export interface Tag {
|
|
|
546
474
|
*/
|
|
547
475
|
Value?: string;
|
|
548
476
|
}
|
|
549
|
-
export declare namespace Tag {
|
|
550
|
-
/**
|
|
551
|
-
* @internal
|
|
552
|
-
*/
|
|
553
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
554
|
-
}
|
|
555
477
|
export interface StartSnapshotRequest {
|
|
556
478
|
/**
|
|
557
479
|
* <p>The size of the volume, in GiB. The maximum size is <code>65536</code> GiB (64
|
|
@@ -660,12 +582,6 @@ export interface StartSnapshotRequest {
|
|
|
660
582
|
*/
|
|
661
583
|
Timeout?: number;
|
|
662
584
|
}
|
|
663
|
-
export declare namespace StartSnapshotRequest {
|
|
664
|
-
/**
|
|
665
|
-
* @internal
|
|
666
|
-
*/
|
|
667
|
-
const filterSensitiveLog: (obj: StartSnapshotRequest) => any;
|
|
668
|
-
}
|
|
669
585
|
export interface StartSnapshotResponse {
|
|
670
586
|
/**
|
|
671
587
|
* <p>The description of the snapshot.</p>
|
|
@@ -710,9 +626,63 @@ export interface StartSnapshotResponse {
|
|
|
710
626
|
*/
|
|
711
627
|
KmsKeyArn?: string;
|
|
712
628
|
}
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
629
|
+
/**
|
|
630
|
+
* @internal
|
|
631
|
+
*/
|
|
632
|
+
export declare const BlockFilterSensitiveLog: (obj: Block) => any;
|
|
633
|
+
/**
|
|
634
|
+
* @internal
|
|
635
|
+
*/
|
|
636
|
+
export declare const ChangedBlockFilterSensitiveLog: (obj: ChangedBlock) => any;
|
|
637
|
+
/**
|
|
638
|
+
* @internal
|
|
639
|
+
*/
|
|
640
|
+
export declare const CompleteSnapshotRequestFilterSensitiveLog: (obj: CompleteSnapshotRequest) => any;
|
|
641
|
+
/**
|
|
642
|
+
* @internal
|
|
643
|
+
*/
|
|
644
|
+
export declare const CompleteSnapshotResponseFilterSensitiveLog: (obj: CompleteSnapshotResponse) => any;
|
|
645
|
+
/**
|
|
646
|
+
* @internal
|
|
647
|
+
*/
|
|
648
|
+
export declare const GetSnapshotBlockRequestFilterSensitiveLog: (obj: GetSnapshotBlockRequest) => any;
|
|
649
|
+
/**
|
|
650
|
+
* @internal
|
|
651
|
+
*/
|
|
652
|
+
export declare const GetSnapshotBlockResponseFilterSensitiveLog: (obj: GetSnapshotBlockResponse) => any;
|
|
653
|
+
/**
|
|
654
|
+
* @internal
|
|
655
|
+
*/
|
|
656
|
+
export declare const ListChangedBlocksRequestFilterSensitiveLog: (obj: ListChangedBlocksRequest) => any;
|
|
657
|
+
/**
|
|
658
|
+
* @internal
|
|
659
|
+
*/
|
|
660
|
+
export declare const ListChangedBlocksResponseFilterSensitiveLog: (obj: ListChangedBlocksResponse) => any;
|
|
661
|
+
/**
|
|
662
|
+
* @internal
|
|
663
|
+
*/
|
|
664
|
+
export declare const ListSnapshotBlocksRequestFilterSensitiveLog: (obj: ListSnapshotBlocksRequest) => any;
|
|
665
|
+
/**
|
|
666
|
+
* @internal
|
|
667
|
+
*/
|
|
668
|
+
export declare const ListSnapshotBlocksResponseFilterSensitiveLog: (obj: ListSnapshotBlocksResponse) => any;
|
|
669
|
+
/**
|
|
670
|
+
* @internal
|
|
671
|
+
*/
|
|
672
|
+
export declare const PutSnapshotBlockRequestFilterSensitiveLog: (obj: PutSnapshotBlockRequest) => any;
|
|
673
|
+
/**
|
|
674
|
+
* @internal
|
|
675
|
+
*/
|
|
676
|
+
export declare const PutSnapshotBlockResponseFilterSensitiveLog: (obj: PutSnapshotBlockResponse) => any;
|
|
677
|
+
/**
|
|
678
|
+
* @internal
|
|
679
|
+
*/
|
|
680
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
681
|
+
/**
|
|
682
|
+
* @internal
|
|
683
|
+
*/
|
|
684
|
+
export declare const StartSnapshotRequestFilterSensitiveLog: (obj: StartSnapshotRequest) => any;
|
|
685
|
+
/**
|
|
686
|
+
* @internal
|
|
687
|
+
*/
|
|
688
|
+
export declare const StartSnapshotResponseFilterSensitiveLog: (obj: StartSnapshotResponse) => any;
|
|
@@ -23,10 +23,6 @@ export interface Block {
|
|
|
23
23
|
|
|
24
24
|
BlockToken?: string;
|
|
25
25
|
}
|
|
26
|
-
export declare namespace Block {
|
|
27
|
-
|
|
28
|
-
const filterSensitiveLog: (obj: Block) => any;
|
|
29
|
-
}
|
|
30
26
|
|
|
31
27
|
export interface ChangedBlock {
|
|
32
28
|
|
|
@@ -36,10 +32,6 @@ export interface ChangedBlock {
|
|
|
36
32
|
|
|
37
33
|
SecondBlockToken?: string;
|
|
38
34
|
}
|
|
39
|
-
export declare namespace ChangedBlock {
|
|
40
|
-
|
|
41
|
-
const filterSensitiveLog: (obj: ChangedBlock) => any;
|
|
42
|
-
}
|
|
43
35
|
export declare enum ChecksumAggregationMethod {
|
|
44
36
|
CHECKSUM_AGGREGATION_LINEAR = "LINEAR"
|
|
45
37
|
}
|
|
@@ -58,10 +50,6 @@ export interface CompleteSnapshotRequest {
|
|
|
58
50
|
|
|
59
51
|
ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
|
|
60
52
|
}
|
|
61
|
-
export declare namespace CompleteSnapshotRequest {
|
|
62
|
-
|
|
63
|
-
const filterSensitiveLog: (obj: CompleteSnapshotRequest) => any;
|
|
64
|
-
}
|
|
65
53
|
export declare enum Status {
|
|
66
54
|
COMPLETED = "completed",
|
|
67
55
|
ERROR = "error",
|
|
@@ -71,10 +59,6 @@ export interface CompleteSnapshotResponse {
|
|
|
71
59
|
|
|
72
60
|
Status?: Status | string;
|
|
73
61
|
}
|
|
74
|
-
export declare namespace CompleteSnapshotResponse {
|
|
75
|
-
|
|
76
|
-
const filterSensitiveLog: (obj: CompleteSnapshotResponse) => any;
|
|
77
|
-
}
|
|
78
62
|
|
|
79
63
|
export declare class InternalServerException extends __BaseException {
|
|
80
64
|
readonly name: "InternalServerException";
|
|
@@ -173,10 +157,6 @@ export interface GetSnapshotBlockRequest {
|
|
|
173
157
|
|
|
174
158
|
BlockToken: string | undefined;
|
|
175
159
|
}
|
|
176
|
-
export declare namespace GetSnapshotBlockRequest {
|
|
177
|
-
|
|
178
|
-
const filterSensitiveLog: (obj: GetSnapshotBlockRequest) => any;
|
|
179
|
-
}
|
|
180
160
|
export interface GetSnapshotBlockResponse {
|
|
181
161
|
|
|
182
162
|
DataLength?: number;
|
|
@@ -187,10 +167,6 @@ export interface GetSnapshotBlockResponse {
|
|
|
187
167
|
|
|
188
168
|
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
189
169
|
}
|
|
190
|
-
export declare namespace GetSnapshotBlockResponse {
|
|
191
|
-
|
|
192
|
-
const filterSensitiveLog: (obj: GetSnapshotBlockResponse) => any;
|
|
193
|
-
}
|
|
194
170
|
export interface ListChangedBlocksRequest {
|
|
195
171
|
|
|
196
172
|
FirstSnapshotId?: string;
|
|
@@ -203,10 +179,6 @@ export interface ListChangedBlocksRequest {
|
|
|
203
179
|
|
|
204
180
|
StartingBlockIndex?: number;
|
|
205
181
|
}
|
|
206
|
-
export declare namespace ListChangedBlocksRequest {
|
|
207
|
-
|
|
208
|
-
const filterSensitiveLog: (obj: ListChangedBlocksRequest) => any;
|
|
209
|
-
}
|
|
210
182
|
export interface ListChangedBlocksResponse {
|
|
211
183
|
|
|
212
184
|
ChangedBlocks?: ChangedBlock[];
|
|
@@ -219,10 +191,6 @@ export interface ListChangedBlocksResponse {
|
|
|
219
191
|
|
|
220
192
|
NextToken?: string;
|
|
221
193
|
}
|
|
222
|
-
export declare namespace ListChangedBlocksResponse {
|
|
223
|
-
|
|
224
|
-
const filterSensitiveLog: (obj: ListChangedBlocksResponse) => any;
|
|
225
|
-
}
|
|
226
194
|
export interface ListSnapshotBlocksRequest {
|
|
227
195
|
|
|
228
196
|
SnapshotId: string | undefined;
|
|
@@ -233,10 +201,6 @@ export interface ListSnapshotBlocksRequest {
|
|
|
233
201
|
|
|
234
202
|
StartingBlockIndex?: number;
|
|
235
203
|
}
|
|
236
|
-
export declare namespace ListSnapshotBlocksRequest {
|
|
237
|
-
|
|
238
|
-
const filterSensitiveLog: (obj: ListSnapshotBlocksRequest) => any;
|
|
239
|
-
}
|
|
240
204
|
export interface ListSnapshotBlocksResponse {
|
|
241
205
|
|
|
242
206
|
Blocks?: Block[];
|
|
@@ -249,10 +213,6 @@ export interface ListSnapshotBlocksResponse {
|
|
|
249
213
|
|
|
250
214
|
NextToken?: string;
|
|
251
215
|
}
|
|
252
|
-
export declare namespace ListSnapshotBlocksResponse {
|
|
253
|
-
|
|
254
|
-
const filterSensitiveLog: (obj: ListSnapshotBlocksResponse) => any;
|
|
255
|
-
}
|
|
256
216
|
export interface PutSnapshotBlockRequest {
|
|
257
217
|
|
|
258
218
|
SnapshotId: string | undefined;
|
|
@@ -269,20 +229,12 @@ export interface PutSnapshotBlockRequest {
|
|
|
269
229
|
|
|
270
230
|
ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
|
|
271
231
|
}
|
|
272
|
-
export declare namespace PutSnapshotBlockRequest {
|
|
273
|
-
|
|
274
|
-
const filterSensitiveLog: (obj: PutSnapshotBlockRequest) => any;
|
|
275
|
-
}
|
|
276
232
|
export interface PutSnapshotBlockResponse {
|
|
277
233
|
|
|
278
234
|
Checksum?: string;
|
|
279
235
|
|
|
280
236
|
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
281
237
|
}
|
|
282
|
-
export declare namespace PutSnapshotBlockResponse {
|
|
283
|
-
|
|
284
|
-
const filterSensitiveLog: (obj: PutSnapshotBlockResponse) => any;
|
|
285
|
-
}
|
|
286
238
|
|
|
287
239
|
export interface Tag {
|
|
288
240
|
|
|
@@ -290,10 +242,6 @@ export interface Tag {
|
|
|
290
242
|
|
|
291
243
|
Value?: string;
|
|
292
244
|
}
|
|
293
|
-
export declare namespace Tag {
|
|
294
|
-
|
|
295
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
296
|
-
}
|
|
297
245
|
export interface StartSnapshotRequest {
|
|
298
246
|
|
|
299
247
|
VolumeSize: number | undefined;
|
|
@@ -312,10 +260,6 @@ export interface StartSnapshotRequest {
|
|
|
312
260
|
|
|
313
261
|
Timeout?: number;
|
|
314
262
|
}
|
|
315
|
-
export declare namespace StartSnapshotRequest {
|
|
316
|
-
|
|
317
|
-
const filterSensitiveLog: (obj: StartSnapshotRequest) => any;
|
|
318
|
-
}
|
|
319
263
|
export interface StartSnapshotResponse {
|
|
320
264
|
|
|
321
265
|
Description?: string;
|
|
@@ -338,7 +282,33 @@ export interface StartSnapshotResponse {
|
|
|
338
282
|
|
|
339
283
|
KmsKeyArn?: string;
|
|
340
284
|
}
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
285
|
+
|
|
286
|
+
export declare const BlockFilterSensitiveLog: (obj: Block) => any;
|
|
287
|
+
|
|
288
|
+
export declare const ChangedBlockFilterSensitiveLog: (obj: ChangedBlock) => any;
|
|
289
|
+
|
|
290
|
+
export declare const CompleteSnapshotRequestFilterSensitiveLog: (obj: CompleteSnapshotRequest) => any;
|
|
291
|
+
|
|
292
|
+
export declare const CompleteSnapshotResponseFilterSensitiveLog: (obj: CompleteSnapshotResponse) => any;
|
|
293
|
+
|
|
294
|
+
export declare const GetSnapshotBlockRequestFilterSensitiveLog: (obj: GetSnapshotBlockRequest) => any;
|
|
295
|
+
|
|
296
|
+
export declare const GetSnapshotBlockResponseFilterSensitiveLog: (obj: GetSnapshotBlockResponse) => any;
|
|
297
|
+
|
|
298
|
+
export declare const ListChangedBlocksRequestFilterSensitiveLog: (obj: ListChangedBlocksRequest) => any;
|
|
299
|
+
|
|
300
|
+
export declare const ListChangedBlocksResponseFilterSensitiveLog: (obj: ListChangedBlocksResponse) => any;
|
|
301
|
+
|
|
302
|
+
export declare const ListSnapshotBlocksRequestFilterSensitiveLog: (obj: ListSnapshotBlocksRequest) => any;
|
|
303
|
+
|
|
304
|
+
export declare const ListSnapshotBlocksResponseFilterSensitiveLog: (obj: ListSnapshotBlocksResponse) => any;
|
|
305
|
+
|
|
306
|
+
export declare const PutSnapshotBlockRequestFilterSensitiveLog: (obj: PutSnapshotBlockRequest) => any;
|
|
307
|
+
|
|
308
|
+
export declare const PutSnapshotBlockResponseFilterSensitiveLog: (obj: PutSnapshotBlockResponse) => any;
|
|
309
|
+
|
|
310
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
311
|
+
|
|
312
|
+
export declare const StartSnapshotRequestFilterSensitiveLog: (obj: StartSnapshotRequest) => any;
|
|
313
|
+
|
|
314
|
+
export declare const StartSnapshotResponseFilterSensitiveLog: (obj: StartSnapshotResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ebs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ebs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.142.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,9 +18,9 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
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",
|
|
@@ -36,15 +36,15 @@
|
|
|
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.142.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.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.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",
|