@aws-sdk/client-launch-wizard 3.934.0 → 3.935.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/index.js CHANGED
@@ -165,43 +165,6 @@ let ValidationException$1 = class ValidationException extends LaunchWizardServic
165
165
  Object.setPrototypeOf(this, ValidationException.prototype);
166
166
  }
167
167
  };
168
- const DeploymentStatus = {
169
- COMPLETED: "COMPLETED",
170
- CREATING: "CREATING",
171
- DELETED: "DELETED",
172
- DELETE_FAILED: "DELETE_FAILED",
173
- DELETE_INITIATING: "DELETE_INITIATING",
174
- DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
175
- FAILED: "FAILED",
176
- IN_PROGRESS: "IN_PROGRESS",
177
- VALIDATING: "VALIDATING",
178
- };
179
- const EventStatus = {
180
- CANCELED: "CANCELED",
181
- CANCELING: "CANCELING",
182
- COMPLETED: "COMPLETED",
183
- CREATED: "CREATED",
184
- FAILED: "FAILED",
185
- IN_PROGRESS: "IN_PROGRESS",
186
- PENDING: "PENDING",
187
- TIMED_OUT: "TIMED_OUT",
188
- };
189
- const DeploymentFilterKey = {
190
- DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS",
191
- WORKLOAD_NAME: "WORKLOAD_NAME",
192
- };
193
- const WorkloadStatus = {
194
- ACTIVE: "ACTIVE",
195
- DELETED: "DELETED",
196
- DISABLED: "DISABLED",
197
- INACTIVE: "INACTIVE",
198
- };
199
- const WorkloadDeploymentPatternStatus = {
200
- ACTIVE: "ACTIVE",
201
- DELETED: "DELETED",
202
- DISABLED: "DISABLED",
203
- INACTIVE: "INACTIVE",
204
- };
205
168
 
206
169
  const _CD = "CreateDeployment";
207
170
  const _CDI = "CreateDeploymentInput";
