@aws-sdk/client-simspaceweaver 3.934.0 → 3.936.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
@@ -131,18 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends SimSpaceWeaver
131
131
  this.Message = opts.Message;
132
132
  }
133
133
  };
134
- const ClockStatus = {
135
- STARTED: "STARTED",
136
- STARTING: "STARTING",
137
- STOPPED: "STOPPED",
138
- STOPPING: "STOPPING",
139
- UNKNOWN: "UNKNOWN",
140
- };
141
- const ClockTargetStatus = {
142
- STARTED: "STARTED",
143
- STOPPED: "STOPPED",
144
- UNKNOWN: "UNKNOWN",
145
- };
146
134
  let ConflictException$1 = class ConflictException extends SimSpaceWeaverServiceException$1 {
147
135
  name = "ConflictException";
148
136
  $fault = "client";
@@ -199,42 +187,6 @@ let ValidationException$1 = class ValidationException extends SimSpaceWeaverServ
199
187
  this.Message = opts.Message;
200
188
  }
201
189
  };
202
- const SimulationAppStatus = {
203
- ERROR: "ERROR",
204
- STARTED: "STARTED",
205
- STARTING: "STARTING",
206
- STOPPED: "STOPPED",
207
- STOPPING: "STOPPING",
208
- UNKNOWN: "UNKNOWN",
209
- };
210
- const SimulationAppTargetStatus = {
211
- STARTED: "STARTED",
212
- STOPPED: "STOPPED",
213
- UNKNOWN: "UNKNOWN",
214
- };
215
- const LifecycleManagementStrategy = {
216
- ByRequest: "ByRequest",
217
- BySpatialSubdivision: "BySpatialSubdivision",
218
- PerWorker: "PerWorker",
219
- Unknown: "Unknown",
220
- };
221
- const SimulationStatus = {
222
- DELETED: "DELETED",
223
- DELETING: "DELETING",
224
- FAILED: "FAILED",
225
- SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS",
226
- STARTED: "STARTED",
227
- STARTING: "STARTING",
228
- STOPPED: "STOPPED",
229
- STOPPING: "STOPPING",
230
- UNKNOWN: "UNKNOWN",
231
- };
232
- const SimulationTargetStatus = {
233
- DELETED: "DELETED",
234
- STARTED: "STARTED",
235
- STOPPED: "STOPPED",
236
- UNKNOWN: "UNKNOWN",
237
- };
238
190
  let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SimSpaceWeaverServiceException$1 {
239
191
  name = "ServiceQuotaExceededException";
240
192
  $fault = "client";
@@ -1122,8 +1074,6 @@ Object.defineProperty(exports, "__Client", {
1122
1074
  get: function () { return smithyClient.Client; }
1123
1075
  });
1124
1076
  exports.AccessDeniedException = AccessDeniedException$1;
1125
- exports.ClockStatus = ClockStatus;
1126
- exports.ClockTargetStatus = ClockTargetStatus;
1127
1077
  exports.ConflictException = ConflictException$1;
1128
1078
  exports.CreateSnapshotCommand = CreateSnapshotCommand;
1129
1079
  exports.DeleteAppCommand = DeleteAppCommand;
@@ -1131,7 +1081,6 @@ exports.DeleteSimulationCommand = DeleteSimulationCommand;
1131
1081
  exports.DescribeAppCommand = DescribeAppCommand;
1132
1082
  exports.DescribeSimulationCommand = DescribeSimulationCommand;
1133
1083
  exports.InternalServerException = InternalServerException$1;
1134
- exports.LifecycleManagementStrategy = LifecycleManagementStrategy;
1135
1084
  exports.ListAppsCommand = ListAppsCommand;
1136
1085
  exports.ListSimulationsCommand = ListSimulationsCommand;
1137
1086
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -1140,10 +1089,6 @@ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1140
1089
  exports.SimSpaceWeaver = SimSpaceWeaver;
1141
1090
  exports.SimSpaceWeaverClient = SimSpaceWeaverClient;
1142
1091
  exports.SimSpaceWeaverServiceException = SimSpaceWeaverServiceException$1;
1143
- exports.SimulationAppStatus = SimulationAppStatus;
1144
- exports.SimulationAppTargetStatus = SimulationAppTargetStatus;
1145
- exports.SimulationStatus = SimulationStatus;
1146
- exports.SimulationTargetStatus = SimulationTargetStatus;
1147
1092
  exports.StartAppCommand = StartAppCommand;
1148
1093
  exports.StartClockCommand = StartClockCommand;
1149
1094
  exports.StartSimulationCommand = StartSimulationCommand;
package/dist-es/index.js CHANGED
@@ -2,5 +2,5 @@ export * from "./SimSpaceWeaverClient";
2
2
  export * from "./SimSpaceWeaver";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/errors";
6
6
  export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
@@ -0,0 +1,99 @@
1
+ import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class ConflictException extends __BaseException {
17
+ name = "ConflictException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "ConflictException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, ConflictException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class InternalServerException extends __BaseException {
31
+ name = "InternalServerException";
32
+ $fault = "server";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "InternalServerException",
37
+ $fault: "server",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, InternalServerException.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class ResourceNotFoundException extends __BaseException {
45
+ name = "ResourceNotFoundException";
46
+ $fault = "client";
47
+ Message;
48
+ constructor(opts) {
49
+ super({
50
+ name: "ResourceNotFoundException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
55
+ this.Message = opts.Message;
56
+ }
57
+ }
58
+ export class ValidationException extends __BaseException {
59
+ name = "ValidationException";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ValidationException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ValidationException.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
72
+ export class ServiceQuotaExceededException extends __BaseException {
73
+ name = "ServiceQuotaExceededException";
74
+ $fault = "client";
75
+ Message;
76
+ constructor(opts) {
77
+ super({
78
+ name: "ServiceQuotaExceededException",
79
+ $fault: "client",
80
+ ...opts,
81
+ });
82
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
83
+ this.Message = opts.Message;
84
+ }
85
+ }
86
+ export class TooManyTagsException extends __BaseException {
87
+ name = "TooManyTagsException";
88
+ $fault = "client";
89
+ Message;
90
+ constructor(opts) {
91
+ super({
92
+ name: "TooManyTagsException",
93
+ $fault: "client",
94
+ ...opts,
95
+ });
96
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
97
+ this.Message = opts.Message;
98
+ }
99
+ }
@@ -1,18 +1,3 @@
1
- import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
1
  export const ClockStatus = {
17
2
  STARTED: "STARTED",
18
3
  STARTING: "STARTING",
@@ -25,62 +10,6 @@ export const ClockTargetStatus = {
25
10
  STOPPED: "STOPPED",
26
11
  UNKNOWN: "UNKNOWN",
27
12
  };
28
- export class ConflictException extends __BaseException {
29
- name = "ConflictException";
30
- $fault = "client";
31
- Message;
32
- constructor(opts) {
33
- super({
34
- name: "ConflictException",
35
- $fault: "client",
36
- ...opts,
37
- });
38
- Object.setPrototypeOf(this, ConflictException.prototype);
39
- this.Message = opts.Message;
40
- }
41
- }
42
- export class InternalServerException extends __BaseException {
43
- name = "InternalServerException";
44
- $fault = "server";
45
- Message;
46
- constructor(opts) {
47
- super({
48
- name: "InternalServerException",
49
- $fault: "server",
50
- ...opts,
51
- });
52
- Object.setPrototypeOf(this, InternalServerException.prototype);
53
- this.Message = opts.Message;
54
- }
55
- }
56
- export class ResourceNotFoundException extends __BaseException {
57
- name = "ResourceNotFoundException";
58
- $fault = "client";
59
- Message;
60
- constructor(opts) {
61
- super({
62
- name: "ResourceNotFoundException",
63
- $fault: "client",
64
- ...opts,
65
- });
66
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
67
- this.Message = opts.Message;
68
- }
69
- }
70
- export class ValidationException extends __BaseException {
71
- name = "ValidationException";
72
- $fault = "client";
73
- Message;
74
- constructor(opts) {
75
- super({
76
- name: "ValidationException",
77
- $fault: "client",
78
- ...opts,
79
- });
80
- Object.setPrototypeOf(this, ValidationException.prototype);
81
- this.Message = opts.Message;
82
- }
83
- }
84
13
  export const SimulationAppStatus = {
85
14
  ERROR: "ERROR",
86
15
  STARTED: "STARTED",
@@ -117,31 +46,3 @@ export const SimulationTargetStatus = {
117
46
  STOPPED: "STOPPED",
118
47
  UNKNOWN: "UNKNOWN",
119
48
  };
120
- export class ServiceQuotaExceededException extends __BaseException {
121
- name = "ServiceQuotaExceededException";
122
- $fault = "client";
123
- Message;
124
- constructor(opts) {
125
- super({
126
- name: "ServiceQuotaExceededException",
127
- $fault: "client",
128
- ...opts,
129
- });
130
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
131
- this.Message = opts.Message;
132
- }
133
- }
134
- export class TooManyTagsException extends __BaseException {
135
- name = "TooManyTagsException";
136
- $fault = "client";
137
- Message;
138
- constructor(opts) {
139
- super({
140
- name: "TooManyTagsException",
141
- $fault: "client",
142
- ...opts,
143
- });
144
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
145
- this.Message = opts.Message;
146
- }
147
- }
@@ -126,7 +126,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.simspaceweaver";
126
126
  const _tK = "tagKeys";
127
127
  const n0 = "com.amazonaws.simspaceweaver";
128
128
  import { TypeRegistry } from "@smithy/core/schema";
129
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, TooManyTagsException as __TooManyTagsException, ValidationException as __ValidationException, } from "../models/index";
129
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, TooManyTagsException as __TooManyTagsException, ValidationException as __ValidationException, } from "../models/errors";
130
130
  import { SimSpaceWeaverServiceException as __SimSpaceWeaverServiceException } from "../models/SimSpaceWeaverServiceException";
131
131
  export var ClientToken = [0, n0, _CT, 8, 0];
132
132
  export var AccessDeniedException = [
@@ -20,5 +20,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
20
20
  export type { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration";
21
21
  export * from "./commands";
22
22
  export * from "./pagination";
23
- export * from "./models";
23
+ export * from "./models/errors";
24
+ export type * from "./models/models_0";
24
25
  export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
@@ -0,0 +1,93 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
3
+ /**
4
+ * <p/>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p/>
18
+ * @public
19
+ */
20
+ export declare class ConflictException extends __BaseException {
21
+ readonly name: "ConflictException";
22
+ readonly $fault: "client";
23
+ Message?: string | undefined;
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p/>
31
+ * @public
32
+ */
33
+ export declare class InternalServerException extends __BaseException {
34
+ readonly name: "InternalServerException";
35
+ readonly $fault: "server";
36
+ Message?: string | undefined;
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p/>
44
+ * @public
45
+ */
46
+ export declare class ResourceNotFoundException extends __BaseException {
47
+ readonly name: "ResourceNotFoundException";
48
+ readonly $fault: "client";
49
+ Message?: string | undefined;
50
+ /**
51
+ * @internal
52
+ */
53
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
54
+ }
55
+ /**
56
+ * <p/>
57
+ * @public
58
+ */
59
+ export declare class ValidationException extends __BaseException {
60
+ readonly name: "ValidationException";
61
+ readonly $fault: "client";
62
+ Message?: string | undefined;
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
67
+ }
68
+ /**
69
+ * <p/>
70
+ * @public
71
+ */
72
+ export declare class ServiceQuotaExceededException extends __BaseException {
73
+ readonly name: "ServiceQuotaExceededException";
74
+ readonly $fault: "client";
75
+ Message?: string | undefined;
76
+ /**
77
+ * @internal
78
+ */
79
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
80
+ }
81
+ /**
82
+ * <p/>
83
+ * @public
84
+ */
85
+ export declare class TooManyTagsException extends __BaseException {
86
+ readonly name: "TooManyTagsException";
87
+ readonly $fault: "client";
88
+ Message?: string | undefined;
89
+ /**
90
+ * @internal
91
+ */
92
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
93
+ }
@@ -1,18 +1,3 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
3
- /**
4
- * <p/>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- Message?: string | undefined;
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
16
1
  /**
17
2
  * <p>A collection of TCP/UDP ports for a custom or service app.</p>
18
3
  * @public
@@ -77,19 +62,6 @@ export interface CloudWatchLogsLogGroup {
77
62
  */
78
63
  LogGroupArn?: string | undefined;
79
64
  }
80
- /**
81
- * <p/>
82
- * @public
83
- */
84
- export declare class ConflictException extends __BaseException {
85
- readonly name: "ConflictException";
86
- readonly $fault: "client";
87
- Message?: string | undefined;
88
- /**
89
- * @internal
90
- */
91
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
92
- }
93
65
  /**
94
66
  * <p>An Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates a file.</p>
95
67
  * @public
@@ -131,45 +103,6 @@ export interface CreateSnapshotInput {
131
103
  */
132
104
  export interface CreateSnapshotOutput {
133
105
  }
134
- /**
135
- * <p/>
136
- * @public
137
- */
138
- export declare class InternalServerException extends __BaseException {
139
- readonly name: "InternalServerException";
140
- readonly $fault: "server";
141
- Message?: string | undefined;
142
- /**
143
- * @internal
144
- */
145
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
146
- }
147
- /**
148
- * <p/>
149
- * @public
150
- */
151
- export declare class ResourceNotFoundException extends __BaseException {
152
- readonly name: "ResourceNotFoundException";
153
- readonly $fault: "client";
154
- Message?: string | undefined;
155
- /**
156
- * @internal
157
- */
158
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
159
- }
160
- /**
161
- * <p/>
162
- * @public
163
- */
164
- export declare class ValidationException extends __BaseException {
165
- readonly name: "ValidationException";
166
- readonly $fault: "client";
167
- Message?: string | undefined;
168
- /**
169
- * @internal
170
- */
171
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
172
- }
173
106
  /**
174
107
  * @public
175
108
  */
@@ -790,19 +723,6 @@ export interface ListTagsForResourceOutput {
790
723
  */
791
724
  Tags?: Record<string, string> | undefined;
792
725
  }
793
- /**
794
- * <p/>
795
- * @public
796
- */
797
- export declare class ServiceQuotaExceededException extends __BaseException {
798
- readonly name: "ServiceQuotaExceededException";
799
- readonly $fault: "client";
800
- Message?: string | undefined;
801
- /**
802
- * @internal
803
- */
804
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
805
- }
806
726
  /**
807
727
  * @public
808
728
  */
@@ -1041,19 +961,6 @@ export interface TagResourceInput {
1041
961
  */
1042
962
  export interface TagResourceOutput {
1043
963
  }
1044
- /**
1045
- * <p/>
1046
- * @public
1047
- */
1048
- export declare class TooManyTagsException extends __BaseException {
1049
- readonly name: "TooManyTagsException";
1050
- readonly $fault: "client";
1051
- Message?: string | undefined;
1052
- /**
1053
- * @internal
1054
- */
1055
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
1056
- }
1057
964
  /**
1058
965
  * @public
1059
966
  */
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/errors";
9
+ export * from "./models/models_0";
9
10
  export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
@@ -0,0 +1,56 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class ConflictException extends __BaseException {
12
+ readonly name: "ConflictException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
+ }
17
+ export declare class InternalServerException extends __BaseException {
18
+ readonly name: "InternalServerException";
19
+ readonly $fault: "server";
20
+ Message?: string | undefined;
21
+ constructor(
22
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
23
+ );
24
+ }
25
+ export declare class ResourceNotFoundException extends __BaseException {
26
+ readonly name: "ResourceNotFoundException";
27
+ readonly $fault: "client";
28
+ Message?: string | undefined;
29
+ constructor(
30
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
31
+ );
32
+ }
33
+ export declare class ValidationException extends __BaseException {
34
+ readonly name: "ValidationException";
35
+ readonly $fault: "client";
36
+ Message?: string | undefined;
37
+ constructor(
38
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
39
+ );
40
+ }
41
+ export declare class ServiceQuotaExceededException extends __BaseException {
42
+ readonly name: "ServiceQuotaExceededException";
43
+ readonly $fault: "client";
44
+ Message?: string | undefined;
45
+ constructor(
46
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
47
+ );
48
+ }
49
+ export declare class TooManyTagsException extends __BaseException {
50
+ readonly name: "TooManyTagsException";
51
+ readonly $fault: "client";
52
+ Message?: string | undefined;
53
+ constructor(
54
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
55
+ );
56
+ }
@@ -1,13 +1,3 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
11
1
  export interface SimulationAppPortMapping {
12
2
  Declared?: number | undefined;
13
3
  Actual?: number | undefined;
@@ -30,12 +20,6 @@ export type ClockTargetStatus =
30
20
  export interface CloudWatchLogsLogGroup {
31
21
  LogGroupArn?: string | undefined;
32
22
  }
33
- export declare class ConflictException extends __BaseException {
34
- readonly name: "ConflictException";
35
- readonly $fault: "client";
36
- Message?: string | undefined;
37
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
38
- }
39
23
  export interface S3Destination {
40
24
  BucketName: string | undefined;
41
25
  ObjectKeyPrefix?: string | undefined;
@@ -45,30 +29,6 @@ export interface CreateSnapshotInput {
45
29
  Destination: S3Destination | undefined;
46
30
  }
47
31
  export interface CreateSnapshotOutput {}
48
- export declare class InternalServerException extends __BaseException {
49
- readonly name: "InternalServerException";
50
- readonly $fault: "server";
51
- Message?: string | undefined;
52
- constructor(
53
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
54
- );
55
- }
56
- export declare class ResourceNotFoundException extends __BaseException {
57
- readonly name: "ResourceNotFoundException";
58
- readonly $fault: "client";
59
- Message?: string | undefined;
60
- constructor(
61
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
62
- );
63
- }
64
- export declare class ValidationException extends __BaseException {
65
- readonly name: "ValidationException";
66
- readonly $fault: "client";
67
- Message?: string | undefined;
68
- constructor(
69
- opts: __ExceptionOptionType<ValidationException, __BaseException>
70
- );
71
- }
72
32
  export interface DeleteAppInput {
73
33
  Simulation: string | undefined;
74
34
  Domain: string | undefined;
@@ -227,14 +187,6 @@ export interface ListTagsForResourceInput {
227
187
  export interface ListTagsForResourceOutput {
228
188
  Tags?: Record<string, string> | undefined;
229
189
  }
230
- export declare class ServiceQuotaExceededException extends __BaseException {
231
- readonly name: "ServiceQuotaExceededException";
232
- readonly $fault: "client";
233
- Message?: string | undefined;
234
- constructor(
235
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
236
- );
237
- }
238
190
  export interface StartAppInput {
239
191
  ClientToken?: string | undefined;
240
192
  Simulation: string | undefined;
@@ -286,14 +238,6 @@ export interface TagResourceInput {
286
238
  Tags: Record<string, string> | undefined;
287
239
  }
288
240
  export interface TagResourceOutput {}
289
- export declare class TooManyTagsException extends __BaseException {
290
- readonly name: "TooManyTagsException";
291
- readonly $fault: "client";
292
- Message?: string | undefined;
293
- constructor(
294
- opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
295
- );
296
- }
297
241
  export interface UntagResourceInput {
298
242
  ResourceArn: string | undefined;
299
243
  TagKeys: string[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-simspaceweaver",
3
3
  "description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
4
- "version": "3.934.0",
4
+ "version": "3.936.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-simspaceweaver",
@@ -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",
25
- "@aws-sdk/middleware-host-header": "3.930.0",
26
- "@aws-sdk/middleware-logger": "3.930.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
29
- "@aws-sdk/region-config-resolver": "3.930.0",
30
- "@aws-sdk/types": "3.930.0",
31
- "@aws-sdk/util-endpoints": "3.930.0",
32
- "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
23
+ "@aws-sdk/core": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.936.0",
25
+ "@aws-sdk/middleware-host-header": "3.936.0",
26
+ "@aws-sdk/middleware-logger": "3.936.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.936.0",
29
+ "@aws-sdk/region-config-resolver": "3.936.0",
30
+ "@aws-sdk/types": "3.936.0",
31
+ "@aws-sdk/util-endpoints": "3.936.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.936.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";