@aws-sdk/client-launch-wizard 3.970.0 → 3.972.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.
Files changed (48) hide show
  1. package/README.md +22 -4
  2. package/dist-cjs/index.js +149 -11
  3. package/dist-es/LaunchWizard.js +6 -0
  4. package/dist-es/commands/GetDeploymentPatternVersionCommand.js +16 -0
  5. package/dist-es/commands/ListDeploymentPatternVersionsCommand.js +16 -0
  6. package/dist-es/commands/UpdateDeploymentCommand.js +16 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +8 -0
  9. package/dist-es/pagination/ListDeploymentPatternVersionsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +85 -11
  12. package/dist-types/LaunchWizard.d.ts +22 -4
  13. package/dist-types/LaunchWizardClient.d.ts +6 -6
  14. package/dist-types/commands/CreateDeploymentCommand.d.ts +27 -29
  15. package/dist-types/commands/DeleteDeploymentCommand.d.ts +3 -5
  16. package/dist-types/commands/GetDeploymentCommand.d.ts +3 -3
  17. package/dist-types/commands/GetDeploymentPatternVersionCommand.d.ts +88 -0
  18. package/dist-types/commands/GetWorkloadCommand.d.ts +2 -3
  19. package/dist-types/commands/GetWorkloadDeploymentPatternCommand.d.ts +5 -8
  20. package/dist-types/commands/ListDeploymentEventsCommand.d.ts +1 -2
  21. package/dist-types/commands/ListDeploymentPatternVersionsCommand.d.ts +165 -0
  22. package/dist-types/commands/ListDeploymentsCommand.d.ts +3 -3
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
  24. package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +6 -6
  25. package/dist-types/commands/ListWorkloadsCommand.d.ts +4 -2
  26. package/dist-types/commands/TagResourceCommand.d.ts +1 -2
  27. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  28. package/dist-types/commands/UpdateDeploymentCommand.d.ts +177 -0
  29. package/dist-types/commands/index.d.ts +3 -0
  30. package/dist-types/index.d.ts +1 -4
  31. package/dist-types/models/enums.d.ts +16 -0
  32. package/dist-types/models/errors.d.ts +2 -4
  33. package/dist-types/models/models_0.d.ts +220 -87
  34. package/dist-types/pagination/ListDeploymentPatternVersionsPaginator.d.ts +7 -0
  35. package/dist-types/pagination/index.d.ts +1 -0
  36. package/dist-types/schemas/schemas_0.d.ts +11 -0
  37. package/dist-types/ts3.4/LaunchWizard.d.ts +51 -0
  38. package/dist-types/ts3.4/LaunchWizardClient.d.ts +20 -2
  39. package/dist-types/ts3.4/commands/GetDeploymentPatternVersionCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/ListDeploymentPatternVersionsCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/UpdateDeploymentCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  43. package/dist-types/ts3.4/models/enums.d.ts +10 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +48 -1
  45. package/dist-types/ts3.4/pagination/ListDeploymentPatternVersionsPaginator.d.ts +11 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
  48. package/package.json +14 -14
@@ -57,6 +57,10 @@ import {
57
57
  GetDeploymentCommandInput,
58
58
  GetDeploymentCommandOutput,
59
59
  } from "./commands/GetDeploymentCommand";
