@aws-sdk/client-launch-wizard 3.477.0 → 3.481.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/commands/CreateDeploymentCommand.js +18 -41
- package/dist-cjs/commands/DeleteDeploymentCommand.js +18 -41
- package/dist-cjs/commands/GetDeploymentCommand.js +18 -41
- package/dist-cjs/commands/GetWorkloadCommand.js +18 -41
- package/dist-cjs/commands/ListDeploymentEventsCommand.js +18 -41
- package/dist-cjs/commands/ListDeploymentsCommand.js +18 -41
- package/dist-cjs/commands/ListWorkloadDeploymentPatternsCommand.js +18 -41
- package/dist-cjs/commands/ListWorkloadsCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/pagination/ListDeploymentEventsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDeploymentsPaginator.js +2 -24
- package/dist-cjs/pagination/ListWorkloadDeploymentPatternsPaginator.js +2 -24
- package/dist-cjs/pagination/ListWorkloadsPaginator.js +2 -24
- package/dist-es/commands/CreateDeploymentCommand.js +18 -41
- package/dist-es/commands/DeleteDeploymentCommand.js +18 -41
- package/dist-es/commands/GetDeploymentCommand.js +18 -41
- package/dist-es/commands/GetWorkloadCommand.js +18 -41
- package/dist-es/commands/ListDeploymentEventsCommand.js +18 -41
- package/dist-es/commands/ListDeploymentsCommand.js +18 -41
- package/dist-es/commands/ListWorkloadDeploymentPatternsCommand.js +18 -41
- package/dist-es/commands/ListWorkloadsCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/pagination/ListDeploymentEventsPaginator.js +2 -23
- package/dist-es/pagination/ListDeploymentsPaginator.js +2 -23
- package/dist-es/pagination/ListWorkloadDeploymentPatternsPaginator.js +2 -23
- package/dist-es/pagination/ListWorkloadsPaginator.js +2 -23
- package/dist-types/commands/CreateDeploymentCommand.d.ts +6 -21
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +6 -21
- package/dist-types/commands/GetDeploymentCommand.d.ts +6 -21
- package/dist-types/commands/GetWorkloadCommand.d.ts +6 -21
- package/dist-types/commands/ListDeploymentEventsCommand.d.ts +6 -21
- package/dist-types/commands/ListDeploymentsCommand.d.ts +6 -21
- package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +6 -21
- package/dist-types/commands/ListWorkloadsCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/pagination/ListDeploymentEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListWorkloadDeploymentPatternsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListWorkloadsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetWorkloadCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListDeploymentEventsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListWorkloadDeploymentPatternsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/pagination/ListDeploymentEventsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListWorkloadDeploymentPatternsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListWorkloadsPaginator.d.ts +3 -3
- package/package.json +11 -11
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListDeploymentsCommand, } from "../commands/ListDeploymentsCommand";
|
|
2
3
|
import { LaunchWizardClient } from "../LaunchWizardClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListDeploymentsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListDeployments(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LaunchWizardClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected LaunchWizard | LaunchWizardClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListDeployments = createPaginator(LaunchWizardClient, ListDeploymentsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListWorkloadDeploymentPatternsCommand, } from "../commands/ListWorkloadDeploymentPatternsCommand";
|
|
2
3
|
import { LaunchWizardClient } from "../LaunchWizardClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListWorkloadDeploymentPatternsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListWorkloadDeploymentPatterns(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LaunchWizardClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected LaunchWizard | LaunchWizardClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListWorkloadDeploymentPatterns = createPaginator(LaunchWizardClient, ListWorkloadDeploymentPatternsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListWorkloadsCommand, } from "../commands/ListWorkloadsCommand";
|
|
2
3
|
import { LaunchWizardClient } from "../LaunchWizardClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListWorkloadsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListWorkloads(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.nextToken = token;
|
|
12
|
-
input["maxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof LaunchWizardClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected LaunchWizard | LaunchWizardClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.nextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListWorkloads = createPaginator(LaunchWizardClient, ListWorkloadsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { CreateDeploymentInput, CreateDeploymentOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateDeploymentCommandInput extends CreateDeploymentInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateDeploymentCommand_base: {
|
|
24
|
+
new (input: CreateDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates a deployment for the given workload. Deployments created by this operation are
|
|
@@ -73,23 +76,5 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
|
|
|
73
76
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
74
77
|
*
|
|
75
78
|
*/
|
|
76
|
-
export declare class CreateDeploymentCommand extends
|
|
77
|
-
readonly input: CreateDeploymentCommandInput;
|
|
78
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
constructor(input: CreateDeploymentCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDeploymentCommandInput, CreateDeploymentCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private serialize;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private deserialize;
|
|
79
|
+
export declare class CreateDeploymentCommand extends CreateDeploymentCommand_base {
|
|
95
80
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { DeleteDeploymentInput, DeleteDeploymentOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteDeploymentCommandInput extends DeleteDeploymentInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteDeploymentCommandOutput extends DeleteDeploymentOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteDeploymentCommand_base: {
|
|
24
|
+
new (input: DeleteDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes a deployment.</p>
|
|
@@ -62,23 +65,5 @@ export interface DeleteDeploymentCommandOutput extends DeleteDeploymentOutput, _
|
|
|
62
65
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
63
66
|
*
|
|
64
67
|
*/
|
|
65
|
-
export declare class DeleteDeploymentCommand extends
|
|
66
|
-
readonly input: DeleteDeploymentCommandInput;
|
|
67
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
constructor(input: DeleteDeploymentCommandInput);
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private serialize;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private deserialize;
|
|
68
|
+
export declare class DeleteDeploymentCommand extends DeleteDeploymentCommand_base {
|
|
84
69
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetDeploymentCommandInput extends GetDeploymentInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetDeploymentCommand_base: {
|
|
24
|
+
new (input: GetDeploymentCommandInput): import("@smithy/smithy-client").CommandImpl<GetDeploymentCommandInput, GetDeploymentCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns information about the deployment.</p>
|
|
@@ -73,23 +76,5 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad
|
|
|
73
76
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
74
77
|
*
|
|
75
78
|
*/
|
|
76
|
-
export declare class GetDeploymentCommand extends
|
|
77
|
-
readonly input: GetDeploymentCommandInput;
|
|
78
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
constructor(input: GetDeploymentCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private serialize;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private deserialize;
|
|
79
|
+
export declare class GetDeploymentCommand extends GetDeploymentCommand_base {
|
|
95
80
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { GetWorkloadInput, GetWorkloadOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetWorkloadCommandInput extends GetWorkloadInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetWorkloadCommand_base: {
|
|
24
|
+
new (input: GetWorkloadCommandInput): import("@smithy/smithy-client").CommandImpl<GetWorkloadCommandInput, GetWorkloadCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns information about a workload.</p>
|
|
@@ -69,23 +72,5 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB
|
|
|
69
72
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
70
73
|
*
|
|
71
74
|
*/
|
|
72
|
-
export declare class GetWorkloadCommand extends
|
|
73
|
-
readonly input: GetWorkloadCommandInput;
|
|
74
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
-
/**
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
constructor(input: GetWorkloadCommandInput);
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkloadCommandInput, GetWorkloadCommandOutput>;
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
private serialize;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private deserialize;
|
|
75
|
+
export declare class GetWorkloadCommand extends GetWorkloadCommand_base {
|
|
91
76
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { ListDeploymentEventsInput, ListDeploymentEventsOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListDeploymentEventsCommandInput extends ListDeploymentEventsIn
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListDeploymentEventsCommandOutput extends ListDeploymentEventsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListDeploymentEventsCommand_base: {
|
|
24
|
+
new (input: ListDeploymentEventsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the events of a deployment.</p>
|
|
@@ -72,23 +75,5 @@ export interface ListDeploymentEventsCommandOutput extends ListDeploymentEventsO
|
|
|
72
75
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
73
76
|
*
|
|
74
77
|
*/
|
|
75
|
-
export declare class ListDeploymentEventsCommand extends
|
|
76
|
-
readonly input: ListDeploymentEventsCommandInput;
|
|
77
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
-
/**
|
|
79
|
-
* @public
|
|
80
|
-
*/
|
|
81
|
-
constructor(input: ListDeploymentEventsCommandInput);
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput>;
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
private serialize;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
private deserialize;
|
|
78
|
+
export declare class ListDeploymentEventsCommand extends ListDeploymentEventsCommand_base {
|
|
94
79
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListDeploymentsCommandInput extends ListDeploymentsInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListDeploymentsCommand_base: {
|
|
24
|
+
new (input: ListDeploymentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the deployments that have been created.</p>
|
|
@@ -77,23 +80,5 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
|
|
|
77
80
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
78
81
|
*
|
|
79
82
|
*/
|
|
80
|
-
export declare class ListDeploymentsCommand extends
|
|
81
|
-
readonly input: ListDeploymentsCommandInput;
|
|
82
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
-
/**
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
constructor(input: ListDeploymentsCommandInput);
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeploymentsCommandInput, ListDeploymentsCommandOutput>;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private serialize;
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
private deserialize;
|
|
83
|
+
export declare class ListDeploymentsCommand extends ListDeploymentsCommand_base {
|
|
99
84
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { ListWorkloadDeploymentPatternsInput, ListWorkloadDeploymentPatternsOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListWorkloadDeploymentPatternsCommandInput extends ListWorkload
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListWorkloadDeploymentPatternsCommandOutput extends ListWorkloadDeploymentPatternsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListWorkloadDeploymentPatternsCommand_base: {
|
|
24
|
+
new (input: ListWorkloadDeploymentPatternsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the workload deployment patterns.</p>
|
|
@@ -74,23 +77,5 @@ export interface ListWorkloadDeploymentPatternsCommandOutput extends ListWorkloa
|
|
|
74
77
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
75
78
|
*
|
|
76
79
|
*/
|
|
77
|
-
export declare class ListWorkloadDeploymentPatternsCommand extends
|
|
78
|
-
readonly input: ListWorkloadDeploymentPatternsCommandInput;
|
|
79
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
-
/**
|
|
81
|
-
* @public
|
|
82
|
-
*/
|
|
83
|
-
constructor(input: ListWorkloadDeploymentPatternsCommandInput);
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput>;
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
private serialize;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private deserialize;
|
|
80
|
+
export declare class ListWorkloadDeploymentPatternsCommand extends ListWorkloadDeploymentPatternsCommand_base {
|
|
96
81
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
|
|
5
4
|
import { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListWorkloadsCommandInput extends ListWorkloadsInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListWorkloadsCommand_base: {
|
|
24
|
+
new (input: ListWorkloadsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkloadsCommandInput, ListWorkloadsCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the workloads.</p>
|
|
@@ -65,23 +68,5 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
|
|
|
65
68
|
* <p>Base exception class for all service exceptions from LaunchWizard service.</p>
|
|
66
69
|
*
|
|
67
70
|
*/
|
|
68
|
-
export declare class ListWorkloadsCommand extends
|
|
69
|
-
readonly input: ListWorkloadsCommandInput;
|
|
70
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
-
/**
|
|
72
|
-
* @public
|
|
73
|
-
*/
|
|
74
|
-
constructor(input: ListWorkloadsCommandInput);
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LaunchWizardClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkloadsCommandInput, ListWorkloadsCommandOutput>;
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
private serialize;
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
private deserialize;
|
|
71
|
+
export declare class ListWorkloadsCommand extends ListWorkloadsCommand_base {
|
|
87
72
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -4,4 +4,4 @@ import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDeploymentEvents: (config: LaunchWizardPaginationConfiguration, input: ListDeploymentEventsCommandInput, ...rest: any[]) => Paginator<ListDeploymentEventsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDeployments: (config: LaunchWizardPaginationConfiguration, input: ListDeploymentsCommandInput, ...rest: any[]) => Paginator<ListDeploymentsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListWorkloadDeploymentPatterns: (config: LaunchWizardPaginationConfiguration, input: ListWorkloadDeploymentPatternsCommandInput, ...rest: any[]) => Paginator<ListWorkloadDeploymentPatternsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { LaunchWizardPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListWorkloads: (config: LaunchWizardPaginationConfiguration, input: ListWorkloadsCommandInput, ...rest: any[]) => Paginator<ListWorkloadsCommandOutput>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
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";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
LaunchWizardClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface CreateDeploymentCommandInput extends CreateDeploymentInput {}
|
|
|
20
14
|
export interface CreateDeploymentCommandOutput
|
|
21
15
|
extends CreateDeploymentOutput,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const CreateDeploymentCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: CreateDeploymentCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
CreateDeploymentCommandInput,
|
|
22
|
+
CreateDeploymentCommandOutput,
|
|
23
|
+
LaunchWizardClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class CreateDeploymentCommand extends CreateDeploymentCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
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";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
LaunchWizardClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface DeleteDeploymentCommandInput extends DeleteDeploymentInput {}
|
|
|
20
14
|
export interface DeleteDeploymentCommandOutput
|
|
21
15
|
extends DeleteDeploymentOutput,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const DeleteDeploymentCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: DeleteDeploymentCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
DeleteDeploymentCommandInput,
|
|
22
|
+
DeleteDeploymentCommandOutput,
|
|
23
|
+
LaunchWizardClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class DeleteDeploymentCommand extends DeleteDeploymentCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
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";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
LaunchWizardClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,19 +11,16 @@ export interface GetDeploymentCommandInput extends GetDeploymentInput {}
|
|
|
17
11
|
export interface GetDeploymentCommandOutput
|
|
18
12
|
extends GetDeploymentOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const GetDeploymentCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetDeploymentCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetDeploymentCommandInput,
|
|
19
|
+
GetDeploymentCommandOutput,
|
|
20
|
+
LaunchWizardClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GetDeploymentCommand extends GetDeploymentCommand_base {}
|