@aws-sdk/client-ebs 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/EBS.d.ts +112 -35
- package/dist-types/ts3.4/EBSClient.d.ts +164 -79
- package/dist-types/ts3.4/commands/CompleteSnapshotCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSnapshotBlockCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListChangedBlocksCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListSnapshotBlocksCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutSnapshotBlockCommand.d.ts +50 -24
- package/dist-types/ts3.4/commands/StartSnapshotCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/EBSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +339 -314
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListChangedBlocksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSnapshotBlocksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,314 +1,339 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface ChangedBlock {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Readable } from "stream";
|
|
3
|
+
import { EBSServiceException as __BaseException } from "./EBSServiceException";
|
|
4
|
+
export declare enum AccessDeniedExceptionReason {
|
|
5
|
+
DEPENDENCY_ACCESS_DENIED = "DEPENDENCY_ACCESS_DENIED",
|
|
6
|
+
UNAUTHORIZED_ACCOUNT = "UNAUTHORIZED_ACCOUNT",
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
Message?: string;
|
|
13
|
+
|
|
14
|
+
Reason: AccessDeniedExceptionReason | string | undefined;
|
|
15
|
+
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface Block {
|
|
22
|
+
BlockIndex?: number;
|
|
23
|
+
|
|
24
|
+
BlockToken?: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface ChangedBlock {
|
|
28
|
+
BlockIndex?: number;
|
|
29
|
+
|
|
30
|
+
FirstBlockToken?: string;
|
|
31
|
+
|
|
32
|
+
SecondBlockToken?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare enum ChecksumAggregationMethod {
|
|
35
|
+
CHECKSUM_AGGREGATION_LINEAR = "LINEAR",
|
|
36
|
+
}
|
|
37
|
+
export declare enum ChecksumAlgorithm {
|
|
38
|
+
CHECKSUM_ALGORITHM_SHA256 = "SHA256",
|
|
39
|
+
}
|
|
40
|
+
export interface CompleteSnapshotRequest {
|
|
41
|
+
SnapshotId: string | undefined;
|
|
42
|
+
|
|
43
|
+
ChangedBlocksCount: number | undefined;
|
|
44
|
+
|
|
45
|
+
Checksum?: string;
|
|
46
|
+
|
|
47
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
48
|
+
|
|
49
|
+
ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
|
|
50
|
+
}
|
|
51
|
+
export declare enum Status {
|
|
52
|
+
COMPLETED = "completed",
|
|
53
|
+
ERROR = "error",
|
|
54
|
+
PENDING = "pending",
|
|
55
|
+
}
|
|
56
|
+
export interface CompleteSnapshotResponse {
|
|
57
|
+
Status?: Status | string;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export declare class InternalServerException extends __BaseException {
|
|
61
|
+
readonly name: "InternalServerException";
|
|
62
|
+
readonly $fault: "server";
|
|
63
|
+
Message?: string;
|
|
64
|
+
|
|
65
|
+
constructor(
|
|
66
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
export declare enum RequestThrottledExceptionReason {
|
|
70
|
+
ACCOUNT_THROTTLED = "ACCOUNT_THROTTLED",
|
|
71
|
+
DEPENDENCY_REQUEST_THROTTLED = "DEPENDENCY_REQUEST_THROTTLED",
|
|
72
|
+
RESOURCE_LEVEL_THROTTLE = "RESOURCE_LEVEL_THROTTLE",
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export declare class RequestThrottledException extends __BaseException {
|
|
76
|
+
readonly name: "RequestThrottledException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
Message?: string;
|
|
79
|
+
|
|
80
|
+
Reason?: RequestThrottledExceptionReason | string;
|
|
81
|
+
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<RequestThrottledException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
export declare enum ResourceNotFoundExceptionReason {
|
|
87
|
+
DEPENDENCY_RESOURCE_NOT_FOUND = "DEPENDENCY_RESOURCE_NOT_FOUND",
|
|
88
|
+
SNAPSHOT_NOT_FOUND = "SNAPSHOT_NOT_FOUND",
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
92
|
+
readonly name: "ResourceNotFoundException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
Message?: string;
|
|
95
|
+
|
|
96
|
+
Reason?: ResourceNotFoundExceptionReason | string;
|
|
97
|
+
|
|
98
|
+
constructor(
|
|
99
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
export declare enum ServiceQuotaExceededExceptionReason {
|
|
103
|
+
DEPENDENCY_SERVICE_QUOTA_EXCEEDED = "DEPENDENCY_SERVICE_QUOTA_EXCEEDED",
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
107
|
+
readonly name: "ServiceQuotaExceededException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
Message?: string;
|
|
110
|
+
|
|
111
|
+
Reason?: ServiceQuotaExceededExceptionReason | string;
|
|
112
|
+
|
|
113
|
+
constructor(
|
|
114
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
export declare enum ValidationExceptionReason {
|
|
118
|
+
CONFLICTING_BLOCK_UPDATE = "CONFLICTING_BLOCK_UPDATE",
|
|
119
|
+
INVALID_BLOCK = "INVALID_BLOCK",
|
|
120
|
+
INVALID_BLOCK_TOKEN = "INVALID_BLOCK_TOKEN",
|
|
121
|
+
INVALID_CONTENT_ENCODING = "INVALID_CONTENT_ENCODING",
|
|
122
|
+
INVALID_CUSTOMER_KEY = "INVALID_CUSTOMER_KEY",
|
|
123
|
+
INVALID_DEPENDENCY_REQUEST = "INVALID_DEPENDENCY_REQUEST",
|
|
124
|
+
INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
|
|
125
|
+
INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE",
|
|
126
|
+
INVALID_SNAPSHOT_ID = "INVALID_SNAPSHOT_ID",
|
|
127
|
+
INVALID_TAG = "INVALID_TAG",
|
|
128
|
+
INVALID_VOLUME_SIZE = "INVALID_VOLUME_SIZE",
|
|
129
|
+
UNRELATED_SNAPSHOTS = "UNRELATED_SNAPSHOTS",
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export declare class ValidationException extends __BaseException {
|
|
133
|
+
readonly name: "ValidationException";
|
|
134
|
+
readonly $fault: "client";
|
|
135
|
+
Message?: string;
|
|
136
|
+
|
|
137
|
+
Reason?: ValidationExceptionReason | string;
|
|
138
|
+
|
|
139
|
+
constructor(
|
|
140
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
141
|
+
);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export declare class ConcurrentLimitExceededException extends __BaseException {
|
|
145
|
+
readonly name: "ConcurrentLimitExceededException";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
Message?: string;
|
|
148
|
+
|
|
149
|
+
constructor(
|
|
150
|
+
opts: __ExceptionOptionType<
|
|
151
|
+
ConcurrentLimitExceededException,
|
|
152
|
+
__BaseException
|
|
153
|
+
>
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export declare class ConflictException extends __BaseException {
|
|
158
|
+
readonly name: "ConflictException";
|
|
159
|
+
readonly $fault: "client";
|
|
160
|
+
Message?: string;
|
|
161
|
+
|
|
162
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
163
|
+
}
|
|
164
|
+
export interface GetSnapshotBlockRequest {
|
|
165
|
+
SnapshotId: string | undefined;
|
|
166
|
+
|
|
167
|
+
BlockIndex: number | undefined;
|
|
168
|
+
|
|
169
|
+
BlockToken: string | undefined;
|
|
170
|
+
}
|
|
171
|
+
export interface GetSnapshotBlockResponse {
|
|
172
|
+
DataLength?: number;
|
|
173
|
+
|
|
174
|
+
BlockData?: Readable | ReadableStream | Blob;
|
|
175
|
+
|
|
176
|
+
Checksum?: string;
|
|
177
|
+
|
|
178
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
179
|
+
}
|
|
180
|
+
export interface ListChangedBlocksRequest {
|
|
181
|
+
FirstSnapshotId?: string;
|
|
182
|
+
|
|
183
|
+
SecondSnapshotId: string | undefined;
|
|
184
|
+
|
|
185
|
+
NextToken?: string;
|
|
186
|
+
|
|
187
|
+
MaxResults?: number;
|
|
188
|
+
|
|
189
|
+
StartingBlockIndex?: number;
|
|
190
|
+
}
|
|
191
|
+
export interface ListChangedBlocksResponse {
|
|
192
|
+
ChangedBlocks?: ChangedBlock[];
|
|
193
|
+
|
|
194
|
+
ExpiryTime?: Date;
|
|
195
|
+
|
|
196
|
+
VolumeSize?: number;
|
|
197
|
+
|
|
198
|
+
BlockSize?: number;
|
|
199
|
+
|
|
200
|
+
NextToken?: string;
|
|
201
|
+
}
|
|
202
|
+
export interface ListSnapshotBlocksRequest {
|
|
203
|
+
SnapshotId: string | undefined;
|
|
204
|
+
|
|
205
|
+
NextToken?: string;
|
|
206
|
+
|
|
207
|
+
MaxResults?: number;
|
|
208
|
+
|
|
209
|
+
StartingBlockIndex?: number;
|
|
210
|
+
}
|
|
211
|
+
export interface ListSnapshotBlocksResponse {
|
|
212
|
+
Blocks?: Block[];
|
|
213
|
+
|
|
214
|
+
ExpiryTime?: Date;
|
|
215
|
+
|
|
216
|
+
VolumeSize?: number;
|
|
217
|
+
|
|
218
|
+
BlockSize?: number;
|
|
219
|
+
|
|
220
|
+
NextToken?: string;
|
|
221
|
+
}
|
|
222
|
+
export interface PutSnapshotBlockRequest {
|
|
223
|
+
SnapshotId: string | undefined;
|
|
224
|
+
|
|
225
|
+
BlockIndex: number | undefined;
|
|
226
|
+
|
|
227
|
+
BlockData: Readable | ReadableStream | Blob | undefined;
|
|
228
|
+
|
|
229
|
+
DataLength: number | undefined;
|
|
230
|
+
|
|
231
|
+
Progress?: number;
|
|
232
|
+
|
|
233
|
+
Checksum: string | undefined;
|
|
234
|
+
|
|
235
|
+
ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
|
|
236
|
+
}
|
|
237
|
+
export interface PutSnapshotBlockResponse {
|
|
238
|
+
Checksum?: string;
|
|
239
|
+
|
|
240
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export interface Tag {
|
|
244
|
+
Key?: string;
|
|
245
|
+
|
|
246
|
+
Value?: string;
|
|
247
|
+
}
|
|
248
|
+
export interface StartSnapshotRequest {
|
|
249
|
+
VolumeSize: number | undefined;
|
|
250
|
+
|
|
251
|
+
ParentSnapshotId?: string;
|
|
252
|
+
|
|
253
|
+
Tags?: Tag[];
|
|
254
|
+
|
|
255
|
+
Description?: string;
|
|
256
|
+
|
|
257
|
+
ClientToken?: string;
|
|
258
|
+
|
|
259
|
+
Encrypted?: boolean;
|
|
260
|
+
|
|
261
|
+
KmsKeyArn?: string;
|
|
262
|
+
|
|
263
|
+
Timeout?: number;
|
|
264
|
+
}
|
|
265
|
+
export interface StartSnapshotResponse {
|
|
266
|
+
Description?: string;
|
|
267
|
+
|
|
268
|
+
SnapshotId?: string;
|
|
269
|
+
|
|
270
|
+
OwnerId?: string;
|
|
271
|
+
|
|
272
|
+
Status?: Status | string;
|
|
273
|
+
|
|
274
|
+
StartTime?: Date;
|
|
275
|
+
|
|
276
|
+
VolumeSize?: number;
|
|
277
|
+
|
|
278
|
+
BlockSize?: number;
|
|
279
|
+
|
|
280
|
+
Tags?: Tag[];
|
|
281
|
+
|
|
282
|
+
ParentSnapshotId?: string;
|
|
283
|
+
|
|
284
|
+
KmsKeyArn?: string;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export declare const BlockFilterSensitiveLog: (obj: Block) => any;
|
|
288
|
+
|
|
289
|
+
export declare const ChangedBlockFilterSensitiveLog: (obj: ChangedBlock) => any;
|
|
290
|
+
|
|
291
|
+
export declare const CompleteSnapshotRequestFilterSensitiveLog: (
|
|
292
|
+
obj: CompleteSnapshotRequest
|
|
293
|
+
) => any;
|
|
294
|
+
|
|
295
|
+
export declare const CompleteSnapshotResponseFilterSensitiveLog: (
|
|
296
|
+
obj: CompleteSnapshotResponse
|
|
297
|
+
) => any;
|
|
298
|
+
|
|
299
|
+
export declare const GetSnapshotBlockRequestFilterSensitiveLog: (
|
|
300
|
+
obj: GetSnapshotBlockRequest
|
|
301
|
+
) => any;
|
|
302
|
+
|
|
303
|
+
export declare const GetSnapshotBlockResponseFilterSensitiveLog: (
|
|
304
|
+
obj: GetSnapshotBlockResponse
|
|
305
|
+
) => any;
|
|
306
|
+
|
|
307
|
+
export declare const ListChangedBlocksRequestFilterSensitiveLog: (
|
|
308
|
+
obj: ListChangedBlocksRequest
|
|
309
|
+
) => any;
|
|
310
|
+
|
|
311
|
+
export declare const ListChangedBlocksResponseFilterSensitiveLog: (
|
|
312
|
+
obj: ListChangedBlocksResponse
|
|
313
|
+
) => any;
|
|
314
|
+
|
|
315
|
+
export declare const ListSnapshotBlocksRequestFilterSensitiveLog: (
|
|
316
|
+
obj: ListSnapshotBlocksRequest
|
|
317
|
+
) => any;
|
|
318
|
+
|
|
319
|
+
export declare const ListSnapshotBlocksResponseFilterSensitiveLog: (
|
|
320
|
+
obj: ListSnapshotBlocksResponse
|
|
321
|
+
) => any;
|
|
322
|
+
|
|
323
|
+
export declare const PutSnapshotBlockRequestFilterSensitiveLog: (
|
|
324
|
+
obj: PutSnapshotBlockRequest
|
|
325
|
+
) => any;
|
|
326
|
+
|
|
327
|
+
export declare const PutSnapshotBlockResponseFilterSensitiveLog: (
|
|
328
|
+
obj: PutSnapshotBlockResponse
|
|
329
|
+
) => any;
|
|
330
|
+
|
|
331
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
332
|
+
|
|
333
|
+
export declare const StartSnapshotRequestFilterSensitiveLog: (
|
|
334
|
+
obj: StartSnapshotRequest
|
|
335
|
+
) => any;
|
|
336
|
+
|
|
337
|
+
export declare const StartSnapshotResponseFilterSensitiveLog: (
|
|
338
|
+
obj: StartSnapshotResponse
|
|
339
|
+
) => any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { EBS } from "../EBS";
|
|
3
|
-
import { EBSClient } from "../EBSClient";
|
|
4
|
-
export interface EBSPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { EBS } from "../EBS";
|
|
3
|
+
import { EBSClient } from "../EBSClient";
|
|
4
|
+
export interface EBSPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: EBS | EBSClient;
|
|
6
|
+
}
|