@aws-sdk/client-ebs 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/EBS.d.ts +20 -20
- package/dist-types/ts3.4/EBSClient.d.ts +13 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CompleteSnapshotCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSnapshotBlockCommand.d.ts +6 -14
- package/dist-types/ts3.4/commands/ListChangedBlocksCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSnapshotBlocksCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSnapshotBlockCommand.d.ts +9 -18
- package/dist-types/ts3.4/commands/StartSnapshotCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +7 -24
- package/dist-types/ts3.4/models/models_0.d.ts +1 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -31,95 +31,95 @@ import { EBSClient } from "./EBSClient";
|
|
|
31
31
|
export interface EBS {
|
|
32
32
|
completeSnapshot(
|
|
33
33
|
args: CompleteSnapshotCommandInput,
|
|
34
|
-
options?: __HttpHandlerOptions
|
|
34
|
+
options?: __HttpHandlerOptions,
|
|
35
35
|
): Promise<CompleteSnapshotCommandOutput>;
|
|
36
36
|
completeSnapshot(
|
|
37
37
|
args: CompleteSnapshotCommandInput,
|
|
38
|
-
cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
|
|
38
|
+
cb: (err: any, data?: CompleteSnapshotCommandOutput) => void,
|
|
39
39
|
): void;
|
|
40
40
|
completeSnapshot(
|
|
41
41
|
args: CompleteSnapshotCommandInput,
|
|
42
42
|
options: __HttpHandlerOptions,
|
|
43
|
-
cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
|
|
43
|
+
cb: (err: any, data?: CompleteSnapshotCommandOutput) => void,
|
|
44
44
|
): void;
|
|
45
45
|
getSnapshotBlock(
|
|
46
46
|
args: GetSnapshotBlockCommandInput,
|
|
47
|
-
options?: __HttpHandlerOptions
|
|
47
|
+
options?: __HttpHandlerOptions,
|
|
48
48
|
): Promise<GetSnapshotBlockCommandOutput>;
|
|
49
49
|
getSnapshotBlock(
|
|
50
50
|
args: GetSnapshotBlockCommandInput,
|
|
51
|
-
cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
|
|
51
|
+
cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void,
|
|
52
52
|
): void;
|
|
53
53
|
getSnapshotBlock(
|
|
54
54
|
args: GetSnapshotBlockCommandInput,
|
|
55
55
|
options: __HttpHandlerOptions,
|
|
56
|
-
cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
|
|
56
|
+
cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void,
|
|
57
57
|
): void;
|
|
58
58
|
listChangedBlocks(
|
|
59
59
|
args: ListChangedBlocksCommandInput,
|
|
60
|
-
options?: __HttpHandlerOptions
|
|
60
|
+
options?: __HttpHandlerOptions,
|
|
61
61
|
): Promise<ListChangedBlocksCommandOutput>;
|
|
62
62
|
listChangedBlocks(
|
|
63
63
|
args: ListChangedBlocksCommandInput,
|
|
64
|
-
cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
|
|
64
|
+
cb: (err: any, data?: ListChangedBlocksCommandOutput) => void,
|
|
65
65
|
): void;
|
|
66
66
|
listChangedBlocks(
|
|
67
67
|
args: ListChangedBlocksCommandInput,
|
|
68
68
|
options: __HttpHandlerOptions,
|
|
69
|
-
cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
|
|
69
|
+
cb: (err: any, data?: ListChangedBlocksCommandOutput) => void,
|
|
70
70
|
): void;
|
|
71
71
|
listSnapshotBlocks(
|
|
72
72
|
args: ListSnapshotBlocksCommandInput,
|
|
73
|
-
options?: __HttpHandlerOptions
|
|
73
|
+
options?: __HttpHandlerOptions,
|
|
74
74
|
): Promise<ListSnapshotBlocksCommandOutput>;
|
|
75
75
|
listSnapshotBlocks(
|
|
76
76
|
args: ListSnapshotBlocksCommandInput,
|
|
77
|
-
cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
|
|
77
|
+
cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void,
|
|
78
78
|
): void;
|
|
79
79
|
listSnapshotBlocks(
|
|
80
80
|
args: ListSnapshotBlocksCommandInput,
|
|
81
81
|
options: __HttpHandlerOptions,
|
|
82
|
-
cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
|
|
82
|
+
cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void,
|
|
83
83
|
): void;
|
|
84
84
|
putSnapshotBlock(
|
|
85
85
|
args: PutSnapshotBlockCommandInput,
|
|
86
|
-
options?: __HttpHandlerOptions
|
|
86
|
+
options?: __HttpHandlerOptions,
|
|
87
87
|
): Promise<PutSnapshotBlockCommandOutput>;
|
|
88
88
|
putSnapshotBlock(
|
|
89
89
|
args: PutSnapshotBlockCommandInput,
|
|
90
|
-
cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
|
|
90
|
+
cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void,
|
|
91
91
|
): void;
|
|
92
92
|
putSnapshotBlock(
|
|
93
93
|
args: PutSnapshotBlockCommandInput,
|
|
94
94
|
options: __HttpHandlerOptions,
|
|
95
|
-
cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void,
|
|
96
96
|
): void;
|
|
97
97
|
startSnapshot(
|
|
98
98
|
args: StartSnapshotCommandInput,
|
|
99
|
-
options?: __HttpHandlerOptions
|
|
99
|
+
options?: __HttpHandlerOptions,
|
|
100
100
|
): Promise<StartSnapshotCommandOutput>;
|
|
101
101
|
startSnapshot(
|
|
102
102
|
args: StartSnapshotCommandInput,
|
|
103
|
-
cb: (err: any, data?: StartSnapshotCommandOutput) => void
|
|
103
|
+
cb: (err: any, data?: StartSnapshotCommandOutput) => void,
|
|
104
104
|
): void;
|
|
105
105
|
startSnapshot(
|
|
106
106
|
args: StartSnapshotCommandInput,
|
|
107
107
|
options: __HttpHandlerOptions,
|
|
108
|
-
cb: (err: any, data?: StartSnapshotCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: StartSnapshotCommandOutput) => void,
|
|
109
109
|
): void;
|
|
110
110
|
paginateListChangedBlocks(
|
|
111
111
|
args: ListChangedBlocksCommandInput,
|
|
112
112
|
paginationConfig?: Pick<
|
|
113
113
|
PaginationConfiguration,
|
|
114
114
|
Exclude<keyof PaginationConfiguration, "client">
|
|
115
|
-
|
|
115
|
+
>,
|
|
116
116
|
): Paginator<ListChangedBlocksCommandOutput>;
|
|
117
117
|
paginateListSnapshotBlocks(
|
|
118
118
|
args: ListSnapshotBlocksCommandInput,
|
|
119
119
|
paginationConfig?: Pick<
|
|
120
120
|
PaginationConfiguration,
|
|
121
121
|
Exclude<keyof PaginationConfiguration, "client">
|
|
122
|
-
|
|
122
|
+
>,
|
|
123
123
|
): Paginator<ListSnapshotBlocksCommandOutput>;
|
|
124
124
|
}
|
|
125
125
|
export declare class EBS extends EBSClient implements EBS {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -82,8 +79,7 @@ export type ServiceOutputTypes =
|
|
|
82
79
|
| ListSnapshotBlocksCommandOutput
|
|
83
80
|
| PutSnapshotBlockCommandOutput
|
|
84
81
|
| StartSnapshotCommandOutput;
|
|
85
|
-
export interface ClientDefaults
|
|
86
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
82
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
87
83
|
requestHandler?: __HttpHandlerUserInput;
|
|
88
84
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
89
85
|
urlParser?: __UrlParser;
|
|
@@ -109,9 +105,7 @@ export interface ClientDefaults
|
|
|
109
105
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
110
106
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
111
107
|
}
|
|
112
|
-
export type EBSClientConfigType = Partial<
|
|
113
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
114
|
-
> &
|
|
108
|
+
export type EBSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
115
109
|
ClientDefaults &
|
|
116
110
|
UserAgentInputConfig &
|
|
117
111
|
RetryInputConfig &
|
|
@@ -121,17 +115,16 @@ export type EBSClientConfigType = Partial<
|
|
|
121
115
|
HttpAuthSchemeInputConfig &
|
|
122
116
|
ClientInputEndpointParameters;
|
|
123
117
|
export interface EBSClientConfig extends EBSClientConfigType {}
|
|
124
|
-
export type EBSClientResolvedConfigType =
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
ClientResolvedEndpointParameters;
|
|
118
|
+
export type EBSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
119
|
+
Required<ClientDefaults> &
|
|
120
|
+
RuntimeExtensionsConfig &
|
|
121
|
+
UserAgentResolvedConfig &
|
|
122
|
+
RetryResolvedConfig &
|
|
123
|
+
RegionResolvedConfig &
|
|
124
|
+
HostHeaderResolvedConfig &
|
|
125
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
126
|
+
HttpAuthSchemeResolvedConfig &
|
|
127
|
+
ClientResolvedEndpointParameters;
|
|
135
128
|
export interface EBSClientResolvedConfig extends EBSClientResolvedConfigType {}
|
|
136
129
|
export declare class EBSClient extends __Client<
|
|
137
130
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { EBSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: EBSHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: EBSHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): EBSHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -15,32 +15,29 @@ import { EBSClientResolvedConfig } from "../EBSClient";
|
|
|
15
15
|
export interface EBSHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface EBSHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface EBSHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
EBSClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
EBSHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultEBSHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: EBSClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<EBSHttpAuthSchemeParameters>;
|
|
30
|
-
export interface EBSHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<EBSHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface EBSHttpAuthSchemeProvider extends HttpAuthSchemeProvider<EBSHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultEBSHttpAuthSchemeProvider: EBSHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: EBSHttpAuthSchemeProvider;
|
|
37
35
|
}
|
|
38
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
41
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
39
|
readonly httpAuthSchemeProvider: EBSHttpAuthSchemeProvider;
|
|
43
40
|
}
|
|
44
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
46
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./EBSClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./EBSClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
EBSClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CompleteSnapshotRequest,
|
|
4
|
-
CompleteSnapshotResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CompleteSnapshotRequest, CompleteSnapshotResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CompleteSnapshotCommandInput extends CompleteSnapshotRequest {}
|
|
8
|
-
export interface CompleteSnapshotCommandOutput
|
|
9
|
-
extends CompleteSnapshotResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CompleteSnapshotCommandOutput extends CompleteSnapshotResponse, __MetadataBearer {}
|
|
11
6
|
declare const CompleteSnapshotCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CompleteSnapshotCommandInput
|
|
8
|
+
input: CompleteSnapshotCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CompleteSnapshotCommandInput,
|
|
16
11
|
CompleteSnapshotCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CompleteSnapshotCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CompleteSnapshotCommandInput
|
|
17
|
+
input: CompleteSnapshotCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CompleteSnapshotCommandInput,
|
|
25
20
|
CompleteSnapshotCommandOutput,
|
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
StreamingBlobPayloadOutputTypes,
|
|
4
|
-
} from "@smithy/types";
|
|
5
|
-
import {
|
|
6
|
-
GetSnapshotBlockRequest,
|
|
7
|
-
GetSnapshotBlockResponse,
|
|
8
|
-
} from "../models/models_0";
|
|
1
|
+
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
2
|
+
import { GetSnapshotBlockRequest, GetSnapshotBlockResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
4
|
export interface GetSnapshotBlockCommandInput extends GetSnapshotBlockRequest {}
|
|
11
5
|
export interface GetSnapshotBlockCommandOutput
|
|
12
|
-
extends
|
|
13
|
-
|
|
14
|
-
Exclude<keyof GetSnapshotBlockResponse, "BlockData">
|
|
15
|
-
>,
|
|
6
|
+
extends
|
|
7
|
+
Pick<GetSnapshotBlockResponse, Exclude<keyof GetSnapshotBlockResponse, "BlockData">>,
|
|
16
8
|
__MetadataBearer {
|
|
17
9
|
BlockData?: StreamingBlobPayloadOutputTypes;
|
|
18
10
|
}
|
|
19
11
|
declare const GetSnapshotBlockCommand_base: {
|
|
20
12
|
new (
|
|
21
|
-
input: GetSnapshotBlockCommandInput
|
|
13
|
+
input: GetSnapshotBlockCommandInput,
|
|
22
14
|
): import("@smithy/core/client").CommandImpl<
|
|
23
15
|
GetSnapshotBlockCommandInput,
|
|
24
16
|
GetSnapshotBlockCommandOutput,
|
|
@@ -27,7 +19,7 @@ declare const GetSnapshotBlockCommand_base: {
|
|
|
27
19
|
import("..").ServiceOutputTypes
|
|
28
20
|
>;
|
|
29
21
|
new (
|
|
30
|
-
input: GetSnapshotBlockCommandInput
|
|
22
|
+
input: GetSnapshotBlockCommandInput,
|
|
31
23
|
): import("@smithy/core/client").CommandImpl<
|
|
32
24
|
GetSnapshotBlockCommandInput,
|
|
33
25
|
GetSnapshotBlockCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListChangedBlocksRequest,
|
|
4
|
-
ListChangedBlocksResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListChangedBlocksRequest, ListChangedBlocksResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListChangedBlocksCommandInput
|
|
8
|
-
extends ListChangedBlocksRequest {}
|
|
4
|
+
export interface ListChangedBlocksCommandInput extends ListChangedBlocksRequest {}
|
|
9
5
|
export interface ListChangedBlocksCommandOutput
|
|
10
|
-
extends ListChangedBlocksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListChangedBlocksResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListChangedBlocksCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListChangedBlocksCommandInput
|
|
9
|
+
input: ListChangedBlocksCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListChangedBlocksCommandInput,
|
|
17
12
|
ListChangedBlocksCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListChangedBlocksCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListChangedBlocksCommandInput
|
|
18
|
+
input: ListChangedBlocksCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListChangedBlocksCommandInput,
|
|
26
21
|
ListChangedBlocksCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSnapshotBlocksRequest,
|
|
4
|
-
ListSnapshotBlocksResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSnapshotBlocksRequest, ListSnapshotBlocksResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSnapshotBlocksCommandInput
|
|
8
|
-
extends ListSnapshotBlocksRequest {}
|
|
4
|
+
export interface ListSnapshotBlocksCommandInput extends ListSnapshotBlocksRequest {}
|
|
9
5
|
export interface ListSnapshotBlocksCommandOutput
|
|
10
|
-
extends ListSnapshotBlocksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSnapshotBlocksResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListSnapshotBlocksCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSnapshotBlocksCommandInput
|
|
9
|
+
input: ListSnapshotBlocksCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSnapshotBlocksCommandInput,
|
|
17
12
|
ListSnapshotBlocksCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListSnapshotBlocksCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListSnapshotBlocksCommandInput
|
|
18
|
+
input: ListSnapshotBlocksCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListSnapshotBlocksCommandInput,
|
|
26
21
|
ListSnapshotBlocksCommandOutput,
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
StreamingBlobPayloadInputTypes,
|
|
4
|
-
} from "@smithy/types";
|
|
5
|
-
import {
|
|
6
|
-
PutSnapshotBlockRequest,
|
|
7
|
-
PutSnapshotBlockResponse,
|
|
8
|
-
} from "../models/models_0";
|
|
1
|
+
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types";
|
|
2
|
+
import { PutSnapshotBlockRequest, PutSnapshotBlockResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export interface PutSnapshotBlockCommandInput
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
> {
|
|
4
|
+
export interface PutSnapshotBlockCommandInput extends Pick<
|
|
5
|
+
PutSnapshotBlockRequest,
|
|
6
|
+
Exclude<keyof PutSnapshotBlockRequest, "BlockData">
|
|
7
|
+
> {
|
|
15
8
|
BlockData: StreamingBlobPayloadInputTypes;
|
|
16
9
|
}
|
|
17
|
-
export interface PutSnapshotBlockCommandOutput
|
|
18
|
-
extends PutSnapshotBlockResponse,
|
|
19
|
-
__MetadataBearer {}
|
|
10
|
+
export interface PutSnapshotBlockCommandOutput extends PutSnapshotBlockResponse, __MetadataBearer {}
|
|
20
11
|
declare const PutSnapshotBlockCommand_base: {
|
|
21
12
|
new (
|
|
22
|
-
input: PutSnapshotBlockCommandInput
|
|
13
|
+
input: PutSnapshotBlockCommandInput,
|
|
23
14
|
): import("@smithy/core/client").CommandImpl<
|
|
24
15
|
PutSnapshotBlockCommandInput,
|
|
25
16
|
PutSnapshotBlockCommandOutput,
|
|
@@ -28,7 +19,7 @@ declare const PutSnapshotBlockCommand_base: {
|
|
|
28
19
|
import("..").ServiceOutputTypes
|
|
29
20
|
>;
|
|
30
21
|
new (
|
|
31
|
-
input: PutSnapshotBlockCommandInput
|
|
22
|
+
input: PutSnapshotBlockCommandInput,
|
|
32
23
|
): import("@smithy/core/client").CommandImpl<
|
|
33
24
|
PutSnapshotBlockCommandInput,
|
|
34
25
|
PutSnapshotBlockCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartSnapshotRequest,
|
|
4
|
-
StartSnapshotResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartSnapshotRequest, StartSnapshotResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartSnapshotCommandInput extends StartSnapshotRequest {}
|
|
8
|
-
export interface StartSnapshotCommandOutput
|
|
9
|
-
extends StartSnapshotResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartSnapshotCommandOutput extends StartSnapshotResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartSnapshotCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartSnapshotCommandInput
|
|
8
|
+
input: StartSnapshotCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartSnapshotCommandInput,
|
|
16
11
|
StartSnapshotCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartSnapshotCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartSnapshotCommandInput
|
|
17
|
+
input: StartSnapshotCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartSnapshotCommandInput,
|
|
25
20
|
StartSnapshotCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface EBSExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -12,8 +12,7 @@ export type ChecksumAggregationMethod =
|
|
|
12
12
|
export declare const ChecksumAlgorithm: {
|
|
13
13
|
readonly CHECKSUM_ALGORITHM_SHA256: "SHA256";
|
|
14
14
|
};
|
|
15
|
-
export type ChecksumAlgorithm =
|
|
16
|
-
(typeof ChecksumAlgorithm)[keyof typeof ChecksumAlgorithm];
|
|
15
|
+
export type ChecksumAlgorithm = (typeof ChecksumAlgorithm)[keyof typeof ChecksumAlgorithm];
|
|
17
16
|
export declare const Status: {
|
|
18
17
|
readonly COMPLETED: "completed";
|
|
19
18
|
readonly ERROR: "error";
|
|
@@ -12,64 +12,47 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
readonly $fault: "client";
|
|
13
13
|
Message?: string | undefined;
|
|
14
14
|
Reason: AccessDeniedExceptionReason | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
17
|
-
);
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
18
16
|
}
|
|
19
17
|
export declare class InternalServerException extends __BaseException {
|
|
20
18
|
readonly name: "InternalServerException";
|
|
21
19
|
readonly $fault: "server";
|
|
22
20
|
Message?: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
25
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
26
22
|
}
|
|
27
23
|
export declare class RequestThrottledException extends __BaseException {
|
|
28
24
|
readonly name: "RequestThrottledException";
|
|
29
25
|
readonly $fault: "client";
|
|
30
26
|
Message?: string | undefined;
|
|
31
27
|
Reason?: RequestThrottledExceptionReason | undefined;
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<RequestThrottledException, __BaseException>
|
|
34
|
-
);
|
|
28
|
+
constructor(opts: __ExceptionOptionType<RequestThrottledException, __BaseException>);
|
|
35
29
|
}
|
|
36
30
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
37
31
|
readonly name: "ResourceNotFoundException";
|
|
38
32
|
readonly $fault: "client";
|
|
39
33
|
Message?: string | undefined;
|
|
40
34
|
Reason?: ResourceNotFoundExceptionReason | undefined;
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
43
|
-
);
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
44
36
|
}
|
|
45
37
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
46
38
|
readonly name: "ServiceQuotaExceededException";
|
|
47
39
|
readonly $fault: "client";
|
|
48
40
|
Message?: string | undefined;
|
|
49
41
|
Reason?: ServiceQuotaExceededExceptionReason | undefined;
|
|
50
|
-
constructor(
|
|
51
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
52
|
-
);
|
|
42
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
53
43
|
}
|
|
54
44
|
export declare class ValidationException extends __BaseException {
|
|
55
45
|
readonly name: "ValidationException";
|
|
56
46
|
readonly $fault: "client";
|
|
57
47
|
Message?: string | undefined;
|
|
58
48
|
Reason?: ValidationExceptionReason | undefined;
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
61
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
62
50
|
}
|
|
63
51
|
export declare class ConcurrentLimitExceededException extends __BaseException {
|
|
64
52
|
readonly name: "ConcurrentLimitExceededException";
|
|
65
53
|
readonly $fault: "client";
|
|
66
54
|
Message?: string | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<
|
|
69
|
-
ConcurrentLimitExceededException,
|
|
70
|
-
__BaseException
|
|
71
|
-
>
|
|
72
|
-
);
|
|
55
|
+
constructor(opts: __ExceptionOptionType<ConcurrentLimitExceededException, __BaseException>);
|
|
73
56
|
}
|
|
74
57
|
export declare class ConflictException extends __BaseException {
|
|
75
58
|
readonly name: "ConflictException";
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ChecksumAggregationMethod,
|
|
4
|
-
ChecksumAlgorithm,
|
|
5
|
-
SSEType,
|
|
6
|
-
Status,
|
|
7
|
-
} from "./enums";
|
|
2
|
+
import { ChecksumAggregationMethod, ChecksumAlgorithm, SSEType, Status } from "./enums";
|
|
8
3
|
export interface Block {
|
|
9
4
|
BlockIndex?: number | undefined;
|
|
10
5
|
BlockToken?: string | undefined;
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -54,13 +46,8 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
56
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
57
|
-
userAgentAppId?:
|
|
58
|
-
|
|
59
|
-
| undefined
|
|
60
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
61
|
-
retryStrategy?:
|
|
62
|
-
| import("@smithy/types").RetryStrategy
|
|
63
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
49
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
64
51
|
endpoint?:
|
|
65
52
|
| ((
|
|
66
53
|
| string
|
|
@@ -82,7 +69,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
82
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
83
70
|
context?: {
|
|
84
71
|
logger?: import("@smithy/types").Logger;
|
|
85
|
-
}
|
|
72
|
+
},
|
|
86
73
|
) => import("@smithy/types").EndpointV2;
|
|
87
74
|
tls?: boolean;
|
|
88
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -95,13 +82,13 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
95
82
|
signer?:
|
|
96
83
|
| import("@smithy/types").RequestSigner
|
|
97
84
|
| ((
|
|
98
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
99
86
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
100
87
|
signingEscapePath?: boolean;
|
|
101
88
|
systemClockOffset?: number;
|
|
102
89
|
signingRegion?: string;
|
|
103
90
|
signerConstructor?: new (
|
|
104
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
105
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
106
93
|
) => import("@smithy/types").RequestSigner;
|
|
107
94
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -54,9 +48,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
56
50
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
57
|
-
retryStrategy?:
|
|
58
|
-
| import("@smithy/types").RetryStrategy
|
|
59
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
51
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
60
52
|
endpoint?:
|
|
61
53
|
| ((
|
|
62
54
|
| string
|
|
@@ -78,7 +70,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
78
70
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
79
71
|
context?: {
|
|
80
72
|
logger?: import("@smithy/types").Logger;
|
|
81
|
-
}
|
|
73
|
+
},
|
|
82
74
|
) => import("@smithy/types").EndpointV2;
|
|
83
75
|
tls?: boolean;
|
|
84
76
|
serviceConfiguredEndpoint?: never;
|
|
@@ -90,13 +82,13 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
90
82
|
signer?:
|
|
91
83
|
| import("@smithy/types").RequestSigner
|
|
92
84
|
| ((
|
|
93
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
94
86
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
95
87
|
signingEscapePath?: boolean;
|
|
96
88
|
systemClockOffset?: number;
|
|
97
89
|
signingRegion?: string;
|
|
98
90
|
signerConstructor?: new (
|
|
99
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
100
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
101
93
|
) => import("@smithy/types").RequestSigner;
|
|
102
94
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,31 +36,22 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
60
52
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
61
|
-
userAgentAppId?:
|
|
62
|
-
|
|
63
|
-
| undefined
|
|
64
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
65
|
-
retryStrategy?:
|
|
66
|
-
| import("@smithy/types").RetryStrategy
|
|
67
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
53
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
54
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
68
55
|
endpoint?:
|
|
69
56
|
| ((
|
|
70
57
|
| string
|
|
@@ -86,7 +73,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
86
73
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
87
74
|
context?: {
|
|
88
75
|
logger?: import("@smithy/types").Logger;
|
|
89
|
-
}
|
|
76
|
+
},
|
|
90
77
|
) => import("@smithy/types").EndpointV2;
|
|
91
78
|
tls?: boolean;
|
|
92
79
|
serviceConfiguredEndpoint?: never;
|
|
@@ -99,13 +86,13 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
99
86
|
signer?:
|
|
100
87
|
| import("@smithy/types").RequestSigner
|
|
101
88
|
| ((
|
|
102
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
89
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
103
90
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
104
91
|
signingEscapePath?: boolean;
|
|
105
92
|
systemClockOffset?: number;
|
|
106
93
|
signingRegion?: string;
|
|
107
94
|
signerConstructor?: new (
|
|
108
95
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
109
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
110
97
|
) => import("@smithy/types").RequestSigner;
|
|
111
98
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EBSHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var EBSServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var ConcurrentLimitExceededException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ebs",
|
|
3
|
+
"version": "3.1088.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Ebs Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ebs",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-ebs"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,18 +45,14 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.16.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.69",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
55
|
+
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
31
58
|
"devDependencies": {
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ebs",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-ebs"
|
|
68
68
|
}
|
|
69
69
|
}
|