@aws-sdk/client-launch-wizard 3.533.0 → 3.540.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/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/LaunchWizard.d.ts +3 -1
- package/dist-types/LaunchWizardClient.d.ts +1 -1
- package/dist-types/commands/CreateDeploymentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +2 -1
- package/dist-types/commands/GetDeploymentCommand.d.ts +2 -1
- package/dist-types/commands/GetWorkloadCommand.d.ts +2 -1
- package/dist-types/commands/ListDeploymentEventsCommand.d.ts +2 -1
- package/dist-types/commands/ListDeploymentsCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkloadsCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +81 -81
- package/dist-types/ts3.4/LaunchWizard.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetWorkloadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDeploymentEventsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListWorkloadDeploymentPatternsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -888,9 +888,6 @@ var paginateListWorkloadDeploymentPatterns = (0, import_core.createPaginator)(La
|
|
|
888
888
|
// src/pagination/ListWorkloadsPaginator.ts
|
|
889
889
|
|
|
890
890
|
var paginateListWorkloads = (0, import_core.createPaginator)(LaunchWizardClient, ListWorkloadsCommand, "nextToken", "nextToken", "maxResults");
|
|
891
|
-
|
|
892
|
-
// src/index.ts
|
|
893
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
894
891
|
// Annotate the CommonJS export names for ESM import in node:
|
|
895
892
|
|
|
896
893
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -42,6 +42,7 @@ export interface LaunchWizard {
|
|
|
42
42
|
/**
|
|
43
43
|
* @see {@link ListDeploymentsCommand}
|
|
44
44
|
*/
|
|
45
|
+
listDeployments(): Promise<ListDeploymentsCommandOutput>;
|
|
45
46
|
listDeployments(args: ListDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentsCommandOutput>;
|
|
46
47
|
listDeployments(args: ListDeploymentsCommandInput, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
47
48
|
listDeployments(args: ListDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
@@ -54,16 +55,17 @@ export interface LaunchWizard {
|
|
|
54
55
|
/**
|
|
55
56
|
* @see {@link ListWorkloadsCommand}
|
|
56
57
|
*/
|
|
58
|
+
listWorkloads(): Promise<ListWorkloadsCommandOutput>;
|
|
57
59
|
listWorkloads(args: ListWorkloadsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkloadsCommandOutput>;
|
|
58
60
|
listWorkloads(args: ListWorkloadsCommandInput, cb: (err: any, data?: ListWorkloadsCommandOutput) => void): void;
|
|
59
61
|
listWorkloads(args: ListWorkloadsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkloadsCommandOutput) => void): void;
|
|
60
62
|
}
|
|
61
63
|
/**
|
|
62
|
-
* @public
|
|
63
64
|
* <p>Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for
|
|
64
65
|
* third party applications, such as Microsoft SQL Server Always On and HANA based SAP
|
|
65
66
|
* systems, without the need to manually identify and provision individual Amazon Web Services
|
|
66
67
|
* resources.</p>
|
|
68
|
+
* @public
|
|
67
69
|
*/
|
|
68
70
|
export declare class LaunchWizard extends LaunchWizardClient implements LaunchWizard {
|
|
69
71
|
}
|
|
@@ -159,11 +159,11 @@ export type LaunchWizardClientResolvedConfigType = __SmithyResolvedConfiguration
|
|
|
159
159
|
export interface LaunchWizardClientResolvedConfig extends LaunchWizardClientResolvedConfigType {
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
|
-
* @public
|
|
163
162
|
* <p>Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for
|
|
164
163
|
* third party applications, such as Microsoft SQL Server Always On and HANA based SAP
|
|
165
164
|
* systems, without the need to manually identify and provision individual Amazon Web Services
|
|
166
165
|
* resources.</p>
|
|
166
|
+
* @public
|
|
167
167
|
*/
|
|
168
168
|
export declare class LaunchWizardClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LaunchWizardClientResolvedConfig> {
|
|
169
169
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDeploymentCommand_base: {
|
|
24
24
|
new (input: CreateDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a deployment for the given workload. Deployments created by this operation are
|
|
30
30
|
* not available in the Launch Wizard console to use the <code>Clone deployment</code> action
|
|
31
31
|
* on.</p>
|
|
@@ -75,6 +75,7 @@ declare const CreateDeploymentCommand_base: {
|
|
|
75
75
|
* @throws {@link LaunchWizardServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class CreateDeploymentCommand extends CreateDeploymentCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteDeploymentCommandOutput extends DeleteDeploymentOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteDeploymentCommand_base: {
|
|
24
24
|
new (input: DeleteDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a deployment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const DeleteDeploymentCommand_base: {
|
|
|
64
64
|
* @throws {@link LaunchWizardServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class DeleteDeploymentCommand extends DeleteDeploymentCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDeploymentCommand_base: {
|
|
24
24
|
new (input: GetDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<GetDeploymentCommandInput, GetDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<GetDeploymentCommandInput, GetDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about the deployment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const GetDeploymentCommand_base: {
|
|
|
75
75
|
* @throws {@link LaunchWizardServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class GetDeploymentCommand extends GetDeploymentCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetWorkloadCommand_base: {
|
|
24
24
|
new (input: GetWorkloadCommandInput): import("@smithy/smithy-client").CommandImpl<GetWorkloadCommandInput, GetWorkloadCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetWorkloadCommandInput): import("@smithy/smithy-client").CommandImpl<GetWorkloadCommandInput, GetWorkloadCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a workload.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const GetWorkloadCommand_base: {
|
|
|
71
71
|
* @throws {@link LaunchWizardServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class GetWorkloadCommand extends GetWorkloadCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDeploymentEventsCommandOutput extends ListDeploymentEventsO
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDeploymentEventsCommand_base: {
|
|
24
24
|
new (input: ListDeploymentEventsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListDeploymentEventsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the events of a deployment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const ListDeploymentEventsCommand_base: {
|
|
|
74
74
|
* @throws {@link LaunchWizardServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class ListDeploymentEventsCommand extends ListDeploymentEventsCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDeploymentsCommand_base: {
|
|
24
24
|
new (input: ListDeploymentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDeploymentsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the deployments that have been created.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListDeploymentsCommand_base: {
|
|
|
79
79
|
* @throws {@link LaunchWizardServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListDeploymentsCommand extends ListDeploymentsCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListWorkloadDeploymentPatternsCommandOutput extends ListWorkloa
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListWorkloadDeploymentPatternsCommand_base: {
|
|
24
24
|
new (input: ListWorkloadDeploymentPatternsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListWorkloadDeploymentPatternsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the workload deployment patterns.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const ListWorkloadDeploymentPatternsCommand_base: {
|
|
|
76
76
|
* @throws {@link LaunchWizardServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class ListWorkloadDeploymentPatternsCommand extends ListWorkloadDeploymentPatternsCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListWorkloadsCommand_base: {
|
|
24
24
|
new (input: ListWorkloadsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkloadsCommandInput, ListWorkloadsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListWorkloadsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWorkloadsCommandInput, ListWorkloadsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the workloads.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const ListWorkloadsCommand_base: {
|
|
|
67
67
|
* @throws {@link LaunchWizardServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class ListWorkloadsCommand extends ListWorkloadsCommand_base {
|
|
72
73
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -14,5 +14,4 @@ export { LaunchWizardExtensionConfiguration } from "./extensionConfiguration";
|
|
|
14
14
|
export * from "./commands";
|
|
15
15
|
export * from "./pagination";
|
|
16
16
|
export * from "./models";
|
|
17
|
-
import "@aws-sdk/util-endpoints";
|
|
18
17
|
export { LaunchWizardServiceException } from "./models/LaunchWizardServiceException";
|
|
@@ -5,38 +5,38 @@ import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardS
|
|
|
5
5
|
*/
|
|
6
6
|
export interface CreateDeploymentInput {
|
|
7
7
|
/**
|
|
8
|
-
* @public
|
|
9
8
|
* <p>The name of the workload. You can use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html">
|
|
10
9
|
* <code>ListWorkloadDeploymentPatterns</code>
|
|
11
10
|
* </a> operation to discover supported
|
|
12
11
|
* values for this parameter.</p>
|
|
12
|
+
* @public
|
|
13
13
|
*/
|
|
14
14
|
workloadName: string | undefined;
|
|
15
15
|
/**
|
|
16
|
-
* @public
|
|
17
16
|
* <p>The name of the deployment pattern supported by a given workload. You can use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html">
|
|
18
17
|
* <code>ListWorkloadDeploymentPatterns</code>
|
|
19
18
|
* </a> operation to discover supported
|
|
20
19
|
* values for this parameter. </p>
|
|
20
|
+
* @public
|
|
21
21
|
*/
|
|
22
22
|
deploymentPatternName: string | undefined;
|
|
23
23
|
/**
|
|
24
|
-
* @public
|
|
25
24
|
* <p>The name of the deployment.</p>
|
|
25
|
+
* @public
|
|
26
26
|
*/
|
|
27
27
|
name: string | undefined;
|
|
28
28
|
/**
|
|
29
|
-
* @public
|
|
30
29
|
* <p>The settings specified for the deployment. For more information on the specifications
|
|
31
30
|
* required for creating a deployment, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html">Workload specifications</a>.</p>
|
|
31
|
+
* @public
|
|
32
32
|
*/
|
|
33
33
|
specifications: Record<string, string> | undefined;
|
|
34
34
|
/**
|
|
35
|
-
* @public
|
|
36
35
|
* <p>Checks whether you have the required permissions for the action, without actually making
|
|
37
36
|
* the request, and provides an error response. If you have the required permissions, the
|
|
38
37
|
* error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
39
38
|
* <code>UnauthorizedOperation</code>.</p>
|
|
39
|
+
* @public
|
|
40
40
|
*/
|
|
41
41
|
dryRun?: boolean;
|
|
42
42
|
}
|
|
@@ -45,15 +45,15 @@ export interface CreateDeploymentInput {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface CreateDeploymentOutput {
|
|
47
47
|
/**
|
|
48
|
-
* @public
|
|
49
48
|
* <p>The ID of the deployment.</p>
|
|
49
|
+
* @public
|
|
50
50
|
*/
|
|
51
51
|
deploymentId?: string;
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
|
-
* @public
|
|
55
54
|
* <p>An internal error has occurred. Retry your request, but if the problem persists, contact
|
|
56
55
|
* us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
|
|
56
|
+
* @public
|
|
57
57
|
*/
|
|
58
58
|
export declare class InternalServerException extends __BaseException {
|
|
59
59
|
readonly name: "InternalServerException";
|
|
@@ -64,9 +64,9 @@ export declare class InternalServerException extends __BaseException {
|
|
|
64
64
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
67
|
-
* @public
|
|
68
67
|
* <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many
|
|
69
68
|
* deployments in progress.</p>
|
|
69
|
+
* @public
|
|
70
70
|
*/
|
|
71
71
|
export declare class ResourceLimitException extends __BaseException {
|
|
72
72
|
readonly name: "ResourceLimitException";
|
|
@@ -77,8 +77,8 @@ export declare class ResourceLimitException extends __BaseException {
|
|
|
77
77
|
constructor(opts: __ExceptionOptionType<ResourceLimitException, __BaseException>);
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
|
-
* @public
|
|
81
80
|
* <p>The specified workload or deployment resource can't be found.</p>
|
|
81
|
+
* @public
|
|
82
82
|
*/
|
|
83
83
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
84
84
|
readonly name: "ResourceNotFoundException";
|
|
@@ -89,8 +89,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
89
89
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
* @public
|
|
93
92
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
export declare class ValidationException extends __BaseException {
|
|
96
96
|
readonly name: "ValidationException";
|
|
@@ -105,8 +105,8 @@ export declare class ValidationException extends __BaseException {
|
|
|
105
105
|
*/
|
|
106
106
|
export interface DeleteDeploymentInput {
|
|
107
107
|
/**
|
|
108
|
-
* @public
|
|
109
108
|
* <p>The ID of the deployment.</p>
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
deploymentId: string | undefined;
|
|
112
112
|
}
|
|
@@ -134,13 +134,13 @@ export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof Deployment
|
|
|
134
134
|
*/
|
|
135
135
|
export interface DeleteDeploymentOutput {
|
|
136
136
|
/**
|
|
137
|
-
* @public
|
|
138
137
|
* <p>The status of the deployment.</p>
|
|
138
|
+
* @public
|
|
139
139
|
*/
|
|
140
140
|
status?: DeploymentStatus;
|
|
141
141
|
/**
|
|
142
|
-
* @public
|
|
143
142
|
* <p>The reason for the deployment status.</p>
|
|
143
|
+
* @public
|
|
144
144
|
*/
|
|
145
145
|
statusReason?: string;
|
|
146
146
|
}
|
|
@@ -149,20 +149,20 @@ export interface DeleteDeploymentOutput {
|
|
|
149
149
|
*/
|
|
150
150
|
export interface ListDeploymentEventsInput {
|
|
151
151
|
/**
|
|
152
|
-
* @public
|
|
153
152
|
* <p>The ID of the deployment.</p>
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
deploymentId: string | undefined;
|
|
156
156
|
/**
|
|
157
|
-
* @public
|
|
158
157
|
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
159
158
|
* make another request with the token returned in the output.</p>
|
|
159
|
+
* @public
|
|
160
160
|
*/
|
|
161
161
|
maxResults?: number;
|
|
162
162
|
/**
|
|
163
|
-
* @public
|
|
164
163
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
165
164
|
* of the items returned by the previous request.</p>
|
|
165
|
+
* @public
|
|
166
166
|
*/
|
|
167
167
|
nextToken?: string;
|
|
168
168
|
}
|
|
@@ -185,33 +185,33 @@ export declare const EventStatus: {
|
|
|
185
185
|
*/
|
|
186
186
|
export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
|
|
187
187
|
/**
|
|
188
|
-
* @public
|
|
189
188
|
* <p>A summary of the deployment event data.</p>
|
|
189
|
+
* @public
|
|
190
190
|
*/
|
|
191
191
|
export interface DeploymentEventDataSummary {
|
|
192
192
|
/**
|
|
193
|
-
* @public
|
|
194
193
|
* <p>The name of the deployment event.</p>
|
|
194
|
+
* @public
|
|
195
195
|
*/
|
|
196
196
|
name?: string;
|
|
197
197
|
/**
|
|
198
|
-
* @public
|
|
199
198
|
* <p>The description of the deployment event.</p>
|
|
199
|
+
* @public
|
|
200
200
|
*/
|
|
201
201
|
description?: string;
|
|
202
202
|
/**
|
|
203
|
-
* @public
|
|
204
203
|
* <p>The status of the deployment event.</p>
|
|
204
|
+
* @public
|
|
205
205
|
*/
|
|
206
206
|
status?: EventStatus;
|
|
207
207
|
/**
|
|
208
|
-
* @public
|
|
209
208
|
* <p>The reason of the deployment event status.</p>
|
|
209
|
+
* @public
|
|
210
210
|
*/
|
|
211
211
|
statusReason?: string;
|
|
212
212
|
/**
|
|
213
|
-
* @public
|
|
214
213
|
* <p>The timestamp of the deployment event.</p>
|
|
214
|
+
* @public
|
|
215
215
|
*/
|
|
216
216
|
timestamp?: Date;
|
|
217
217
|
}
|
|
@@ -220,14 +220,14 @@ export interface DeploymentEventDataSummary {
|
|
|
220
220
|
*/
|
|
221
221
|
export interface ListDeploymentEventsOutput {
|
|
222
222
|
/**
|
|
223
|
-
* @public
|
|
224
223
|
* <p>Lists the deployment events.</p>
|
|
224
|
+
* @public
|
|
225
225
|
*/
|
|
226
226
|
deploymentEvents?: DeploymentEventDataSummary[];
|
|
227
227
|
/**
|
|
228
|
-
* @public
|
|
229
228
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
230
229
|
* <code>null</code> when there are no more items to return.</p>
|
|
230
|
+
* @public
|
|
231
231
|
*/
|
|
232
232
|
nextToken?: string;
|
|
233
233
|
}
|
|
@@ -236,60 +236,60 @@ export interface ListDeploymentEventsOutput {
|
|
|
236
236
|
*/
|
|
237
237
|
export interface GetDeploymentInput {
|
|
238
238
|
/**
|
|
239
|
-
* @public
|
|
240
239
|
* <p>The ID of the deployment.</p>
|
|
240
|
+
* @public
|
|
241
241
|
*/
|
|
242
242
|
deploymentId: string | undefined;
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
|
-
* @public
|
|
246
245
|
* <p>The data associated with a deployment.</p>
|
|
246
|
+
* @public
|
|
247
247
|
*/
|
|
248
248
|
export interface DeploymentData {
|
|
249
249
|
/**
|
|
250
|
-
* @public
|
|
251
250
|
* <p>The name of the deployment.</p>
|
|
251
|
+
* @public
|
|
252
252
|
*/
|
|
253
253
|
name?: string;
|
|
254
254
|
/**
|
|
255
|
-
* @public
|
|
256
255
|
* <p>The ID of the deployment.</p>
|
|
256
|
+
* @public
|
|
257
257
|
*/
|
|
258
258
|
id?: string;
|
|
259
259
|
/**
|
|
260
|
-
* @public
|
|
261
260
|
* <p>The name of the workload.</p>
|
|
261
|
+
* @public
|
|
262
262
|
*/
|
|
263
263
|
workloadName?: string;
|
|
264
264
|
/**
|
|
265
|
-
* @public
|
|
266
265
|
* <p>The pattern name of the deployment.</p>
|
|
266
|
+
* @public
|
|
267
267
|
*/
|
|
268
268
|
patternName?: string;
|
|
269
269
|
/**
|
|
270
|
-
* @public
|
|
271
270
|
* <p>The status of the deployment.</p>
|
|
271
|
+
* @public
|
|
272
272
|
*/
|
|
273
273
|
status?: DeploymentStatus;
|
|
274
274
|
/**
|
|
275
|
-
* @public
|
|
276
275
|
* <p>The time the deployment was created.</p>
|
|
276
|
+
* @public
|
|
277
277
|
*/
|
|
278
278
|
createdAt?: Date;
|
|
279
279
|
/**
|
|
280
|
-
* @public
|
|
281
280
|
* <p>The specifications of the deployment. For more information on specifications for each
|
|
282
281
|
* deployment, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html">Workload specifications</a>.</p>
|
|
282
|
+
* @public
|
|
283
283
|
*/
|
|
284
284
|
specifications?: Record<string, string>;
|
|
285
285
|
/**
|
|
286
|
-
* @public
|
|
287
286
|
* <p>The resource group of the deployment.</p>
|
|
287
|
+
* @public
|
|
288
288
|
*/
|
|
289
289
|
resourceGroup?: string;
|
|
290
290
|
/**
|
|
291
|
-
* @public
|
|
292
291
|
* <p>The time the deployment was deleted.</p>
|
|
292
|
+
* @public
|
|
293
293
|
*/
|
|
294
294
|
deletedAt?: Date;
|
|
295
295
|
}
|
|
@@ -298,8 +298,8 @@ export interface DeploymentData {
|
|
|
298
298
|
*/
|
|
299
299
|
export interface GetDeploymentOutput {
|
|
300
300
|
/**
|
|
301
|
-
* @public
|
|
302
301
|
* <p>An object that details the deployment.</p>
|
|
302
|
+
* @public
|
|
303
303
|
*/
|
|
304
304
|
deployment?: DeploymentData;
|
|
305
305
|
}
|
|
@@ -316,22 +316,22 @@ export declare const DeploymentFilterKey: {
|
|
|
316
316
|
*/
|
|
317
317
|
export type DeploymentFilterKey = (typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
|
|
318
318
|
/**
|
|
319
|
-
* @public
|
|
320
319
|
* <p>A filter name and value pair that is used to return more specific results from a
|
|
321
320
|
* describe operation. Filters can be used to match a set of resources by specific
|
|
322
321
|
* criteria.</p>
|
|
322
|
+
* @public
|
|
323
323
|
*/
|
|
324
324
|
export interface DeploymentFilter {
|
|
325
325
|
/**
|
|
326
|
-
* @public
|
|
327
326
|
* <p>The name of the filter. Filter names are case-sensitive.</p>
|
|
327
|
+
* @public
|
|
328
328
|
*/
|
|
329
329
|
name?: DeploymentFilterKey;
|
|
330
330
|
/**
|
|
331
|
-
* @public
|
|
332
331
|
* <p>The filter values. Filter values are case-sensitive. If you specify multiple values for
|
|
333
332
|
* a filter, the values are joined with an <code>OR</code>, and the request returns all
|
|
334
333
|
* results that match any of the specified values.</p>
|
|
334
|
+
* @public
|
|
335
335
|
*/
|
|
336
336
|
values?: string[];
|
|
337
337
|
}
|
|
@@ -340,7 +340,6 @@ export interface DeploymentFilter {
|
|
|
340
340
|
*/
|
|
341
341
|
export interface ListDeploymentsInput {
|
|
342
342
|
/**
|
|
343
|
-
* @public
|
|
344
343
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
345
344
|
* <ul>
|
|
346
345
|
* <li>
|
|
@@ -354,54 +353,55 @@ export interface ListDeploymentsInput {
|
|
|
354
353
|
* </p>
|
|
355
354
|
* </li>
|
|
356
355
|
* </ul>
|
|
356
|
+
* @public
|
|
357
357
|
*/
|
|
358
358
|
filters?: DeploymentFilter[];
|
|
359
359
|
/**
|
|
360
|
-
* @public
|
|
361
360
|
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
362
361
|
* make another request with the token returned in the output.</p>
|
|
362
|
+
* @public
|
|
363
363
|
*/
|
|
364
364
|
maxResults?: number;
|
|
365
365
|
/**
|
|
366
|
-
* @public
|
|
367
366
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
368
367
|
* of the items returned by the previous request.</p>
|
|
368
|
+
* @public
|
|
369
369
|
*/
|
|
370
370
|
nextToken?: string;
|
|
371
371
|
}
|
|
372
372
|
/**
|
|
373
|
-
* @public
|
|
374
373
|
* <p>A summary of the deployment data.</p>
|
|
374
|
+
* @public
|
|
375
375
|
*/
|
|
376
376
|
export interface DeploymentDataSummary {
|
|
377
377
|
/**
|
|
378
|
-
* @public
|
|
379
378
|
* <p>The name of the deployment</p>
|
|
379
|
+
* @public
|
|
380
380
|
*/
|
|
381
381
|
name?: string;
|
|
382
382
|
/**
|
|
383
|
-
* @public
|
|
384
383
|
* <p>The ID of the deployment.</p>
|
|
384
|
+
* @public
|
|
385
385
|
*/
|
|
386
386
|
id?: string;
|
|
387
387
|
/**
|
|
388
|
-
* @public
|
|
389
388
|
* <p>The name of the workload.</p>
|
|
389
|
+
* @public
|
|
390
390
|
*/
|
|
391
391
|
workloadName?: string;
|
|
392
392
|
/**
|
|
393
|
-
* @public
|
|
394
393
|
* <p>The name of the workload deployment pattern.</p>
|
|
394
|
+
* @public
|
|
395
395
|
*/
|
|
396
396
|
patternName?: string;
|
|
397
397
|
/**
|
|
398
|
-
* @public
|
|
399
398
|
* <p>The status of the deployment.</p>
|
|
399
|
+
* @public
|
|
400
400
|
*/
|
|
401
401
|
status?: DeploymentStatus;
|
|
402
402
|
/**
|
|
403
|
-
* @public
|
|
404
403
|
* <p>The time the deployment was created.</p>
|
|
404
|
+
* @public
|
|
405
405
|
*/
|
|
406
406
|
createdAt?: Date;
|
|
407
407
|
}
|
|
@@ -410,14 +410,14 @@ export interface DeploymentDataSummary {
|
|
|
410
410
|
*/
|
|
411
411
|
export interface ListDeploymentsOutput {
|
|
412
412
|
/**
|
|
413
|
-
* @public
|
|
414
413
|
* <p>Lists the deployments.</p>
|
|
414
|
+
* @public
|
|
415
415
|
*/
|
|
416
416
|
deployments?: DeploymentDataSummary[];
|
|
417
417
|
/**
|
|
418
|
-
* @public
|
|
419
418
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
420
419
|
* <code>null</code> when there are no more items to return.</p>
|
|
420
|
+
* @public
|
|
421
421
|
*/
|
|
422
422
|
nextToken?: string;
|
|
423
423
|
}
|
|
@@ -426,8 +426,8 @@ export interface ListDeploymentsOutput {
|
|
|
426
426
|
*/
|
|
427
427
|
export interface GetWorkloadInput {
|
|
428
428
|
/**
|
|
429
|
-
* @public
|
|
430
429
|
* <p>The name of the workload.</p>
|
|
430
|
+
* @public
|
|
431
431
|
*/
|
|
432
432
|
workloadName: string | undefined;
|
|
433
433
|
}
|
|
@@ -446,43 +446,43 @@ export declare const WorkloadStatus: {
|
|
|
446
446
|
*/
|
|
447
447
|
export type WorkloadStatus = (typeof WorkloadStatus)[keyof typeof WorkloadStatus];
|
|
448
448
|
/**
|
|
449
|
-
* @public
|
|
450
449
|
* <p>Describes a workload.</p>
|
|
450
|
+
* @public
|
|
451
451
|
*/
|
|
452
452
|
export interface WorkloadData {
|
|
453
453
|
/**
|
|
454
|
-
* @public
|
|
455
454
|
* <p>The name of the workload.</p>
|
|
455
|
+
* @public
|
|
456
456
|
*/
|
|
457
457
|
workloadName?: string;
|
|
458
458
|
/**
|
|
459
|
-
* @public
|
|
460
459
|
* <p>The display name of a workload.</p>
|
|
460
|
+
* @public
|
|
461
461
|
*/
|
|
462
462
|
displayName?: string;
|
|
463
463
|
/**
|
|
464
|
-
* @public
|
|
465
464
|
* <p>The description of a workload.</p>
|
|
465
|
+
* @public
|
|
466
466
|
*/
|
|
467
467
|
description?: string;
|
|
468
468
|
/**
|
|
469
|
-
* @public
|
|
470
469
|
* <p>The URL of a workload document.</p>
|
|
470
|
+
* @public
|
|
471
471
|
*/
|
|
472
472
|
documentationUrl?: string;
|
|
473
473
|
/**
|
|
474
|
-
* @public
|
|
475
474
|
* <p>The URL of a workload icon.</p>
|
|
475
|
+
* @public
|
|
476
476
|
*/
|
|
477
477
|
iconUrl?: string;
|
|
478
478
|
/**
|
|
479
|
-
* @public
|
|
480
479
|
* <p>The status of a workload.</p>
|
|
480
|
+
* @public
|
|
481
481
|
*/
|
|
482
482
|
status?: WorkloadStatus;
|
|
483
483
|
/**
|
|
484
|
-
* @public
|
|
485
484
|
* <p>The message about a workload's status.</p>
|
|
485
|
+
* @public
|
|
486
486
|
*/
|
|
487
487
|
statusMessage?: string;
|
|
488
488
|
}
|
|
@@ -491,8 +491,8 @@ export interface WorkloadData {
|
|
|
491
491
|
*/
|
|
492
492
|
export interface GetWorkloadOutput {
|
|
493
493
|
/**
|
|
494
|
-
* @public
|
|
495
494
|
* <p>Information about the workload.</p>
|
|
495
|
+
* @public
|
|
496
496
|
*/
|
|
497
497
|
workload?: WorkloadData;
|
|
498
498
|
}
|
|
@@ -501,31 +501,31 @@ export interface GetWorkloadOutput {
|
|
|
501
501
|
*/
|
|
502
502
|
export interface ListWorkloadsInput {
|
|
503
503
|
/**
|
|
504
|
-
* @public
|
|
505
504
|
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
506
505
|
* make another request with the token returned in the output.</p>
|
|
506
|
+
* @public
|
|
507
507
|
*/
|
|
508
508
|
maxResults?: number;
|
|
509
509
|
/**
|
|
510
|
-
* @public
|
|
511
510
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
512
511
|
* of the items returned by the previous request.</p>
|
|
512
|
+
* @public
|
|
513
513
|
*/
|
|
514
514
|
nextToken?: string;
|
|
515
515
|
}
|
|
516
516
|
/**
|
|
517
|
-
* @public
|
|
518
517
|
* <p>Describes workload data.</p>
|
|
518
|
+
* @public
|
|
519
519
|
*/
|
|
520
520
|
export interface WorkloadDataSummary {
|
|
521
521
|
/**
|
|
522
|
-
* @public
|
|
523
522
|
* <p>The name of the workload.</p>
|
|
523
|
+
* @public
|
|
524
524
|
*/
|
|
525
525
|
workloadName?: string;
|
|
526
526
|
/**
|
|
527
|
-
* @public
|
|
528
527
|
* <p>The display name of the workload data.</p>
|
|
528
|
+
* @public
|
|
529
529
|
*/
|
|
530
530
|
displayName?: string;
|
|
531
531
|
}
|
|
@@ -534,14 +534,14 @@ export interface WorkloadDataSummary {
|
|
|
534
534
|
*/
|
|
535
535
|
export interface ListWorkloadsOutput {
|
|
536
536
|
/**
|
|
537
|
-
* @public
|
|
538
537
|
* <p>Information about the workloads.</p>
|
|
538
|
+
* @public
|
|
539
539
|
*/
|
|
540
540
|
workloads?: WorkloadDataSummary[];
|
|
541
541
|
/**
|
|
542
|
-
* @public
|
|
543
542
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
544
543
|
* <code>null</code> when there are no more items to return.</p>
|
|
544
|
+
* @public
|
|
545
545
|
*/
|
|
546
546
|
nextToken?: string;
|
|
547
547
|
}
|
|
@@ -550,20 +550,20 @@ export interface ListWorkloadsOutput {
|
|
|
550
550
|
*/
|
|
551
551
|
export interface ListWorkloadDeploymentPatternsInput {
|
|
552
552
|
/**
|
|
553
|
-
* @public
|
|
554
553
|
* <p>The name of the workload.</p>
|
|
554
|
+
* @public
|
|
555
555
|
*/
|
|
556
556
|
workloadName: string | undefined;
|
|
557
557
|
/**
|
|
558
|
-
* @public
|
|
559
558
|
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
560
559
|
* make another request with the token returned in the output.</p>
|
|
560
|
+
* @public
|
|
561
561
|
*/
|
|
562
562
|
maxResults?: number;
|
|
563
563
|
/**
|
|
564
|
-
* @public
|
|
565
564
|
* <p>The token returned from a previous paginated request. Pagination continues from the end
|
|
566
565
|
* of the items returned by the previous request.</p>
|
|
566
|
+
* @public
|
|
567
567
|
*/
|
|
568
568
|
nextToken?: string;
|
|
569
569
|
}
|
|
@@ -582,43 +582,43 @@ export declare const WorkloadDeploymentPatternStatus: {
|
|
|
582
582
|
*/
|
|
583
583
|
export type WorkloadDeploymentPatternStatus = (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
|
|
584
584
|
/**
|
|
585
|
-
* @public
|
|
586
585
|
* <p>Describes a workload deployment pattern.</p>
|
|
586
|
+
* @public
|
|
587
587
|
*/
|
|
588
588
|
export interface WorkloadDeploymentPatternDataSummary {
|
|
589
589
|
/**
|
|
590
|
-
* @public
|
|
591
590
|
* <p>The name of the workload.</p>
|
|
591
|
+
* @public
|
|
592
592
|
*/
|
|
593
593
|
workloadName?: string;
|
|
594
594
|
/**
|
|
595
|
-
* @public
|
|
596
595
|
* <p>The name of a workload deployment pattern.</p>
|
|
596
|
+
* @public
|
|
597
597
|
*/
|
|
598
598
|
deploymentPatternName?: string;
|
|
599
599
|
/**
|
|
600
|
-
* @public
|
|
601
600
|
* <p>The name of the workload deployment pattern version.</p>
|
|
601
|
+
* @public
|
|
602
602
|
*/
|
|
603
603
|
workloadVersionName?: string;
|
|
604
604
|
/**
|
|
605
|
-
* @public
|
|
606
605
|
* <p>The display name of a workload deployment pattern.</p>
|
|
606
|
+
* @public
|
|
607
607
|
*/
|
|
608
608
|
displayName?: string;
|
|
609
609
|
/**
|
|
610
|
-
* @public
|
|
611
610
|
* <p>The description of a workload deployment pattern.</p>
|
|
611
|
+
* @public
|
|
612
612
|
*/
|
|
613
613
|
description?: string;
|
|
614
614
|
/**
|
|
615
|
-
* @public
|
|
616
615
|
* <p>The status of a workload deployment pattern.</p>
|
|
616
|
+
* @public
|
|
617
617
|
*/
|
|
618
618
|
status?: WorkloadDeploymentPatternStatus;
|
|
619
619
|
/**
|
|
620
|
-
* @public
|
|
621
620
|
* <p>A message about a workload deployment pattern's status.</p>
|
|
621
|
+
* @public
|
|
622
622
|
*/
|
|
623
623
|
statusMessage?: string;
|
|
624
624
|
}
|
|
@@ -627,14 +627,14 @@ export interface WorkloadDeploymentPatternDataSummary {
|
|
|
627
627
|
*/
|
|
628
628
|
export interface ListWorkloadDeploymentPatternsOutput {
|
|
629
629
|
/**
|
|
630
|
-
* @public
|
|
631
630
|
* <p>Describes the workload deployment patterns.</p>
|
|
631
|
+
* @public
|
|
632
632
|
*/
|
|
633
633
|
workloadDeploymentPatterns?: WorkloadDeploymentPatternDataSummary[];
|
|
634
634
|
/**
|
|
635
|
-
* @public
|
|
636
635
|
* <p>The token to include in another request to get the next page of items. This value is
|
|
637
636
|
* <code>null</code> when there are no more items to return.</p>
|
|
637
|
+
* @public
|
|
638
638
|
*/
|
|
639
639
|
nextToken?: string;
|
|
640
640
|
}
|
|
@@ -98,6 +98,7 @@ export interface LaunchWizard {
|
|
|
98
98
|
options: __HttpHandlerOptions,
|
|
99
99
|
cb: (err: any, data?: ListDeploymentEventsCommandOutput) => void
|
|
100
100
|
): void;
|
|
101
|
+
listDeployments(): Promise<ListDeploymentsCommandOutput>;
|
|
101
102
|
listDeployments(
|
|
102
103
|
args: ListDeploymentsCommandInput,
|
|
103
104
|
options?: __HttpHandlerOptions
|
|
@@ -124,6 +125,7 @@ export interface LaunchWizard {
|
|
|
124
125
|
options: __HttpHandlerOptions,
|
|
125
126
|
cb: (err: any, data?: ListWorkloadDeploymentPatternsCommandOutput) => void
|
|
126
127
|
): void;
|
|
128
|
+
listWorkloads(): Promise<ListWorkloadsCommandOutput>;
|
|
127
129
|
listWorkloads(
|
|
128
130
|
args: ListWorkloadsCommandInput,
|
|
129
131
|
options?: __HttpHandlerOptions
|
|
@@ -24,6 +24,15 @@ declare const CreateDeploymentCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateDeploymentCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateDeploymentCommandInput,
|
|
31
|
+
CreateDeploymentCommandOutput,
|
|
32
|
+
LaunchWizardClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreateDeploymentCommand extends CreateDeploymentCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DeleteDeploymentCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteDeploymentCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteDeploymentCommandInput,
|
|
31
|
+
DeleteDeploymentCommandOutput,
|
|
32
|
+
LaunchWizardClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeleteDeploymentCommand extends DeleteDeploymentCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetDeploymentCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetDeploymentCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetDeploymentCommandInput,
|
|
28
|
+
GetDeploymentCommandOutput,
|
|
29
|
+
LaunchWizardClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetDeploymentCommand extends GetDeploymentCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetWorkloadCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetWorkloadCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetWorkloadCommandInput,
|
|
28
|
+
GetWorkloadCommandOutput,
|
|
29
|
+
LaunchWizardClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetWorkloadCommand extends GetWorkloadCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListDeploymentEventsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListDeploymentEventsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListDeploymentEventsCommandInput,
|
|
32
|
+
ListDeploymentEventsCommandOutput,
|
|
33
|
+
LaunchWizardClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListDeploymentEventsCommand extends ListDeploymentEventsCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListDeploymentsCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListDeploymentsCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListDeploymentsCommandInput,
|
|
31
|
+
ListDeploymentsCommandOutput,
|
|
32
|
+
LaunchWizardClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListDeploymentsCommand extends ListDeploymentsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListWorkloadDeploymentPatternsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListWorkloadDeploymentPatternsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListWorkloadDeploymentPatternsCommandInput,
|
|
32
|
+
ListWorkloadDeploymentPatternsCommandOutput,
|
|
33
|
+
LaunchWizardClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListWorkloadDeploymentPatternsCommand extends ListWorkloadDeploymentPatternsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListWorkloadsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListWorkloadsCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListWorkloadsCommandInput,
|
|
28
|
+
ListWorkloadsCommandOutput,
|
|
29
|
+
LaunchWizardClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListWorkloadsCommand extends ListWorkloadsCommand_base {}
|
|
@@ -6,5 +6,4 @@ export { LaunchWizardExtensionConfiguration } from "./extensionConfiguration";
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./models";
|
|
9
|
-
import "@aws-sdk/util-endpoints";
|
|
10
9
|
export { LaunchWizardServiceException } from "./models/LaunchWizardServiceException";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-launch-wizard",
|
|
3
3
|
"description": "AWS SDK for JavaScript Launch Wizard Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.540.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-launch-wizard",
|
|
@@ -20,47 +20,47 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|