@aws-sdk/client-dlm 3.1087.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/DLM.d.ts +25 -28
- package/dist-types/ts3.4/DLMClient.d.ts +14 -24
- 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/CreateLifecyclePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetLifecyclePoliciesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateLifecyclePolicyCommand.d.ts +5 -10
- 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 +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +4 -12
- 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 +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -19,10 +19,7 @@ import {
|
|
|
19
19
|
ListTagsForResourceCommandInput,
|
|
20
20
|
ListTagsForResourceCommandOutput,
|
|
21
21
|
} from "./commands/ListTagsForResourceCommand";
|
|
22
|
-
import {
|
|
23
|
-
TagResourceCommandInput,
|
|
24
|
-
TagResourceCommandOutput,
|
|
25
|
-
} from "./commands/TagResourceCommand";
|
|
22
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
26
23
|
import {
|
|
27
24
|
UntagResourceCommandInput,
|
|
28
25
|
UntagResourceCommandOutput,
|
|
@@ -35,108 +32,108 @@ import { DLMClient } from "./DLMClient";
|
|
|
35
32
|
export interface DLM {
|
|
36
33
|
createLifecyclePolicy(
|
|
37
34
|
args: CreateLifecyclePolicyCommandInput,
|
|
38
|
-
options?: __HttpHandlerOptions
|
|
35
|
+
options?: __HttpHandlerOptions,
|
|
39
36
|
): Promise<CreateLifecyclePolicyCommandOutput>;
|
|
40
37
|
createLifecyclePolicy(
|
|
41
38
|
args: CreateLifecyclePolicyCommandInput,
|
|
42
|
-
cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
|
|
39
|
+
cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void,
|
|
43
40
|
): void;
|
|
44
41
|
createLifecyclePolicy(
|
|
45
42
|
args: CreateLifecyclePolicyCommandInput,
|
|
46
43
|
options: __HttpHandlerOptions,
|
|
47
|
-
cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
|
|
44
|
+
cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void,
|
|
48
45
|
): void;
|
|
49
46
|
deleteLifecyclePolicy(
|
|
50
47
|
args: DeleteLifecyclePolicyCommandInput,
|
|
51
|
-
options?: __HttpHandlerOptions
|
|
48
|
+
options?: __HttpHandlerOptions,
|
|
52
49
|
): Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
53
50
|
deleteLifecyclePolicy(
|
|
54
51
|
args: DeleteLifecyclePolicyCommandInput,
|
|
55
|
-
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
|
|
52
|
+
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void,
|
|
56
53
|
): void;
|
|
57
54
|
deleteLifecyclePolicy(
|
|
58
55
|
args: DeleteLifecyclePolicyCommandInput,
|
|
59
56
|
options: __HttpHandlerOptions,
|
|
60
|
-
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
|
|
57
|
+
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void,
|
|
61
58
|
): void;
|
|
62
59
|
getLifecyclePolicies(): Promise<GetLifecyclePoliciesCommandOutput>;
|
|
63
60
|
getLifecyclePolicies(
|
|
64
61
|
args: GetLifecyclePoliciesCommandInput,
|
|
65
|
-
options?: __HttpHandlerOptions
|
|
62
|
+
options?: __HttpHandlerOptions,
|
|
66
63
|
): Promise<GetLifecyclePoliciesCommandOutput>;
|
|
67
64
|
getLifecyclePolicies(
|
|
68
65
|
args: GetLifecyclePoliciesCommandInput,
|
|
69
|
-
cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void
|
|
66
|
+
cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void,
|
|
70
67
|
): void;
|
|
71
68
|
getLifecyclePolicies(
|
|
72
69
|
args: GetLifecyclePoliciesCommandInput,
|
|
73
70
|
options: __HttpHandlerOptions,
|
|
74
|
-
cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void
|
|
71
|
+
cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void,
|
|
75
72
|
): void;
|
|
76
73
|
getLifecyclePolicy(
|
|
77
74
|
args: GetLifecyclePolicyCommandInput,
|
|
78
|
-
options?: __HttpHandlerOptions
|
|
75
|
+
options?: __HttpHandlerOptions,
|
|
79
76
|
): Promise<GetLifecyclePolicyCommandOutput>;
|
|
80
77
|
getLifecyclePolicy(
|
|
81
78
|
args: GetLifecyclePolicyCommandInput,
|
|
82
|
-
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
|
|
79
|
+
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void,
|
|
83
80
|
): void;
|
|
84
81
|
getLifecyclePolicy(
|
|
85
82
|
args: GetLifecyclePolicyCommandInput,
|
|
86
83
|
options: __HttpHandlerOptions,
|
|
87
|
-
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
|
|
84
|
+
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void,
|
|
88
85
|
): void;
|
|
89
86
|
listTagsForResource(
|
|
90
87
|
args: ListTagsForResourceCommandInput,
|
|
91
|
-
options?: __HttpHandlerOptions
|
|
88
|
+
options?: __HttpHandlerOptions,
|
|
92
89
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
93
90
|
listTagsForResource(
|
|
94
91
|
args: ListTagsForResourceCommandInput,
|
|
95
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
92
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
96
93
|
): void;
|
|
97
94
|
listTagsForResource(
|
|
98
95
|
args: ListTagsForResourceCommandInput,
|
|
99
96
|
options: __HttpHandlerOptions,
|
|
100
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
97
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
101
98
|
): void;
|
|
102
99
|
tagResource(
|
|
103
100
|
args: TagResourceCommandInput,
|
|
104
|
-
options?: __HttpHandlerOptions
|
|
101
|
+
options?: __HttpHandlerOptions,
|
|
105
102
|
): Promise<TagResourceCommandOutput>;
|
|
106
103
|
tagResource(
|
|
107
104
|
args: TagResourceCommandInput,
|
|
108
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
105
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
109
106
|
): void;
|
|
110
107
|
tagResource(
|
|
111
108
|
args: TagResourceCommandInput,
|
|
112
109
|
options: __HttpHandlerOptions,
|
|
113
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
110
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
114
111
|
): void;
|
|
115
112
|
untagResource(
|
|
116
113
|
args: UntagResourceCommandInput,
|
|
117
|
-
options?: __HttpHandlerOptions
|
|
114
|
+
options?: __HttpHandlerOptions,
|
|
118
115
|
): Promise<UntagResourceCommandOutput>;
|
|
119
116
|
untagResource(
|
|
120
117
|
args: UntagResourceCommandInput,
|
|
121
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
118
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
122
119
|
): void;
|
|
123
120
|
untagResource(
|
|
124
121
|
args: UntagResourceCommandInput,
|
|
125
122
|
options: __HttpHandlerOptions,
|
|
126
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
123
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
127
124
|
): void;
|
|
128
125
|
updateLifecyclePolicy(
|
|
129
126
|
args: UpdateLifecyclePolicyCommandInput,
|
|
130
|
-
options?: __HttpHandlerOptions
|
|
127
|
+
options?: __HttpHandlerOptions,
|
|
131
128
|
): Promise<UpdateLifecyclePolicyCommandOutput>;
|
|
132
129
|
updateLifecyclePolicy(
|
|
133
130
|
args: UpdateLifecyclePolicyCommandInput,
|
|
134
|
-
cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void
|
|
131
|
+
cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void,
|
|
135
132
|
): void;
|
|
136
133
|
updateLifecyclePolicy(
|
|
137
134
|
args: UpdateLifecyclePolicyCommandInput,
|
|
138
135
|
options: __HttpHandlerOptions,
|
|
139
|
-
cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void
|
|
136
|
+
cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void,
|
|
140
137
|
): void;
|
|
141
138
|
}
|
|
142
139
|
export declare class DLM extends DLMClient implements DLM {}
|
|
@@ -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 {
|
|
@@ -56,10 +53,7 @@ import {
|
|
|
56
53
|
ListTagsForResourceCommandInput,
|
|
57
54
|
ListTagsForResourceCommandOutput,
|
|
58
55
|
} from "./commands/ListTagsForResourceCommand";
|
|
59
|
-
import {
|
|
60
|
-
TagResourceCommandInput,
|
|
61
|
-
TagResourceCommandOutput,
|
|
62
|
-
} from "./commands/TagResourceCommand";
|
|
56
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
63
57
|
import {
|
|
64
58
|
UntagResourceCommandInput,
|
|
65
59
|
UntagResourceCommandOutput,
|
|
@@ -93,8 +87,7 @@ export type ServiceOutputTypes =
|
|
|
93
87
|
| TagResourceCommandOutput
|
|
94
88
|
| UntagResourceCommandOutput
|
|
95
89
|
| UpdateLifecyclePolicyCommandOutput;
|
|
96
|
-
export interface ClientDefaults
|
|
97
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
90
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
98
91
|
requestHandler?: __HttpHandlerUserInput;
|
|
99
92
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
100
93
|
urlParser?: __UrlParser;
|
|
@@ -119,9 +112,7 @@ export interface ClientDefaults
|
|
|
119
112
|
extensions?: RuntimeExtension[];
|
|
120
113
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
121
114
|
}
|
|
122
|
-
export type DLMClientConfigType = Partial<
|
|
123
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
124
|
-
> &
|
|
115
|
+
export type DLMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
125
116
|
ClientDefaults &
|
|
126
117
|
UserAgentInputConfig &
|
|
127
118
|
RetryInputConfig &
|
|
@@ -131,17 +122,16 @@ export type DLMClientConfigType = Partial<
|
|
|
131
122
|
HttpAuthSchemeInputConfig &
|
|
132
123
|
ClientInputEndpointParameters;
|
|
133
124
|
export interface DLMClientConfig extends DLMClientConfigType {}
|
|
134
|
-
export type DLMClientResolvedConfigType =
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
ClientResolvedEndpointParameters;
|
|
125
|
+
export type DLMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
126
|
+
Required<ClientDefaults> &
|
|
127
|
+
RuntimeExtensionsConfig &
|
|
128
|
+
UserAgentResolvedConfig &
|
|
129
|
+
RetryResolvedConfig &
|
|
130
|
+
RegionResolvedConfig &
|
|
131
|
+
HostHeaderResolvedConfig &
|
|
132
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
133
|
+
HttpAuthSchemeResolvedConfig &
|
|
134
|
+
ClientResolvedEndpointParameters;
|
|
145
135
|
export interface DLMClientResolvedConfig extends DLMClientResolvedConfigType {}
|
|
146
136
|
export declare class DLMClient extends __Client<
|
|
147
137
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { DLMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: DLMHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: DLMHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): DLMHttpAuthSchemeProvider;
|
|
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 { DLMClientResolvedConfig } from "../DLMClient";
|
|
|
15
15
|
export interface DLMHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface DLMHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface DLMHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
DLMClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
DLMHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultDLMHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: DLMClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<DLMHttpAuthSchemeParameters>;
|
|
30
|
-
export interface DLMHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<DLMHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface DLMHttpAuthSchemeProvider extends HttpAuthSchemeProvider<DLMHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultDLMHttpAuthSchemeProvider: DLMHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: DLMHttpAuthSchemeProvider;
|
|
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: DLMHttpAuthSchemeProvider;
|
|
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 "./DLMClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./DLMClient";
|
|
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
|
DLMClientResolvedConfig,
|
|
@@ -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,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateLifecyclePolicyRequest,
|
|
4
|
-
CreateLifecyclePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateLifecyclePolicyCommandInput
|
|
8
|
-
extends CreateLifecyclePolicyRequest {}
|
|
4
|
+
export interface CreateLifecyclePolicyCommandInput extends CreateLifecyclePolicyRequest {}
|
|
9
5
|
export interface CreateLifecyclePolicyCommandOutput
|
|
10
|
-
extends CreateLifecyclePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateLifecyclePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateLifecyclePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateLifecyclePolicyCommandInput
|
|
9
|
+
input: CreateLifecyclePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateLifecyclePolicyCommandInput,
|
|
17
12
|
CreateLifecyclePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateLifecyclePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateLifecyclePolicyCommandInput
|
|
18
|
+
input: CreateLifecyclePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateLifecyclePolicyCommandInput,
|
|
26
21
|
CreateLifecyclePolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteLifecyclePolicyRequest,
|
|
4
|
-
DeleteLifecyclePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteLifecyclePolicyCommandInput
|
|
8
|
-
extends DeleteLifecyclePolicyRequest {}
|
|
4
|
+
export interface DeleteLifecyclePolicyCommandInput extends DeleteLifecyclePolicyRequest {}
|
|
9
5
|
export interface DeleteLifecyclePolicyCommandOutput
|
|
10
|
-
extends DeleteLifecyclePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteLifecyclePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteLifecyclePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteLifecyclePolicyCommandInput
|
|
9
|
+
input: DeleteLifecyclePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteLifecyclePolicyCommandInput,
|
|
17
12
|
DeleteLifecyclePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteLifecyclePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteLifecyclePolicyCommandInput
|
|
18
|
+
input: DeleteLifecyclePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteLifecyclePolicyCommandInput,
|
|
26
21
|
DeleteLifecyclePolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetLifecyclePoliciesRequest,
|
|
4
|
-
GetLifecyclePoliciesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetLifecyclePoliciesRequest, GetLifecyclePoliciesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLifecyclePoliciesCommandInput
|
|
8
|
-
extends GetLifecyclePoliciesRequest {}
|
|
4
|
+
export interface GetLifecyclePoliciesCommandInput extends GetLifecyclePoliciesRequest {}
|
|
9
5
|
export interface GetLifecyclePoliciesCommandOutput
|
|
10
|
-
extends GetLifecyclePoliciesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetLifecyclePoliciesResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetLifecyclePoliciesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetLifecyclePoliciesCommandInput
|
|
9
|
+
input: GetLifecyclePoliciesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetLifecyclePoliciesCommandInput,
|
|
17
12
|
GetLifecyclePoliciesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetLifecyclePolicyRequest,
|
|
4
|
-
GetLifecyclePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLifecyclePolicyCommandInput
|
|
8
|
-
extends GetLifecyclePolicyRequest {}
|
|
4
|
+
export interface GetLifecyclePolicyCommandInput extends GetLifecyclePolicyRequest {}
|
|
9
5
|
export interface GetLifecyclePolicyCommandOutput
|
|
10
|
-
extends GetLifecyclePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetLifecyclePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetLifecyclePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetLifecyclePolicyCommandInput
|
|
9
|
+
input: GetLifecyclePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetLifecyclePolicyCommandInput,
|
|
17
12
|
GetLifecyclePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetLifecyclePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetLifecyclePolicyCommandInput
|
|
18
|
+
input: GetLifecyclePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetLifecyclePolicyCommandInput,
|
|
26
21
|
GetLifecyclePolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateLifecyclePolicyRequest,
|
|
4
|
-
UpdateLifecyclePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateLifecyclePolicyCommandInput
|
|
8
|
-
extends UpdateLifecyclePolicyRequest {}
|
|
4
|
+
export interface UpdateLifecyclePolicyCommandInput extends UpdateLifecyclePolicyRequest {}
|
|
9
5
|
export interface UpdateLifecyclePolicyCommandOutput
|
|
10
|
-
extends UpdateLifecyclePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateLifecyclePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateLifecyclePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateLifecyclePolicyCommandInput
|
|
9
|
+
input: UpdateLifecyclePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateLifecyclePolicyCommandInput,
|
|
17
12
|
UpdateLifecyclePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateLifecyclePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateLifecyclePolicyCommandInput
|
|
18
|
+
input: UpdateLifecyclePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateLifecyclePolicyCommandInput,
|
|
26
21
|
UpdateLifecyclePolicyCommandOutput,
|
|
@@ -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 DLMExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -15,26 +15,22 @@ export type DefaultPolicyTypeValues =
|
|
|
15
15
|
export declare const EventTypeValues: {
|
|
16
16
|
readonly SHARE_SNAPSHOT: "shareSnapshot";
|
|
17
17
|
};
|
|
18
|
-
export type EventTypeValues =
|
|
19
|
-
(typeof EventTypeValues)[keyof typeof EventTypeValues];
|
|
18
|
+
export type EventTypeValues = (typeof EventTypeValues)[keyof typeof EventTypeValues];
|
|
20
19
|
export declare const EventSourceValues: {
|
|
21
20
|
readonly MANAGED_CWE: "MANAGED_CWE";
|
|
22
21
|
};
|
|
23
|
-
export type EventSourceValues =
|
|
24
|
-
(typeof EventSourceValues)[keyof typeof EventSourceValues];
|
|
22
|
+
export type EventSourceValues = (typeof EventSourceValues)[keyof typeof EventSourceValues];
|
|
25
23
|
export declare const PolicyLanguageValues: {
|
|
26
24
|
readonly SIMPLIFIED: "SIMPLIFIED";
|
|
27
25
|
readonly STANDARD: "STANDARD";
|
|
28
26
|
};
|
|
29
|
-
export type PolicyLanguageValues =
|
|
30
|
-
(typeof PolicyLanguageValues)[keyof typeof PolicyLanguageValues];
|
|
27
|
+
export type PolicyLanguageValues = (typeof PolicyLanguageValues)[keyof typeof PolicyLanguageValues];
|
|
31
28
|
export declare const PolicyTypeValues: {
|
|
32
29
|
readonly EBS_SNAPSHOT_MANAGEMENT: "EBS_SNAPSHOT_MANAGEMENT";
|
|
33
30
|
readonly EVENT_BASED_POLICY: "EVENT_BASED_POLICY";
|
|
34
31
|
readonly IMAGE_MANAGEMENT: "IMAGE_MANAGEMENT";
|
|
35
32
|
};
|
|
36
|
-
export type PolicyTypeValues =
|
|
37
|
-
(typeof PolicyTypeValues)[keyof typeof PolicyTypeValues];
|
|
33
|
+
export type PolicyTypeValues = (typeof PolicyTypeValues)[keyof typeof PolicyTypeValues];
|
|
38
34
|
export declare const ResourceLocationValues: {
|
|
39
35
|
readonly CLOUD: "CLOUD";
|
|
40
36
|
readonly LOCAL_ZONE: "LOCAL_ZONE";
|
|
@@ -46,20 +42,17 @@ export declare const ResourceTypeValues: {
|
|
|
46
42
|
readonly INSTANCE: "INSTANCE";
|
|
47
43
|
readonly VOLUME: "VOLUME";
|
|
48
44
|
};
|
|
49
|
-
export type ResourceTypeValues =
|
|
50
|
-
(typeof ResourceTypeValues)[keyof typeof ResourceTypeValues];
|
|
45
|
+
export type ResourceTypeValues = (typeof ResourceTypeValues)[keyof typeof ResourceTypeValues];
|
|
51
46
|
export declare const IntervalUnitValues: {
|
|
52
47
|
readonly HOURS: "HOURS";
|
|
53
48
|
};
|
|
54
|
-
export type IntervalUnitValues =
|
|
55
|
-
(typeof IntervalUnitValues)[keyof typeof IntervalUnitValues];
|
|
49
|
+
export type IntervalUnitValues = (typeof IntervalUnitValues)[keyof typeof IntervalUnitValues];
|
|
56
50
|
export declare const LocationValues: {
|
|
57
51
|
readonly CLOUD: "CLOUD";
|
|
58
52
|
readonly LOCAL_ZONE: "LOCAL_ZONE";
|
|
59
53
|
readonly OUTPOST_LOCAL: "OUTPOST_LOCAL";
|
|
60
54
|
};
|
|
61
|
-
export type LocationValues =
|
|
62
|
-
(typeof LocationValues)[keyof typeof LocationValues];
|
|
55
|
+
export type LocationValues = (typeof LocationValues)[keyof typeof LocationValues];
|
|
63
56
|
export declare const ExecutionHandlerServiceValues: {
|
|
64
57
|
readonly AWS_SYSTEMS_MANAGER: "AWS_SYSTEMS_MANAGER";
|
|
65
58
|
};
|
|
@@ -5,9 +5,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
5
5
|
readonly $fault: "server";
|
|
6
6
|
Message?: string | undefined;
|
|
7
7
|
Code?: string | undefined;
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class InvalidRequestException extends __BaseException {
|
|
13
11
|
readonly name: "InvalidRequestException";
|
|
@@ -16,9 +14,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
16
14
|
Code?: string | undefined;
|
|
17
15
|
RequiredParameters?: string[] | undefined;
|
|
18
16
|
MutuallyExclusiveParameters?: string[] | undefined;
|
|
19
|
-
constructor(
|
|
20
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
21
|
-
);
|
|
17
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
22
18
|
}
|
|
23
19
|
export declare class LimitExceededException extends __BaseException {
|
|
24
20
|
readonly name: "LimitExceededException";
|
|
@@ -26,9 +22,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
26
22
|
Message?: string | undefined;
|
|
27
23
|
Code?: string | undefined;
|
|
28
24
|
ResourceType?: string | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
31
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
32
26
|
}
|
|
33
27
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
28
|
readonly name: "ResourceNotFoundException";
|
|
@@ -37,7 +31,5 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
37
31
|
Code?: string | undefined;
|
|
38
32
|
ResourceType?: string | undefined;
|
|
39
33
|
ResourceIds?: string[] | undefined;
|
|
40
|
-
constructor(
|
|
41
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
42
|
-
);
|
|
34
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
43
35
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
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>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
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>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
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,30 +36,21 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
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
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
|
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").DLMHttpAuthSchemeProvider;
|
|
@@ -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 DLMServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var InternalServerException$: StaticErrorSchema;
|
|
9
5
|
export declare var InvalidRequestException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dlm",
|
|
3
|
+
"version": "3.1088.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Dlm Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-dlm",
|
|
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-dlm"
|
|
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,17 +45,13 @@
|
|
|
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.
|
|
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",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -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-dlm",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-dlm"
|
|
68
68
|
}
|
|
69
69
|
}
|