@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/EBS.d.ts +106 -35
- package/dist-types/ts3.4/EBSClient.d.ts +139 -79
- package/dist-types/ts3.4/commands/CompleteSnapshotCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetSnapshotBlockCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListChangedBlocksCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListSnapshotBlocksCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutSnapshotBlockCommand.d.ts +47 -24
- package/dist-types/ts3.4/commands/StartSnapshotCommand.d.ts +35 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +249 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-ebs
|
|
@@ -1,35 +1,106 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CompleteSnapshotCommandInput,
|
|
4
|
+
CompleteSnapshotCommandOutput,
|
|
5
|
+
} from "./commands/CompleteSnapshotCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetSnapshotBlockCommandInput,
|
|
8
|
+
GetSnapshotBlockCommandOutput,
|
|
9
|
+
} from "./commands/GetSnapshotBlockCommand";
|
|
10
|
+
import {
|
|
11
|
+
ListChangedBlocksCommandInput,
|
|
12
|
+
ListChangedBlocksCommandOutput,
|
|
13
|
+
} from "./commands/ListChangedBlocksCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListSnapshotBlocksCommandInput,
|
|
16
|
+
ListSnapshotBlocksCommandOutput,
|
|
17
|
+
} from "./commands/ListSnapshotBlocksCommand";
|
|
18
|
+
import {
|
|
19
|
+
PutSnapshotBlockCommandInput,
|
|
20
|
+
PutSnapshotBlockCommandOutput,
|
|
21
|
+
} from "./commands/PutSnapshotBlockCommand";
|
|
22
|
+
import {
|
|
23
|
+
StartSnapshotCommandInput,
|
|
24
|
+
StartSnapshotCommandOutput,
|
|
25
|
+
} from "./commands/StartSnapshotCommand";
|
|
26
|
+
import { EBSClient } from "./EBSClient";
|
|
27
|
+
export declare class EBS extends EBSClient {
|
|
28
|
+
completeSnapshot(
|
|
29
|
+
args: CompleteSnapshotCommandInput,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Promise<CompleteSnapshotCommandOutput>;
|
|
32
|
+
completeSnapshot(
|
|
33
|
+
args: CompleteSnapshotCommandInput,
|
|
34
|
+
cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
|
|
35
|
+
): void;
|
|
36
|
+
completeSnapshot(
|
|
37
|
+
args: CompleteSnapshotCommandInput,
|
|
38
|
+
options: __HttpHandlerOptions,
|
|
39
|
+
cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
getSnapshotBlock(
|
|
42
|
+
args: GetSnapshotBlockCommandInput,
|
|
43
|
+
options?: __HttpHandlerOptions
|
|
44
|
+
): Promise<GetSnapshotBlockCommandOutput>;
|
|
45
|
+
getSnapshotBlock(
|
|
46
|
+
args: GetSnapshotBlockCommandInput,
|
|
47
|
+
cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
|
|
48
|
+
): void;
|
|
49
|
+
getSnapshotBlock(
|
|
50
|
+
args: GetSnapshotBlockCommandInput,
|
|
51
|
+
options: __HttpHandlerOptions,
|
|
52
|
+
cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
listChangedBlocks(
|
|
55
|
+
args: ListChangedBlocksCommandInput,
|
|
56
|
+
options?: __HttpHandlerOptions
|
|
57
|
+
): Promise<ListChangedBlocksCommandOutput>;
|
|
58
|
+
listChangedBlocks(
|
|
59
|
+
args: ListChangedBlocksCommandInput,
|
|
60
|
+
cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
listChangedBlocks(
|
|
63
|
+
args: ListChangedBlocksCommandInput,
|
|
64
|
+
options: __HttpHandlerOptions,
|
|
65
|
+
cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
listSnapshotBlocks(
|
|
68
|
+
args: ListSnapshotBlocksCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<ListSnapshotBlocksCommandOutput>;
|
|
71
|
+
listSnapshotBlocks(
|
|
72
|
+
args: ListSnapshotBlocksCommandInput,
|
|
73
|
+
cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
listSnapshotBlocks(
|
|
76
|
+
args: ListSnapshotBlocksCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
putSnapshotBlock(
|
|
81
|
+
args: PutSnapshotBlockCommandInput,
|
|
82
|
+
options?: __HttpHandlerOptions
|
|
83
|
+
): Promise<PutSnapshotBlockCommandOutput>;
|
|
84
|
+
putSnapshotBlock(
|
|
85
|
+
args: PutSnapshotBlockCommandInput,
|
|
86
|
+
cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
putSnapshotBlock(
|
|
89
|
+
args: PutSnapshotBlockCommandInput,
|
|
90
|
+
options: __HttpHandlerOptions,
|
|
91
|
+
cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
startSnapshot(
|
|
94
|
+
args: StartSnapshotCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<StartSnapshotCommandOutput>;
|
|
97
|
+
startSnapshot(
|
|
98
|
+
args: StartSnapshotCommandInput,
|
|
99
|
+
cb: (err: any, data?: StartSnapshotCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
startSnapshot(
|
|
102
|
+
args: StartSnapshotCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: StartSnapshotCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
}
|
|
@@ -1,79 +1,139 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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
|
-
export
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CompleteSnapshotCommandInput,
|
|
47
|
+
CompleteSnapshotCommandOutput,
|
|
48
|
+
} from "./commands/CompleteSnapshotCommand";
|
|
49
|
+
import {
|
|
50
|
+
GetSnapshotBlockCommandInput,
|
|
51
|
+
GetSnapshotBlockCommandOutput,
|
|
52
|
+
} from "./commands/GetSnapshotBlockCommand";
|
|
53
|
+
import {
|
|
54
|
+
ListChangedBlocksCommandInput,
|
|
55
|
+
ListChangedBlocksCommandOutput,
|
|
56
|
+
} from "./commands/ListChangedBlocksCommand";
|
|
57
|
+
import {
|
|
58
|
+
ListSnapshotBlocksCommandInput,
|
|
59
|
+
ListSnapshotBlocksCommandOutput,
|
|
60
|
+
} from "./commands/ListSnapshotBlocksCommand";
|
|
61
|
+
import {
|
|
62
|
+
PutSnapshotBlockCommandInput,
|
|
63
|
+
PutSnapshotBlockCommandOutput,
|
|
64
|
+
} from "./commands/PutSnapshotBlockCommand";
|
|
65
|
+
import {
|
|
66
|
+
StartSnapshotCommandInput,
|
|
67
|
+
StartSnapshotCommandOutput,
|
|
68
|
+
} from "./commands/StartSnapshotCommand";
|
|
69
|
+
export declare type ServiceInputTypes =
|
|
70
|
+
| CompleteSnapshotCommandInput
|
|
71
|
+
| GetSnapshotBlockCommandInput
|
|
72
|
+
| ListChangedBlocksCommandInput
|
|
73
|
+
| ListSnapshotBlocksCommandInput
|
|
74
|
+
| PutSnapshotBlockCommandInput
|
|
75
|
+
| StartSnapshotCommandInput;
|
|
76
|
+
export declare type ServiceOutputTypes =
|
|
77
|
+
| CompleteSnapshotCommandOutput
|
|
78
|
+
| GetSnapshotBlockCommandOutput
|
|
79
|
+
| ListChangedBlocksCommandOutput
|
|
80
|
+
| ListSnapshotBlocksCommandOutput
|
|
81
|
+
| PutSnapshotBlockCommandOutput
|
|
82
|
+
| StartSnapshotCommandOutput;
|
|
83
|
+
export interface ClientDefaults
|
|
84
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
85
|
+
requestHandler?: __HttpHandler;
|
|
86
|
+
sha256?: __HashConstructor;
|
|
87
|
+
urlParser?: __UrlParser;
|
|
88
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
89
|
+
streamCollector?: __StreamCollector;
|
|
90
|
+
base64Decoder?: __Decoder;
|
|
91
|
+
base64Encoder?: __Encoder;
|
|
92
|
+
utf8Decoder?: __Decoder;
|
|
93
|
+
utf8Encoder?: __Encoder;
|
|
94
|
+
runtime?: string;
|
|
95
|
+
disableHostPrefix?: boolean;
|
|
96
|
+
maxAttempts?: number | __Provider<number>;
|
|
97
|
+
retryMode?: string | __Provider<string>;
|
|
98
|
+
logger?: __Logger;
|
|
99
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
100
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
101
|
+
serviceId?: string;
|
|
102
|
+
region?: string | __Provider<string>;
|
|
103
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
104
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
105
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
106
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
107
|
+
}
|
|
108
|
+
declare type EBSClientConfigType = Partial<
|
|
109
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
110
|
+
> &
|
|
111
|
+
ClientDefaults &
|
|
112
|
+
RegionInputConfig &
|
|
113
|
+
EndpointsInputConfig &
|
|
114
|
+
RetryInputConfig &
|
|
115
|
+
HostHeaderInputConfig &
|
|
116
|
+
AwsAuthInputConfig &
|
|
117
|
+
UserAgentInputConfig;
|
|
118
|
+
export interface EBSClientConfig extends EBSClientConfigType {}
|
|
119
|
+
declare type EBSClientResolvedConfigType =
|
|
120
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
121
|
+
Required<ClientDefaults> &
|
|
122
|
+
RegionResolvedConfig &
|
|
123
|
+
EndpointsResolvedConfig &
|
|
124
|
+
RetryResolvedConfig &
|
|
125
|
+
HostHeaderResolvedConfig &
|
|
126
|
+
AwsAuthResolvedConfig &
|
|
127
|
+
UserAgentResolvedConfig;
|
|
128
|
+
export interface EBSClientResolvedConfig extends EBSClientResolvedConfigType {}
|
|
129
|
+
export declare class EBSClient extends __Client<
|
|
130
|
+
__HttpHandlerOptions,
|
|
131
|
+
ServiceInputTypes,
|
|
132
|
+
ServiceOutputTypes,
|
|
133
|
+
EBSClientResolvedConfig
|
|
134
|
+
> {
|
|
135
|
+
readonly config: EBSClientResolvedConfig;
|
|
136
|
+
constructor(configuration: EBSClientConfig);
|
|
137
|
+
destroy(): void;
|
|
138
|
+
}
|
|
139
|
+
export {};
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EBSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EBSClient";
|
|
13
|
+
import {
|
|
14
|
+
CompleteSnapshotRequest,
|
|
15
|
+
CompleteSnapshotResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CompleteSnapshotCommandInput extends CompleteSnapshotRequest {}
|
|
18
|
+
export interface CompleteSnapshotCommandOutput
|
|
19
|
+
extends CompleteSnapshotResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class CompleteSnapshotCommand extends $Command<
|
|
22
|
+
CompleteSnapshotCommandInput,
|
|
23
|
+
CompleteSnapshotCommandOutput,
|
|
24
|
+
EBSClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CompleteSnapshotCommandInput;
|
|
27
|
+
constructor(input: CompleteSnapshotCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: EBSClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EBSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EBSClient";
|
|
13
|
+
import {
|
|
14
|
+
GetSnapshotBlockRequest,
|
|
15
|
+
GetSnapshotBlockResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetSnapshotBlockCommandInput extends GetSnapshotBlockRequest {}
|
|
18
|
+
export interface GetSnapshotBlockCommandOutput
|
|
19
|
+
extends GetSnapshotBlockResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetSnapshotBlockCommand extends $Command<
|
|
22
|
+
GetSnapshotBlockCommandInput,
|
|
23
|
+
GetSnapshotBlockCommandOutput,
|
|
24
|
+
EBSClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetSnapshotBlockCommandInput;
|
|
27
|
+
constructor(input: GetSnapshotBlockCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: EBSClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EBSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EBSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListChangedBlocksRequest,
|
|
15
|
+
ListChangedBlocksResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListChangedBlocksCommandInput
|
|
18
|
+
extends ListChangedBlocksRequest {}
|
|
19
|
+
export interface ListChangedBlocksCommandOutput
|
|
20
|
+
extends ListChangedBlocksResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListChangedBlocksCommand extends $Command<
|
|
23
|
+
ListChangedBlocksCommandInput,
|
|
24
|
+
ListChangedBlocksCommandOutput,
|
|
25
|
+
EBSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListChangedBlocksCommandInput;
|
|
28
|
+
constructor(input: ListChangedBlocksCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: EBSClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EBSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EBSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListSnapshotBlocksRequest,
|
|
15
|
+
ListSnapshotBlocksResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListSnapshotBlocksCommandInput
|
|
18
|
+
extends ListSnapshotBlocksRequest {}
|
|
19
|
+
export interface ListSnapshotBlocksCommandOutput
|
|
20
|
+
extends ListSnapshotBlocksResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListSnapshotBlocksCommand extends $Command<
|
|
23
|
+
ListSnapshotBlocksCommandInput,
|
|
24
|
+
ListSnapshotBlocksCommandOutput,
|
|
25
|
+
EBSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListSnapshotBlocksCommandInput;
|
|
28
|
+
constructor(input: ListSnapshotBlocksCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: EBSClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|