@aws-sdk/client-drs 3.312.0 → 3.316.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/README.md +32 -0
- package/dist-cjs/Drs.js +47 -490
- package/dist-cjs/commands/CreateLaunchConfigurationTemplateCommand.js +46 -0
- package/dist-cjs/commands/DeleteLaunchConfigurationTemplateCommand.js +45 -0
- package/dist-cjs/commands/DescribeLaunchConfigurationTemplatesCommand.js +46 -0
- package/dist-cjs/commands/UpdateLaunchConfigurationTemplateCommand.js +46 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +39 -10
- package/dist-cjs/pagination/DescribeLaunchConfigurationTemplatesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +794 -1620
- package/dist-es/Drs.js +47 -490
- package/dist-es/commands/CreateLaunchConfigurationTemplateCommand.js +42 -0
- package/dist-es/commands/DeleteLaunchConfigurationTemplateCommand.js +41 -0
- package/dist-es/commands/DescribeLaunchConfigurationTemplatesCommand.js +42 -0
- package/dist-es/commands/UpdateLaunchConfigurationTemplateCommand.js +42 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +32 -8
- package/dist-es/pagination/DescribeLaunchConfigurationTemplatesPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +735 -1569
- package/dist-types/Drs.d.ts +70 -85
- package/dist-types/DrsClient.d.ts +6 -2
- package/dist-types/commands/CreateLaunchConfigurationTemplateCommand.d.ts +90 -0
- package/dist-types/commands/DeleteLaunchConfigurationTemplateCommand.d.ts +78 -0
- package/dist-types/commands/DescribeLaunchConfigurationTemplatesCommand.d.ts +82 -0
- package/dist-types/commands/UpdateLaunchConfigurationTemplateCommand.d.ts +88 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +216 -34
- package/dist-types/pagination/DescribeLaunchConfigurationTemplatesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Drs.d.ts +94 -1
- package/dist-types/ts3.4/DrsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateLaunchConfigurationTemplateCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteLaunchConfigurationTemplateCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeLaunchConfigurationTemplatesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateLaunchConfigurationTemplateCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +82 -15
- package/dist-types/ts3.4/pagination/DescribeLaunchConfigurationTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +6 -6
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
CreateExtendedSourceServerCommandInput,
|
|
4
4
|
CreateExtendedSourceServerCommandOutput,
|
|
5
5
|
} from "./commands/CreateExtendedSourceServerCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateLaunchConfigurationTemplateCommandInput,
|
|
8
|
+
CreateLaunchConfigurationTemplateCommandOutput,
|
|
9
|
+
} from "./commands/CreateLaunchConfigurationTemplateCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateReplicationConfigurationTemplateCommandInput,
|
|
8
12
|
CreateReplicationConfigurationTemplateCommandOutput,
|
|
@@ -11,6 +15,10 @@ import {
|
|
|
11
15
|
DeleteJobCommandInput,
|
|
12
16
|
DeleteJobCommandOutput,
|
|
13
17
|
} from "./commands/DeleteJobCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteLaunchConfigurationTemplateCommandInput,
|
|
20
|
+
DeleteLaunchConfigurationTemplateCommandOutput,
|
|
21
|
+
} from "./commands/DeleteLaunchConfigurationTemplateCommand";
|
|
14
22
|
import {
|
|
15
23
|
DeleteRecoveryInstanceCommandInput,
|
|
16
24
|
DeleteRecoveryInstanceCommandOutput,
|
|
@@ -31,6 +39,10 @@ import {
|
|
|
31
39
|
DescribeJobsCommandInput,
|
|
32
40
|
DescribeJobsCommandOutput,
|
|
33
41
|
} from "./commands/DescribeJobsCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeLaunchConfigurationTemplatesCommandInput,
|
|
44
|
+
DescribeLaunchConfigurationTemplatesCommandOutput,
|
|
45
|
+
} from "./commands/DescribeLaunchConfigurationTemplatesCommand";
|
|
34
46
|
import {
|
|
35
47
|
DescribeRecoveryInstancesCommandInput,
|
|
36
48
|
DescribeRecoveryInstancesCommandOutput,
|
|
@@ -131,6 +143,10 @@ import {
|
|
|
131
143
|
UpdateLaunchConfigurationCommandInput,
|
|
132
144
|
UpdateLaunchConfigurationCommandOutput,
|
|
133
145
|
} from "./commands/UpdateLaunchConfigurationCommand";
|
|
146
|
+
import {
|
|
147
|
+
UpdateLaunchConfigurationTemplateCommandInput,
|
|
148
|
+
UpdateLaunchConfigurationTemplateCommandOutput,
|
|
149
|
+
} from "./commands/UpdateLaunchConfigurationTemplateCommand";
|
|
134
150
|
import {
|
|
135
151
|
UpdateReplicationConfigurationCommandInput,
|
|
136
152
|
UpdateReplicationConfigurationCommandOutput,
|
|
@@ -140,7 +156,7 @@ import {
|
|
|
140
156
|
UpdateReplicationConfigurationTemplateCommandOutput,
|
|
141
157
|
} from "./commands/UpdateReplicationConfigurationTemplateCommand";
|
|
142
158
|
import { DrsClient } from "./DrsClient";
|
|
143
|
-
export
|
|
159
|
+
export interface Drs {
|
|
144
160
|
createExtendedSourceServer(
|
|
145
161
|
args: CreateExtendedSourceServerCommandInput,
|
|
146
162
|
options?: __HttpHandlerOptions
|
|
@@ -154,6 +170,25 @@ export declare class Drs extends DrsClient {
|
|
|
154
170
|
options: __HttpHandlerOptions,
|
|
155
171
|
cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void
|
|
156
172
|
): void;
|
|
173
|
+
createLaunchConfigurationTemplate(
|
|
174
|
+
args: CreateLaunchConfigurationTemplateCommandInput,
|
|
175
|
+
options?: __HttpHandlerOptions
|
|
176
|
+
): Promise<CreateLaunchConfigurationTemplateCommandOutput>;
|
|
177
|
+
createLaunchConfigurationTemplate(
|
|
178
|
+
args: CreateLaunchConfigurationTemplateCommandInput,
|
|
179
|
+
cb: (
|
|
180
|
+
err: any,
|
|
181
|
+
data?: CreateLaunchConfigurationTemplateCommandOutput
|
|
182
|
+
) => void
|
|
183
|
+
): void;
|
|
184
|
+
createLaunchConfigurationTemplate(
|
|
185
|
+
args: CreateLaunchConfigurationTemplateCommandInput,
|
|
186
|
+
options: __HttpHandlerOptions,
|
|
187
|
+
cb: (
|
|
188
|
+
err: any,
|
|
189
|
+
data?: CreateLaunchConfigurationTemplateCommandOutput
|
|
190
|
+
) => void
|
|
191
|
+
): void;
|
|
157
192
|
createReplicationConfigurationTemplate(
|
|
158
193
|
args: CreateReplicationConfigurationTemplateCommandInput,
|
|
159
194
|
options?: __HttpHandlerOptions
|
|
@@ -186,6 +221,25 @@ export declare class Drs extends DrsClient {
|
|
|
186
221
|
options: __HttpHandlerOptions,
|
|
187
222
|
cb: (err: any, data?: DeleteJobCommandOutput) => void
|
|
188
223
|
): void;
|
|
224
|
+
deleteLaunchConfigurationTemplate(
|
|
225
|
+
args: DeleteLaunchConfigurationTemplateCommandInput,
|
|
226
|
+
options?: __HttpHandlerOptions
|
|
227
|
+
): Promise<DeleteLaunchConfigurationTemplateCommandOutput>;
|
|
228
|
+
deleteLaunchConfigurationTemplate(
|
|
229
|
+
args: DeleteLaunchConfigurationTemplateCommandInput,
|
|
230
|
+
cb: (
|
|
231
|
+
err: any,
|
|
232
|
+
data?: DeleteLaunchConfigurationTemplateCommandOutput
|
|
233
|
+
) => void
|
|
234
|
+
): void;
|
|
235
|
+
deleteLaunchConfigurationTemplate(
|
|
236
|
+
args: DeleteLaunchConfigurationTemplateCommandInput,
|
|
237
|
+
options: __HttpHandlerOptions,
|
|
238
|
+
cb: (
|
|
239
|
+
err: any,
|
|
240
|
+
data?: DeleteLaunchConfigurationTemplateCommandOutput
|
|
241
|
+
) => void
|
|
242
|
+
): void;
|
|
189
243
|
deleteRecoveryInstance(
|
|
190
244
|
args: DeleteRecoveryInstanceCommandInput,
|
|
191
245
|
options?: __HttpHandlerOptions
|
|
@@ -257,6 +311,25 @@ export declare class Drs extends DrsClient {
|
|
|
257
311
|
options: __HttpHandlerOptions,
|
|
258
312
|
cb: (err: any, data?: DescribeJobsCommandOutput) => void
|
|
259
313
|
): void;
|
|
314
|
+
describeLaunchConfigurationTemplates(
|
|
315
|
+
args: DescribeLaunchConfigurationTemplatesCommandInput,
|
|
316
|
+
options?: __HttpHandlerOptions
|
|
317
|
+
): Promise<DescribeLaunchConfigurationTemplatesCommandOutput>;
|
|
318
|
+
describeLaunchConfigurationTemplates(
|
|
319
|
+
args: DescribeLaunchConfigurationTemplatesCommandInput,
|
|
320
|
+
cb: (
|
|
321
|
+
err: any,
|
|
322
|
+
data?: DescribeLaunchConfigurationTemplatesCommandOutput
|
|
323
|
+
) => void
|
|
324
|
+
): void;
|
|
325
|
+
describeLaunchConfigurationTemplates(
|
|
326
|
+
args: DescribeLaunchConfigurationTemplatesCommandInput,
|
|
327
|
+
options: __HttpHandlerOptions,
|
|
328
|
+
cb: (
|
|
329
|
+
err: any,
|
|
330
|
+
data?: DescribeLaunchConfigurationTemplatesCommandOutput
|
|
331
|
+
) => void
|
|
332
|
+
): void;
|
|
260
333
|
describeRecoveryInstances(
|
|
261
334
|
args: DescribeRecoveryInstancesCommandInput,
|
|
262
335
|
options?: __HttpHandlerOptions
|
|
@@ -600,6 +673,25 @@ export declare class Drs extends DrsClient {
|
|
|
600
673
|
options: __HttpHandlerOptions,
|
|
601
674
|
cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void
|
|
602
675
|
): void;
|
|
676
|
+
updateLaunchConfigurationTemplate(
|
|
677
|
+
args: UpdateLaunchConfigurationTemplateCommandInput,
|
|
678
|
+
options?: __HttpHandlerOptions
|
|
679
|
+
): Promise<UpdateLaunchConfigurationTemplateCommandOutput>;
|
|
680
|
+
updateLaunchConfigurationTemplate(
|
|
681
|
+
args: UpdateLaunchConfigurationTemplateCommandInput,
|
|
682
|
+
cb: (
|
|
683
|
+
err: any,
|
|
684
|
+
data?: UpdateLaunchConfigurationTemplateCommandOutput
|
|
685
|
+
) => void
|
|
686
|
+
): void;
|
|
687
|
+
updateLaunchConfigurationTemplate(
|
|
688
|
+
args: UpdateLaunchConfigurationTemplateCommandInput,
|
|
689
|
+
options: __HttpHandlerOptions,
|
|
690
|
+
cb: (
|
|
691
|
+
err: any,
|
|
692
|
+
data?: UpdateLaunchConfigurationTemplateCommandOutput
|
|
693
|
+
) => void
|
|
694
|
+
): void;
|
|
603
695
|
updateReplicationConfiguration(
|
|
604
696
|
args: UpdateReplicationConfigurationCommandInput,
|
|
605
697
|
options?: __HttpHandlerOptions
|
|
@@ -633,3 +725,4 @@ export declare class Drs extends DrsClient {
|
|
|
633
725
|
) => void
|
|
634
726
|
): void;
|
|
635
727
|
}
|
|
728
|
+
export declare class Drs extends DrsClient implements Drs {}
|
|
@@ -48,6 +48,10 @@ import {
|
|
|
48
48
|
CreateExtendedSourceServerCommandInput,
|
|
49
49
|
CreateExtendedSourceServerCommandOutput,
|
|
50
50
|
} from "./commands/CreateExtendedSourceServerCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateLaunchConfigurationTemplateCommandInput,
|
|
53
|
+
CreateLaunchConfigurationTemplateCommandOutput,
|
|
54
|
+
} from "./commands/CreateLaunchConfigurationTemplateCommand";
|
|
51
55
|
import {
|
|
52
56
|
CreateReplicationConfigurationTemplateCommandInput,
|
|
53
57
|
CreateReplicationConfigurationTemplateCommandOutput,
|
|
@@ -56,6 +60,10 @@ import {
|
|
|
56
60
|
DeleteJobCommandInput,
|
|
57
61
|
DeleteJobCommandOutput,
|
|
58
62
|
} from "./commands/DeleteJobCommand";
|
|
63
|
+
import {
|
|
64
|
+
DeleteLaunchConfigurationTemplateCommandInput,
|
|
65
|
+
DeleteLaunchConfigurationTemplateCommandOutput,
|
|
66
|
+
} from "./commands/DeleteLaunchConfigurationTemplateCommand";
|
|
59
67
|
import {
|
|
60
68
|
DeleteRecoveryInstanceCommandInput,
|
|
61
69
|
DeleteRecoveryInstanceCommandOutput,
|
|
@@ -76,6 +84,10 @@ import {
|
|
|
76
84
|
DescribeJobsCommandInput,
|
|
77
85
|
DescribeJobsCommandOutput,
|
|
78
86
|
} from "./commands/DescribeJobsCommand";
|
|
87
|
+
import {
|
|
88
|
+
DescribeLaunchConfigurationTemplatesCommandInput,
|
|
89
|
+
DescribeLaunchConfigurationTemplatesCommandOutput,
|
|
90
|
+
} from "./commands/DescribeLaunchConfigurationTemplatesCommand";
|
|
79
91
|
import {
|
|
80
92
|
DescribeRecoveryInstancesCommandInput,
|
|
81
93
|
DescribeRecoveryInstancesCommandOutput,
|
|
@@ -176,6 +188,10 @@ import {
|
|
|
176
188
|
UpdateLaunchConfigurationCommandInput,
|
|
177
189
|
UpdateLaunchConfigurationCommandOutput,
|
|
178
190
|
} from "./commands/UpdateLaunchConfigurationCommand";
|
|
191
|
+
import {
|
|
192
|
+
UpdateLaunchConfigurationTemplateCommandInput,
|
|
193
|
+
UpdateLaunchConfigurationTemplateCommandOutput,
|
|
194
|
+
} from "./commands/UpdateLaunchConfigurationTemplateCommand";
|
|
179
195
|
import {
|
|
180
196
|
UpdateReplicationConfigurationCommandInput,
|
|
181
197
|
UpdateReplicationConfigurationCommandOutput,
|
|
@@ -191,13 +207,16 @@ import {
|
|
|
191
207
|
} from "./endpoint/EndpointParameters";
|
|
192
208
|
export type ServiceInputTypes =
|
|
193
209
|
| CreateExtendedSourceServerCommandInput
|
|
210
|
+
| CreateLaunchConfigurationTemplateCommandInput
|
|
194
211
|
| CreateReplicationConfigurationTemplateCommandInput
|
|
195
212
|
| DeleteJobCommandInput
|
|
213
|
+
| DeleteLaunchConfigurationTemplateCommandInput
|
|
196
214
|
| DeleteRecoveryInstanceCommandInput
|
|
197
215
|
| DeleteReplicationConfigurationTemplateCommandInput
|
|
198
216
|
| DeleteSourceServerCommandInput
|
|
199
217
|
| DescribeJobLogItemsCommandInput
|
|
200
218
|
| DescribeJobsCommandInput
|
|
219
|
+
| DescribeLaunchConfigurationTemplatesCommandInput
|
|
201
220
|
| DescribeRecoveryInstancesCommandInput
|
|
202
221
|
| DescribeRecoverySnapshotsCommandInput
|
|
203
222
|
| DescribeReplicationConfigurationTemplatesCommandInput
|
|
@@ -223,17 +242,21 @@ export type ServiceInputTypes =
|
|
|
223
242
|
| UntagResourceCommandInput
|
|
224
243
|
| UpdateFailbackReplicationConfigurationCommandInput
|
|
225
244
|
| UpdateLaunchConfigurationCommandInput
|
|
245
|
+
| UpdateLaunchConfigurationTemplateCommandInput
|
|
226
246
|
| UpdateReplicationConfigurationCommandInput
|
|
227
247
|
| UpdateReplicationConfigurationTemplateCommandInput;
|
|
228
248
|
export type ServiceOutputTypes =
|
|
229
249
|
| CreateExtendedSourceServerCommandOutput
|
|
250
|
+
| CreateLaunchConfigurationTemplateCommandOutput
|
|
230
251
|
| CreateReplicationConfigurationTemplateCommandOutput
|
|
231
252
|
| DeleteJobCommandOutput
|
|
253
|
+
| DeleteLaunchConfigurationTemplateCommandOutput
|
|
232
254
|
| DeleteRecoveryInstanceCommandOutput
|
|
233
255
|
| DeleteReplicationConfigurationTemplateCommandOutput
|
|
234
256
|
| DeleteSourceServerCommandOutput
|
|
235
257
|
| DescribeJobLogItemsCommandOutput
|
|
236
258
|
| DescribeJobsCommandOutput
|
|
259
|
+
| DescribeLaunchConfigurationTemplatesCommandOutput
|
|
237
260
|
| DescribeRecoveryInstancesCommandOutput
|
|
238
261
|
| DescribeRecoverySnapshotsCommandOutput
|
|
239
262
|
| DescribeReplicationConfigurationTemplatesCommandOutput
|
|
@@ -259,6 +282,7 @@ export type ServiceOutputTypes =
|
|
|
259
282
|
| UntagResourceCommandOutput
|
|
260
283
|
| UpdateFailbackReplicationConfigurationCommandOutput
|
|
261
284
|
| UpdateLaunchConfigurationCommandOutput
|
|
285
|
+
| UpdateLaunchConfigurationTemplateCommandOutput
|
|
262
286
|
| UpdateReplicationConfigurationCommandOutput
|
|
263
287
|
| UpdateReplicationConfigurationTemplateCommandOutput;
|
|
264
288
|
export interface ClientDefaults
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DrsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DrsClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateLaunchConfigurationTemplateRequest,
|
|
16
|
+
CreateLaunchConfigurationTemplateResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateLaunchConfigurationTemplateCommandInput
|
|
19
|
+
extends CreateLaunchConfigurationTemplateRequest {}
|
|
20
|
+
export interface CreateLaunchConfigurationTemplateCommandOutput
|
|
21
|
+
extends CreateLaunchConfigurationTemplateResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateLaunchConfigurationTemplateCommand extends $Command<
|
|
24
|
+
CreateLaunchConfigurationTemplateCommandInput,
|
|
25
|
+
CreateLaunchConfigurationTemplateCommandOutput,
|
|
26
|
+
DrsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLaunchConfigurationTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateLaunchConfigurationTemplateCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DrsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLaunchConfigurationTemplateCommandInput,
|
|
37
|
+
CreateLaunchConfigurationTemplateCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DrsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DrsClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteLaunchConfigurationTemplateRequest,
|
|
16
|
+
DeleteLaunchConfigurationTemplateResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteLaunchConfigurationTemplateCommandInput
|
|
19
|
+
extends DeleteLaunchConfigurationTemplateRequest {}
|
|
20
|
+
export interface DeleteLaunchConfigurationTemplateCommandOutput
|
|
21
|
+
extends DeleteLaunchConfigurationTemplateResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteLaunchConfigurationTemplateCommand extends $Command<
|
|
24
|
+
DeleteLaunchConfigurationTemplateCommandInput,
|
|
25
|
+
DeleteLaunchConfigurationTemplateCommandOutput,
|
|
26
|
+
DrsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteLaunchConfigurationTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteLaunchConfigurationTemplateCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DrsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteLaunchConfigurationTemplateCommandInput,
|
|
37
|
+
DeleteLaunchConfigurationTemplateCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DrsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DrsClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeLaunchConfigurationTemplatesRequest,
|
|
16
|
+
DescribeLaunchConfigurationTemplatesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DescribeLaunchConfigurationTemplatesCommandInput
|
|
19
|
+
extends DescribeLaunchConfigurationTemplatesRequest {}
|
|
20
|
+
export interface DescribeLaunchConfigurationTemplatesCommandOutput
|
|
21
|
+
extends DescribeLaunchConfigurationTemplatesResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeLaunchConfigurationTemplatesCommand extends $Command<
|
|
24
|
+
DescribeLaunchConfigurationTemplatesCommandInput,
|
|
25
|
+
DescribeLaunchConfigurationTemplatesCommandOutput,
|
|
26
|
+
DrsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLaunchConfigurationTemplatesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeLaunchConfigurationTemplatesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DrsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLaunchConfigurationTemplatesCommandInput,
|
|
37
|
+
DescribeLaunchConfigurationTemplatesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DrsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DrsClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateLaunchConfigurationTemplateRequest,
|
|
16
|
+
UpdateLaunchConfigurationTemplateResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface UpdateLaunchConfigurationTemplateCommandInput
|
|
19
|
+
extends UpdateLaunchConfigurationTemplateRequest {}
|
|
20
|
+
export interface UpdateLaunchConfigurationTemplateCommandOutput
|
|
21
|
+
extends UpdateLaunchConfigurationTemplateResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateLaunchConfigurationTemplateCommand extends $Command<
|
|
24
|
+
UpdateLaunchConfigurationTemplateCommandInput,
|
|
25
|
+
UpdateLaunchConfigurationTemplateCommandOutput,
|
|
26
|
+
DrsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLaunchConfigurationTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateLaunchConfigurationTemplateCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DrsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateLaunchConfigurationTemplateCommandInput,
|
|
37
|
+
UpdateLaunchConfigurationTemplateCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
export * from "./CreateExtendedSourceServerCommand";
|
|
2
|
+
export * from "./CreateLaunchConfigurationTemplateCommand";
|
|
2
3
|
export * from "./CreateReplicationConfigurationTemplateCommand";
|
|
3
4
|
export * from "./DeleteJobCommand";
|
|
5
|
+
export * from "./DeleteLaunchConfigurationTemplateCommand";
|
|
4
6
|
export * from "./DeleteRecoveryInstanceCommand";
|
|
5
7
|
export * from "./DeleteReplicationConfigurationTemplateCommand";
|
|
6
8
|
export * from "./DeleteSourceServerCommand";
|
|
7
9
|
export * from "./DescribeJobLogItemsCommand";
|
|
8
10
|
export * from "./DescribeJobsCommand";
|
|
11
|
+
export * from "./DescribeLaunchConfigurationTemplatesCommand";
|
|
9
12
|
export * from "./DescribeRecoveryInstancesCommand";
|
|
10
13
|
export * from "./DescribeRecoverySnapshotsCommand";
|
|
11
14
|
export * from "./DescribeReplicationConfigurationTemplatesCommand";
|
|
@@ -31,5 +34,6 @@ export * from "./TerminateRecoveryInstancesCommand";
|
|
|
31
34
|
export * from "./UntagResourceCommand";
|
|
32
35
|
export * from "./UpdateFailbackReplicationConfigurationCommand";
|
|
33
36
|
export * from "./UpdateLaunchConfigurationCommand";
|
|
37
|
+
export * from "./UpdateLaunchConfigurationTemplateCommand";
|
|
34
38
|
export * from "./UpdateReplicationConfigurationCommand";
|
|
35
39
|
export * from "./UpdateReplicationConfigurationTemplateCommand";
|
|
@@ -195,6 +195,7 @@ export interface SourceProperties {
|
|
|
195
195
|
cpus?: CPU[];
|
|
196
196
|
ramBytes?: number;
|
|
197
197
|
os?: OS;
|
|
198
|
+
supportsNitroInstances?: boolean;
|
|
198
199
|
}
|
|
199
200
|
export declare const ExtensionStatus: {
|
|
200
201
|
readonly EXTENDED: "EXTENDED";
|
|
@@ -296,6 +297,46 @@ export declare class ValidationException extends __BaseException {
|
|
|
296
297
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
297
298
|
);
|
|
298
299
|
}
|
|
300
|
+
export declare const LaunchDisposition: {
|
|
301
|
+
readonly STARTED: "STARTED";
|
|
302
|
+
readonly STOPPED: "STOPPED";
|
|
303
|
+
};
|
|
304
|
+
export type LaunchDisposition =
|
|
305
|
+
(typeof LaunchDisposition)[keyof typeof LaunchDisposition];
|
|
306
|
+
export interface Licensing {
|
|
307
|
+
osByol?: boolean;
|
|
308
|
+
}
|
|
309
|
+
export declare const TargetInstanceTypeRightSizingMethod: {
|
|
310
|
+
readonly BASIC: "BASIC";
|
|
311
|
+
readonly NONE: "NONE";
|
|
312
|
+
};
|
|
313
|
+
export type TargetInstanceTypeRightSizingMethod =
|
|
314
|
+
(typeof TargetInstanceTypeRightSizingMethod)[keyof typeof TargetInstanceTypeRightSizingMethod];
|
|
315
|
+
export interface CreateLaunchConfigurationTemplateRequest {
|
|
316
|
+
tags?: Record<string, string>;
|
|
317
|
+
launchDisposition?: LaunchDisposition | string;
|
|
318
|
+
targetInstanceTypeRightSizingMethod?:
|
|
319
|
+
| TargetInstanceTypeRightSizingMethod
|
|
320
|
+
| string;
|
|
321
|
+
copyPrivateIp?: boolean;
|
|
322
|
+
copyTags?: boolean;
|
|
323
|
+
licensing?: Licensing;
|
|
324
|
+
}
|
|
325
|
+
export interface LaunchConfigurationTemplate {
|
|
326
|
+
launchConfigurationTemplateID?: string;
|
|
327
|
+
arn?: string;
|
|
328
|
+
tags?: Record<string, string>;
|
|
329
|
+
launchDisposition?: LaunchDisposition | string;
|
|
330
|
+
targetInstanceTypeRightSizingMethod?:
|
|
331
|
+
| TargetInstanceTypeRightSizingMethod
|
|
332
|
+
| string;
|
|
333
|
+
copyPrivateIp?: boolean;
|
|
334
|
+
copyTags?: boolean;
|
|
335
|
+
licensing?: Licensing;
|
|
336
|
+
}
|
|
337
|
+
export interface CreateLaunchConfigurationTemplateResponse {
|
|
338
|
+
launchConfigurationTemplate?: LaunchConfigurationTemplate;
|
|
339
|
+
}
|
|
299
340
|
export declare const ReplicationConfigurationDataPlaneRouting: {
|
|
300
341
|
readonly PRIVATE_IP: "PRIVATE_IP";
|
|
301
342
|
readonly PUBLIC_IP: "PUBLIC_IP";
|
|
@@ -378,6 +419,10 @@ export interface DeleteJobRequest {
|
|
|
378
419
|
jobID: string | undefined;
|
|
379
420
|
}
|
|
380
421
|
export interface DeleteJobResponse {}
|
|
422
|
+
export interface DeleteLaunchConfigurationTemplateRequest {
|
|
423
|
+
launchConfigurationTemplateID: string | undefined;
|
|
424
|
+
}
|
|
425
|
+
export interface DeleteLaunchConfigurationTemplateResponse {}
|
|
381
426
|
export interface DeleteRecoveryInstanceRequest {
|
|
382
427
|
recoveryInstanceID: string | undefined;
|
|
383
428
|
}
|
|
@@ -481,6 +526,15 @@ export interface DescribeJobsResponse {
|
|
|
481
526
|
items?: Job[];
|
|
482
527
|
nextToken?: string;
|
|
483
528
|
}
|
|
529
|
+
export interface DescribeLaunchConfigurationTemplatesRequest {
|
|
530
|
+
launchConfigurationTemplateIDs?: string[];
|
|
531
|
+
maxResults?: number;
|
|
532
|
+
nextToken?: string;
|
|
533
|
+
}
|
|
534
|
+
export interface DescribeLaunchConfigurationTemplatesResponse {
|
|
535
|
+
items?: LaunchConfigurationTemplate[];
|
|
536
|
+
nextToken?: string;
|
|
537
|
+
}
|
|
484
538
|
export interface DescribeRecoveryInstancesRequestFilters {
|
|
485
539
|
recoveryInstanceIDs?: string[];
|
|
486
540
|
sourceServerIDs?: string[];
|
|
@@ -728,6 +782,19 @@ export interface DisconnectSourceServerRequest {
|
|
|
728
782
|
}
|
|
729
783
|
export interface InitializeServiceRequest {}
|
|
730
784
|
export interface InitializeServiceResponse {}
|
|
785
|
+
export interface UpdateLaunchConfigurationTemplateRequest {
|
|
786
|
+
launchConfigurationTemplateID: string | undefined;
|
|
787
|
+
launchDisposition?: LaunchDisposition | string;
|
|
788
|
+
targetInstanceTypeRightSizingMethod?:
|
|
789
|
+
| TargetInstanceTypeRightSizingMethod
|
|
790
|
+
| string;
|
|
791
|
+
copyPrivateIp?: boolean;
|
|
792
|
+
copyTags?: boolean;
|
|
793
|
+
licensing?: Licensing;
|
|
794
|
+
}
|
|
795
|
+
export interface UpdateLaunchConfigurationTemplateResponse {
|
|
796
|
+
launchConfigurationTemplate?: LaunchConfigurationTemplate;
|
|
797
|
+
}
|
|
731
798
|
export interface ListExtensibleSourceServersRequest {
|
|
732
799
|
stagingAccountID: string | undefined;
|
|
733
800
|
maxResults?: number;
|
|
@@ -816,21 +883,6 @@ export interface UpdateReplicationConfigurationTemplateRequest {
|
|
|
816
883
|
export interface GetLaunchConfigurationRequest {
|
|
817
884
|
sourceServerID: string | undefined;
|
|
818
885
|
}
|
|
819
|
-
export declare const LaunchDisposition: {
|
|
820
|
-
readonly STARTED: "STARTED";
|
|
821
|
-
readonly STOPPED: "STOPPED";
|
|
822
|
-
};
|
|
823
|
-
export type LaunchDisposition =
|
|
824
|
-
(typeof LaunchDisposition)[keyof typeof LaunchDisposition];
|
|
825
|
-
export interface Licensing {
|
|
826
|
-
osByol?: boolean;
|
|
827
|
-
}
|
|
828
|
-
export declare const TargetInstanceTypeRightSizingMethod: {
|
|
829
|
-
readonly BASIC: "BASIC";
|
|
830
|
-
readonly NONE: "NONE";
|
|
831
|
-
};
|
|
832
|
-
export type TargetInstanceTypeRightSizingMethod =
|
|
833
|
-
(typeof TargetInstanceTypeRightSizingMethod)[keyof typeof TargetInstanceTypeRightSizingMethod];
|
|
834
886
|
export interface LaunchConfiguration {
|
|
835
887
|
sourceServerID?: string;
|
|
836
888
|
name?: string;
|
|
@@ -964,6 +1016,15 @@ export declare const SourceServerFilterSensitiveLog: (obj: SourceServer) => any;
|
|
|
964
1016
|
export declare const CreateExtendedSourceServerResponseFilterSensitiveLog: (
|
|
965
1017
|
obj: CreateExtendedSourceServerResponse
|
|
966
1018
|
) => any;
|
|
1019
|
+
export declare const CreateLaunchConfigurationTemplateRequestFilterSensitiveLog: (
|
|
1020
|
+
obj: CreateLaunchConfigurationTemplateRequest
|
|
1021
|
+
) => any;
|
|
1022
|
+
export declare const LaunchConfigurationTemplateFilterSensitiveLog: (
|
|
1023
|
+
obj: LaunchConfigurationTemplate
|
|
1024
|
+
) => any;
|
|
1025
|
+
export declare const CreateLaunchConfigurationTemplateResponseFilterSensitiveLog: (
|
|
1026
|
+
obj: CreateLaunchConfigurationTemplateResponse
|
|
1027
|
+
) => any;
|
|
967
1028
|
export declare const CreateReplicationConfigurationTemplateRequestFilterSensitiveLog: (
|
|
968
1029
|
obj: CreateReplicationConfigurationTemplateRequest
|
|
969
1030
|
) => any;
|
|
@@ -974,6 +1035,9 @@ export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
|
974
1035
|
export declare const DescribeJobsResponseFilterSensitiveLog: (
|
|
975
1036
|
obj: DescribeJobsResponse
|
|
976
1037
|
) => any;
|
|
1038
|
+
export declare const DescribeLaunchConfigurationTemplatesResponseFilterSensitiveLog: (
|
|
1039
|
+
obj: DescribeLaunchConfigurationTemplatesResponse
|
|
1040
|
+
) => any;
|
|
977
1041
|
export declare const RecoveryInstanceFilterSensitiveLog: (
|
|
978
1042
|
obj: RecoveryInstance
|
|
979
1043
|
) => any;
|
|
@@ -986,6 +1050,9 @@ export declare const DescribeReplicationConfigurationTemplatesResponseFilterSens
|
|
|
986
1050
|
export declare const DescribeSourceServersResponseFilterSensitiveLog: (
|
|
987
1051
|
obj: DescribeSourceServersResponse
|
|
988
1052
|
) => any;
|
|
1053
|
+
export declare const UpdateLaunchConfigurationTemplateResponseFilterSensitiveLog: (
|
|
1054
|
+
obj: UpdateLaunchConfigurationTemplateResponse
|
|
1055
|
+
) => any;
|
|
989
1056
|
export declare const StagingSourceServerFilterSensitiveLog: (
|
|
990
1057
|
obj: StagingSourceServer
|
|
991
1058
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeLaunchConfigurationTemplatesCommandInput,
|
|
4
|
+
DescribeLaunchConfigurationTemplatesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeLaunchConfigurationTemplatesCommand";
|
|
6
|
+
import { DrsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeLaunchConfigurationTemplates(
|
|
8
|
+
config: DrsPaginationConfiguration,
|
|
9
|
+
input: DescribeLaunchConfigurationTemplatesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeLaunchConfigurationTemplatesCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./DescribeJobLogItemsPaginator";
|
|
2
2
|
export * from "./DescribeJobsPaginator";
|
|
3
|
+
export * from "./DescribeLaunchConfigurationTemplatesPaginator";
|
|
3
4
|
export * from "./DescribeRecoveryInstancesPaginator";
|
|
4
5
|
export * from "./DescribeRecoverySnapshotsPaginator";
|
|
5
6
|
export * from "./DescribeReplicationConfigurationTemplatesPaginator";
|