@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 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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
+ }