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