@aws-sdk/client-ebs 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md 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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-ebs
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-ebs
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-ebs
@@ -1,35 +1,112 @@
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
+ 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
+
28
+ export declare class EBS extends EBSClient {
29
+ completeSnapshot(
30
+ args: CompleteSnapshotCommandInput,
31
+ options?: __HttpHandlerOptions
32
+ ): Promise<CompleteSnapshotCommandOutput>;
33
+ completeSnapshot(
34
+ args: CompleteSnapshotCommandInput,
35
+ cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
36
+ ): void;
37
+ completeSnapshot(
38
+ args: CompleteSnapshotCommandInput,
39
+ options: __HttpHandlerOptions,
40
+ cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
41
+ ): void;
42
+
43
+ getSnapshotBlock(
44
+ args: GetSnapshotBlockCommandInput,
45
+ options?: __HttpHandlerOptions
46
+ ): Promise<GetSnapshotBlockCommandOutput>;
47
+ getSnapshotBlock(
48
+ args: GetSnapshotBlockCommandInput,
49
+ cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
50
+ ): void;
51
+ getSnapshotBlock(
52
+ args: GetSnapshotBlockCommandInput,
53
+ options: __HttpHandlerOptions,
54
+ cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
55
+ ): void;
56
+
57
+ listChangedBlocks(
58
+ args: ListChangedBlocksCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<ListChangedBlocksCommandOutput>;
61
+ listChangedBlocks(
62
+ args: ListChangedBlocksCommandInput,
63
+ cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
64
+ ): void;
65
+ listChangedBlocks(
66
+ args: ListChangedBlocksCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
69
+ ): void;
70
+
71
+ listSnapshotBlocks(
72
+ args: ListSnapshotBlocksCommandInput,
73
+ options?: __HttpHandlerOptions
74
+ ): Promise<ListSnapshotBlocksCommandOutput>;
75
+ listSnapshotBlocks(
76
+ args: ListSnapshotBlocksCommandInput,
77
+ cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
78
+ ): void;
79
+ listSnapshotBlocks(
80
+ args: ListSnapshotBlocksCommandInput,
81
+ options: __HttpHandlerOptions,
82
+ cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
83
+ ): void;
84
+
85
+ putSnapshotBlock(
86
+ args: PutSnapshotBlockCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<PutSnapshotBlockCommandOutput>;
89
+ putSnapshotBlock(
90
+ args: PutSnapshotBlockCommandInput,
91
+ cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
92
+ ): void;
93
+ putSnapshotBlock(
94
+ args: PutSnapshotBlockCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
97
+ ): void;
98
+
99
+ startSnapshot(
100
+ args: StartSnapshotCommandInput,
101
+ options?: __HttpHandlerOptions
102
+ ): Promise<StartSnapshotCommandOutput>;
103
+ startSnapshot(
104
+ args: StartSnapshotCommandInput,
105
+ cb: (err: any, data?: StartSnapshotCommandOutput) => void
106
+ ): void;
107
+ startSnapshot(
108
+ args: StartSnapshotCommandInput,
109
+ options: __HttpHandlerOptions,
110
+ cb: (err: any, data?: StartSnapshotCommandOutput) => void
111
+ ): void;
112
+ }
@@ -1,79 +1,164 @@
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 { BodyLengthCalculator as __BodyLengthCalculator, 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?: __BodyLengthCalculator;
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
+ 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
+
87
+ sha256?: __HashConstructor;
88
+
89
+ urlParser?: __UrlParser;
90
+
91
+ bodyLengthChecker?: __BodyLengthCalculator;
92
+
93
+ streamCollector?: __StreamCollector;
94
+
95
+ base64Decoder?: __Decoder;
96
+
97
+ base64Encoder?: __Encoder;
98
+
99
+ utf8Decoder?: __Decoder;
100
+
101
+ utf8Encoder?: __Encoder;
102
+
103
+ runtime?: string;
104
+
105
+ disableHostPrefix?: boolean;
106
+
107
+ maxAttempts?: number | __Provider<number>;
108
+
109
+ retryMode?: string | __Provider<string>;
110
+
111
+ logger?: __Logger;
112
+
113
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
114
+
115
+ useFipsEndpoint?: boolean | __Provider<boolean>;
116
+
117
+ serviceId?: string;
118
+
119
+ region?: string | __Provider<string>;
120
+
121
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
122
+
123
+ regionInfoProvider?: RegionInfoProvider;
124
+
125
+ defaultUserAgentProvider?: Provider<__UserAgent>;
126
+
127
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
128
+ }
129
+ declare type EBSClientConfigType = Partial<
130
+ __SmithyConfiguration<__HttpHandlerOptions>
131
+ > &
132
+ ClientDefaults &
133
+ RegionInputConfig &
134
+ EndpointsInputConfig &
135
+ RetryInputConfig &
136
+ HostHeaderInputConfig &
137
+ AwsAuthInputConfig &
138
+ UserAgentInputConfig;
139
+
140
+ export interface EBSClientConfig extends EBSClientConfigType {}
141
+ declare type EBSClientResolvedConfigType =
142
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
143
+ Required<ClientDefaults> &
144
+ RegionResolvedConfig &
145
+ EndpointsResolvedConfig &
146
+ RetryResolvedConfig &
147
+ HostHeaderResolvedConfig &
148
+ AwsAuthResolvedConfig &
149
+ UserAgentResolvedConfig;
150
+
151
+ export interface EBSClientResolvedConfig extends EBSClientResolvedConfigType {}
152
+
153
+ export declare class EBSClient extends __Client<
154
+ __HttpHandlerOptions,
155
+ ServiceInputTypes,
156
+ ServiceOutputTypes,
157
+ EBSClientResolvedConfig
158
+ > {
159
+ readonly config: EBSClientResolvedConfig;
160
+ constructor(configuration: EBSClientConfig);
161
+
162
+ destroy(): void;
163
+ }
164
+ export {};
@@ -1,17 +1,37 @@
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
+ 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
+
22
+ export declare class CompleteSnapshotCommand extends $Command<
23
+ CompleteSnapshotCommandInput,
24
+ CompleteSnapshotCommandOutput,
25
+ EBSClientResolvedConfig
26
+ > {
27
+ readonly input: CompleteSnapshotCommandInput;
28
+ constructor(input: CompleteSnapshotCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: EBSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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
+ 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
+
22
+ export declare class GetSnapshotBlockCommand extends $Command<
23
+ GetSnapshotBlockCommandInput,
24
+ GetSnapshotBlockCommandOutput,
25
+ EBSClientResolvedConfig
26
+ > {
27
+ readonly input: GetSnapshotBlockCommandInput;
28
+ constructor(input: GetSnapshotBlockCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: EBSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
+ 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
+
23
+ export declare class ListChangedBlocksCommand extends $Command<
24
+ ListChangedBlocksCommandInput,
25
+ ListChangedBlocksCommandOutput,
26
+ EBSClientResolvedConfig
27
+ > {
28
+ readonly input: ListChangedBlocksCommandInput;
29
+ constructor(input: ListChangedBlocksCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EBSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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
+ 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
+
23
+ export declare class ListSnapshotBlocksCommand extends $Command<
24
+ ListSnapshotBlocksCommandInput,
25
+ ListSnapshotBlocksCommandOutput,
26
+ EBSClientResolvedConfig
27
+ > {
28
+ readonly input: ListSnapshotBlocksCommandInput;
29
+ constructor(input: ListSnapshotBlocksCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EBSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }