@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
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
CreateExtendedSourceServerCommandInput,
|
|
8
8
|
CreateExtendedSourceServerCommandOutput,
|
|
9
9
|
} from "../commands/CreateExtendedSourceServerCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateLaunchConfigurationTemplateCommandInput,
|
|
12
|
+
CreateLaunchConfigurationTemplateCommandOutput,
|
|
13
|
+
} from "../commands/CreateLaunchConfigurationTemplateCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateReplicationConfigurationTemplateCommandInput,
|
|
12
16
|
CreateReplicationConfigurationTemplateCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
DeleteJobCommandInput,
|
|
16
20
|
DeleteJobCommandOutput,
|
|
17
21
|
} from "../commands/DeleteJobCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteLaunchConfigurationTemplateCommandInput,
|
|
24
|
+
DeleteLaunchConfigurationTemplateCommandOutput,
|
|
25
|
+
} from "../commands/DeleteLaunchConfigurationTemplateCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeleteRecoveryInstanceCommandInput,
|
|
20
28
|
DeleteRecoveryInstanceCommandOutput,
|
|
@@ -35,6 +43,10 @@ import {
|
|
|
35
43
|
DescribeJobsCommandInput,
|
|
36
44
|
DescribeJobsCommandOutput,
|
|
37
45
|
} from "../commands/DescribeJobsCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeLaunchConfigurationTemplatesCommandInput,
|
|
48
|
+
DescribeLaunchConfigurationTemplatesCommandOutput,
|
|
49
|
+
} from "../commands/DescribeLaunchConfigurationTemplatesCommand";
|
|
38
50
|
import {
|
|
39
51
|
DescribeRecoveryInstancesCommandInput,
|
|
40
52
|
DescribeRecoveryInstancesCommandOutput,
|
|
@@ -135,6 +147,10 @@ import {
|
|
|
135
147
|
UpdateLaunchConfigurationCommandInput,
|
|
136
148
|
UpdateLaunchConfigurationCommandOutput,
|
|
137
149
|
} from "../commands/UpdateLaunchConfigurationCommand";
|
|
150
|
+
import {
|
|
151
|
+
UpdateLaunchConfigurationTemplateCommandInput,
|
|
152
|
+
UpdateLaunchConfigurationTemplateCommandOutput,
|
|
153
|
+
} from "../commands/UpdateLaunchConfigurationTemplateCommand";
|
|
138
154
|
import {
|
|
139
155
|
UpdateReplicationConfigurationCommandInput,
|
|
140
156
|
UpdateReplicationConfigurationCommandOutput,
|
|
@@ -147,6 +163,10 @@ export declare const se_CreateExtendedSourceServerCommand: (
|
|
|
147
163
|
input: CreateExtendedSourceServerCommandInput,
|
|
148
164
|
context: __SerdeContext
|
|
149
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_CreateLaunchConfigurationTemplateCommand: (
|
|
167
|
+
input: CreateLaunchConfigurationTemplateCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
150
170
|
export declare const se_CreateReplicationConfigurationTemplateCommand: (
|
|
151
171
|
input: CreateReplicationConfigurationTemplateCommandInput,
|
|
152
172
|
context: __SerdeContext
|
|
@@ -155,6 +175,10 @@ export declare const se_DeleteJobCommand: (
|
|
|
155
175
|
input: DeleteJobCommandInput,
|
|
156
176
|
context: __SerdeContext
|
|
157
177
|
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_DeleteLaunchConfigurationTemplateCommand: (
|
|
179
|
+
input: DeleteLaunchConfigurationTemplateCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
158
182
|
export declare const se_DeleteRecoveryInstanceCommand: (
|
|
159
183
|
input: DeleteRecoveryInstanceCommandInput,
|
|
160
184
|
context: __SerdeContext
|
|
@@ -175,6 +199,10 @@ export declare const se_DescribeJobsCommand: (
|
|
|
175
199
|
input: DescribeJobsCommandInput,
|
|
176
200
|
context: __SerdeContext
|
|
177
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_DescribeLaunchConfigurationTemplatesCommand: (
|
|
203
|
+
input: DescribeLaunchConfigurationTemplatesCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
178
206
|
export declare const se_DescribeRecoveryInstancesCommand: (
|
|
179
207
|
input: DescribeRecoveryInstancesCommandInput,
|
|
180
208
|
context: __SerdeContext
|
|
@@ -275,6 +303,10 @@ export declare const se_UpdateLaunchConfigurationCommand: (
|
|
|
275
303
|
input: UpdateLaunchConfigurationCommandInput,
|
|
276
304
|
context: __SerdeContext
|
|
277
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_UpdateLaunchConfigurationTemplateCommand: (
|
|
307
|
+
input: UpdateLaunchConfigurationTemplateCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
278
310
|
export declare const se_UpdateReplicationConfigurationCommand: (
|
|
279
311
|
input: UpdateReplicationConfigurationCommandInput,
|
|
280
312
|
context: __SerdeContext
|
|
@@ -287,6 +319,10 @@ export declare const de_CreateExtendedSourceServerCommand: (
|
|
|
287
319
|
output: __HttpResponse,
|
|
288
320
|
context: __SerdeContext
|
|
289
321
|
) => Promise<CreateExtendedSourceServerCommandOutput>;
|
|
322
|
+
export declare const de_CreateLaunchConfigurationTemplateCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<CreateLaunchConfigurationTemplateCommandOutput>;
|
|
290
326
|
export declare const de_CreateReplicationConfigurationTemplateCommand: (
|
|
291
327
|
output: __HttpResponse,
|
|
292
328
|
context: __SerdeContext
|
|
@@ -295,6 +331,10 @@ export declare const de_DeleteJobCommand: (
|
|
|
295
331
|
output: __HttpResponse,
|
|
296
332
|
context: __SerdeContext
|
|
297
333
|
) => Promise<DeleteJobCommandOutput>;
|
|
334
|
+
export declare const de_DeleteLaunchConfigurationTemplateCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<DeleteLaunchConfigurationTemplateCommandOutput>;
|
|
298
338
|
export declare const de_DeleteRecoveryInstanceCommand: (
|
|
299
339
|
output: __HttpResponse,
|
|
300
340
|
context: __SerdeContext
|
|
@@ -315,6 +355,10 @@ export declare const de_DescribeJobsCommand: (
|
|
|
315
355
|
output: __HttpResponse,
|
|
316
356
|
context: __SerdeContext
|
|
317
357
|
) => Promise<DescribeJobsCommandOutput>;
|
|
358
|
+
export declare const de_DescribeLaunchConfigurationTemplatesCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<DescribeLaunchConfigurationTemplatesCommandOutput>;
|
|
318
362
|
export declare const de_DescribeRecoveryInstancesCommand: (
|
|
319
363
|
output: __HttpResponse,
|
|
320
364
|
context: __SerdeContext
|
|
@@ -415,6 +459,10 @@ export declare const de_UpdateLaunchConfigurationCommand: (
|
|
|
415
459
|
output: __HttpResponse,
|
|
416
460
|
context: __SerdeContext
|
|
417
461
|
) => Promise<UpdateLaunchConfigurationCommandOutput>;
|
|
462
|
+
export declare const de_UpdateLaunchConfigurationTemplateCommand: (
|
|
463
|
+
output: __HttpResponse,
|
|
464
|
+
context: __SerdeContext
|
|
465
|
+
) => Promise<UpdateLaunchConfigurationTemplateCommandOutput>;
|
|
418
466
|
export declare const de_UpdateReplicationConfigurationCommand: (
|
|
419
467
|
output: __HttpResponse,
|
|
420
468
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-drs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Drs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|