@aws-sdk/client-ebs 3.47.1 → 3.50.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 +35 -0
- package/dist-types/models/models_0.d.ts +24 -2
- package/package.json +39 -33
- package/dist-types/ts3.4/EBS.d.ts +0 -35
- package/dist-types/ts3.4/EBSClient.d.ts +0 -79
- package/dist-types/ts3.4/commands/CompleteSnapshotCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetSnapshotBlockCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListChangedBlocksCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListSnapshotBlocksCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/PutSnapshotBlockCommand.d.ts +0 -24
- package/dist-types/ts3.4/commands/StartSnapshotCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -6
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -5
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -325
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist-types/ts3.4/pagination/ListChangedBlocksPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListSnapshotBlocksPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/index.d.ts +0 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** update clients as of 01/28/2022 ([#3263](https://github.com/aws/aws-sdk-js-v3/issues/3263)) ([c207cf4](https://github.com/aws/aws-sdk-js-v3/commit/c207cf4a70ba9ef14dc5b94da7883b0889d64918))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
@@ -292,16 +292,27 @@ export interface ListChangedBlocksRequest {
|
|
|
292
292
|
SecondSnapshotId: string | undefined;
|
|
293
293
|
/**
|
|
294
294
|
* <p>The token to request the next page of results.</p>
|
|
295
|
+
* <p>If you specify <b>NextToken</b>, then
|
|
296
|
+
* <b>StartingBlockIndex</b> is ignored.</p>
|
|
295
297
|
*/
|
|
296
298
|
NextToken?: string;
|
|
297
299
|
/**
|
|
298
|
-
* <p>The number of
|
|
300
|
+
* <p>The maximum number of blocks to be returned by the request.</p>
|
|
301
|
+
* <p>Even if additional blocks can be retrieved from the snapshot, the request can
|
|
302
|
+
* return less blocks than <b>MaxResults</b> or an empty
|
|
303
|
+
* array of blocks.</p>
|
|
304
|
+
* <p>To retrieve the next set of blocks from the snapshot, make another request with
|
|
305
|
+
* the returned <b>NextToken</b> value. The value of
|
|
306
|
+
* <b>NextToken</b> is <code>null</code> when there are no
|
|
307
|
+
* more blocks to return.</p>
|
|
299
308
|
*/
|
|
300
309
|
MaxResults?: number;
|
|
301
310
|
/**
|
|
302
311
|
* <p>The block index from which the comparison should start.</p>
|
|
303
312
|
* <p>The list in the response will start from this block index or the next valid block
|
|
304
313
|
* index in the snapshots.</p>
|
|
314
|
+
* <p>If you specify <b>NextToken</b>, then
|
|
315
|
+
* <b>StartingBlockIndex</b> is ignored.</p>
|
|
305
316
|
*/
|
|
306
317
|
StartingBlockIndex?: number;
|
|
307
318
|
}
|
|
@@ -347,15 +358,26 @@ export interface ListSnapshotBlocksRequest {
|
|
|
347
358
|
SnapshotId: string | undefined;
|
|
348
359
|
/**
|
|
349
360
|
* <p>The token to request the next page of results.</p>
|
|
361
|
+
* <p>If you specify <b>NextToken</b>, then
|
|
362
|
+
* <b>StartingBlockIndex</b> is ignored.</p>
|
|
350
363
|
*/
|
|
351
364
|
NextToken?: string;
|
|
352
365
|
/**
|
|
353
|
-
* <p>The number of
|
|
366
|
+
* <p>The maximum number of blocks to be returned by the request.</p>
|
|
367
|
+
* <p>Even if additional blocks can be retrieved from the snapshot, the request can
|
|
368
|
+
* return less blocks than <b>MaxResults</b> or an empty
|
|
369
|
+
* array of blocks.</p>
|
|
370
|
+
* <p>To retrieve the next set of blocks from the snapshot, make another request with
|
|
371
|
+
* the returned <b>NextToken</b> value. The value of
|
|
372
|
+
* <b>NextToken</b> is <code>null</code> when there are no
|
|
373
|
+
* more blocks to return.</p>
|
|
354
374
|
*/
|
|
355
375
|
MaxResults?: number;
|
|
356
376
|
/**
|
|
357
377
|
* <p>The block index from which the list should start. The list in the response will start
|
|
358
378
|
* from this block index or the next valid block index in the snapshot.</p>
|
|
379
|
+
* <p>If you specify <b>NextToken</b>, then
|
|
380
|
+
* <b>StartingBlockIndex</b> is ignored.</p>
|
|
359
381
|
*/
|
|
360
382
|
StartingBlockIndex?: number;
|
|
361
383
|
}
|
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.50.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,43 +18,49 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.50.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.50.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.50.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.50.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.50.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.50.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.50.0",
|
|
39
|
+
"@aws-sdk/types": "3.50.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.50.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.50.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.50.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
56
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
57
|
"@types/node": "^12.7.5",
|
|
57
|
-
"@types/uuid": "^8.3.0"
|
|
58
|
+
"@types/uuid": "^8.3.0",
|
|
59
|
+
"concurrently": "7.0.0",
|
|
60
|
+
"downlevel-dts": "0.7.0",
|
|
61
|
+
"rimraf": "3.0.2",
|
|
62
|
+
"typedoc": "0.19.2",
|
|
63
|
+
"typescript": "~4.3.5"
|
|
58
64
|
},
|
|
59
65
|
"engines": {
|
|
60
66
|
"node": ">=12.0.0"
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput } from "./commands/CompleteSnapshotCommand";
|
|
3
|
-
import { GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput } from "./commands/GetSnapshotBlockCommand";
|
|
4
|
-
import { ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput } from "./commands/ListChangedBlocksCommand";
|
|
5
|
-
import { ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput } from "./commands/ListSnapshotBlocksCommand";
|
|
6
|
-
import { PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput } from "./commands/PutSnapshotBlockCommand";
|
|
7
|
-
import { StartSnapshotCommandInput, StartSnapshotCommandOutput } from "./commands/StartSnapshotCommand";
|
|
8
|
-
import { EBSClient } from "./EBSClient";
|
|
9
|
-
|
|
10
|
-
export declare class EBS extends EBSClient {
|
|
11
|
-
|
|
12
|
-
completeSnapshot(args: CompleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CompleteSnapshotCommandOutput>;
|
|
13
|
-
completeSnapshot(args: CompleteSnapshotCommandInput, cb: (err: any, data?: CompleteSnapshotCommandOutput) => void): void;
|
|
14
|
-
completeSnapshot(args: CompleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CompleteSnapshotCommandOutput) => void): void;
|
|
15
|
-
|
|
16
|
-
getSnapshotBlock(args: GetSnapshotBlockCommandInput, options?: __HttpHandlerOptions): Promise<GetSnapshotBlockCommandOutput>;
|
|
17
|
-
getSnapshotBlock(args: GetSnapshotBlockCommandInput, cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void): void;
|
|
18
|
-
getSnapshotBlock(args: GetSnapshotBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void): void;
|
|
19
|
-
|
|
20
|
-
listChangedBlocks(args: ListChangedBlocksCommandInput, options?: __HttpHandlerOptions): Promise<ListChangedBlocksCommandOutput>;
|
|
21
|
-
listChangedBlocks(args: ListChangedBlocksCommandInput, cb: (err: any, data?: ListChangedBlocksCommandOutput) => void): void;
|
|
22
|
-
listChangedBlocks(args: ListChangedBlocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChangedBlocksCommandOutput) => void): void;
|
|
23
|
-
|
|
24
|
-
listSnapshotBlocks(args: ListSnapshotBlocksCommandInput, options?: __HttpHandlerOptions): Promise<ListSnapshotBlocksCommandOutput>;
|
|
25
|
-
listSnapshotBlocks(args: ListSnapshotBlocksCommandInput, cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void): void;
|
|
26
|
-
listSnapshotBlocks(args: ListSnapshotBlocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void): void;
|
|
27
|
-
|
|
28
|
-
putSnapshotBlock(args: PutSnapshotBlockCommandInput, options?: __HttpHandlerOptions): Promise<PutSnapshotBlockCommandOutput>;
|
|
29
|
-
putSnapshotBlock(args: PutSnapshotBlockCommandInput, cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void): void;
|
|
30
|
-
putSnapshotBlock(args: PutSnapshotBlockCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void): void;
|
|
31
|
-
|
|
32
|
-
startSnapshot(args: StartSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<StartSnapshotCommandOutput>;
|
|
33
|
-
startSnapshot(args: StartSnapshotCommandInput, cb: (err: any, data?: StartSnapshotCommandOutput) => void): void;
|
|
34
|
-
startSnapshot(args: StartSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSnapshotCommandOutput) => void): void;
|
|
35
|
-
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
-
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
-
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
-
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
-
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
-
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
-
import { CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput } from "./commands/CompleteSnapshotCommand";
|
|
10
|
-
import { GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput } from "./commands/GetSnapshotBlockCommand";
|
|
11
|
-
import { ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput } from "./commands/ListChangedBlocksCommand";
|
|
12
|
-
import { ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput } from "./commands/ListSnapshotBlocksCommand";
|
|
13
|
-
import { PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput } from "./commands/PutSnapshotBlockCommand";
|
|
14
|
-
import { StartSnapshotCommandInput, StartSnapshotCommandOutput } from "./commands/StartSnapshotCommand";
|
|
15
|
-
export declare type ServiceInputTypes = CompleteSnapshotCommandInput | GetSnapshotBlockCommandInput | ListChangedBlocksCommandInput | ListSnapshotBlocksCommandInput | PutSnapshotBlockCommandInput | StartSnapshotCommandInput;
|
|
16
|
-
export declare type ServiceOutputTypes = CompleteSnapshotCommandOutput | GetSnapshotBlockCommandOutput | ListChangedBlocksCommandOutput | ListSnapshotBlocksCommandOutput | PutSnapshotBlockCommandOutput | StartSnapshotCommandOutput;
|
|
17
|
-
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
18
|
-
|
|
19
|
-
requestHandler?: __HttpHandler;
|
|
20
|
-
|
|
21
|
-
sha256?: __HashConstructor;
|
|
22
|
-
|
|
23
|
-
urlParser?: __UrlParser;
|
|
24
|
-
|
|
25
|
-
bodyLengthChecker?: (body: any) => number | undefined;
|
|
26
|
-
|
|
27
|
-
streamCollector?: __StreamCollector;
|
|
28
|
-
|
|
29
|
-
base64Decoder?: __Decoder;
|
|
30
|
-
|
|
31
|
-
base64Encoder?: __Encoder;
|
|
32
|
-
|
|
33
|
-
utf8Decoder?: __Decoder;
|
|
34
|
-
|
|
35
|
-
utf8Encoder?: __Encoder;
|
|
36
|
-
|
|
37
|
-
runtime?: string;
|
|
38
|
-
|
|
39
|
-
disableHostPrefix?: boolean;
|
|
40
|
-
|
|
41
|
-
maxAttempts?: number | __Provider<number>;
|
|
42
|
-
|
|
43
|
-
retryMode?: string | __Provider<string>;
|
|
44
|
-
|
|
45
|
-
logger?: __Logger;
|
|
46
|
-
|
|
47
|
-
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
48
|
-
|
|
49
|
-
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
50
|
-
|
|
51
|
-
serviceId?: string;
|
|
52
|
-
|
|
53
|
-
region?: string | __Provider<string>;
|
|
54
|
-
|
|
55
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
56
|
-
|
|
57
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
58
|
-
|
|
59
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
60
|
-
|
|
61
|
-
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
62
|
-
}
|
|
63
|
-
declare type EBSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
64
|
-
|
|
65
|
-
export interface EBSClientConfig extends EBSClientConfigType {
|
|
66
|
-
}
|
|
67
|
-
declare type EBSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
68
|
-
|
|
69
|
-
export interface EBSClientResolvedConfig extends EBSClientResolvedConfigType {
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export declare class EBSClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EBSClientResolvedConfig> {
|
|
73
|
-
|
|
74
|
-
readonly config: EBSClientResolvedConfig;
|
|
75
|
-
constructor(configuration: EBSClientConfig);
|
|
76
|
-
|
|
77
|
-
destroy(): void;
|
|
78
|
-
}
|
|
79
|
-
export {};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
|
|
4
|
-
import { CompleteSnapshotRequest, CompleteSnapshotResponse } from "../models/models_0";
|
|
5
|
-
export interface CompleteSnapshotCommandInput extends CompleteSnapshotRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface CompleteSnapshotCommandOutput extends CompleteSnapshotResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class CompleteSnapshotCommand extends $Command<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput, EBSClientResolvedConfig> {
|
|
11
|
-
readonly input: CompleteSnapshotCommandInput;
|
|
12
|
-
constructor(input: CompleteSnapshotCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
|
|
4
|
-
import { GetSnapshotBlockRequest, GetSnapshotBlockResponse } from "../models/models_0";
|
|
5
|
-
export interface GetSnapshotBlockCommandInput extends GetSnapshotBlockRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface GetSnapshotBlockCommandOutput extends GetSnapshotBlockResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class GetSnapshotBlockCommand extends $Command<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput, EBSClientResolvedConfig> {
|
|
11
|
-
readonly input: GetSnapshotBlockCommandInput;
|
|
12
|
-
constructor(input: GetSnapshotBlockCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
|
|
4
|
-
import { ListChangedBlocksRequest, ListChangedBlocksResponse } from "../models/models_0";
|
|
5
|
-
export interface ListChangedBlocksCommandInput extends ListChangedBlocksRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface ListChangedBlocksCommandOutput extends ListChangedBlocksResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class ListChangedBlocksCommand extends $Command<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput, EBSClientResolvedConfig> {
|
|
11
|
-
readonly input: ListChangedBlocksCommandInput;
|
|
12
|
-
constructor(input: ListChangedBlocksCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
|
|
4
|
-
import { ListSnapshotBlocksRequest, ListSnapshotBlocksResponse } from "../models/models_0";
|
|
5
|
-
export interface ListSnapshotBlocksCommandInput extends ListSnapshotBlocksRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface ListSnapshotBlocksCommandOutput extends ListSnapshotBlocksResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class ListSnapshotBlocksCommand extends $Command<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput, EBSClientResolvedConfig> {
|
|
11
|
-
readonly input: ListSnapshotBlocksCommandInput;
|
|
12
|
-
constructor(input: ListSnapshotBlocksCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
-
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
|
|
5
|
-
import { PutSnapshotBlockRequest, PutSnapshotBlockResponse } from "../models/models_0";
|
|
6
|
-
declare type PutSnapshotBlockCommandInputType = Pick<PutSnapshotBlockRequest, Exclude<keyof PutSnapshotBlockRequest, "BlockData">> & {
|
|
7
|
-
|
|
8
|
-
BlockData: PutSnapshotBlockRequest["BlockData"] | string | Uint8Array | Buffer;
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
export interface PutSnapshotBlockCommandInput extends PutSnapshotBlockCommandInputType {
|
|
12
|
-
}
|
|
13
|
-
export interface PutSnapshotBlockCommandOutput extends PutSnapshotBlockResponse, __MetadataBearer {
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export declare class PutSnapshotBlockCommand extends $Command<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput, EBSClientResolvedConfig> {
|
|
17
|
-
readonly input: PutSnapshotBlockCommandInput;
|
|
18
|
-
constructor(input: PutSnapshotBlockCommandInput);
|
|
19
|
-
|
|
20
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput>;
|
|
21
|
-
private serialize;
|
|
22
|
-
private deserialize;
|
|
23
|
-
}
|
|
24
|
-
export {};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
|
|
4
|
-
import { StartSnapshotRequest, StartSnapshotResponse } from "../models/models_0";
|
|
5
|
-
export interface StartSnapshotCommandInput extends StartSnapshotRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface StartSnapshotCommandOutput extends StartSnapshotResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class StartSnapshotCommand extends $Command<StartSnapshotCommandInput, StartSnapshotCommandOutput, EBSClientResolvedConfig> {
|
|
11
|
-
readonly input: StartSnapshotCommandInput;
|
|
12
|
-
constructor(input: StartSnapshotCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSnapshotCommandInput, StartSnapshotCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1,325 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
3
|
-
import { Readable } from "stream";
|
|
4
|
-
export declare enum AccessDeniedExceptionReason {
|
|
5
|
-
DEPENDENCY_ACCESS_DENIED = "DEPENDENCY_ACCESS_DENIED",
|
|
6
|
-
UNAUTHORIZED_ACCOUNT = "UNAUTHORIZED_ACCOUNT"
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
10
|
-
name: "AccessDeniedException";
|
|
11
|
-
$fault: "client";
|
|
12
|
-
Message?: string;
|
|
13
|
-
|
|
14
|
-
Reason: AccessDeniedExceptionReason | string | undefined;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface Block {
|
|
18
|
-
|
|
19
|
-
BlockIndex?: number;
|
|
20
|
-
|
|
21
|
-
BlockToken?: string;
|
|
22
|
-
}
|
|
23
|
-
export declare namespace Block {
|
|
24
|
-
|
|
25
|
-
const filterSensitiveLog: (obj: Block) => any;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export interface ChangedBlock {
|
|
29
|
-
|
|
30
|
-
BlockIndex?: number;
|
|
31
|
-
|
|
32
|
-
FirstBlockToken?: string;
|
|
33
|
-
|
|
34
|
-
SecondBlockToken?: string;
|
|
35
|
-
}
|
|
36
|
-
export declare namespace ChangedBlock {
|
|
37
|
-
|
|
38
|
-
const filterSensitiveLog: (obj: ChangedBlock) => any;
|
|
39
|
-
}
|
|
40
|
-
export declare enum ChecksumAggregationMethod {
|
|
41
|
-
CHECKSUM_AGGREGATION_LINEAR = "LINEAR"
|
|
42
|
-
}
|
|
43
|
-
export declare enum ChecksumAlgorithm {
|
|
44
|
-
CHECKSUM_ALGORITHM_SHA256 = "SHA256"
|
|
45
|
-
}
|
|
46
|
-
export interface CompleteSnapshotRequest {
|
|
47
|
-
|
|
48
|
-
SnapshotId: string | undefined;
|
|
49
|
-
|
|
50
|
-
ChangedBlocksCount: number | undefined;
|
|
51
|
-
|
|
52
|
-
Checksum?: string;
|
|
53
|
-
|
|
54
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
55
|
-
|
|
56
|
-
ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
|
|
57
|
-
}
|
|
58
|
-
export declare namespace CompleteSnapshotRequest {
|
|
59
|
-
|
|
60
|
-
const filterSensitiveLog: (obj: CompleteSnapshotRequest) => any;
|
|
61
|
-
}
|
|
62
|
-
export declare enum Status {
|
|
63
|
-
COMPLETED = "completed",
|
|
64
|
-
ERROR = "error",
|
|
65
|
-
PENDING = "pending"
|
|
66
|
-
}
|
|
67
|
-
export interface CompleteSnapshotResponse {
|
|
68
|
-
|
|
69
|
-
Status?: Status | string;
|
|
70
|
-
}
|
|
71
|
-
export declare namespace CompleteSnapshotResponse {
|
|
72
|
-
|
|
73
|
-
const filterSensitiveLog: (obj: CompleteSnapshotResponse) => any;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
77
|
-
name: "InternalServerException";
|
|
78
|
-
$fault: "server";
|
|
79
|
-
Message?: string;
|
|
80
|
-
}
|
|
81
|
-
export declare enum RequestThrottledExceptionReason {
|
|
82
|
-
ACCOUNT_THROTTLED = "ACCOUNT_THROTTLED",
|
|
83
|
-
DEPENDENCY_REQUEST_THROTTLED = "DEPENDENCY_REQUEST_THROTTLED"
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface RequestThrottledException extends __SmithyException, $MetadataBearer {
|
|
87
|
-
name: "RequestThrottledException";
|
|
88
|
-
$fault: "client";
|
|
89
|
-
Message?: string;
|
|
90
|
-
|
|
91
|
-
Reason?: RequestThrottledExceptionReason | string;
|
|
92
|
-
}
|
|
93
|
-
export declare enum ResourceNotFoundExceptionReason {
|
|
94
|
-
DEPENDENCY_RESOURCE_NOT_FOUND = "DEPENDENCY_RESOURCE_NOT_FOUND",
|
|
95
|
-
SNAPSHOT_NOT_FOUND = "SNAPSHOT_NOT_FOUND"
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
99
|
-
name: "ResourceNotFoundException";
|
|
100
|
-
$fault: "client";
|
|
101
|
-
Message?: string;
|
|
102
|
-
|
|
103
|
-
Reason?: ResourceNotFoundExceptionReason | string;
|
|
104
|
-
}
|
|
105
|
-
export declare enum ServiceQuotaExceededExceptionReason {
|
|
106
|
-
DEPENDENCY_SERVICE_QUOTA_EXCEEDED = "DEPENDENCY_SERVICE_QUOTA_EXCEEDED"
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
110
|
-
name: "ServiceQuotaExceededException";
|
|
111
|
-
$fault: "client";
|
|
112
|
-
Message?: string;
|
|
113
|
-
|
|
114
|
-
Reason?: ServiceQuotaExceededExceptionReason | string;
|
|
115
|
-
}
|
|
116
|
-
export declare enum ValidationExceptionReason {
|
|
117
|
-
INVALID_BLOCK = "INVALID_BLOCK",
|
|
118
|
-
INVALID_BLOCK_TOKEN = "INVALID_BLOCK_TOKEN",
|
|
119
|
-
INVALID_CONTENT_ENCODING = "INVALID_CONTENT_ENCODING",
|
|
120
|
-
INVALID_CUSTOMER_KEY = "INVALID_CUSTOMER_KEY",
|
|
121
|
-
INVALID_DEPENDENCY_REQUEST = "INVALID_DEPENDENCY_REQUEST",
|
|
122
|
-
INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
|
|
123
|
-
INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE",
|
|
124
|
-
INVALID_SNAPSHOT_ID = "INVALID_SNAPSHOT_ID",
|
|
125
|
-
INVALID_TAG = "INVALID_TAG",
|
|
126
|
-
INVALID_VOLUME_SIZE = "INVALID_VOLUME_SIZE",
|
|
127
|
-
UNRELATED_SNAPSHOTS = "UNRELATED_SNAPSHOTS"
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
131
|
-
name: "ValidationException";
|
|
132
|
-
$fault: "client";
|
|
133
|
-
Message?: string;
|
|
134
|
-
|
|
135
|
-
Reason?: ValidationExceptionReason | string;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
export interface ConcurrentLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
139
|
-
name: "ConcurrentLimitExceededException";
|
|
140
|
-
$fault: "client";
|
|
141
|
-
Message?: string;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
145
|
-
name: "ConflictException";
|
|
146
|
-
$fault: "server";
|
|
147
|
-
Message?: string;
|
|
148
|
-
}
|
|
149
|
-
export interface GetSnapshotBlockRequest {
|
|
150
|
-
|
|
151
|
-
SnapshotId: string | undefined;
|
|
152
|
-
|
|
153
|
-
BlockIndex: number | undefined;
|
|
154
|
-
|
|
155
|
-
BlockToken: string | undefined;
|
|
156
|
-
}
|
|
157
|
-
export declare namespace GetSnapshotBlockRequest {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: GetSnapshotBlockRequest) => any;
|
|
160
|
-
}
|
|
161
|
-
export interface GetSnapshotBlockResponse {
|
|
162
|
-
|
|
163
|
-
DataLength?: number;
|
|
164
|
-
|
|
165
|
-
BlockData?: Readable | ReadableStream | Blob;
|
|
166
|
-
|
|
167
|
-
Checksum?: string;
|
|
168
|
-
|
|
169
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
170
|
-
}
|
|
171
|
-
export declare namespace GetSnapshotBlockResponse {
|
|
172
|
-
|
|
173
|
-
const filterSensitiveLog: (obj: GetSnapshotBlockResponse) => any;
|
|
174
|
-
}
|
|
175
|
-
export interface ListChangedBlocksRequest {
|
|
176
|
-
|
|
177
|
-
FirstSnapshotId?: string;
|
|
178
|
-
|
|
179
|
-
SecondSnapshotId: string | undefined;
|
|
180
|
-
|
|
181
|
-
NextToken?: string;
|
|
182
|
-
|
|
183
|
-
MaxResults?: number;
|
|
184
|
-
|
|
185
|
-
StartingBlockIndex?: number;
|
|
186
|
-
}
|
|
187
|
-
export declare namespace ListChangedBlocksRequest {
|
|
188
|
-
|
|
189
|
-
const filterSensitiveLog: (obj: ListChangedBlocksRequest) => any;
|
|
190
|
-
}
|
|
191
|
-
export interface ListChangedBlocksResponse {
|
|
192
|
-
|
|
193
|
-
ChangedBlocks?: ChangedBlock[];
|
|
194
|
-
|
|
195
|
-
ExpiryTime?: Date;
|
|
196
|
-
|
|
197
|
-
VolumeSize?: number;
|
|
198
|
-
|
|
199
|
-
BlockSize?: number;
|
|
200
|
-
|
|
201
|
-
NextToken?: string;
|
|
202
|
-
}
|
|
203
|
-
export declare namespace ListChangedBlocksResponse {
|
|
204
|
-
|
|
205
|
-
const filterSensitiveLog: (obj: ListChangedBlocksResponse) => any;
|
|
206
|
-
}
|
|
207
|
-
export interface ListSnapshotBlocksRequest {
|
|
208
|
-
|
|
209
|
-
SnapshotId: string | undefined;
|
|
210
|
-
|
|
211
|
-
NextToken?: string;
|
|
212
|
-
|
|
213
|
-
MaxResults?: number;
|
|
214
|
-
|
|
215
|
-
StartingBlockIndex?: number;
|
|
216
|
-
}
|
|
217
|
-
export declare namespace ListSnapshotBlocksRequest {
|
|
218
|
-
|
|
219
|
-
const filterSensitiveLog: (obj: ListSnapshotBlocksRequest) => any;
|
|
220
|
-
}
|
|
221
|
-
export interface ListSnapshotBlocksResponse {
|
|
222
|
-
|
|
223
|
-
Blocks?: Block[];
|
|
224
|
-
|
|
225
|
-
ExpiryTime?: Date;
|
|
226
|
-
|
|
227
|
-
VolumeSize?: number;
|
|
228
|
-
|
|
229
|
-
BlockSize?: number;
|
|
230
|
-
|
|
231
|
-
NextToken?: string;
|
|
232
|
-
}
|
|
233
|
-
export declare namespace ListSnapshotBlocksResponse {
|
|
234
|
-
|
|
235
|
-
const filterSensitiveLog: (obj: ListSnapshotBlocksResponse) => any;
|
|
236
|
-
}
|
|
237
|
-
export interface PutSnapshotBlockRequest {
|
|
238
|
-
|
|
239
|
-
SnapshotId: string | undefined;
|
|
240
|
-
|
|
241
|
-
BlockIndex: number | undefined;
|
|
242
|
-
|
|
243
|
-
BlockData: Readable | ReadableStream | Blob | undefined;
|
|
244
|
-
|
|
245
|
-
DataLength: number | undefined;
|
|
246
|
-
|
|
247
|
-
Progress?: number;
|
|
248
|
-
|
|
249
|
-
Checksum: string | undefined;
|
|
250
|
-
|
|
251
|
-
ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
|
|
252
|
-
}
|
|
253
|
-
export declare namespace PutSnapshotBlockRequest {
|
|
254
|
-
|
|
255
|
-
const filterSensitiveLog: (obj: PutSnapshotBlockRequest) => any;
|
|
256
|
-
}
|
|
257
|
-
export interface PutSnapshotBlockResponse {
|
|
258
|
-
|
|
259
|
-
Checksum?: string;
|
|
260
|
-
|
|
261
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
262
|
-
}
|
|
263
|
-
export declare namespace PutSnapshotBlockResponse {
|
|
264
|
-
|
|
265
|
-
const filterSensitiveLog: (obj: PutSnapshotBlockResponse) => any;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
export interface Tag {
|
|
269
|
-
|
|
270
|
-
Key?: string;
|
|
271
|
-
|
|
272
|
-
Value?: string;
|
|
273
|
-
}
|
|
274
|
-
export declare namespace Tag {
|
|
275
|
-
|
|
276
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
277
|
-
}
|
|
278
|
-
export interface StartSnapshotRequest {
|
|
279
|
-
|
|
280
|
-
VolumeSize: number | undefined;
|
|
281
|
-
|
|
282
|
-
ParentSnapshotId?: string;
|
|
283
|
-
|
|
284
|
-
Tags?: Tag[];
|
|
285
|
-
|
|
286
|
-
Description?: string;
|
|
287
|
-
|
|
288
|
-
ClientToken?: string;
|
|
289
|
-
|
|
290
|
-
Encrypted?: boolean;
|
|
291
|
-
|
|
292
|
-
KmsKeyArn?: string;
|
|
293
|
-
|
|
294
|
-
Timeout?: number;
|
|
295
|
-
}
|
|
296
|
-
export declare namespace StartSnapshotRequest {
|
|
297
|
-
|
|
298
|
-
const filterSensitiveLog: (obj: StartSnapshotRequest) => any;
|
|
299
|
-
}
|
|
300
|
-
export interface StartSnapshotResponse {
|
|
301
|
-
|
|
302
|
-
Description?: string;
|
|
303
|
-
|
|
304
|
-
SnapshotId?: string;
|
|
305
|
-
|
|
306
|
-
OwnerId?: string;
|
|
307
|
-
|
|
308
|
-
Status?: Status | string;
|
|
309
|
-
|
|
310
|
-
StartTime?: Date;
|
|
311
|
-
|
|
312
|
-
VolumeSize?: number;
|
|
313
|
-
|
|
314
|
-
BlockSize?: number;
|
|
315
|
-
|
|
316
|
-
Tags?: Tag[];
|
|
317
|
-
|
|
318
|
-
ParentSnapshotId?: string;
|
|
319
|
-
|
|
320
|
-
KmsKeyArn?: string;
|
|
321
|
-
}
|
|
322
|
-
export declare namespace StartSnapshotResponse {
|
|
323
|
-
|
|
324
|
-
const filterSensitiveLog: (obj: StartSnapshotResponse) => any;
|
|
325
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
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,4 +0,0 @@
|
|
|
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,20 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
-
import { CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput } from "../commands/CompleteSnapshotCommand";
|
|
4
|
-
import { GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput } from "../commands/GetSnapshotBlockCommand";
|
|
5
|
-
import { ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput } from "../commands/ListChangedBlocksCommand";
|
|
6
|
-
import { ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput } from "../commands/ListSnapshotBlocksCommand";
|
|
7
|
-
import { PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput } from "../commands/PutSnapshotBlockCommand";
|
|
8
|
-
import { StartSnapshotCommandInput, StartSnapshotCommandOutput } from "../commands/StartSnapshotCommand";
|
|
9
|
-
export declare const serializeAws_restJson1CompleteSnapshotCommand: (input: CompleteSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
-
export declare const serializeAws_restJson1GetSnapshotBlockCommand: (input: GetSnapshotBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
-
export declare const serializeAws_restJson1ListChangedBlocksCommand: (input: ListChangedBlocksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
-
export declare const serializeAws_restJson1ListSnapshotBlocksCommand: (input: ListSnapshotBlocksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
-
export declare const serializeAws_restJson1PutSnapshotBlockCommand: (input: PutSnapshotBlockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
-
export declare const serializeAws_restJson1StartSnapshotCommand: (input: StartSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
-
export declare const deserializeAws_restJson1CompleteSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompleteSnapshotCommandOutput>;
|
|
16
|
-
export declare const deserializeAws_restJson1GetSnapshotBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSnapshotBlockCommandOutput>;
|
|
17
|
-
export declare const deserializeAws_restJson1ListChangedBlocksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChangedBlocksCommandOutput>;
|
|
18
|
-
export declare const deserializeAws_restJson1ListSnapshotBlocksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSnapshotBlocksCommandOutput>;
|
|
19
|
-
export declare const deserializeAws_restJson1PutSnapshotBlockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSnapshotBlockCommandOutput>;
|
|
20
|
-
export declare const deserializeAws_restJson1StartSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSnapshotCommandOutput>;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { EBSClientConfig } from "./EBSClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
5
|
-
runtime: string;
|
|
6
|
-
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
-
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
-
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
-
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
-
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
-
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
-
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
-
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
-
apiVersion: string;
|
|
23
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
-
disableHostPrefix: boolean;
|
|
25
|
-
logger: import("@aws-sdk/types").Logger;
|
|
26
|
-
serviceId: string;
|
|
27
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
-
tls?: boolean | undefined;
|
|
30
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
-
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
-
signingEscapePath?: boolean | undefined;
|
|
34
|
-
systemClockOffset?: number | undefined;
|
|
35
|
-
signingRegion?: string | undefined;
|
|
36
|
-
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
-
};
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { EBSClientConfig } from "./EBSClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
5
|
-
runtime: string;
|
|
6
|
-
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
-
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
-
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
-
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
-
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
-
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
-
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
-
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
-
apiVersion: string;
|
|
23
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
-
disableHostPrefix: boolean;
|
|
25
|
-
logger: import("@aws-sdk/types").Logger;
|
|
26
|
-
serviceId: string;
|
|
27
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
-
tls?: boolean | undefined;
|
|
30
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
-
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
-
signingEscapePath?: boolean | undefined;
|
|
34
|
-
systemClockOffset?: number | undefined;
|
|
35
|
-
signingRegion?: string | undefined;
|
|
36
|
-
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { EBSClientConfig } from "./EBSClient";
|
|
2
|
-
|
|
3
|
-
export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
4
|
-
runtime: string;
|
|
5
|
-
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
-
apiVersion: string;
|
|
8
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
-
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
-
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
-
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
-
disableHostPrefix: boolean;
|
|
16
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
-
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
-
logger: import("@aws-sdk/types").Logger;
|
|
19
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
-
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
-
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
-
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
-
tls?: boolean | undefined;
|
|
29
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
-
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
-
signingEscapePath?: boolean | undefined;
|
|
33
|
-
systemClockOffset?: number | undefined;
|
|
34
|
-
signingRegion?: string | undefined;
|
|
35
|
-
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { EBSClientConfig } from "./EBSClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
5
|
-
apiVersion: string;
|
|
6
|
-
disableHostPrefix: boolean;
|
|
7
|
-
logger: __Logger;
|
|
8
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
-
serviceId: string;
|
|
10
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
};
|