@@ -812,6 +775,44 @@ const paginateListWorkloadDeploymentPatterns = core.createPaginator(LaunchWizard
812
775
 
813
776
  const paginateListWorkloads = core.createPaginator(LaunchWizardClient, ListWorkloadsCommand, "nextToken", "nextToken", "maxResults");
814
777
 
778
+ const DeploymentStatus = {
779
+ COMPLETED: "COMPLETED",
780
+ CREATING: "CREATING",
781
+ DELETED: "DELETED",
782
+ DELETE_FAILED: "DELETE_FAILED",
783
+ DELETE_INITIATING: "DELETE_INITIATING",
784
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
785
+ FAILED: "FAILED",
786
+ IN_PROGRESS: "IN_PROGRESS",
787
+ VALIDATING: "VALIDATING",
788
+ };
789
+ const EventStatus = {
790
+ CANCELED: "CANCELED",
791
+ CANCELING: "CANCELING",
792
+ COMPLETED: "COMPLETED",
793
+ CREATED: "CREATED",
794
+ FAILED: "FAILED",
795
+ IN_PROGRESS: "IN_PROGRESS",
796
+ PENDING: "PENDING",
797
+ TIMED_OUT: "TIMED_OUT",
798
+ };
799
+ const DeploymentFilterKey = {
800
+ DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS",
801
+ WORKLOAD_NAME: "WORKLOAD_NAME",
802
+ };
803
+ const WorkloadStatus = {
804
+ ACTIVE: "ACTIVE",
805
+ DELETED: "DELETED",
806
+ DISABLED: "DISABLED",
807
+ INACTIVE: "INACTIVE",
808
+ };
809
+ const WorkloadDeploymentPatternStatus = {
810
+ ACTIVE: "ACTIVE",
811
+ DELETED: "DELETED",
812
+ DISABLED: "DISABLED",
813
+ INACTIVE: "INACTIVE",
814
+ };
815
+
815
816
  Object.defineProperty(exports, "$Command", {
816
817
  enumerable: true,
817
818
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./LaunchWizardClient";
2
2
  export * from "./LaunchWizard";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { LaunchWizardServiceException } from "./models/LaunchWizardServiceException";
@@ -0,0 +1,37 @@
1
+ export const DeploymentStatus = {
2
+ COMPLETED: "COMPLETED",
3
+ CREATING: "CREATING",
4
+ DELETED: "DELETED",
5
+ DELETE_FAILED: "DELETE_FAILED",
6
+ DELETE_INITIATING: "DELETE_INITIATING",
7
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
8
+ FAILED: "FAILED",
9
+ IN_PROGRESS: "IN_PROGRESS",
10
+ VALIDATING: "VALIDATING",
11
+ };
12
+ export const EventStatus = {
13
+ CANCELED: "CANCELED",
14
+ CANCELING: "CANCELING",
15
+ COMPLETED: "COMPLETED",
16
+ CREATED: "CREATED",
17
+ FAILED: "FAILED",
18
+ IN_PROGRESS: "IN_PROGRESS",
19
+ PENDING: "PENDING",
20
+ TIMED_OUT: "TIMED_OUT",
21
+ };
22
+ export const DeploymentFilterKey = {
23
+ DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS",
24
+ WORKLOAD_NAME: "WORKLOAD_NAME",
25
+ };
26
+ export const WorkloadStatus = {
27
+ ACTIVE: "ACTIVE",
28
+ DELETED: "DELETED",
29
+ DISABLED: "DISABLED",
30
+ INACTIVE: "INACTIVE",
31
+ };
32
+ export const WorkloadDeploymentPatternStatus = {
33
+ ACTIVE: "ACTIVE",
34
+ DELETED: "DELETED",
35
+ DISABLED: "DISABLED",
36
+ INACTIVE: "INACTIVE",
37
+ };
@@ -0,0 +1,49 @@
1
+ import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
2
+ export class InternalServerException extends __BaseException {
3
+ name = "InternalServerException";
4
+ $fault = "server";
5
+ constructor(opts) {
6
+ super({
7
+ name: "InternalServerException",
8
+ $fault: "server",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, InternalServerException.prototype);
12
+ }
13
+ }
14
+ export class ResourceLimitException extends __BaseException {
15
+ name = "ResourceLimitException";
16
+ $fault = "client";
17
+ constructor(opts) {
18
+ super({
19
+ name: "ResourceLimitException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, ResourceLimitException.prototype);
24
+ }
25
+ }
26
+ export class ResourceNotFoundException extends __BaseException {
27
+ name = "ResourceNotFoundException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "ResourceNotFoundException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
36
+ }
37
+ }
38
+ export class ValidationException extends __BaseException {
39
+ name = "ValidationException";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "ValidationException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, ValidationException.prototype);
48
+ }
49
+ }
@@ -1,86 +1 @@
1
- import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
2
- export class InternalServerException extends __BaseException {
3
- name = "InternalServerException";
4
- $fault = "server";
5
- constructor(opts) {
6
- super({
7
- name: "InternalServerException",
8
- $fault: "server",
9
- ...opts,
10
- });
11
- Object.setPrototypeOf(this, InternalServerException.prototype);
12
- }
13
- }
14
- export class ResourceLimitException extends __BaseException {
15
- name = "ResourceLimitException";
16
- $fault = "client";
17
- constructor(opts) {
18
- super({
19
- name: "ResourceLimitException",
20
- $fault: "client",
21
- ...opts,
22
- });
23
- Object.setPrototypeOf(this, ResourceLimitException.prototype);
24
- }
25
- }
26
- export class ResourceNotFoundException extends __BaseException {
27
- name = "ResourceNotFoundException";
28
- $fault = "client";
29
- constructor(opts) {
30
- super({
31
- name: "ResourceNotFoundException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
36
- }
37
- }
38
- export class ValidationException extends __BaseException {
39
- name = "ValidationException";
40
- $fault = "client";
41
- constructor(opts) {
42
- super({
43
- name: "ValidationException",
44
- $fault: "client",
45
- ...opts,
46
- });
47
- Object.setPrototypeOf(this, ValidationException.prototype);
48
- }
49
- }
50
- export const DeploymentStatus = {
51
- COMPLETED: "COMPLETED",
52
- CREATING: "CREATING",
53
- DELETED: "DELETED",
54
- DELETE_FAILED: "DELETE_FAILED",
55
- DELETE_INITIATING: "DELETE_INITIATING",
56
- DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
57
- FAILED: "FAILED",
58
- IN_PROGRESS: "IN_PROGRESS",
59
- VALIDATING: "VALIDATING",
60
- };
61
- export const EventStatus = {
62
- CANCELED: "CANCELED",
63
- CANCELING: "CANCELING",
64
- COMPLETED: "COMPLETED",
65
- CREATED: "CREATED",
66
- FAILED: "FAILED",
67
- IN_PROGRESS: "IN_PROGRESS",
68
- PENDING: "PENDING",
69
- TIMED_OUT: "TIMED_OUT",
70
- };
71
- export const DeploymentFilterKey = {
72
- DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS",
73
- WORKLOAD_NAME: "WORKLOAD_NAME",
74
- };
75
- export const WorkloadStatus = {
76
- ACTIVE: "ACTIVE",
77
- DELETED: "DELETED",
78
- DISABLED: "DISABLED",
79
- INACTIVE: "INACTIVE",
80
- };
81
- export const WorkloadDeploymentPatternStatus = {
82
- ACTIVE: "ACTIVE",
83
- DELETED: "DELETED",
84
- DISABLED: "DISABLED",
85
- INACTIVE: "INACTIVE",
86
- };
1
+ export {};
@@ -106,7 +106,7 @@ const _wVN = "workloadVersionName";
106
106
  const _wo = "workloads";
107
107
  const n0 = "com.amazonaws.launchwizard";
108
108
  import { TypeRegistry } from "@smithy/core/schema";
109
- import { InternalServerException as __InternalServerException, ResourceLimitException as __ResourceLimitException, ResourceNotFoundException as __ResourceNotFoundException, ValidationException as __ValidationException, } from "../models/index";
109
+ import { InternalServerException as __InternalServerException, ResourceLimitException as __ResourceLimitException, ResourceNotFoundException as __ResourceNotFoundException, ValidationException as __ValidationException, } from "../models/errors";
110
110
  import { LaunchWizardServiceException as __LaunchWizardServiceException } from "../models/LaunchWizardServiceException";
111
111
  export var CreateDeploymentInput = [
112
112
  3,
@@ -13,5 +13,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
13
13
  export type { LaunchWizardExtensionConfiguration } from "./extensionConfiguration";
14
14
  export * from "./commands";
15
15
  export * from "./pagination";
16
- export * from "./models";
16
+ export * from "./models/enums";
17
+ export * from "./models/errors";
18
+ export type * from "./models/models_0";
17
19
  export { LaunchWizardServiceException } from "./models/LaunchWizardServiceException";
@@ -0,0 +1,77 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const DeploymentStatus: {
6
+ readonly COMPLETED: "COMPLETED";
7
+ readonly CREATING: "CREATING";
8
+ readonly DELETED: "DELETED";
9
+ readonly DELETE_FAILED: "DELETE_FAILED";
10
+ readonly DELETE_INITIATING: "DELETE_INITIATING";
11
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
12
+ readonly FAILED: "FAILED";
13
+ readonly IN_PROGRESS: "IN_PROGRESS";
14
+ readonly VALIDATING: "VALIDATING";
15
+ };
16
+ /**
17
+ * @public
18
+ */
19
+ export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
20
+ /**
21
+ * @public
22
+ * @enum
23
+ */
24
+ export declare const EventStatus: {
25
+ readonly CANCELED: "CANCELED";
26
+ readonly CANCELING: "CANCELING";
27
+ readonly COMPLETED: "COMPLETED";
28
+ readonly CREATED: "CREATED";
29
+ readonly FAILED: "FAILED";
30
+ readonly IN_PROGRESS: "IN_PROGRESS";
31
+ readonly PENDING: "PENDING";
32
+ readonly TIMED_OUT: "TIMED_OUT";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const DeploymentFilterKey: {
43
+ readonly DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS";
44
+ readonly WORKLOAD_NAME: "WORKLOAD_NAME";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type DeploymentFilterKey = (typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const WorkloadStatus: {
55
+ readonly ACTIVE: "ACTIVE";
56
+ readonly DELETED: "DELETED";
57
+ readonly DISABLED: "DISABLED";
58
+ readonly INACTIVE: "INACTIVE";
59
+ };
60
+ /**
61
+ * @public
62
+ */
63
+ export type WorkloadStatus = (typeof WorkloadStatus)[keyof typeof WorkloadStatus];
64
+ /**
65
+ * @public
66
+ * @enum
67
+ */
68
+ export declare const WorkloadDeploymentPatternStatus: {
69
+ readonly ACTIVE: "ACTIVE";
70
+ readonly DELETED: "DELETED";
71
+ readonly DISABLED: "DISABLED";
72
+ readonly INACTIVE: "INACTIVE";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type WorkloadDeploymentPatternStatus = (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
@@ -0,0 +1,52 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
3
+ /**
4
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
5
+ * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
6
+ * @public
7
+ */
8
+ export declare class InternalServerException extends __BaseException {
9
+ readonly name: "InternalServerException";
10
+ readonly $fault: "server";
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many
18
+ * deployments in progress.</p>
19
+ * @public
20
+ */
21
+ export declare class ResourceLimitException extends __BaseException {
22
+ readonly name: "ResourceLimitException";
23
+ readonly $fault: "client";
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<ResourceLimitException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>The specified workload or deployment resource can't be found.</p>
31
+ * @public
32
+ */
33
+ export declare class ResourceNotFoundException extends __BaseException {
34
+ readonly name: "ResourceNotFoundException";
35
+ readonly $fault: "client";
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
43
+ * @public
44
+ */
45
+ export declare class ValidationException extends __BaseException {
46
+ readonly name: "ValidationException";
47
+ readonly $fault: "client";
48
+ /**
49
+ * @internal
50
+ */
51
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
52
+ }
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
1
+ import { DeploymentFilterKey, DeploymentStatus, EventStatus, WorkloadDeploymentPatternStatus, WorkloadStatus } from "./enums";
3
2
  /**
4
3
  * @public
5
4
  */
@@ -60,56 +59,6 @@ export interface CreateDeploymentOutput {
60
59
  */
61
60
  deploymentId?: string | undefined;
62
61
  }
63
- /**
64
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
65
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
66
- * @public
67
- */
68
- export declare class InternalServerException extends __BaseException {
69
- readonly name: "InternalServerException";
70
- readonly $fault: "server";
71
- /**
72
- * @internal
73
- */
74
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
75
- }
76
- /**
77
- * <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many
78
- * deployments in progress.</p>
79
- * @public
80
- */
81
- export declare class ResourceLimitException extends __BaseException {
82
- readonly name: "ResourceLimitException";
83
- readonly $fault: "client";
84
- /**
85
- * @internal
86
- */
87
- constructor(opts: __ExceptionOptionType<ResourceLimitException, __BaseException>);
88
- }
89
- /**
90
- * <p>The specified workload or deployment resource can't be found.</p>
91
- * @public
92
- */
93
- export declare class ResourceNotFoundException extends __BaseException {
94
- readonly name: "ResourceNotFoundException";
95
- readonly $fault: "client";
96
- /**
97
- * @internal
98
- */
99
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
100
- }
101
- /**
102
- * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
103
- * @public
104
- */
105
- export declare class ValidationException extends __BaseException {
106
- readonly name: "ValidationException";
107
- readonly $fault: "client";
108
- /**
109
- * @internal
110
- */
111
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
112
- }
113
62
  /**
114
63
  * @public
115
64
  */
@@ -120,25 +69,6 @@ export interface DeleteDeploymentInput {
120
69
  */
121
70
  deploymentId: string | undefined;
122
71
  }
123
- /**
124
- * @public
125
- * @enum
126
- */
127
- export declare const DeploymentStatus: {
128
- readonly COMPLETED: "COMPLETED";
129
- readonly CREATING: "CREATING";
130
- readonly DELETED: "DELETED";
131
- readonly DELETE_FAILED: "DELETE_FAILED";
132
- readonly DELETE_INITIATING: "DELETE_INITIATING";
133
- readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
134
- readonly FAILED: "FAILED";
135
- readonly IN_PROGRESS: "IN_PROGRESS";
136
- readonly VALIDATING: "VALIDATING";
137
- };
138
- /**
139
- * @public
140
- */
141
- export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
142
72
  /**
143
73
  * @public
144
74
  */
@@ -176,24 +106,6 @@ export interface ListDeploymentEventsInput {
176
106
  */
177
107
  nextToken?: string | undefined;
178
108
  }
179
- /**
180
- * @public
181
- * @enum
182
- */
183
- export declare const EventStatus: {
184
- readonly CANCELED: "CANCELED";
185
- readonly CANCELING: "CANCELING";
186
- readonly COMPLETED: "COMPLETED";
187
- readonly CREATED: "CREATED";
188
- readonly FAILED: "FAILED";
189
- readonly IN_PROGRESS: "IN_PROGRESS";
190
- readonly PENDING: "PENDING";
191
- readonly TIMED_OUT: "TIMED_OUT";
192
- };
193
- /**
194
- * @public
195
- */
196
- export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
197
109
  /**
198
110
  * <p>A summary of the deployment event data.</p>
199
111
  * @public
@@ -328,18 +240,6 @@ export interface GetDeploymentOutput {
328
240
  */
329
241
  deployment?: DeploymentData | undefined;
330
242
  }
331
- /**
332
- * @public
333
- * @enum
334
- */
335
- export declare const DeploymentFilterKey: {
336
- readonly DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS";
337
- readonly WORKLOAD_NAME: "WORKLOAD_NAME";
338
- };
339
- /**
340
- * @public
341
- */
342
- export type DeploymentFilterKey = (typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
343
243
  /**
344
244
  * <p>A filter name and value pair that is used to return more specific results from a
345
245
  * describe operation. Filters can be used to match a set of resources by specific
@@ -512,20 +412,6 @@ export interface GetWorkloadInput {
512
412
  */
513
413
  workloadName: string | undefined;
514
414
  }
515
- /**
516
- * @public
517
- * @enum
518
- */
519
- export declare const WorkloadStatus: {
520
- readonly ACTIVE: "ACTIVE";
521
- readonly DELETED: "DELETED";
522
- readonly DISABLED: "DISABLED";
523
- readonly INACTIVE: "INACTIVE";
524
- };
525
- /**
526
- * @public
527
- */
528
- export type WorkloadStatus = (typeof WorkloadStatus)[keyof typeof WorkloadStatus];
529
415
  /**
530
416
  * <p>Describes a workload.</p>
531
417
  * @public
@@ -592,20 +478,6 @@ export interface GetWorkloadDeploymentPatternInput {
592
478
  */
593
479
  deploymentPatternName: string | undefined;
594
480
  }
595
- /**
596
- * @public
597
- * @enum
598
- */
599
- export declare const WorkloadDeploymentPatternStatus: {
600
- readonly ACTIVE: "ACTIVE";
601
- readonly DELETED: "DELETED";
602
- readonly DISABLED: "DISABLED";
603
- readonly INACTIVE: "INACTIVE";
604
- };
605
- /**
606
- * @public
607
- */
608
- export type WorkloadDeploymentPatternStatus = (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
609
481
  /**
610
482
  * <p>The data that details a workload deployment pattern.</p>
611
483
  * @public
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { LaunchWizardExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { LaunchWizardServiceException } from "./models/LaunchWizardServiceException";
@@ -0,0 +1,46 @@
1
+ export declare const DeploymentStatus: {
2
+ readonly COMPLETED: "COMPLETED";
3
+ readonly CREATING: "CREATING";
4
+ readonly DELETED: "DELETED";
5
+ readonly DELETE_FAILED: "DELETE_FAILED";
6
+ readonly DELETE_INITIATING: "DELETE_INITIATING";
7
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
8
+ readonly FAILED: "FAILED";
9
+ readonly IN_PROGRESS: "IN_PROGRESS";
10
+ readonly VALIDATING: "VALIDATING";
11
+ };
12
+ export type DeploymentStatus =
13
+ (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
14
+ export declare const EventStatus: {
15
+ readonly CANCELED: "CANCELED";
16
+ readonly CANCELING: "CANCELING";
17
+ readonly COMPLETED: "COMPLETED";
18
+ readonly CREATED: "CREATED";
19
+ readonly FAILED: "FAILED";
20
+ readonly IN_PROGRESS: "IN_PROGRESS";
21
+ readonly PENDING: "PENDING";
22
+ readonly TIMED_OUT: "TIMED_OUT";
23
+ };
24
+ export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
25
+ export declare const DeploymentFilterKey: {
26
+ readonly DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS";
27
+ readonly WORKLOAD_NAME: "WORKLOAD_NAME";
28
+ };
29
+ export type DeploymentFilterKey =
30
+ (typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
31
+ export declare const WorkloadStatus: {
32
+ readonly ACTIVE: "ACTIVE";
33
+ readonly DELETED: "DELETED";
34
+ readonly DISABLED: "DISABLED";
35
+ readonly INACTIVE: "INACTIVE";
36
+ };
37
+ export type WorkloadStatus =
38
+ (typeof WorkloadStatus)[keyof typeof WorkloadStatus];
39
+ export declare const WorkloadDeploymentPatternStatus: {
40
+ readonly ACTIVE: "ACTIVE";
41
+ readonly DELETED: "DELETED";
42
+ readonly DISABLED: "DISABLED";
43
+ readonly INACTIVE: "INACTIVE";
44
+ };
45
+ export type WorkloadDeploymentPatternStatus =
46
+ (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
@@ -0,0 +1,30 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
3
+ export declare class InternalServerException extends __BaseException {
4
+ readonly name: "InternalServerException";
5
+ readonly $fault: "server";
6
+ constructor(
7
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ResourceLimitException extends __BaseException {
11
+ readonly name: "ResourceLimitException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<ResourceLimitException, __BaseException>
15
+ );
16
+ }
17
+ export declare class ResourceNotFoundException extends __BaseException {
18
+ readonly name: "ResourceNotFoundException";
19
+ readonly $fault: "client";
20
+ constructor(
21
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
22
+ );
23
+ }
24
+ export declare class ValidationException extends __BaseException {
25
+ readonly name: "ValidationException";
26
+ readonly $fault: "client";
27
+ constructor(
28
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
29
+ );
30
+ }
@@ -1,5 +1,10 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException";
1
+ import {
2
+ DeploymentFilterKey,
3
+ DeploymentStatus,
4
+ EventStatus,
5
+ WorkloadDeploymentPatternStatus,
6
+ WorkloadStatus,
7
+ } from "./enums";
3
8
  export interface CreateDeploymentInput {
4
9
  workloadName: string | undefined;
5
10
  deploymentPatternName: string | undefined;
@@ -11,50 +16,9 @@ export interface CreateDeploymentInput {
11
16
  export interface CreateDeploymentOutput {
12
17
  deploymentId?: string | undefined;
13
18
  }
14
- export declare class InternalServerException extends __BaseException {
15
- readonly name: "InternalServerException";
16
- readonly $fault: "server";
17
- constructor(
18
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
19
- );
20
- }
21
- export declare class ResourceLimitException extends __BaseException {
22
- readonly name: "ResourceLimitException";
23
- readonly $fault: "client";
24
- constructor(
25
- opts: __ExceptionOptionType<ResourceLimitException, __BaseException>
26
- );
27
- }
28
- export declare class ResourceNotFoundException extends __BaseException {
29
- readonly name: "ResourceNotFoundException";
30
- readonly $fault: "client";
31
- constructor(
32
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
33
- );
34
- }
35
- export declare class ValidationException extends __BaseException {
36
- readonly name: "ValidationException";
37
- readonly $fault: "client";
38
- constructor(
39
- opts: __ExceptionOptionType<ValidationException, __BaseException>
40
- );
41
- }
42
19
  export interface DeleteDeploymentInput {
43
20
  deploymentId: string | undefined;
44
21
  }
45
- export declare const DeploymentStatus: {
46
- readonly COMPLETED: "COMPLETED";
47
- readonly CREATING: "CREATING";
48
- readonly DELETED: "DELETED";
49
- readonly DELETE_FAILED: "DELETE_FAILED";
50
- readonly DELETE_INITIATING: "DELETE_INITIATING";
51
- readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
52
- readonly FAILED: "FAILED";
53
- readonly IN_PROGRESS: "IN_PROGRESS";
54
- readonly VALIDATING: "VALIDATING";
55
- };
56
- export type DeploymentStatus =
57
- (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
58
22
  export interface DeleteDeploymentOutput {
59
23
  status?: DeploymentStatus | undefined;
60
24
  statusReason?: string | undefined;
@@ -64,17 +28,6 @@ export interface ListDeploymentEventsInput {
64
28
  maxResults?: number | undefined;
65
29
  nextToken?: string | undefined;
66
30
  }
67
- export declare const EventStatus: {
68
- readonly CANCELED: "CANCELED";
69
- readonly CANCELING: "CANCELING";
70
- readonly COMPLETED: "COMPLETED";
71
- readonly CREATED: "CREATED";
72
- readonly FAILED: "FAILED";
73
- readonly IN_PROGRESS: "IN_PROGRESS";
74
- readonly PENDING: "PENDING";
75
- readonly TIMED_OUT: "TIMED_OUT";
76
- };
77
- export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
78
31
  export interface DeploymentEventDataSummary {
79
32
  name?: string | undefined;
80
33
  description?: string | undefined;
@@ -105,12 +58,6 @@ export interface DeploymentData {
105
58
  export interface GetDeploymentOutput {
106
59
  deployment?: DeploymentData | undefined;
107
60
  }
108
- export declare const DeploymentFilterKey: {
109
- readonly DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS";
110
- readonly WORKLOAD_NAME: "WORKLOAD_NAME";
111
- };
112
- export type DeploymentFilterKey =
113
- (typeof DeploymentFilterKey)[keyof typeof DeploymentFilterKey];
114
61
  export interface DeploymentFilter {
115
62
  name?: DeploymentFilterKey | undefined;
116
63
  values?: string[] | undefined;
@@ -147,14 +94,6 @@ export interface DeploymentSpecificationsField {
147
94
  export interface GetWorkloadInput {
148
95
  workloadName: string | undefined;
149
96
  }
150
- export declare const WorkloadStatus: {
151
- readonly ACTIVE: "ACTIVE";
152
- readonly DELETED: "DELETED";
153
- readonly DISABLED: "DISABLED";
154
- readonly INACTIVE: "INACTIVE";
155
- };
156
- export type WorkloadStatus =
157
- (typeof WorkloadStatus)[keyof typeof WorkloadStatus];
158
97
  export interface WorkloadData {
159
98
  workloadName?: string | undefined;
160
99
  displayName?: string | undefined;
@@ -171,14 +110,6 @@ export interface GetWorkloadDeploymentPatternInput {
171
110
  workloadName: string | undefined;
172
111
  deploymentPatternName: string | undefined;
173
112
  }
174
- export declare const WorkloadDeploymentPatternStatus: {
175
- readonly ACTIVE: "ACTIVE";
176
- readonly DELETED: "DELETED";
177
- readonly DISABLED: "DISABLED";
178
- readonly INACTIVE: "INACTIVE";
179
- };
180
- export type WorkloadDeploymentPatternStatus =
181
- (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
182
113
  export interface WorkloadDeploymentPatternData {
183
114
  workloadName?: string | undefined;
184
115
  deploymentPatternName?: string | undefined;
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.934.0",
4
+ "version": "3.935.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,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";