@aws-sdk/client-launch-wizard 3.443.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/LICENSE +201 -0
- package/README.md +272 -0
- package/dist-cjs/LaunchWizard.js +27 -0
- package/dist-cjs/LaunchWizardClient.js +43 -0
- package/dist-cjs/commands/CreateDeploymentCommand.js +52 -0
- package/dist-cjs/commands/DeleteDeploymentCommand.js +51 -0
- package/dist-cjs/commands/GetDeploymentCommand.js +52 -0
- package/dist-cjs/commands/GetWorkloadCommand.js +51 -0
- package/dist-cjs/commands/ListDeploymentEventsCommand.js +51 -0
- package/dist-cjs/commands/ListDeploymentsCommand.js +51 -0
- package/dist-cjs/commands/ListWorkloadDeploymentPatternsCommand.js +51 -0
- package/dist-cjs/commands/ListWorkloadsCommand.js +51 -0
- package/dist-cjs/commands/index.js +11 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/LaunchWizardServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +109 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDeploymentEventsPaginator.js +29 -0
- package/dist-cjs/pagination/ListDeploymentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkloadDeploymentPatternsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkloadsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +661 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/LaunchWizard.js +23 -0
- package/dist-es/LaunchWizardClient.js +39 -0
- package/dist-es/commands/CreateDeploymentCommand.js +48 -0
- package/dist-es/commands/DeleteDeploymentCommand.js +47 -0
- package/dist-es/commands/GetDeploymentCommand.js +48 -0
- package/dist-es/commands/GetWorkloadCommand.js +47 -0
- package/dist-es/commands/ListDeploymentEventsCommand.js +47 -0
- package/dist-es/commands/ListDeploymentsCommand.js +47 -0
- package/dist-es/commands/ListWorkloadDeploymentPatternsCommand.js +47 -0
- package/dist-es/commands/ListWorkloadsCommand.js +47 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/LaunchWizardServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +99 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDeploymentEventsPaginator.js +25 -0
- package/dist-es/pagination/ListDeploymentsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkloadDeploymentPatternsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkloadsPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +642 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/LaunchWizard.d.ts +69 -0
- package/dist-types/LaunchWizardClient.d.ts +180 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +95 -0
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +84 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +95 -0
- package/dist-types/commands/GetWorkloadCommand.d.ts +91 -0
- package/dist-types/commands/ListDeploymentEventsCommand.d.ts +94 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +99 -0
- package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +96 -0
- package/dist-types/commands/ListWorkloadsCommand.d.ts +87 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/LaunchWizardServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +652 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDeploymentEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkloadDeploymentPatternsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkloadsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +74 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/LaunchWizard.d.ts +143 -0
- package/dist-types/ts3.4/LaunchWizardClient.d.ts +167 -0
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetWorkloadCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListDeploymentEventsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkloadDeploymentPatternsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +8 -0
- package/dist-types/ts3.4/models/LaunchWizardServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDeploymentEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkloadDeploymentPatternsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkloadsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +102 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LaunchWizardClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LaunchWizardClient";
|
|
14
|
+
import { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetDeploymentCommandInput extends GetDeploymentInput {}
|
|
17
|
+
export interface GetDeploymentCommandOutput
|
|
18
|
+
extends GetDeploymentOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetDeploymentCommand extends $Command<
|
|
21
|
+
GetDeploymentCommandInput,
|
|
22
|
+
GetDeploymentCommandOutput,
|
|
23
|
+
LaunchWizardClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetDeploymentCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetDeploymentCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: LaunchWizardClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LaunchWizardClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LaunchWizardClient";
|
|
14
|
+
import { GetWorkloadInput, GetWorkloadOutput } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetWorkloadCommandInput extends GetWorkloadInput {}
|
|
17
|
+
export interface GetWorkloadCommandOutput
|
|
18
|
+
extends GetWorkloadOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetWorkloadCommand extends $Command<
|
|
21
|
+
GetWorkloadCommandInput,
|
|
22
|
+
GetWorkloadCommandOutput,
|
|
23
|
+
LaunchWizardClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetWorkloadCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetWorkloadCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: LaunchWizardClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetWorkloadCommandInput, GetWorkloadCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LaunchWizardClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LaunchWizardClient";
|
|
14
|
+
import {
|
|
15
|
+
ListDeploymentEventsInput,
|
|
16
|
+
ListDeploymentEventsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListDeploymentEventsCommandInput
|
|
20
|
+
extends ListDeploymentEventsInput {}
|
|
21
|
+
export interface ListDeploymentEventsCommandOutput
|
|
22
|
+
extends ListDeploymentEventsOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListDeploymentEventsCommand extends $Command<
|
|
25
|
+
ListDeploymentEventsCommandInput,
|
|
26
|
+
ListDeploymentEventsCommandOutput,
|
|
27
|
+
LaunchWizardClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListDeploymentEventsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListDeploymentEventsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: LaunchWizardClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListDeploymentEventsCommandInput,
|
|
38
|
+
ListDeploymentEventsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LaunchWizardClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LaunchWizardClient";
|
|
14
|
+
import {
|
|
15
|
+
ListDeploymentsInput,
|
|
16
|
+
ListDeploymentsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListDeploymentsCommandInput extends ListDeploymentsInput {}
|
|
20
|
+
export interface ListDeploymentsCommandOutput
|
|
21
|
+
extends ListDeploymentsOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListDeploymentsCommand extends $Command<
|
|
24
|
+
ListDeploymentsCommandInput,
|
|
25
|
+
ListDeploymentsCommandOutput,
|
|
26
|
+
LaunchWizardClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDeploymentsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListDeploymentsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: LaunchWizardClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListDeploymentsCommandInput, ListDeploymentsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LaunchWizardClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LaunchWizardClient";
|
|
14
|
+
import {
|
|
15
|
+
ListWorkloadDeploymentPatternsInput,
|
|
16
|
+
ListWorkloadDeploymentPatternsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListWorkloadDeploymentPatternsCommandInput
|
|
20
|
+
extends ListWorkloadDeploymentPatternsInput {}
|
|
21
|
+
export interface ListWorkloadDeploymentPatternsCommandOutput
|
|
22
|
+
extends ListWorkloadDeploymentPatternsOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListWorkloadDeploymentPatternsCommand extends $Command<
|
|
25
|
+
ListWorkloadDeploymentPatternsCommandInput,
|
|
26
|
+
ListWorkloadDeploymentPatternsCommandOutput,
|
|
27
|
+
LaunchWizardClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListWorkloadDeploymentPatternsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListWorkloadDeploymentPatternsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: LaunchWizardClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListWorkloadDeploymentPatternsCommandInput,
|
|
38
|
+
ListWorkloadDeploymentPatternsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
LaunchWizardClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LaunchWizardClient";
|
|
14
|
+
import { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListWorkloadsCommandInput extends ListWorkloadsInput {}
|
|
17
|
+
export interface ListWorkloadsCommandOutput
|
|
18
|
+
extends ListWorkloadsOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListWorkloadsCommand extends $Command<
|
|
21
|
+
ListWorkloadsCommandInput,
|
|
22
|
+
ListWorkloadsCommandOutput,
|
|
23
|
+
LaunchWizardClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListWorkloadsCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListWorkloadsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: LaunchWizardClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListWorkloadsCommandInput, ListWorkloadsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./CreateDeploymentCommand";
|
|
2
|
+
export * from "./DeleteDeploymentCommand";
|
|
3
|
+
export * from "./GetDeploymentCommand";
|
|
4
|
+
export * from "./GetWorkloadCommand";
|
|
5
|
+
export * from "./ListDeploymentEventsCommand";
|
|
6
|
+
export * from "./ListDeploymentsCommand";
|
|
7
|
+
export * from "./ListWorkloadDeploymentPatternsCommand";
|
|
8
|
+
export * from "./ListWorkloadsCommand";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
+
Region?: string;
|
|
30
|
+
UseDualStack?: boolean;
|
|
31
|
+
UseFIPS?: boolean;
|
|
32
|
+
Endpoint?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
export interface LaunchWizardExtensionConfiguration
|
|
5
|
+
extends HttpHandlerExtensionConfiguration,
|
|
6
|
+
DefaultExtensionConfiguration,
|
|
7
|
+
AwsRegionExtensionConfiguration {}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./LaunchWizardClient";
|
|
2
|
+
export * from "./LaunchWizard";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export * from "./commands";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./models";
|
|
7
|
+
import "@aws-sdk/util-endpoints";
|
|
8
|
+
export { LaunchWizardServiceException } from "./models/LaunchWizardServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class LaunchWizardServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
|
|
3
|
+
export interface CreateDeploymentInput {
|
|
4
|
+
workloadName: string | undefined;
|
|
5
|
+
deploymentPatternName: string | undefined;
|
|
6
|
+
name: string | undefined;
|
|
7
|
+
specifications: Record<string, string> | undefined;
|
|
8
|
+
dryRun?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export interface CreateDeploymentOutput {
|
|
11
|
+
deploymentId?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class InternalServerException extends __BaseException {
|
|
14
|
+
readonly name: "InternalServerException";
|
|
15
|
+
readonly $fault: "server";
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
export declare class ResourceLimitException extends __BaseException {
|
|
21
|
+
readonly name: "ResourceLimitException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<ResourceLimitException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
28
|
+
readonly name: "ResourceNotFoundException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ValidationException extends __BaseException {
|
|
35
|
+
readonly name: "ValidationException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export interface DeleteDeploymentInput {
|
|
42
|
+
deploymentId: string | undefined;
|
|
43
|
+
}
|
|
44
|
+
export declare const DeploymentStatus: {
|
|
45
|
+
readonly COMPLETED: "COMPLETED";
|
|
46
|
+
readonly CREATING: "CREATING";
|
|
47
|
+
readonly DELETED: "DELETED";
|
|
48
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
49
|
+
readonly DELETE_INITIATING: "DELETE_INITIATING";
|
|
50
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
51
|
+
readonly FAILED: "FAILED";
|
|
52
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
53
|
+
readonly VALIDATING: "VALIDATING";
|
|
54
|
+
};
|
|
55
|
+
export type DeploymentStatus =
|
|
56
|
+
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
57
|
+
export interface DeleteDeploymentOutput {
|
|
58
|
+
status?: DeploymentStatus;
|
|
59
|
+
statusReason?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface ListDeploymentEventsInput {
|
|
62
|
+
deploymentId: string | undefined;
|
|
63
|
+
maxResults?: number;
|
|
64
|
+
nextToken?: string;
|
|
65
|
+
}
|
|
66
|
+
export declare const EventStatus: {
|
|
67
|
+
readonly CANCELED: "CANCELED";
|
|
68
|
+
readonly CANCELING: "CANCELING";
|
|
69
|
+
readonly COMPLETED: "COMPLETED";
|
|
70
|
+
readonly CREATED: "CREATED";
|
|
71
|
+
readonly FAILED: "FAILED";
|
|
72
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
73
|
+
readonly PENDING: "PENDING";
|
|
74
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
75
|
+
};
|
|
76
|
+
export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
|
|
77
|
+
export interface DeploymentEventDataSummary {
|
|
78
|
+
name?: string;
|
|
79
|
+
description?: string;
|
|
80
|
+
status?: EventStatus;
|
|
81
|
+
statusReason?: string;
|
|
82
|
+
timestamp?: Date;
|
|
83
|
+
}
|
|
84
|
+
export interface ListDeploymentEventsOutput {
|
|
85
|
+
deploymentEvents?: DeploymentEventDataSummary[];
|
|
86
|
+
nextToken?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface GetDeploymentInput {
|
|
89
|
+
deploymentId: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export interface DeploymentData {
|
|
92
|
+
name?: string;
|
|
93
|
+
id?: string;
|
|
94
|
+
workloadName?: string;
|
|
95
|
+
patternName?: string;
|
|
96
|
+
status?: DeploymentStatus;
|
|
97
|
+
createdAt?: Date;
|
|
98
|
+
specifications?: Record<string, string>;
|
|
99
|
+
resourceGroup?: string;
|
|
100
|
+
deletedAt?: Date;
|
|
101
|
+
}
|
|
102
|
+
export interface GetDeploymentOutput {
|
|
103
|
+
deployment?: DeploymentData;
|
|
104
|
+
}
|
|
105
|
+
export declare const DeploymentFilterKey: {
|
|
106
|
+
readonly DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS";
|
|
107
|
+
readonly WORKLOAD_NAME: "WORKLOAD_NAME";
|
|
108
|
+
};
|
|
109
|
+
export type DeploymentFilterKey =
|
|
110
|
+
(typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
|
|
111
|
+
export interface DeploymentFilter {
|
|
112
|
+
name?: DeploymentFilterKey;
|
|
113
|
+
values?: string[];
|
|
114
|
+
}
|
|
115
|
+
export interface ListDeploymentsInput {
|
|
116
|
+
filters?: DeploymentFilter[];
|
|
117
|
+
maxResults?: number;
|
|
118
|
+
nextToken?: string;
|
|
119
|
+
}
|
|
120
|
+
export interface DeploymentDataSummary {
|
|
121
|
+
name?: string;
|
|
122
|
+
id?: string;
|
|
123
|
+
workloadName?: string;
|
|
124
|
+
patternName?: string;
|
|
125
|
+
status?: DeploymentStatus;
|
|
126
|
+
createdAt?: Date;
|
|
127
|
+
}
|
|
128
|
+
export interface ListDeploymentsOutput {
|
|
129
|
+
deployments?: DeploymentDataSummary[];
|
|
130
|
+
nextToken?: string;
|
|
131
|
+
}
|
|
132
|
+
export interface GetWorkloadInput {
|
|
133
|
+
workloadName: string | undefined;
|
|
134
|
+
}
|
|
135
|
+
export declare const WorkloadStatus: {
|
|
136
|
+
readonly ACTIVE: "ACTIVE";
|
|
137
|
+
readonly DELETED: "DELETED";
|
|
138
|
+
readonly DISABLED: "DISABLED";
|
|
139
|
+
readonly INACTIVE: "INACTIVE";
|
|
140
|
+
};
|
|
141
|
+
export type WorkloadStatus =
|
|
142
|
+
(typeof WorkloadStatus)[keyof typeof WorkloadStatus];
|
|
143
|
+
export interface WorkloadData {
|
|
144
|
+
workloadName?: string;
|
|
145
|
+
displayName?: string;
|
|
146
|
+
description?: string;
|
|
147
|
+
documentationUrl?: string;
|
|
148
|
+
iconUrl?: string;
|
|
149
|
+
status?: WorkloadStatus;
|
|
150
|
+
statusMessage?: string;
|
|
151
|
+
}
|
|
152
|
+
export interface GetWorkloadOutput {
|
|
153
|
+
workload?: WorkloadData;
|
|
154
|
+
}
|
|
155
|
+
export interface ListWorkloadsInput {
|
|
156
|
+
maxResults?: number;
|
|
157
|
+
nextToken?: string;
|
|
158
|
+
}
|
|
159
|
+
export interface WorkloadDataSummary {
|
|
160
|
+
workloadName?: string;
|
|
161
|
+
displayName?: string;
|
|
162
|
+
}
|
|
163
|
+
export interface ListWorkloadsOutput {
|
|
164
|
+
workloads?: WorkloadDataSummary[];
|
|
165
|
+
nextToken?: string;
|
|
166
|
+
}
|
|
167
|
+
export interface ListWorkloadDeploymentPatternsInput {
|
|
168
|
+
workloadName: string | undefined;
|
|
169
|
+
maxResults?: number;
|
|
170
|
+
nextToken?: string;
|
|
171
|
+
}
|
|
172
|
+
export declare const WorkloadDeploymentPatternStatus: {
|
|
173
|
+
readonly ACTIVE: "ACTIVE";
|
|
174
|
+
readonly DELETED: "DELETED";
|
|
175
|
+
readonly DISABLED: "DISABLED";
|
|
176
|
+
readonly INACTIVE: "INACTIVE";
|
|
177
|
+
};
|
|
178
|
+
export type WorkloadDeploymentPatternStatus =
|
|
179
|
+
(typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
|
|
180
|
+
export interface WorkloadDeploymentPatternDataSummary {
|
|
181
|
+
workloadName?: string;
|
|
182
|
+
deploymentPatternName?: string;
|
|
183
|
+
workloadVersionName?: string;
|
|
184
|
+
displayName?: string;
|
|
185
|
+
description?: string;
|
|
186
|
+
status?: WorkloadDeploymentPatternStatus;
|
|
187
|
+
statusMessage?: string;
|
|
188
|
+
}
|
|
189
|
+
export interface ListWorkloadDeploymentPatternsOutput {
|
|
190
|
+
workloadDeploymentPatterns?: WorkloadDeploymentPatternDataSummary[];
|
|
191
|
+
nextToken?: string;
|
|
192
|
+
}
|
|
193
|
+
export declare const CreateDeploymentInputFilterSensitiveLog: (
|
|
194
|
+
obj: CreateDeploymentInput
|
|
195
|
+
) => any;
|
|
196
|
+
export declare const DeploymentDataFilterSensitiveLog: (
|
|
197
|
+
obj: DeploymentData
|
|
198
|
+
) => any;
|
|
199
|
+
export declare const GetDeploymentOutputFilterSensitiveLog: (
|
|
200
|
+
obj: GetDeploymentOutput
|
|
201
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDeploymentEventsCommandInput,
|
|
4
|
+
ListDeploymentEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListDeploymentEventsCommand";
|
|
6
|
+
import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDeploymentEvents(
|
|
8
|
+
config: LaunchWizardPaginationConfiguration,
|
|
9
|
+
input: ListDeploymentEventsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDeploymentEventsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDeploymentsCommandInput,
|
|
4
|
+
ListDeploymentsCommandOutput,
|
|
5
|
+
} from "../commands/ListDeploymentsCommand";
|
|
6
|
+
import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDeployments(
|
|
8
|
+
config: LaunchWizardPaginationConfiguration,
|
|
9
|
+
input: ListDeploymentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDeploymentsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListWorkloadDeploymentPatternsCommandInput,
|
|
4
|
+
ListWorkloadDeploymentPatternsCommandOutput,
|
|
5
|
+
} from "../commands/ListWorkloadDeploymentPatternsCommand";
|
|
6
|
+
import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListWorkloadDeploymentPatterns(
|
|
8
|
+
config: LaunchWizardPaginationConfiguration,
|
|
9
|
+
input: ListWorkloadDeploymentPatternsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListWorkloadDeploymentPatternsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListWorkloadsCommandInput,
|
|
4
|
+
ListWorkloadsCommandOutput,
|
|
5
|
+
} from "../commands/ListWorkloadsCommand";
|
|
6
|
+
import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListWorkloads(
|
|
8
|
+
config: LaunchWizardPaginationConfiguration,
|
|
9
|
+
input: ListWorkloadsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListWorkloadsCommandOutput>;
|