@aws-sdk/client-dlm 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/DLM.d.ts +148 -45
- package/dist-types/ts3.4/DLMClient.d.ts +176 -81
- package/dist-types/ts3.4/commands/CreateLifecyclePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetLifecyclePoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateLifecyclePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/DLMServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +485 -458
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-dlm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-dlm
|
|
@@ -1,45 +1,148 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateLifecyclePolicyCommandInput,
|
|
4
|
+
CreateLifecyclePolicyCommandOutput,
|
|
5
|
+
} from "./commands/CreateLifecyclePolicyCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteLifecyclePolicyCommandInput,
|
|
8
|
+
DeleteLifecyclePolicyCommandOutput,
|
|
9
|
+
} from "./commands/DeleteLifecyclePolicyCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetLifecyclePoliciesCommandInput,
|
|
12
|
+
GetLifecyclePoliciesCommandOutput,
|
|
13
|
+
} from "./commands/GetLifecyclePoliciesCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetLifecyclePolicyCommandInput,
|
|
16
|
+
GetLifecyclePolicyCommandOutput,
|
|
17
|
+
} from "./commands/GetLifecyclePolicyCommand";
|
|
18
|
+
import {
|
|
19
|
+
ListTagsForResourceCommandInput,
|
|
20
|
+
ListTagsForResourceCommandOutput,
|
|
21
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
22
|
+
import {
|
|
23
|
+
TagResourceCommandInput,
|
|
24
|
+
TagResourceCommandOutput,
|
|
25
|
+
} from "./commands/TagResourceCommand";
|
|
26
|
+
import {
|
|
27
|
+
UntagResourceCommandInput,
|
|
28
|
+
UntagResourceCommandOutput,
|
|
29
|
+
} from "./commands/UntagResourceCommand";
|
|
30
|
+
import {
|
|
31
|
+
UpdateLifecyclePolicyCommandInput,
|
|
32
|
+
UpdateLifecyclePolicyCommandOutput,
|
|
33
|
+
} from "./commands/UpdateLifecyclePolicyCommand";
|
|
34
|
+
import { DLMClient } from "./DLMClient";
|
|
35
|
+
|
|
36
|
+
export declare class DLM extends DLMClient {
|
|
37
|
+
createLifecyclePolicy(
|
|
38
|
+
args: CreateLifecyclePolicyCommandInput,
|
|
39
|
+
options?: __HttpHandlerOptions
|
|
40
|
+
): Promise<CreateLifecyclePolicyCommandOutput>;
|
|
41
|
+
createLifecyclePolicy(
|
|
42
|
+
args: CreateLifecyclePolicyCommandInput,
|
|
43
|
+
cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
|
|
44
|
+
): void;
|
|
45
|
+
createLifecyclePolicy(
|
|
46
|
+
args: CreateLifecyclePolicyCommandInput,
|
|
47
|
+
options: __HttpHandlerOptions,
|
|
48
|
+
cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
|
|
49
|
+
): void;
|
|
50
|
+
|
|
51
|
+
deleteLifecyclePolicy(
|
|
52
|
+
args: DeleteLifecyclePolicyCommandInput,
|
|
53
|
+
options?: __HttpHandlerOptions
|
|
54
|
+
): Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
55
|
+
deleteLifecyclePolicy(
|
|
56
|
+
args: DeleteLifecyclePolicyCommandInput,
|
|
57
|
+
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
|
|
58
|
+
): void;
|
|
59
|
+
deleteLifecyclePolicy(
|
|
60
|
+
args: DeleteLifecyclePolicyCommandInput,
|
|
61
|
+
options: __HttpHandlerOptions,
|
|
62
|
+
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
|
|
63
|
+
): void;
|
|
64
|
+
|
|
65
|
+
getLifecyclePolicies(
|
|
66
|
+
args: GetLifecyclePoliciesCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<GetLifecyclePoliciesCommandOutput>;
|
|
69
|
+
getLifecyclePolicies(
|
|
70
|
+
args: GetLifecyclePoliciesCommandInput,
|
|
71
|
+
cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
getLifecyclePolicies(
|
|
74
|
+
args: GetLifecyclePoliciesCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
getLifecyclePolicy(
|
|
80
|
+
args: GetLifecyclePolicyCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<GetLifecyclePolicyCommandOutput>;
|
|
83
|
+
getLifecyclePolicy(
|
|
84
|
+
args: GetLifecyclePolicyCommandInput,
|
|
85
|
+
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
getLifecyclePolicy(
|
|
88
|
+
args: GetLifecyclePolicyCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
listTagsForResource(
|
|
94
|
+
args: ListTagsForResourceCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
97
|
+
listTagsForResource(
|
|
98
|
+
args: ListTagsForResourceCommandInput,
|
|
99
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
listTagsForResource(
|
|
102
|
+
args: ListTagsForResourceCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
tagResource(
|
|
108
|
+
args: TagResourceCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<TagResourceCommandOutput>;
|
|
111
|
+
tagResource(
|
|
112
|
+
args: TagResourceCommandInput,
|
|
113
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
tagResource(
|
|
116
|
+
args: TagResourceCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
untagResource(
|
|
122
|
+
args: UntagResourceCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<UntagResourceCommandOutput>;
|
|
125
|
+
untagResource(
|
|
126
|
+
args: UntagResourceCommandInput,
|
|
127
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
untagResource(
|
|
130
|
+
args: UntagResourceCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
updateLifecyclePolicy(
|
|
136
|
+
args: UpdateLifecyclePolicyCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<UpdateLifecyclePolicyCommandOutput>;
|
|
139
|
+
updateLifecyclePolicy(
|
|
140
|
+
args: UpdateLifecyclePolicyCommandInput,
|
|
141
|
+
cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
updateLifecyclePolicy(
|
|
144
|
+
args: UpdateLifecyclePolicyCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
}
|
|
@@ -1,81 +1,176 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateLifecyclePolicyCommandInput,
|
|
47
|
+
CreateLifecyclePolicyCommandOutput,
|
|
48
|
+
} from "./commands/CreateLifecyclePolicyCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteLifecyclePolicyCommandInput,
|
|
51
|
+
DeleteLifecyclePolicyCommandOutput,
|
|
52
|
+
} from "./commands/DeleteLifecyclePolicyCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetLifecyclePoliciesCommandInput,
|
|
55
|
+
GetLifecyclePoliciesCommandOutput,
|
|
56
|
+
} from "./commands/GetLifecyclePoliciesCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetLifecyclePolicyCommandInput,
|
|
59
|
+
GetLifecyclePolicyCommandOutput,
|
|
60
|
+
} from "./commands/GetLifecyclePolicyCommand";
|
|
61
|
+
import {
|
|
62
|
+
ListTagsForResourceCommandInput,
|
|
63
|
+
ListTagsForResourceCommandOutput,
|
|
64
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
65
|
+
import {
|
|
66
|
+
TagResourceCommandInput,
|
|
67
|
+
TagResourceCommandOutput,
|
|
68
|
+
} from "./commands/TagResourceCommand";
|
|
69
|
+
import {
|
|
70
|
+
UntagResourceCommandInput,
|
|
71
|
+
UntagResourceCommandOutput,
|
|
72
|
+
} from "./commands/UntagResourceCommand";
|
|
73
|
+
import {
|
|
74
|
+
UpdateLifecyclePolicyCommandInput,
|
|
75
|
+
UpdateLifecyclePolicyCommandOutput,
|
|
76
|
+
} from "./commands/UpdateLifecyclePolicyCommand";
|
|
77
|
+
export declare type ServiceInputTypes =
|
|
78
|
+
| CreateLifecyclePolicyCommandInput
|
|
79
|
+
| DeleteLifecyclePolicyCommandInput
|
|
80
|
+
| GetLifecyclePoliciesCommandInput
|
|
81
|
+
| GetLifecyclePolicyCommandInput
|
|
82
|
+
| ListTagsForResourceCommandInput
|
|
83
|
+
| TagResourceCommandInput
|
|
84
|
+
| UntagResourceCommandInput
|
|
85
|
+
| UpdateLifecyclePolicyCommandInput;
|
|
86
|
+
export declare type ServiceOutputTypes =
|
|
87
|
+
| CreateLifecyclePolicyCommandOutput
|
|
88
|
+
| DeleteLifecyclePolicyCommandOutput
|
|
89
|
+
| GetLifecyclePoliciesCommandOutput
|
|
90
|
+
| GetLifecyclePolicyCommandOutput
|
|
91
|
+
| ListTagsForResourceCommandOutput
|
|
92
|
+
| TagResourceCommandOutput
|
|
93
|
+
| UntagResourceCommandOutput
|
|
94
|
+
| UpdateLifecyclePolicyCommandOutput;
|
|
95
|
+
export interface ClientDefaults
|
|
96
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
97
|
+
requestHandler?: __HttpHandler;
|
|
98
|
+
|
|
99
|
+
sha256?: __HashConstructor;
|
|
100
|
+
|
|
101
|
+
urlParser?: __UrlParser;
|
|
102
|
+
|
|
103
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
104
|
+
|
|
105
|
+
streamCollector?: __StreamCollector;
|
|
106
|
+
|
|
107
|
+
base64Decoder?: __Decoder;
|
|
108
|
+
|
|
109
|
+
base64Encoder?: __Encoder;
|
|
110
|
+
|
|
111
|
+
utf8Decoder?: __Decoder;
|
|
112
|
+
|
|
113
|
+
utf8Encoder?: __Encoder;
|
|
114
|
+
|
|
115
|
+
runtime?: string;
|
|
116
|
+
|
|
117
|
+
disableHostPrefix?: boolean;
|
|
118
|
+
|
|
119
|
+
maxAttempts?: number | __Provider<number>;
|
|
120
|
+
|
|
121
|
+
retryMode?: string | __Provider<string>;
|
|
122
|
+
|
|
123
|
+
logger?: __Logger;
|
|
124
|
+
|
|
125
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
+
|
|
127
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
128
|
+
|
|
129
|
+
serviceId?: string;
|
|
130
|
+
|
|
131
|
+
region?: string | __Provider<string>;
|
|
132
|
+
|
|
133
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
134
|
+
|
|
135
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
136
|
+
|
|
137
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
138
|
+
|
|
139
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
140
|
+
}
|
|
141
|
+
declare type DLMClientConfigType = Partial<
|
|
142
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
143
|
+
> &
|
|
144
|
+
ClientDefaults &
|
|
145
|
+
RegionInputConfig &
|
|
146
|
+
EndpointsInputConfig &
|
|
147
|
+
RetryInputConfig &
|
|
148
|
+
HostHeaderInputConfig &
|
|
149
|
+
AwsAuthInputConfig &
|
|
150
|
+
UserAgentInputConfig;
|
|
151
|
+
|
|
152
|
+
export interface DLMClientConfig extends DLMClientConfigType {}
|
|
153
|
+
declare type DLMClientResolvedConfigType =
|
|
154
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
155
|
+
Required<ClientDefaults> &
|
|
156
|
+
RegionResolvedConfig &
|
|
157
|
+
EndpointsResolvedConfig &
|
|
158
|
+
RetryResolvedConfig &
|
|
159
|
+
HostHeaderResolvedConfig &
|
|
160
|
+
AwsAuthResolvedConfig &
|
|
161
|
+
UserAgentResolvedConfig;
|
|
162
|
+
|
|
163
|
+
export interface DLMClientResolvedConfig extends DLMClientResolvedConfigType {}
|
|
164
|
+
|
|
165
|
+
export declare class DLMClient extends __Client<
|
|
166
|
+
__HttpHandlerOptions,
|
|
167
|
+
ServiceInputTypes,
|
|
168
|
+
ServiceOutputTypes,
|
|
169
|
+
DLMClientResolvedConfig
|
|
170
|
+
> {
|
|
171
|
+
readonly config: DLMClientResolvedConfig;
|
|
172
|
+
constructor(configuration: DLMClientConfig);
|
|
173
|
+
|
|
174
|
+
destroy(): void;
|
|
175
|
+
}
|
|
176
|
+
export {};
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DLMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DLMClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateLifecyclePolicyRequest,
|
|
15
|
+
CreateLifecyclePolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateLifecyclePolicyCommandInput
|
|
18
|
+
extends CreateLifecyclePolicyRequest {}
|
|
19
|
+
export interface CreateLifecyclePolicyCommandOutput
|
|
20
|
+
extends CreateLifecyclePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateLifecyclePolicyCommand extends $Command<
|
|
24
|
+
CreateLifecyclePolicyCommandInput,
|
|
25
|
+
CreateLifecyclePolicyCommandOutput,
|
|
26
|
+
DLMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLifecyclePolicyCommandInput;
|
|
29
|
+
constructor(input: CreateLifecyclePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DLMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLifecyclePolicyCommandInput,
|
|
37
|
+
CreateLifecyclePolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DLMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DLMClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteLifecyclePolicyRequest,
|
|
15
|
+
DeleteLifecyclePolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteLifecyclePolicyCommandInput
|
|
18
|
+
extends DeleteLifecyclePolicyRequest {}
|
|
19
|
+
export interface DeleteLifecyclePolicyCommandOutput
|
|
20
|
+
extends DeleteLifecyclePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteLifecyclePolicyCommand extends $Command<
|
|
24
|
+
DeleteLifecyclePolicyCommandInput,
|
|
25
|
+
DeleteLifecyclePolicyCommandOutput,
|
|
26
|
+
DLMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteLifecyclePolicyCommandInput;
|
|
29
|
+
constructor(input: DeleteLifecyclePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DLMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteLifecyclePolicyCommandInput,
|
|
37
|
+
DeleteLifecyclePolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DLMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DLMClient";
|
|
13
|
+
import {
|
|
14
|
+
GetLifecyclePoliciesRequest,
|
|
15
|
+
GetLifecyclePoliciesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetLifecyclePoliciesCommandInput
|
|
18
|
+
extends GetLifecyclePoliciesRequest {}
|
|
19
|
+
export interface GetLifecyclePoliciesCommandOutput
|
|
20
|
+
extends GetLifecyclePoliciesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetLifecyclePoliciesCommand extends $Command<
|
|
24
|
+
GetLifecyclePoliciesCommandInput,
|
|
25
|
+
GetLifecyclePoliciesCommandOutput,
|
|
26
|
+
DLMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetLifecyclePoliciesCommandInput;
|
|
29
|
+
constructor(input: GetLifecyclePoliciesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DLMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetLifecyclePoliciesCommandInput,
|
|
37
|
+
GetLifecyclePoliciesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|