@aws-sdk/client-drs 3.310.0 → 3.315.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 +60 -0
- 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 +60 -0
- 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 +32 -0
- 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 +92 -0
- 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
|
@@ -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";
|
|
@@ -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.315.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.315.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.315.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.315.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.315.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.315.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",
|