60
+ import {
61
+ GetDeploymentPatternVersionCommandInput,
62
+ GetDeploymentPatternVersionCommandOutput,
63
+ } from "./commands/GetDeploymentPatternVersionCommand";
60
64
  import {
61
65
  GetWorkloadCommandInput,
62
66
  GetWorkloadCommandOutput,
@@ -69,6 +73,10 @@ import {
69
73
  ListDeploymentEventsCommandInput,
70
74
  ListDeploymentEventsCommandOutput,
71
75
  } from "./commands/ListDeploymentEventsCommand";
76
+ import {
77
+ ListDeploymentPatternVersionsCommandInput,
78
+ ListDeploymentPatternVersionsCommandOutput,
79
+ } from "./commands/ListDeploymentPatternVersionsCommand";
72
80
  import {
73
81
  ListDeploymentsCommandInput,
74
82
  ListDeploymentsCommandOutput,
@@ -93,6 +101,10 @@ import {
93
101
  UntagResourceCommandInput,
94
102
  UntagResourceCommandOutput,
95
103
  } from "./commands/UntagResourceCommand";
104
+ import {
105
+ UpdateDeploymentCommandInput,
106
+ UpdateDeploymentCommandOutput,
107
+ } from "./commands/UpdateDeploymentCommand";
96
108
  import {
97
109
  ClientInputEndpointParameters,
98
110
  ClientResolvedEndpointParameters,
@@ -104,28 +116,34 @@ export type ServiceInputTypes =
104
116
  | CreateDeploymentCommandInput
105
117
  | DeleteDeploymentCommandInput
106
118
  | GetDeploymentCommandInput
119
+ | GetDeploymentPatternVersionCommandInput
107
120
  | GetWorkloadCommandInput
108
121
  | GetWorkloadDeploymentPatternCommandInput
109
122
  | ListDeploymentEventsCommandInput
123
+ | ListDeploymentPatternVersionsCommandInput
110
124
  | ListDeploymentsCommandInput
111
125
  | ListTagsForResourceCommandInput
112
126
  | ListWorkloadDeploymentPatternsCommandInput
113
127
  | ListWorkloadsCommandInput
114
128
  | TagResourceCommandInput
115
- | UntagResourceCommandInput;
129
+ | UntagResourceCommandInput
130
+ | UpdateDeploymentCommandInput;
116
131
  export type ServiceOutputTypes =
117
132
  | CreateDeploymentCommandOutput
118
133
  | DeleteDeploymentCommandOutput
119
134
  | GetDeploymentCommandOutput
135
+ | GetDeploymentPatternVersionCommandOutput
120
136
  | GetWorkloadCommandOutput
121
137
  | GetWorkloadDeploymentPatternCommandOutput
122
138
  | ListDeploymentEventsCommandOutput
139
+ | ListDeploymentPatternVersionsCommandOutput
123
140
  | ListDeploymentsCommandOutput
124
141
  | ListTagsForResourceCommandOutput
125
142
  | ListWorkloadDeploymentPatternsCommandOutput
126
143
  | ListWorkloadsCommandOutput
127
144
  | TagResourceCommandOutput
128
- | UntagResourceCommandOutput;
145
+ | UntagResourceCommandOutput
146
+ | UpdateDeploymentCommandOutput;
129
147
  export interface ClientDefaults
130
148
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
131
149
  requestHandler?: __HttpHandlerUserInput;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LaunchWizardClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LaunchWizardClient";
8
+ import {
9
+ GetDeploymentPatternVersionInput,
10
+ GetDeploymentPatternVersionOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDeploymentPatternVersionCommandInput
15
+ extends GetDeploymentPatternVersionInput {}
16
+ export interface GetDeploymentPatternVersionCommandOutput
17
+ extends GetDeploymentPatternVersionOutput,
18
+ __MetadataBearer {}
19
+ declare const GetDeploymentPatternVersionCommand_base: {
20
+ new (
21
+ input: GetDeploymentPatternVersionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDeploymentPatternVersionCommandInput,
24
+ GetDeploymentPatternVersionCommandOutput,
25
+ LaunchWizardClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetDeploymentPatternVersionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDeploymentPatternVersionCommandInput,
33
+ GetDeploymentPatternVersionCommandOutput,
34
+ LaunchWizardClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDeploymentPatternVersionCommand extends GetDeploymentPatternVersionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDeploymentPatternVersionInput;
44
+ output: GetDeploymentPatternVersionOutput;
45
+ };
46
+ sdk: {
47
+ input: GetDeploymentPatternVersionCommandInput;
48
+ output: GetDeploymentPatternVersionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LaunchWizardClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LaunchWizardClient";
8
+ import {
9
+ ListDeploymentPatternVersionsInput,
10
+ ListDeploymentPatternVersionsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDeploymentPatternVersionsCommandInput
15
+ extends ListDeploymentPatternVersionsInput {}
16
+ export interface ListDeploymentPatternVersionsCommandOutput
17
+ extends ListDeploymentPatternVersionsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListDeploymentPatternVersionsCommand_base: {
20
+ new (
21
+ input: ListDeploymentPatternVersionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDeploymentPatternVersionsCommandInput,
24
+ ListDeploymentPatternVersionsCommandOutput,
25
+ LaunchWizardClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDeploymentPatternVersionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDeploymentPatternVersionsCommandInput,
33
+ ListDeploymentPatternVersionsCommandOutput,
34
+ LaunchWizardClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDeploymentPatternVersionsCommand extends ListDeploymentPatternVersionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDeploymentPatternVersionsInput;
44
+ output: ListDeploymentPatternVersionsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListDeploymentPatternVersionsCommandInput;
48
+ output: ListDeploymentPatternVersionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LaunchWizardClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LaunchWizardClient";
8
+ import {
9
+ UpdateDeploymentInput,
10
+ UpdateDeploymentOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDeploymentCommandInput extends UpdateDeploymentInput {}
15
+ export interface UpdateDeploymentCommandOutput
16
+ extends UpdateDeploymentOutput,
17
+ __MetadataBearer {}
18
+ declare const UpdateDeploymentCommand_base: {
19
+ new (
20
+ input: UpdateDeploymentCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateDeploymentCommandInput,
23
+ UpdateDeploymentCommandOutput,
24
+ LaunchWizardClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UpdateDeploymentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateDeploymentCommandInput,
32
+ UpdateDeploymentCommandOutput,
33
+ LaunchWizardClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateDeploymentCommand extends UpdateDeploymentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateDeploymentInput;
43
+ output: UpdateDeploymentOutput;
44
+ };
45
+ sdk: {
46
+ input: UpdateDeploymentCommandInput;
47
+ output: UpdateDeploymentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -1,12 +1,15 @@
1
1
  export * from "./CreateDeploymentCommand";
2
2
  export * from "./DeleteDeploymentCommand";
3
3
  export * from "./GetDeploymentCommand";
4
+ export * from "./GetDeploymentPatternVersionCommand";
4
5
  export * from "./GetWorkloadCommand";
5
6
  export * from "./GetWorkloadDeploymentPatternCommand";
6
7
  export * from "./ListDeploymentEventsCommand";
8
+ export * from "./ListDeploymentPatternVersionsCommand";
7
9
  export * from "./ListDeploymentsCommand";
8
10
  export * from "./ListTagsForResourceCommand";
9
11
  export * from "./ListWorkloadDeploymentPatternsCommand";
10
12
  export * from "./ListWorkloadsCommand";
11
13
  export * from "./TagResourceCommand";
12
14
  export * from "./UntagResourceCommand";
15
+ export * from "./UpdateDeploymentCommand";
@@ -7,6 +7,11 @@ export declare const DeploymentStatus: {
7
7
  readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
8
8
  readonly FAILED: "FAILED";
9
9
  readonly IN_PROGRESS: "IN_PROGRESS";
10
+ readonly UPDATE_COMPLETED: "UPDATE_COMPLETED";
11
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
12
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
13
+ readonly UPDATE_ROLLBACK_COMPLETED: "UPDATE_ROLLBACK_COMPLETED";
14
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
10
15
  readonly VALIDATING: "VALIDATING";
11
16
  };
12
17
  export type DeploymentStatus =
@@ -28,6 +33,11 @@ export declare const DeploymentFilterKey: {
28
33
  };
29
34
  export type DeploymentFilterKey =
30
35
  (typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
36
+ export declare const DeploymentPatternVersionFilterKey: {
37
+ readonly DEPLOYMENT_PATTERN_VERSION_NAME: "updateFromVersion";
38
+ };
39
+ export type DeploymentPatternVersionFilterKey =
40
+ (typeof DeploymentPatternVersionFilterKey)[keyof typeof DeploymentPatternVersionFilterKey];
31
41
  export declare const WorkloadStatus: {
32
42
  readonly ACTIVE: "ACTIVE";
33
43
  readonly DELETED: "DELETED";
@@ -1,5 +1,6 @@
1
1
  import {
2
2
  DeploymentFilterKey,
3
+ DeploymentPatternVersionFilterKey,
3
4
  DeploymentStatus,
4
5
  EventStatus,
5
6
  WorkloadDeploymentPatternStatus,
@@ -49,6 +50,7 @@ export interface DeploymentData {
49
50
  patternName?: string | undefined;
50
51
  status?: DeploymentStatus | undefined;
51
52
  createdAt?: Date | undefined;
53
+ modifiedAt?: Date | undefined;
52
54
  specifications?: Record<string, string> | undefined;
53
55
  resourceGroup?: string | undefined;
54
56
  deletedAt?: Date | undefined;
@@ -74,16 +76,58 @@ export interface DeploymentDataSummary {
74
76
  patternName?: string | undefined;
75
77
  status?: DeploymentStatus | undefined;
76
78
  createdAt?: Date | undefined;
79
+ modifiedAt?: Date | undefined;
77
80
  }
78
81
  export interface ListDeploymentsOutput {
79
82
  deployments?: DeploymentDataSummary[] | undefined;
80
83
  nextToken?: string | undefined;
81
84
  }
85
+ export interface UpdateDeploymentInput {
86
+ deploymentId: string | undefined;
87
+ specifications: Record<string, string> | undefined;
88
+ workloadVersionName?: string | undefined;
89
+ deploymentPatternVersionName?: string | undefined;
90
+ dryRun?: boolean | undefined;
91
+ force?: boolean | undefined;
92
+ }
93
+ export interface UpdateDeploymentOutput {
94
+ deployment?: DeploymentDataSummary | undefined;
95
+ }
82
96
  export interface DeploymentConditionalField {
83
97
  name?: string | undefined;
84
98
  value?: string | undefined;
85
99
  comparator?: string | undefined;
86
100
  }
101
+ export interface GetDeploymentPatternVersionInput {
102
+ workloadName: string | undefined;
103
+ deploymentPatternName: string | undefined;
104
+ deploymentPatternVersionName: string | undefined;
105
+ }
106
+ export interface DeploymentPatternVersionDataSummary {
107
+ deploymentPatternVersionName?: string | undefined;
108
+ description?: string | undefined;
109
+ documentationUrl?: string | undefined;
110
+ workloadName?: string | undefined;
111
+ deploymentPatternName?: string | undefined;
112
+ }
113
+ export interface GetDeploymentPatternVersionOutput {
114
+ deploymentPatternVersion?: DeploymentPatternVersionDataSummary | undefined;
115
+ }
116
+ export interface DeploymentPatternVersionFilter {
117
+ name: DeploymentPatternVersionFilterKey | undefined;
118
+ values: string[] | undefined;
119
+ }
120
+ export interface ListDeploymentPatternVersionsInput {
121
+ workloadName: string | undefined;
122
+ deploymentPatternName: string | undefined;
123
+ maxResults?: number | undefined;
124
+ nextToken?: string | undefined;
125
+ filters?: DeploymentPatternVersionFilter[] | undefined;
126
+ }
127
+ export interface ListDeploymentPatternVersionsOutput {
128
+ deploymentPatternVersions?: DeploymentPatternVersionDataSummary[] | undefined;
129
+ nextToken?: string | undefined;
130
+ }
87
131
  export interface DeploymentSpecificationsField {
88
132
  name?: string | undefined;
89
133
  description?: string | undefined;
@@ -97,10 +141,10 @@ export interface GetWorkloadInput {
97
141
  export interface WorkloadData {
98
142
  workloadName?: string | undefined;
99
143
  displayName?: string | undefined;
144
+ status?: WorkloadStatus | undefined;
100
145
  description?: string | undefined;
101
146
  documentationUrl?: string | undefined;
102
147
  iconUrl?: string | undefined;
103
- status?: WorkloadStatus | undefined;
104
148
  statusMessage?: string | undefined;
105
149
  }
106
150
  export interface GetWorkloadOutput {
@@ -114,6 +158,7 @@ export interface WorkloadDeploymentPatternData {
114
158
  workloadName?: string | undefined;
115
159
  deploymentPatternName?: string | undefined;
116
160
  workloadVersionName?: string | undefined;
161
+ deploymentPatternVersionName?: string | undefined;
117
162
  displayName?: string | undefined;
118
163
  description?: string | undefined;
119
164
  status?: WorkloadDeploymentPatternStatus | undefined;
@@ -146,6 +191,7 @@ export interface ListWorkloadsInput {
146
191
  export interface WorkloadDataSummary {
147
192
  workloadName?: string | undefined;
148
193
  displayName?: string | undefined;
194
+ status?: WorkloadStatus | undefined;
149
195
  }
150
196
  export interface ListWorkloadsOutput {
151
197
  workloads?: WorkloadDataSummary[] | undefined;
@@ -160,6 +206,7 @@ export interface WorkloadDeploymentPatternDataSummary {
160
206
  workloadName?: string | undefined;
161
207
  deploymentPatternName?: string | undefined;
162
208
  workloadVersionName?: string | undefined;
209
+ deploymentPatternVersionName?: string | undefined;
163
210
  displayName?: string | undefined;
164
211
  description?: string | undefined;
165
212
  status?: WorkloadDeploymentPatternStatus | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDeploymentPatternVersionsCommandInput,
4
+ ListDeploymentPatternVersionsCommandOutput,
5
+ } from "../commands/ListDeploymentPatternVersionsCommand";
6
+ import { LaunchWizardPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDeploymentPatternVersions: (
8
+ config: LaunchWizardPaginationConfiguration,
9
+ input: ListDeploymentPatternVersionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDeploymentPatternVersionsCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListDeploymentEventsPaginator";
3
+ export * from "./ListDeploymentPatternVersionsPaginator";
3
4
  export * from "./ListDeploymentsPaginator";
4
5
  export * from "./ListWorkloadDeploymentPatternsPaginator";
5
6
  export * from "./ListWorkloadsPaginator";
@@ -12,9 +12,13 @@ export declare var DeploymentData$: StaticStructureSchema;
12
12
  export declare var DeploymentDataSummary$: StaticStructureSchema;
13
13
  export declare var DeploymentEventDataSummary$: StaticStructureSchema;
14
14
  export declare var DeploymentFilter$: StaticStructureSchema;
15
+ export declare var DeploymentPatternVersionDataSummary$: StaticStructureSchema;
16
+ export declare var DeploymentPatternVersionFilter$: StaticStructureSchema;
15
17
  export declare var DeploymentSpecificationsField$: StaticStructureSchema;
16
18
  export declare var GetDeploymentInput$: StaticStructureSchema;
17
19
  export declare var GetDeploymentOutput$: StaticStructureSchema;
20
+ export declare var GetDeploymentPatternVersionInput$: StaticStructureSchema;
21
+ export declare var GetDeploymentPatternVersionOutput$: StaticStructureSchema;
18
22
  export declare var GetWorkloadDeploymentPatternInput$: StaticStructureSchema;
19
23
  export declare var GetWorkloadDeploymentPatternOutput$: StaticStructureSchema;
20
24
  export declare var GetWorkloadInput$: StaticStructureSchema;
@@ -22,6 +26,8 @@ export declare var GetWorkloadOutput$: StaticStructureSchema;
22
26
  export declare var InternalServerException$: StaticErrorSchema;
23
27
  export declare var ListDeploymentEventsInput$: StaticStructureSchema;
24
28
  export declare var ListDeploymentEventsOutput$: StaticStructureSchema;
29
+ export declare var ListDeploymentPatternVersionsInput$: StaticStructureSchema;
30
+ export declare var ListDeploymentPatternVersionsOutput$: StaticStructureSchema;
25
31
  export declare var ListDeploymentsInput$: StaticStructureSchema;
26
32
  export declare var ListDeploymentsOutput$: StaticStructureSchema;
27
33
  export declare var ListTagsForResourceInput$: StaticStructureSchema;
@@ -36,6 +42,8 @@ export declare var TagResourceInput$: StaticStructureSchema;
36
42
  export declare var TagResourceOutput$: StaticStructureSchema;
37
43
  export declare var UntagResourceInput$: StaticStructureSchema;
38
44
  export declare var UntagResourceOutput$: StaticStructureSchema;
45
+ export declare var UpdateDeploymentInput$: StaticStructureSchema;
46
+ export declare var UpdateDeploymentOutput$: StaticStructureSchema;
39
47
  export declare var ValidationException$: StaticErrorSchema;
40
48
  export declare var WorkloadData$: StaticStructureSchema;
41
49
  export declare var WorkloadDataSummary$: StaticStructureSchema;
@@ -45,12 +53,15 @@ export declare var LaunchWizardServiceException$: StaticErrorSchema;
45
53
  export declare var CreateDeployment$: StaticOperationSchema;
46
54
  export declare var DeleteDeployment$: StaticOperationSchema;
47
55
  export declare var GetDeployment$: StaticOperationSchema;
56
+ export declare var GetDeploymentPatternVersion$: StaticOperationSchema;
48
57
  export declare var GetWorkload$: StaticOperationSchema;
49
58
  export declare var GetWorkloadDeploymentPattern$: StaticOperationSchema;
50
59
  export declare var ListDeploymentEvents$: StaticOperationSchema;
60
+ export declare var ListDeploymentPatternVersions$: StaticOperationSchema;
51
61
  export declare var ListDeployments$: StaticOperationSchema;
52
62
  export declare var ListTagsForResource$: StaticOperationSchema;
53
63
  export declare var ListWorkloadDeploymentPatterns$: StaticOperationSchema;
54
64
  export declare var ListWorkloads$: StaticOperationSchema;
55
65
  export declare var TagResource$: StaticOperationSchema;
56
66
  export declare var UntagResource$: StaticOperationSchema;
67
+ export declare var UpdateDeployment$: StaticOperationSchema;
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.970.0",
4
+ "version": "3.972.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-launch-wizard",
@@ -9,7 +9,7 @@
9
9
  "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
12
+ "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
13
13
  "extract:docs": "api-extractor run --local",
14
14
  "generate:client": "node ../../scripts/generate-clients/single-service --solo launch-wizard",
15
15
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
@@ -21,17 +21,17 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "3.970.0",
25
- "@aws-sdk/credential-provider-node": "3.970.0",
26
- "@aws-sdk/middleware-host-header": "3.969.0",
27
- "@aws-sdk/middleware-logger": "3.969.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.969.0",
29
- "@aws-sdk/middleware-user-agent": "3.970.0",
30
- "@aws-sdk/region-config-resolver": "3.969.0",
31
- "@aws-sdk/types": "3.969.0",
32
- "@aws-sdk/util-endpoints": "3.970.0",
33
- "@aws-sdk/util-user-agent-browser": "3.969.0",
34
- "@aws-sdk/util-user-agent-node": "3.970.0",
24
+ "@aws-sdk/core": "3.972.0",
25
+ "@aws-sdk/credential-provider-node": "3.972.0",
26
+ "@aws-sdk/middleware-host-header": "3.972.0",
27
+ "@aws-sdk/middleware-logger": "3.972.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.972.0",
29
+ "@aws-sdk/middleware-user-agent": "3.972.0",
30
+ "@aws-sdk/region-config-resolver": "3.972.0",
31
+ "@aws-sdk/types": "3.972.0",
32
+ "@aws-sdk/util-endpoints": "3.972.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.972.0",
34
+ "@aws-sdk/util-user-agent-node": "3.972.0",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
36
  "@smithy/core": "^3.20.6",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",
@@ -64,7 +64,7 @@
64
64
  "@types/node": "^20.14.8",
65
65
  "concurrently": "7.0.0",
66
66
  "downlevel-dts": "0.10.1",
67
- "rimraf": "5.0.10",
67
+ "premove": "4.0.0",
68
68
  "typescript": "~5.8.3"
69
69
  },
70
70
  "engines": {