@aws-sdk/client-simspaceweaver 3.928.0 → 3.929.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 (40) hide show
  1. package/dist-cjs/index.js +677 -732
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/SimSpaceWeaverClient.js +2 -0
  4. package/dist-es/commands/CreateSnapshotCommand.js +3 -9
  5. package/dist-es/commands/DeleteAppCommand.js +3 -9
  6. package/dist-es/commands/DeleteSimulationCommand.js +3 -9
  7. package/dist-es/commands/DescribeAppCommand.js +3 -9
  8. package/dist-es/commands/DescribeSimulationCommand.js +3 -9
  9. package/dist-es/commands/ListAppsCommand.js +3 -9
  10. package/dist-es/commands/ListSimulationsCommand.js +3 -9
  11. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  12. package/dist-es/commands/StartAppCommand.js +3 -10
  13. package/dist-es/commands/StartClockCommand.js +3 -9
  14. package/dist-es/commands/StartSimulationCommand.js +3 -10
  15. package/dist-es/commands/StopAppCommand.js +3 -9
  16. package/dist-es/commands/StopClockCommand.js +3 -9
  17. package/dist-es/commands/StopSimulationCommand.js +3 -9
  18. package/dist-es/commands/TagResourceCommand.js +3 -9
  19. package/dist-es/commands/UntagResourceCommand.js +3 -9
  20. package/dist-es/models/models_0.js +0 -9
  21. package/dist-es/runtimeConfig.shared.js +2 -0
  22. package/dist-es/schemas/schemas_0.js +636 -0
  23. package/dist-types/SimSpaceWeaverClient.d.ts +10 -1
  24. package/dist-types/models/models_0.d.ts +0 -8
  25. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  26. package/dist-types/runtimeConfig.d.ts +1 -0
  27. package/dist-types/runtimeConfig.native.d.ts +1 -0
  28. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  29. package/dist-types/schemas/schemas_0.d.ts +80 -0
  30. package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +4 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +0 -6
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +86 -0
  37. package/package.json +2 -3
  38. package/dist-es/protocols/Aws_restJson1.js +0 -601
  39. package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
 
21
19
  const resolveClientEndpointParameters = (options) => {
22
20
  return Object.assign(options, {
@@ -92,6 +90,7 @@ class SimSpaceWeaverClient extends smithyClient.Client {
92
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
93
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
94
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
95
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
96
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -111,14 +110,14 @@ class SimSpaceWeaverClient extends smithyClient.Client {
111
110
  }
112
111
  }
113
112
 
114
- class SimSpaceWeaverServiceException extends smithyClient.ServiceException {
113
+ let SimSpaceWeaverServiceException$1 = class SimSpaceWeaverServiceException extends smithyClient.ServiceException {
115
114
  constructor(options) {
116
115
  super(options);
117
116
  Object.setPrototypeOf(this, SimSpaceWeaverServiceException.prototype);
118
117
  }
119
- }
118
+ };
120
119
 
121
- class AccessDeniedException extends SimSpaceWeaverServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends SimSpaceWeaverServiceException$1 {
122
121
  name = "AccessDeniedException";
123
122
  $fault = "client";
124
123
  Message;
@@ -131,7 +130,7 @@ class AccessDeniedException extends SimSpaceWeaverServiceException {
131
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
131
  this.Message = opts.Message;
133
132
  }
134
- }
133
+ };
135
134
  const ClockStatus = {
136
135
  STARTED: "STARTED",
137
136
  STARTING: "STARTING",
@@ -144,7 +143,7 @@ const ClockTargetStatus = {
144
143
  STOPPED: "STOPPED",
145
144
  UNKNOWN: "UNKNOWN",
146
145
  };
147
- class ConflictException extends SimSpaceWeaverServiceException {
146
+ let ConflictException$1 = class ConflictException extends SimSpaceWeaverServiceException$1 {
148
147
  name = "ConflictException";
149
148
  $fault = "client";
150
149
  Message;
@@ -157,8 +156,8 @@ class ConflictException extends SimSpaceWeaverServiceException {
157
156
  Object.setPrototypeOf(this, ConflictException.prototype);
158
157
  this.Message = opts.Message;
159
158
  }
160
- }
161
- class InternalServerException extends SimSpaceWeaverServiceException {
159
+ };
160
+ let InternalServerException$1 = class InternalServerException extends SimSpaceWeaverServiceException$1 {
162
161
  name = "InternalServerException";
163
162
  $fault = "server";
164
163
  Message;
@@ -171,8 +170,8 @@ class InternalServerException extends SimSpaceWeaverServiceException {
171
170
  Object.setPrototypeOf(this, InternalServerException.prototype);
172
171
  this.Message = opts.Message;
173
172
  }
174
- }
175
- class ResourceNotFoundException extends SimSpaceWeaverServiceException {
173
+ };
174
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends SimSpaceWeaverServiceException$1 {
176
175
  name = "ResourceNotFoundException";
177
176
  $fault = "client";
178
177
  Message;
@@ -185,8 +184,8 @@ class ResourceNotFoundException extends SimSpaceWeaverServiceException {
185
184
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
186
185
  this.Message = opts.Message;
187
186
  }
188
- }
189
- class ValidationException extends SimSpaceWeaverServiceException {
187
+ };
188
+ let ValidationException$1 = class ValidationException extends SimSpaceWeaverServiceException$1 {
190
189
  name = "ValidationException";
191
190
  $fault = "client";
192
191
  Message;
@@ -199,7 +198,7 @@ class ValidationException extends SimSpaceWeaverServiceException {
199
198
  Object.setPrototypeOf(this, ValidationException.prototype);
200
199
  this.Message = opts.Message;
201
200
  }
202
- }
201
+ };
203
202
  const SimulationAppStatus = {
204
203
  ERROR: "ERROR",
205
204
  STARTED: "STARTED",
@@ -236,7 +235,7 @@ const SimulationTargetStatus = {
236
235
  STOPPED: "STOPPED",
237
236
  UNKNOWN: "UNKNOWN",
238
237
  };
239
- class ServiceQuotaExceededException extends SimSpaceWeaverServiceException {
238
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SimSpaceWeaverServiceException$1 {
240
239
  name = "ServiceQuotaExceededException";
241
240
  $fault = "client";
242
241
  Message;
@@ -249,8 +248,8 @@ class ServiceQuotaExceededException extends SimSpaceWeaverServiceException {
249
248
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
250
249
  this.Message = opts.Message;
251
250
  }
252
- }
253
- class TooManyTagsException extends SimSpaceWeaverServiceException {
251
+ };
252
+ let TooManyTagsException$1 = class TooManyTagsException extends SimSpaceWeaverServiceException$1 {
254
253
  name = "TooManyTagsException";
255
254
  $fault = "client";
256
255
  Message;
@@ -263,625 +262,648 @@ class TooManyTagsException extends SimSpaceWeaverServiceException {
263
262
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
264
263
  this.Message = opts.Message;
265
264
  }
266
- }
267
- const StartAppInputFilterSensitiveLog = (obj) => ({
268
- ...obj,
269
- ...(obj.ClientToken && { ClientToken: smithyClient.SENSITIVE_STRING }),
270
- });
271
- const StartSimulationInputFilterSensitiveLog = (obj) => ({
272
- ...obj,
273
- ...(obj.ClientToken && { ClientToken: smithyClient.SENSITIVE_STRING }),
274
- });
275
-
276
- const se_CreateSnapshotCommand = async (input, context) => {
277
- const b = core.requestBuilder(input, context);
278
- const headers = {
279
- "content-type": "application/json",
280
- };
281
- b.bp("/createsnapshot");
282
- let body;
283
- body = JSON.stringify(smithyClient.take(input, {
284
- Destination: (_) => smithyClient._json(_),
285
- Simulation: [],
286
- }));
287
- b.m("POST").h(headers).b(body);
288
- return b.build();
289
- };
290
- const se_DeleteAppCommand = async (input, context) => {
291
- const b = core.requestBuilder(input, context);
292
- const headers = {};
293
- b.bp("/deleteapp");
294
- const query = smithyClient.map({
295
- [_s]: [, smithyClient.expectNonNull(input[_S], `Simulation`)],
296
- [_d]: [, smithyClient.expectNonNull(input[_D], `Domain`)],
297
- [_a]: [, smithyClient.expectNonNull(input[_A], `App`)],
298
- });
299
- let body;
300
- b.m("DELETE").h(headers).q(query).b(body);
301
- return b.build();
302
- };
303
- const se_DeleteSimulationCommand = async (input, context) => {
304
- const b = core.requestBuilder(input, context);
305
- const headers = {};
306
- b.bp("/deletesimulation");
307
- const query = smithyClient.map({
308
- [_s]: [, smithyClient.expectNonNull(input[_S], `Simulation`)],
309
- });
310
- let body;
311
- b.m("DELETE").h(headers).q(query).b(body);
312
- return b.build();
313
- };
314
- const se_DescribeAppCommand = async (input, context) => {
315
- const b = core.requestBuilder(input, context);
316
- const headers = {};
317
- b.bp("/describeapp");
318
- const query = smithyClient.map({
319
- [_s]: [, smithyClient.expectNonNull(input[_S], `Simulation`)],
320
- [_d]: [, smithyClient.expectNonNull(input[_D], `Domain`)],
321
- [_a]: [, smithyClient.expectNonNull(input[_A], `App`)],
322
- });
323
- let body;
324
- b.m("GET").h(headers).q(query).b(body);
325
- return b.build();
326
- };
327
- const se_DescribeSimulationCommand = async (input, context) => {
328
- const b = core.requestBuilder(input, context);
329
- const headers = {};
330
- b.bp("/describesimulation");
331
- const query = smithyClient.map({
332
- [_s]: [, smithyClient.expectNonNull(input[_S], `Simulation`)],
333
- });
334
- let body;
335
- b.m("GET").h(headers).q(query).b(body);
336
- return b.build();
337
- };
338
- const se_ListAppsCommand = async (input, context) => {
339
- const b = core.requestBuilder(input, context);
340
- const headers = {};
341
- b.bp("/listapps");
342
- const query = smithyClient.map({
343
- [_s]: [, smithyClient.expectNonNull(input[_S], `Simulation`)],
344
- [_d]: [, input[_D]],
345
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
346
- [_nT]: [, input[_NT]],
347
- });
348
- let body;
349
- b.m("GET").h(headers).q(query).b(body);
350
- return b.build();
351
- };
352
- const se_ListSimulationsCommand = async (input, context) => {
353
- const b = core.requestBuilder(input, context);
354
- const headers = {};
355
- b.bp("/listsimulations");
356
- const query = smithyClient.map({
357
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
358
- [_nT]: [, input[_NT]],
359
- });
360
- let body;
361
- b.m("GET").h(headers).q(query).b(body);
362
- return b.build();
363
- };
364
- const se_ListTagsForResourceCommand = async (input, context) => {
365
- const b = core.requestBuilder(input, context);
366
- const headers = {};
367
- b.bp("/tags/{ResourceArn}");
368
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
369
- let body;
370
- b.m("GET").h(headers).b(body);
371
- return b.build();
372
- };
373
- const se_StartAppCommand = async (input, context) => {
374
- const b = core.requestBuilder(input, context);
375
- const headers = {
376
- "content-type": "application/json",
377
- };
378
- b.bp("/startapp");
379
- let body;
380
- body = JSON.stringify(smithyClient.take(input, {
381
- ClientToken: [true, (_) => _ ?? uuid.v4()],
382
- Description: [],
383
- Domain: [],
384
- LaunchOverrides: (_) => smithyClient._json(_),
385
- Name: [],
386
- Simulation: [],
387
- }));
388
- b.m("POST").h(headers).b(body);
389
- return b.build();
390
265
  };
391
- const se_StartClockCommand = async (input, context) => {
392
- const b = core.requestBuilder(input, context);
393
- const headers = {
394
- "content-type": "application/json",
395
- };
396
- b.bp("/startclock");
397
- let body;
398
- body = JSON.stringify(smithyClient.take(input, {
399
- Simulation: [],
400
- }));
401
- b.m("POST").h(headers).b(body);
402
- return b.build();
403
- };
404
- const se_StartSimulationCommand = async (input, context) => {
405
- const b = core.requestBuilder(input, context);
406
- const headers = {
407
- "content-type": "application/json",
408
- };
409
- b.bp("/startsimulation");
410
- let body;
411
- body = JSON.stringify(smithyClient.take(input, {
412
- ClientToken: [true, (_) => _ ?? uuid.v4()],
413
- Description: [],
414
- MaximumDuration: [],
415
- Name: [],
416
- RoleArn: [],
417
- SchemaS3Location: (_) => smithyClient._json(_),
418
- SnapshotS3Location: (_) => smithyClient._json(_),
419
- Tags: (_) => smithyClient._json(_),
420
- }));
421
- b.m("POST").h(headers).b(body);
422
- return b.build();
423
- };
424
- const se_StopAppCommand = async (input, context) => {
425
- const b = core.requestBuilder(input, context);
426
- const headers = {
427
- "content-type": "application/json",
428
- };
429
- b.bp("/stopapp");
430
- let body;
431
- body = JSON.stringify(smithyClient.take(input, {
432
- App: [],
433
- Domain: [],
434
- Simulation: [],
435
- }));
436
- b.m("POST").h(headers).b(body);
437
- return b.build();
438
- };
439
- const se_StopClockCommand = async (input, context) => {
440
- const b = core.requestBuilder(input, context);
441
- const headers = {
442
- "content-type": "application/json",
443
- };
444
- b.bp("/stopclock");
445
- let body;
446
- body = JSON.stringify(smithyClient.take(input, {
447
- Simulation: [],
448
- }));
449
- b.m("POST").h(headers).b(body);
450
- return b.build();
451
- };
452
- const se_StopSimulationCommand = async (input, context) => {
453
- const b = core.requestBuilder(input, context);
454
- const headers = {
455
- "content-type": "application/json",
456
- };
457
- b.bp("/stopsimulation");
458
- let body;
459
- body = JSON.stringify(smithyClient.take(input, {
460
- Simulation: [],
461
- }));
462
- b.m("POST").h(headers).b(body);
463
- return b.build();
464
- };
465
- const se_TagResourceCommand = async (input, context) => {
466
- const b = core.requestBuilder(input, context);
467
- const headers = {
468
- "content-type": "application/json",
469
- };
470
- b.bp("/tags/{ResourceArn}");
471
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
472
- let body;
473
- body = JSON.stringify(smithyClient.take(input, {
474
- Tags: (_) => smithyClient._json(_),
475
- }));
476
- b.m("POST").h(headers).b(body);
477
- return b.build();
478
- };
479
- const se_UntagResourceCommand = async (input, context) => {
480
- const b = core.requestBuilder(input, context);
481
- const headers = {};
482
- b.bp("/tags/{ResourceArn}");
483
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
484
- const query = smithyClient.map({
485
- [_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
486
- });
487
- let body;
488
- b.m("DELETE").h(headers).q(query).b(body);
489
- return b.build();
490
- };
491
- const de_CreateSnapshotCommand = async (output, context) => {
492
- if (output.statusCode !== 200 && output.statusCode >= 300) {
493
- return de_CommandError(output, context);
494
- }
495
- const contents = smithyClient.map({
496
- $metadata: deserializeMetadata(output),
497
- });
498
- await smithyClient.collectBody(output.body, context);
499
- return contents;
500
- };
501
- const de_DeleteAppCommand = async (output, context) => {
502
- if (output.statusCode !== 200 && output.statusCode >= 300) {
503
- return de_CommandError(output, context);
504
- }
505
- const contents = smithyClient.map({
506
- $metadata: deserializeMetadata(output),
507
- });
508
- await smithyClient.collectBody(output.body, context);
509
- return contents;
510
- };
511
- const de_DeleteSimulationCommand = async (output, context) => {
512
- if (output.statusCode !== 200 && output.statusCode >= 300) {
513
- return de_CommandError(output, context);
514
- }
515
- const contents = smithyClient.map({
516
- $metadata: deserializeMetadata(output),
517
- });
518
- await smithyClient.collectBody(output.body, context);
519
- return contents;
520
- };
521
- const de_DescribeAppCommand = async (output, context) => {
522
- if (output.statusCode !== 200 && output.statusCode >= 300) {
523
- return de_CommandError(output, context);
524
- }
525
- const contents = smithyClient.map({
526
- $metadata: deserializeMetadata(output),
527
- });
528
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
529
- const doc = smithyClient.take(data, {
530
- Description: smithyClient.expectString,
531
- Domain: smithyClient.expectString,
532
- EndpointInfo: smithyClient._json,
533
- LaunchOverrides: smithyClient._json,
534
- Name: smithyClient.expectString,
535
- Simulation: smithyClient.expectString,
536
- Status: smithyClient.expectString,
537
- TargetStatus: smithyClient.expectString,
538
- });
539
- Object.assign(contents, doc);
540
- return contents;
541
- };
542
- const de_DescribeSimulationCommand = async (output, context) => {
543
- if (output.statusCode !== 200 && output.statusCode >= 300) {
544
- return de_CommandError(output, context);
545
- }
546
- const contents = smithyClient.map({
547
- $metadata: deserializeMetadata(output),
548
- });
549
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
550
- const doc = smithyClient.take(data, {
551
- Arn: smithyClient.expectString,
552
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
553
- Description: smithyClient.expectString,
554
- ExecutionId: smithyClient.expectString,
555
- LiveSimulationState: smithyClient._json,
556
- LoggingConfiguration: smithyClient._json,
557
- MaximumDuration: smithyClient.expectString,
558
- Name: smithyClient.expectString,
559
- RoleArn: smithyClient.expectString,
560
- SchemaError: smithyClient.expectString,
561
- SchemaS3Location: smithyClient._json,
562
- SnapshotS3Location: smithyClient._json,
563
- StartError: smithyClient.expectString,
564
- Status: smithyClient.expectString,
565
- TargetStatus: smithyClient.expectString,
566
- });
567
- Object.assign(contents, doc);
568
- return contents;
569
- };
570
- const de_ListAppsCommand = async (output, context) => {
571
- if (output.statusCode !== 200 && output.statusCode >= 300) {
572
- return de_CommandError(output, context);
573
- }
574
- const contents = smithyClient.map({
575
- $metadata: deserializeMetadata(output),
576
- });
577
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
578
- const doc = smithyClient.take(data, {
579
- Apps: smithyClient._json,
580
- NextToken: smithyClient.expectString,
581
- });
582
- Object.assign(contents, doc);
583
- return contents;
584
- };
585
- const de_ListSimulationsCommand = async (output, context) => {
586
- if (output.statusCode !== 200 && output.statusCode >= 300) {
587
- return de_CommandError(output, context);
588
- }
589
- const contents = smithyClient.map({
590
- $metadata: deserializeMetadata(output),
591
- });
592
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
593
- const doc = smithyClient.take(data, {
594
- NextToken: smithyClient.expectString,
595
- Simulations: (_) => de_SimulationList(_),
596
- });
597
- Object.assign(contents, doc);
598
- return contents;
599
- };
600
- const de_ListTagsForResourceCommand = async (output, context) => {
601
- if (output.statusCode !== 200 && output.statusCode >= 300) {
602
- return de_CommandError(output, context);
603
- }
604
- const contents = smithyClient.map({
605
- $metadata: deserializeMetadata(output),
606
- });
607
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
608
- const doc = smithyClient.take(data, {
609
- Tags: smithyClient._json,
610
- });
611
- Object.assign(contents, doc);
612
- return contents;
613
- };
614
- const de_StartAppCommand = async (output, context) => {
615
- if (output.statusCode !== 200 && output.statusCode >= 300) {
616
- return de_CommandError(output, context);
617
- }
618
- const contents = smithyClient.map({
619
- $metadata: deserializeMetadata(output),
620
- });
621
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
622
- const doc = smithyClient.take(data, {
623
- Domain: smithyClient.expectString,
624
- Name: smithyClient.expectString,
625
- Simulation: smithyClient.expectString,
626
- });
627
- Object.assign(contents, doc);
628
- return contents;
629
- };
630
- const de_StartClockCommand = async (output, context) => {
631
- if (output.statusCode !== 200 && output.statusCode >= 300) {
632
- return de_CommandError(output, context);
633
- }
634
- const contents = smithyClient.map({
635
- $metadata: deserializeMetadata(output),
636
- });
637
- await smithyClient.collectBody(output.body, context);
638
- return contents;
639
- };
640
- const de_StartSimulationCommand = async (output, context) => {
641
- if (output.statusCode !== 200 && output.statusCode >= 300) {
642
- return de_CommandError(output, context);
643
- }
644
- const contents = smithyClient.map({
645
- $metadata: deserializeMetadata(output),
646
- });
647
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
648
- const doc = smithyClient.take(data, {
649
- Arn: smithyClient.expectString,
650
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
651
- ExecutionId: smithyClient.expectString,
652
- });
653
- Object.assign(contents, doc);
654
- return contents;
655
- };
656
- const de_StopAppCommand = async (output, context) => {
657
- if (output.statusCode !== 200 && output.statusCode >= 300) {
658
- return de_CommandError(output, context);
659
- }
660
- const contents = smithyClient.map({
661
- $metadata: deserializeMetadata(output),
662
- });
663
- await smithyClient.collectBody(output.body, context);
664
- return contents;
665
- };
666
- const de_StopClockCommand = async (output, context) => {
667
- if (output.statusCode !== 200 && output.statusCode >= 300) {
668
- return de_CommandError(output, context);
669
- }
670
- const contents = smithyClient.map({
671
- $metadata: deserializeMetadata(output),
672
- });
673
- await smithyClient.collectBody(output.body, context);
674
- return contents;
675
- };
676
- const de_StopSimulationCommand = async (output, context) => {
677
- if (output.statusCode !== 200 && output.statusCode >= 300) {
678
- return de_CommandError(output, context);
679
- }
680
- const contents = smithyClient.map({
681
- $metadata: deserializeMetadata(output),
682
- });
683
- await smithyClient.collectBody(output.body, context);
684
- return contents;
685
- };
686
- const de_TagResourceCommand = async (output, context) => {
687
- if (output.statusCode !== 200 && output.statusCode >= 300) {
688
- return de_CommandError(output, context);
689
- }
690
- const contents = smithyClient.map({
691
- $metadata: deserializeMetadata(output),
692
- });
693
- await smithyClient.collectBody(output.body, context);
694
- return contents;
695
- };
696
- const de_UntagResourceCommand = async (output, context) => {
697
- if (output.statusCode !== 200 && output.statusCode >= 300) {
698
- return de_CommandError(output, context);
699
- }
700
- const contents = smithyClient.map({
701
- $metadata: deserializeMetadata(output),
702
- });
703
- await smithyClient.collectBody(output.body, context);
704
- return contents;
705
- };
706
- const de_CommandError = async (output, context) => {
707
- const parsedOutput = {
708
- ...output,
709
- body: await core$1.parseJsonErrorBody(output.body, context),
710
- };
711
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
712
- switch (errorCode) {
713
- case "AccessDeniedException":
714
- case "com.amazonaws.simspaceweaver#AccessDeniedException":
715
- throw await de_AccessDeniedExceptionRes(parsedOutput);
716
- case "ConflictException":
717
- case "com.amazonaws.simspaceweaver#ConflictException":
718
- throw await de_ConflictExceptionRes(parsedOutput);
719
- case "InternalServerException":
720
- case "com.amazonaws.simspaceweaver#InternalServerException":
721
- throw await de_InternalServerExceptionRes(parsedOutput);
722
- case "ResourceNotFoundException":
723
- case "com.amazonaws.simspaceweaver#ResourceNotFoundException":
724
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
725
- case "ValidationException":
726
- case "com.amazonaws.simspaceweaver#ValidationException":
727
- throw await de_ValidationExceptionRes(parsedOutput);
728
- case "ServiceQuotaExceededException":
729
- case "com.amazonaws.simspaceweaver#ServiceQuotaExceededException":
730
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
731
- case "TooManyTagsException":
732
- case "com.amazonaws.simspaceweaver#TooManyTagsException":
733
- throw await de_TooManyTagsExceptionRes(parsedOutput);
734
- default:
735
- const parsedBody = parsedOutput.body;
736
- return throwDefaultError({
737
- output,
738
- parsedBody,
739
- errorCode,
740
- });
741
- }
742
- };
743
- const throwDefaultError = smithyClient.withBaseException(SimSpaceWeaverServiceException);
744
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
745
- const contents = smithyClient.map({});
746
- const data = parsedOutput.body;
747
- const doc = smithyClient.take(data, {
748
- Message: smithyClient.expectString,
749
- });
750
- Object.assign(contents, doc);
751
- const exception = new AccessDeniedException({
752
- $metadata: deserializeMetadata(parsedOutput),
753
- ...contents,
754
- });
755
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
756
- };
757
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
758
- const contents = smithyClient.map({});
759
- const data = parsedOutput.body;
760
- const doc = smithyClient.take(data, {
761
- Message: smithyClient.expectString,
762
- });
763
- Object.assign(contents, doc);
764
- const exception = new ConflictException({
765
- $metadata: deserializeMetadata(parsedOutput),
766
- ...contents,
767
- });
768
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
769
- };
770
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
771
- const contents = smithyClient.map({});
772
- const data = parsedOutput.body;
773
- const doc = smithyClient.take(data, {
774
- Message: smithyClient.expectString,
775
- });
776
- Object.assign(contents, doc);
777
- const exception = new InternalServerException({
778
- $metadata: deserializeMetadata(parsedOutput),
779
- ...contents,
780
- });
781
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
782
- };
783
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
784
- const contents = smithyClient.map({});
785
- const data = parsedOutput.body;
786
- const doc = smithyClient.take(data, {
787
- Message: smithyClient.expectString,
788
- });
789
- Object.assign(contents, doc);
790
- const exception = new ResourceNotFoundException({
791
- $metadata: deserializeMetadata(parsedOutput),
792
- ...contents,
793
- });
794
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
795
- };
796
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
797
- const contents = smithyClient.map({});
798
- const data = parsedOutput.body;
799
- const doc = smithyClient.take(data, {
800
- Message: smithyClient.expectString,
801
- });
802
- Object.assign(contents, doc);
803
- const exception = new ServiceQuotaExceededException({
804
- $metadata: deserializeMetadata(parsedOutput),
805
- ...contents,
806
- });
807
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
808
- };
809
- const de_TooManyTagsExceptionRes = async (parsedOutput, context) => {
810
- const contents = smithyClient.map({});
811
- const data = parsedOutput.body;
812
- const doc = smithyClient.take(data, {
813
- Message: smithyClient.expectString,
814
- });
815
- Object.assign(contents, doc);
816
- const exception = new TooManyTagsException({
817
- $metadata: deserializeMetadata(parsedOutput),
818
- ...contents,
819
- });
820
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
821
- };
822
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
823
- const contents = smithyClient.map({});
824
- const data = parsedOutput.body;
825
- const doc = smithyClient.take(data, {
826
- Message: smithyClient.expectString,
827
- });
828
- Object.assign(contents, doc);
829
- const exception = new ValidationException({
830
- $metadata: deserializeMetadata(parsedOutput),
831
- ...contents,
832
- });
833
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
834
- };
835
- const de_SimulationList = (output, context) => {
836
- const retVal = (output || [])
837
- .filter((e) => e != null)
838
- .map((entry) => {
839
- return de_SimulationMetadata(entry);
840
- });
841
- return retVal;
842
- };
843
- const de_SimulationMetadata = (output, context) => {
844
- return smithyClient.take(output, {
845
- Arn: smithyClient.expectString,
846
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
847
- Name: smithyClient.expectString,
848
- Status: smithyClient.expectString,
849
- TargetStatus: smithyClient.expectString,
850
- });
851
- };
852
- const deserializeMetadata = (output) => ({
853
- httpStatusCode: output.statusCode,
854
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
855
- extendedRequestId: output.headers["x-amz-id-2"],
856
- cfId: output.headers["x-amz-cf-id"],
857
- });
266
+
858
267
  const _A = "App";
859
- const _D = "Domain";
268
+ const _ADE = "AccessDeniedException";
269
+ const _APM = "AppPortMappings";
270
+ const _Ac = "Actual";
271
+ const _Ad = "Address";
272
+ const _Ap = "Apps";
273
+ const _Ar = "Arn";
274
+ const _BN = "BucketName";
275
+ const _C = "Clocks";
276
+ const _CE = "ConflictException";
277
+ const _CS = "CreateSnapshot";
278
+ const _CSI = "CreateSnapshotInput";
279
+ const _CSO = "CreateSnapshotOutput";
280
+ const _CT = "ClientToken";
281
+ const _CTr = "CreationTime";
282
+ const _CWLLG = "CloudWatchLogsLogGroup";
283
+ const _D = "Destination";
284
+ const _DA = "DeleteApp";
285
+ const _DAI = "DeleteAppInput";
286
+ const _DAIe = "DescribeAppInput";
287
+ const _DAO = "DeleteAppOutput";
288
+ const _DAOe = "DescribeAppOutput";
289
+ const _DAe = "DescribeApp";
290
+ const _DL = "DomainList";
291
+ const _DS = "DeleteSimulation";
292
+ const _DSI = "DeleteSimulationInput";
293
+ const _DSIe = "DescribeSimulationInput";
294
+ const _DSO = "DeleteSimulationOutput";
295
+ const _DSOe = "DescribeSimulationOutput";
296
+ const _DSe = "DescribeSimulation";
297
+ const _De = "Description";
298
+ const _Dec = "Declared";
299
+ const _Des = "Destinations";
300
+ const _Do = "Domain";
301
+ const _Dom = "Domains";
302
+ const _EI = "EndpointInfo";
303
+ const _EIx = "ExecutionId";
304
+ const _IPM = "IngressPortMappings";
305
+ const _ISE = "InternalServerException";
306
+ const _L = "Lifecycle";
307
+ const _LA = "ListApps";
308
+ const _LAI = "ListAppsInput";
309
+ const _LAO = "ListAppsOutput";
310
+ const _LC = "LoggingConfiguration";
311
+ const _LCa = "LaunchCommands";
312
+ const _LD = "LogDestination";
313
+ const _LDo = "LogDestinations";
314
+ const _LGA = "LogGroupArn";
315
+ const _LO = "LaunchOverrides";
316
+ const _LS = "ListSimulations";
317
+ const _LSI = "ListSimulationsInput";
318
+ const _LSO = "ListSimulationsOutput";
319
+ const _LSS = "LiveSimulationState";
320
+ const _LTFR = "ListTagsForResource";
321
+ const _LTFRI = "ListTagsForResourceInput";
322
+ const _LTFRO = "ListTagsForResourceOutput";
323
+ const _M = "Message";
324
+ const _MD = "MaximumDuration";
860
325
  const _MR = "MaxResults";
326
+ const _N = "Name";
861
327
  const _NT = "NextToken";
328
+ const _OK = "ObjectKey";
329
+ const _OKP = "ObjectKeyPrefix";
330
+ const _RA = "RoleArn";
331
+ const _RAe = "ResourceArn";
332
+ const _RNFE = "ResourceNotFoundException";
862
333
  const _S = "Simulation";
334
+ const _SA = "StartApp";
335
+ const _SAEI = "SimulationAppEndpointInfo";
336
+ const _SAI = "StartAppInput";
337
+ const _SAIt = "StopAppInput";
338
+ const _SAL = "SimulationAppList";
339
+ const _SAM = "SimulationAppMetadata";
340
+ const _SAO = "StartAppOutput";
341
+ const _SAOt = "StopAppOutput";
342
+ const _SAPM = "SimulationAppPortMapping";
343
+ const _SAt = "StopApp";
344
+ const _SC = "SimulationClock";
345
+ const _SCI = "StartClockInput";
346
+ const _SCIt = "StopClockInput";
347
+ const _SCL = "SimulationClockList";
348
+ const _SCO = "StartClockOutput";
349
+ const _SCOt = "StopClockOutput";
350
+ const _SCt = "StartClock";
351
+ const _SCto = "StopClock";
352
+ const _SD = "S3Destination";
353
+ const _SE = "SchemaError";
354
+ const _SEt = "StartError";
355
+ const _SL = "S3Location";
356
+ const _SLi = "SimulationList";
357
+ const _SM = "SimulationMetadata";
358
+ const _SQEE = "ServiceQuotaExceededException";
359
+ const _SS = "StartSimulation";
360
+ const _SSI = "StartSimulationInput";
361
+ const _SSIt = "StopSimulationInput";
362
+ const _SSL = "SchemaS3Location";
363
+ const _SSLn = "SnapshotS3Location";
364
+ const _SSO = "StartSimulationOutput";
365
+ const _SSOt = "StopSimulationOutput";
366
+ const _SSt = "StopSimulation";
367
+ const _Si = "Simulations";
368
+ const _St = "Status";
369
+ const _T = "Tags";
863
370
  const _TK = "TagKeys";
371
+ const _TMTE = "TooManyTagsException";
372
+ const _TR = "TagResource";
373
+ const _TRI = "TagResourceInput";
374
+ const _TRO = "TagResourceOutput";
375
+ const _TS = "TargetStatus";
376
+ const _UR = "UntagResource";
377
+ const _URI = "UntagResourceInput";
378
+ const _URO = "UntagResourceOutput";
379
+ const _VE = "ValidationException";
864
380
  const _a = "app";
381
+ const _c = "client";
865
382
  const _d = "domain";
383
+ const _e = "error";
384
+ const _h = "http";
385
+ const _hE = "httpError";
386
+ const _hQ = "httpQuery";
866
387
  const _mR = "maxResults";
867
388
  const _nT = "nextToken";
868
389
  const _s = "simulation";
390
+ const _se = "server";
391
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.simspaceweaver";
869
392
  const _tK = "tagKeys";
393
+ const n0 = "com.amazonaws.simspaceweaver";
394
+ var ClientToken = [0, n0, _CT, 8, 0];
395
+ var AccessDeniedException = [
396
+ -3,
397
+ n0,
398
+ _ADE,
399
+ {
400
+ [_e]: _c,
401
+ [_hE]: 403,
402
+ },
403
+ [_M],
404
+ [0],
405
+ ];
406
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
407
+ var CloudWatchLogsLogGroup = [3, n0, _CWLLG, 0, [_LGA], [0]];
408
+ var ConflictException = [
409
+ -3,
410
+ n0,
411
+ _CE,
412
+ {
413
+ [_e]: _c,
414
+ [_hE]: 409,
415
+ },
416
+ [_M],
417
+ [0],
418
+ ];
419
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
420
+ var CreateSnapshotInput = [3, n0, _CSI, 0, [_S, _D], [0, () => S3Destination]];
421
+ var CreateSnapshotOutput = [3, n0, _CSO, 0, [], []];
422
+ var DeleteAppInput = [
423
+ 3,
424
+ n0,
425
+ _DAI,
426
+ 0,
427
+ [_S, _Do, _A],
428
+ [
429
+ [
430
+ 0,
431
+ {
432
+ [_hQ]: _s,
433
+ },
434
+ ],
435
+ [
436
+ 0,
437
+ {
438
+ [_hQ]: _d,
439
+ },
440
+ ],
441
+ [
442
+ 0,
443
+ {
444
+ [_hQ]: _a,
445
+ },
446
+ ],
447
+ ],
448
+ ];
449
+ var DeleteAppOutput = [3, n0, _DAO, 0, [], []];
450
+ var DeleteSimulationInput = [
451
+ 3,
452
+ n0,
453
+ _DSI,
454
+ 0,
455
+ [_S],
456
+ [
457
+ [
458
+ 0,
459
+ {
460
+ [_hQ]: _s,
461
+ },
462
+ ],
463
+ ],
464
+ ];
465
+ var DeleteSimulationOutput = [3, n0, _DSO, 0, [], []];
466
+ var DescribeAppInput = [
467
+ 3,
468
+ n0,
469
+ _DAIe,
470
+ 0,
471
+ [_S, _Do, _A],
472
+ [
473
+ [
474
+ 0,
475
+ {
476
+ [_hQ]: _s,
477
+ },
478
+ ],
479
+ [
480
+ 0,
481
+ {
482
+ [_hQ]: _d,
483
+ },
484
+ ],
485
+ [
486
+ 0,
487
+ {
488
+ [_hQ]: _a,
489
+ },
490
+ ],
491
+ ],
492
+ ];
493
+ var DescribeAppOutput = [
494
+ 3,
495
+ n0,
496
+ _DAOe,
497
+ 0,
498
+ [_N, _S, _Do, _St, _TS, _LO, _De, _EI],
499
+ [0, 0, 0, 0, 0, () => LaunchOverrides, 0, () => SimulationAppEndpointInfo],
500
+ ];
501
+ var DescribeSimulationInput = [
502
+ 3,
503
+ n0,
504
+ _DSIe,
505
+ 0,
506
+ [_S],
507
+ [
508
+ [
509
+ 0,
510
+ {
511
+ [_hQ]: _s,
512
+ },
513
+ ],
514
+ ],
515
+ ];
516
+ var DescribeSimulationOutput = [
517
+ 3,
518
+ n0,
519
+ _DSOe,
520
+ 0,
521
+ [_N, _EIx, _Ar, _De, _RA, _CTr, _St, _TS, _SSL, _SE, _LC, _LSS, _MD, _SSLn, _SEt],
522
+ [
523
+ 0,
524
+ 0,
525
+ 0,
526
+ 0,
527
+ 0,
528
+ 4,
529
+ 0,
530
+ 0,
531
+ () => S3Location,
532
+ 0,
533
+ () => LoggingConfiguration,
534
+ () => LiveSimulationState,
535
+ 0,
536
+ () => S3Location,
537
+ 0,
538
+ ],
539
+ ];
540
+ var Domain = [3, n0, _Do, 0, [_N, _L], [0, 0]];
541
+ var InternalServerException = [
542
+ -3,
543
+ n0,
544
+ _ISE,
545
+ {
546
+ [_e]: _se,
547
+ [_hE]: 500,
548
+ },
549
+ [_M],
550
+ [0],
551
+ ];
552
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
553
+ var LaunchOverrides = [3, n0, _LO, 0, [_LCa], [64 | 0]];
554
+ var ListAppsInput = [
555
+ 3,
556
+ n0,
557
+ _LAI,
558
+ 0,
559
+ [_S, _Do, _MR, _NT],
560
+ [
561
+ [
562
+ 0,
563
+ {
564
+ [_hQ]: _s,
565
+ },
566
+ ],
567
+ [
568
+ 0,
569
+ {
570
+ [_hQ]: _d,
571
+ },
572
+ ],
573
+ [
574
+ 1,
575
+ {
576
+ [_hQ]: _mR,
577
+ },
578
+ ],
579
+ [
580
+ 0,
581
+ {
582
+ [_hQ]: _nT,
583
+ },
584
+ ],
585
+ ],
586
+ ];
587
+ var ListAppsOutput = [3, n0, _LAO, 0, [_Ap, _NT], [() => SimulationAppList, 0]];
588
+ var ListSimulationsInput = [
589
+ 3,
590
+ n0,
591
+ _LSI,
592
+ 0,
593
+ [_MR, _NT],
594
+ [
595
+ [
596
+ 1,
597
+ {
598
+ [_hQ]: _mR,
599
+ },
600
+ ],
601
+ [
602
+ 0,
603
+ {
604
+ [_hQ]: _nT,
605
+ },
606
+ ],
607
+ ],
608
+ ];
609
+ var ListSimulationsOutput = [3, n0, _LSO, 0, [_Si, _NT], [() => SimulationList, 0]];
610
+ var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RAe], [[0, 1]]];
611
+ var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_T], [128 | 0]];
612
+ var LiveSimulationState = [
613
+ 3,
614
+ n0,
615
+ _LSS,
616
+ 0,
617
+ [_Dom, _C],
618
+ [() => DomainList, () => SimulationClockList],
619
+ ];
620
+ var LogDestination = [3, n0, _LD, 0, [_CWLLG], [() => CloudWatchLogsLogGroup]];
621
+ var LoggingConfiguration = [3, n0, _LC, 0, [_Des], [() => LogDestinations]];
622
+ var ResourceNotFoundException = [
623
+ -3,
624
+ n0,
625
+ _RNFE,
626
+ {
627
+ [_e]: _c,
628
+ [_hE]: 404,
629
+ },
630
+ [_M],
631
+ [0],
632
+ ];
633
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
634
+ var S3Destination = [3, n0, _SD, 0, [_BN, _OKP], [0, 0]];
635
+ var S3Location = [3, n0, _SL, 0, [_BN, _OK], [0, 0]];
636
+ var ServiceQuotaExceededException = [
637
+ -3,
638
+ n0,
639
+ _SQEE,
640
+ {
641
+ [_e]: _c,
642
+ [_hE]: 402,
643
+ },
644
+ [_M],
645
+ [0],
646
+ ];
647
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
648
+ var SimulationAppEndpointInfo = [
649
+ 3,
650
+ n0,
651
+ _SAEI,
652
+ 0,
653
+ [_Ad, _IPM],
654
+ [0, () => AppPortMappings],
655
+ ];
656
+ var SimulationAppMetadata = [3, n0, _SAM, 0, [_N, _S, _Do, _St, _TS], [0, 0, 0, 0, 0]];
657
+ var SimulationAppPortMapping = [3, n0, _SAPM, 0, [_Dec, _Ac], [1, 1]];
658
+ var SimulationClock = [3, n0, _SC, 0, [_St, _TS], [0, 0]];
659
+ var SimulationMetadata = [3, n0, _SM, 0, [_N, _Ar, _CTr, _St, _TS], [0, 0, 4, 0, 0]];
660
+ var StartAppInput = [
661
+ 3,
662
+ n0,
663
+ _SAI,
664
+ 0,
665
+ [_CT, _S, _Do, _N, _De, _LO],
666
+ [[() => ClientToken, 4], 0, 0, 0, 0, () => LaunchOverrides],
667
+ ];
668
+ var StartAppOutput = [3, n0, _SAO, 0, [_N, _Do, _S], [0, 0, 0]];
669
+ var StartClockInput = [3, n0, _SCI, 0, [_S], [0]];
670
+ var StartClockOutput = [3, n0, _SCO, 0, [], []];
671
+ var StartSimulationInput = [
672
+ 3,
673
+ n0,
674
+ _SSI,
675
+ 0,
676
+ [_CT, _N, _De, _RA, _SSL, _MD, _T, _SSLn],
677
+ [[() => ClientToken, 4], 0, 0, 0, () => S3Location, 0, 128 | 0, () => S3Location],
678
+ ];
679
+ var StartSimulationOutput = [3, n0, _SSO, 0, [_Ar, _EIx, _CTr], [0, 0, 4]];
680
+ var StopAppInput = [3, n0, _SAIt, 0, [_S, _Do, _A], [0, 0, 0]];
681
+ var StopAppOutput = [3, n0, _SAOt, 0, [], []];
682
+ var StopClockInput = [3, n0, _SCIt, 0, [_S], [0]];
683
+ var StopClockOutput = [3, n0, _SCOt, 0, [], []];
684
+ var StopSimulationInput = [3, n0, _SSIt, 0, [_S], [0]];
685
+ var StopSimulationOutput = [3, n0, _SSOt, 0, [], []];
686
+ var TagResourceInput = [3, n0, _TRI, 0, [_RAe, _T], [[0, 1], 128 | 0]];
687
+ var TagResourceOutput = [3, n0, _TRO, 0, [], []];
688
+ var TooManyTagsException = [
689
+ -3,
690
+ n0,
691
+ _TMTE,
692
+ {
693
+ [_e]: _c,
694
+ [_hE]: 400,
695
+ },
696
+ [_M],
697
+ [0],
698
+ ];
699
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
700
+ var UntagResourceInput = [
701
+ 3,
702
+ n0,
703
+ _URI,
704
+ 0,
705
+ [_RAe, _TK],
706
+ [
707
+ [0, 1],
708
+ [
709
+ 64 | 0,
710
+ {
711
+ [_hQ]: _tK,
712
+ },
713
+ ],
714
+ ],
715
+ ];
716
+ var UntagResourceOutput = [3, n0, _URO, 0, [], []];
717
+ var ValidationException = [
718
+ -3,
719
+ n0,
720
+ _VE,
721
+ {
722
+ [_e]: _c,
723
+ [_hE]: 400,
724
+ },
725
+ [_M],
726
+ [0],
727
+ ];
728
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
729
+ var SimSpaceWeaverServiceException = [-3, _sm, "SimSpaceWeaverServiceException", 0, [], []];
730
+ schema.TypeRegistry.for(_sm).registerError(SimSpaceWeaverServiceException, SimSpaceWeaverServiceException$1);
731
+ var AppPortMappings = [1, n0, _APM, 0, () => SimulationAppPortMapping];
732
+ var DomainList = [1, n0, _DL, 0, () => Domain];
733
+ var LogDestinations = [1, n0, _LDo, 0, () => LogDestination];
734
+ var SimulationAppList = [1, n0, _SAL, 0, () => SimulationAppMetadata];
735
+ var SimulationClockList = [1, n0, _SCL, 0, () => SimulationClock];
736
+ var SimulationList = [1, n0, _SLi, 0, () => SimulationMetadata];
737
+ var CreateSnapshot = [
738
+ 9,
739
+ n0,
740
+ _CS,
741
+ {
742
+ [_h]: ["POST", "/createsnapshot", 200],
743
+ },
744
+ () => CreateSnapshotInput,
745
+ () => CreateSnapshotOutput,
746
+ ];
747
+ var DeleteApp = [
748
+ 9,
749
+ n0,
750
+ _DA,
751
+ {
752
+ [_h]: ["DELETE", "/deleteapp", 200],
753
+ },
754
+ () => DeleteAppInput,
755
+ () => DeleteAppOutput,
756
+ ];
757
+ var DeleteSimulation = [
758
+ 9,
759
+ n0,
760
+ _DS,
761
+ {
762
+ [_h]: ["DELETE", "/deletesimulation", 200],
763
+ },
764
+ () => DeleteSimulationInput,
765
+ () => DeleteSimulationOutput,
766
+ ];
767
+ var DescribeApp = [
768
+ 9,
769
+ n0,
770
+ _DAe,
771
+ {
772
+ [_h]: ["GET", "/describeapp", 200],
773
+ },
774
+ () => DescribeAppInput,
775
+ () => DescribeAppOutput,
776
+ ];
777
+ var DescribeSimulation = [
778
+ 9,
779
+ n0,
780
+ _DSe,
781
+ {
782
+ [_h]: ["GET", "/describesimulation", 200],
783
+ },
784
+ () => DescribeSimulationInput,
785
+ () => DescribeSimulationOutput,
786
+ ];
787
+ var ListApps = [
788
+ 9,
789
+ n0,
790
+ _LA,
791
+ {
792
+ [_h]: ["GET", "/listapps", 200],
793
+ },
794
+ () => ListAppsInput,
795
+ () => ListAppsOutput,
796
+ ];
797
+ var ListSimulations = [
798
+ 9,
799
+ n0,
800
+ _LS,
801
+ {
802
+ [_h]: ["GET", "/listsimulations", 200],
803
+ },
804
+ () => ListSimulationsInput,
805
+ () => ListSimulationsOutput,
806
+ ];
807
+ var ListTagsForResource = [
808
+ 9,
809
+ n0,
810
+ _LTFR,
811
+ {
812
+ [_h]: ["GET", "/tags/{ResourceArn}", 200],
813
+ },
814
+ () => ListTagsForResourceInput,
815
+ () => ListTagsForResourceOutput,
816
+ ];
817
+ var StartApp = [
818
+ 9,
819
+ n0,
820
+ _SA,
821
+ {
822
+ [_h]: ["POST", "/startapp", 200],
823
+ },
824
+ () => StartAppInput,
825
+ () => StartAppOutput,
826
+ ];
827
+ var StartClock = [
828
+ 9,
829
+ n0,
830
+ _SCt,
831
+ {
832
+ [_h]: ["POST", "/startclock", 200],
833
+ },
834
+ () => StartClockInput,
835
+ () => StartClockOutput,
836
+ ];
837
+ var StartSimulation = [
838
+ 9,
839
+ n0,
840
+ _SS,
841
+ {
842
+ [_h]: ["POST", "/startsimulation", 200],
843
+ },
844
+ () => StartSimulationInput,
845
+ () => StartSimulationOutput,
846
+ ];
847
+ var StopApp = [
848
+ 9,
849
+ n0,
850
+ _SAt,
851
+ {
852
+ [_h]: ["POST", "/stopapp", 200],
853
+ },
854
+ () => StopAppInput,
855
+ () => StopAppOutput,
856
+ ];
857
+ var StopClock = [
858
+ 9,
859
+ n0,
860
+ _SCto,
861
+ {
862
+ [_h]: ["POST", "/stopclock", 200],
863
+ },
864
+ () => StopClockInput,
865
+ () => StopClockOutput,
866
+ ];
867
+ var StopSimulation = [
868
+ 9,
869
+ n0,
870
+ _SSt,
871
+ {
872
+ [_h]: ["POST", "/stopsimulation", 200],
873
+ },
874
+ () => StopSimulationInput,
875
+ () => StopSimulationOutput,
876
+ ];
877
+ var TagResource = [
878
+ 9,
879
+ n0,
880
+ _TR,
881
+ {
882
+ [_h]: ["POST", "/tags/{ResourceArn}", 200],
883
+ },
884
+ () => TagResourceInput,
885
+ () => TagResourceOutput,
886
+ ];
887
+ var UntagResource = [
888
+ 9,
889
+ n0,
890
+ _UR,
891
+ {
892
+ [_h]: ["DELETE", "/tags/{ResourceArn}", 200],
893
+ },
894
+ () => UntagResourceInput,
895
+ () => UntagResourceOutput,
896
+ ];
870
897
 
871
898
  class CreateSnapshotCommand extends smithyClient.Command
872
899
  .classBuilder()
873
900
  .ep(commonParams)
874
901
  .m(function (Command, cs, config, o) {
875
- return [
876
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
877
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
878
- ];
902
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
879
903
  })
880
904
  .s("SimSpaceWeaver", "CreateSnapshot", {})
881
905
  .n("SimSpaceWeaverClient", "CreateSnapshotCommand")
882
- .f(void 0, void 0)
883
- .ser(se_CreateSnapshotCommand)
884
- .de(de_CreateSnapshotCommand)
906
+ .sc(CreateSnapshot)
885
907
  .build() {
886
908
  }
887
909
 
@@ -889,16 +911,11 @@ class DeleteAppCommand extends smithyClient.Command
889
911
  .classBuilder()
890
912
  .ep(commonParams)
891
913
  .m(function (Command, cs, config, o) {
892
- return [
893
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
894
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
895
- ];
914
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
896
915
  })
897
916
  .s("SimSpaceWeaver", "DeleteApp", {})
898
917
  .n("SimSpaceWeaverClient", "DeleteAppCommand")
899
- .f(void 0, void 0)
900
- .ser(se_DeleteAppCommand)
901
- .de(de_DeleteAppCommand)
918
+ .sc(DeleteApp)
902
919
  .build() {
903
920
  }
904
921
 
@@ -906,16 +923,11 @@ class DeleteSimulationCommand extends smithyClient.Command
906
923
  .classBuilder()
907
924
  .ep(commonParams)
908
925
  .m(function (Command, cs, config, o) {
909
- return [
910
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
911
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
912
- ];
926
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
913
927
  })
914
928
  .s("SimSpaceWeaver", "DeleteSimulation", {})
915
929
  .n("SimSpaceWeaverClient", "DeleteSimulationCommand")
916
- .f(void 0, void 0)
917
- .ser(se_DeleteSimulationCommand)
918
- .de(de_DeleteSimulationCommand)
930
+ .sc(DeleteSimulation)
919
931
  .build() {
920
932
  }
921
933
 
@@ -923,16 +935,11 @@ class DescribeAppCommand extends smithyClient.Command
923
935
  .classBuilder()
924
936
  .ep(commonParams)
925
937
  .m(function (Command, cs, config, o) {
926
- return [
927
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
928
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
929
- ];
938
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
930
939
  })
931
940
  .s("SimSpaceWeaver", "DescribeApp", {})
932
941
  .n("SimSpaceWeaverClient", "DescribeAppCommand")
933
- .f(void 0, void 0)
934
- .ser(se_DescribeAppCommand)
935
- .de(de_DescribeAppCommand)
942
+ .sc(DescribeApp)
936
943
  .build() {
937
944
  }
938
945
 
@@ -940,16 +947,11 @@ class DescribeSimulationCommand extends smithyClient.Command
940
947
  .classBuilder()
941
948
  .ep(commonParams)
942
949
  .m(function (Command, cs, config, o) {
943
- return [
944
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
945
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
946
- ];
950
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
947
951
  })
948
952
  .s("SimSpaceWeaver", "DescribeSimulation", {})
949
953
  .n("SimSpaceWeaverClient", "DescribeSimulationCommand")
950
- .f(void 0, void 0)
951
- .ser(se_DescribeSimulationCommand)
952
- .de(de_DescribeSimulationCommand)
954
+ .sc(DescribeSimulation)
953
955
  .build() {
954
956
  }
955
957
 
@@ -957,16 +959,11 @@ class ListAppsCommand extends smithyClient.Command
957
959
  .classBuilder()
958
960
  .ep(commonParams)
959
961
  .m(function (Command, cs, config, o) {
960
- return [
961
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
962
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
963
- ];
962
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
964
963
  })
965
964
  .s("SimSpaceWeaver", "ListApps", {})
966
965
  .n("SimSpaceWeaverClient", "ListAppsCommand")
967
- .f(void 0, void 0)
968
- .ser(se_ListAppsCommand)
969
- .de(de_ListAppsCommand)
966
+ .sc(ListApps)
970
967
  .build() {
971
968
  }
972
969
 
@@ -974,16 +971,11 @@ class ListSimulationsCommand extends smithyClient.Command
974
971
  .classBuilder()
975
972
  .ep(commonParams)
976
973
  .m(function (Command, cs, config, o) {
977
- return [
978
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
979
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
980
- ];
974
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
981
975
  })
982
976
  .s("SimSpaceWeaver", "ListSimulations", {})
983
977
  .n("SimSpaceWeaverClient", "ListSimulationsCommand")
984
- .f(void 0, void 0)
985
- .ser(se_ListSimulationsCommand)
986
- .de(de_ListSimulationsCommand)
978
+ .sc(ListSimulations)
987
979
  .build() {
988
980
  }
989
981
 
@@ -991,16 +983,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
991
983
  .classBuilder()
992
984
  .ep(commonParams)
993
985
  .m(function (Command, cs, config, o) {
994
- return [
995
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
996
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
997
- ];
986
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
998
987
  })
999
988
  .s("SimSpaceWeaver", "ListTagsForResource", {})
1000
989
  .n("SimSpaceWeaverClient", "ListTagsForResourceCommand")
1001
- .f(void 0, void 0)
1002
- .ser(se_ListTagsForResourceCommand)
1003
- .de(de_ListTagsForResourceCommand)
990
+ .sc(ListTagsForResource)
1004
991
  .build() {
1005
992
  }
1006
993
 
@@ -1008,16 +995,11 @@ class StartAppCommand extends smithyClient.Command
1008
995
  .classBuilder()
1009
996
  .ep(commonParams)
1010
997
  .m(function (Command, cs, config, o) {
1011
- return [
1012
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1013
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1014
- ];
998
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1015
999
  })
1016
1000
  .s("SimSpaceWeaver", "StartApp", {})
1017
1001
  .n("SimSpaceWeaverClient", "StartAppCommand")
1018
- .f(StartAppInputFilterSensitiveLog, void 0)
1019
- .ser(se_StartAppCommand)
1020
- .de(de_StartAppCommand)
1002
+ .sc(StartApp)
1021
1003
  .build() {
1022
1004
  }
1023
1005
 
@@ -1025,16 +1007,11 @@ class StartClockCommand extends smithyClient.Command
1025
1007
  .classBuilder()
1026
1008
  .ep(commonParams)
1027
1009
  .m(function (Command, cs, config, o) {
1028
- return [
1029
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1030
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1031
- ];
1010
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1032
1011
  })
1033
1012
  .s("SimSpaceWeaver", "StartClock", {})
1034
1013
  .n("SimSpaceWeaverClient", "StartClockCommand")
1035
- .f(void 0, void 0)
1036
- .ser(se_StartClockCommand)
1037
- .de(de_StartClockCommand)
1014
+ .sc(StartClock)
1038
1015
  .build() {
1039
1016
  }
1040
1017
 
@@ -1042,16 +1019,11 @@ class StartSimulationCommand extends smithyClient.Command
1042
1019
  .classBuilder()
1043
1020
  .ep(commonParams)
1044
1021
  .m(function (Command, cs, config, o) {
1045
- return [
1046
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1047
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1048
- ];
1022
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1049
1023
  })
1050
1024
  .s("SimSpaceWeaver", "StartSimulation", {})
1051
1025
  .n("SimSpaceWeaverClient", "StartSimulationCommand")
1052
- .f(StartSimulationInputFilterSensitiveLog, void 0)
1053
- .ser(se_StartSimulationCommand)
1054
- .de(de_StartSimulationCommand)
1026
+ .sc(StartSimulation)
1055
1027
  .build() {
1056
1028
  }
1057
1029
 
@@ -1059,16 +1031,11 @@ class StopAppCommand extends smithyClient.Command
1059
1031
  .classBuilder()
1060
1032
  .ep(commonParams)
1061
1033
  .m(function (Command, cs, config, o) {
1062
- return [
1063
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1064
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1065
- ];
1034
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1066
1035
  })
1067
1036
  .s("SimSpaceWeaver", "StopApp", {})
1068
1037
  .n("SimSpaceWeaverClient", "StopAppCommand")
1069
- .f(void 0, void 0)
1070
- .ser(se_StopAppCommand)
1071
- .de(de_StopAppCommand)
1038
+ .sc(StopApp)
1072
1039
  .build() {
1073
1040
  }
1074
1041
 
@@ -1076,16 +1043,11 @@ class StopClockCommand extends smithyClient.Command
1076
1043
  .classBuilder()
1077
1044
  .ep(commonParams)
1078
1045
  .m(function (Command, cs, config, o) {
1079
- return [
1080
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1081
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1082
- ];
1046
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1083
1047
  })
1084
1048
  .s("SimSpaceWeaver", "StopClock", {})
1085
1049
  .n("SimSpaceWeaverClient", "StopClockCommand")
1086
- .f(void 0, void 0)
1087
- .ser(se_StopClockCommand)
1088
- .de(de_StopClockCommand)
1050
+ .sc(StopClock)
1089
1051
  .build() {
1090
1052
  }
1091
1053
 
@@ -1093,16 +1055,11 @@ class StopSimulationCommand extends smithyClient.Command
1093
1055
  .classBuilder()
1094
1056
  .ep(commonParams)
1095
1057
  .m(function (Command, cs, config, o) {
1096
- return [
1097
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1098
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1099
- ];
1058
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1100
1059
  })
1101
1060
  .s("SimSpaceWeaver", "StopSimulation", {})
1102
1061
  .n("SimSpaceWeaverClient", "StopSimulationCommand")
1103
- .f(void 0, void 0)
1104
- .ser(se_StopSimulationCommand)
1105
- .de(de_StopSimulationCommand)
1062
+ .sc(StopSimulation)
1106
1063
  .build() {
1107
1064
  }
1108
1065
 
@@ -1110,16 +1067,11 @@ class TagResourceCommand extends smithyClient.Command
1110
1067
  .classBuilder()
1111
1068
  .ep(commonParams)
1112
1069
  .m(function (Command, cs, config, o) {
1113
- return [
1114
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1115
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1116
- ];
1070
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1117
1071
  })
1118
1072
  .s("SimSpaceWeaver", "TagResource", {})
1119
1073
  .n("SimSpaceWeaverClient", "TagResourceCommand")
1120
- .f(void 0, void 0)
1121
- .ser(se_TagResourceCommand)
1122
- .de(de_TagResourceCommand)
1074
+ .sc(TagResource)
1123
1075
  .build() {
1124
1076
  }
1125
1077
 
@@ -1127,16 +1079,11 @@ class UntagResourceCommand extends smithyClient.Command
1127
1079
  .classBuilder()
1128
1080
  .ep(commonParams)
1129
1081
  .m(function (Command, cs, config, o) {
1130
- return [
1131
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1132
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1133
- ];
1082
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1134
1083
  })
1135
1084
  .s("SimSpaceWeaver", "UntagResource", {})
1136
1085
  .n("SimSpaceWeaverClient", "UntagResourceCommand")
1137
- .f(void 0, void 0)
1138
- .ser(se_UntagResourceCommand)
1139
- .de(de_UntagResourceCommand)
1086
+ .sc(UntagResource)
1140
1087
  .build() {
1141
1088
  }
1142
1089
 
@@ -1174,40 +1121,38 @@ Object.defineProperty(exports, "__Client", {
1174
1121
  enumerable: true,
1175
1122
  get: function () { return smithyClient.Client; }
1176
1123
  });
1177
- exports.AccessDeniedException = AccessDeniedException;
1124
+ exports.AccessDeniedException = AccessDeniedException$1;
1178
1125
  exports.ClockStatus = ClockStatus;
1179
1126
  exports.ClockTargetStatus = ClockTargetStatus;
1180
- exports.ConflictException = ConflictException;
1127
+ exports.ConflictException = ConflictException$1;
1181
1128
  exports.CreateSnapshotCommand = CreateSnapshotCommand;
1182
1129
  exports.DeleteAppCommand = DeleteAppCommand;
1183
1130
  exports.DeleteSimulationCommand = DeleteSimulationCommand;
1184
1131
  exports.DescribeAppCommand = DescribeAppCommand;
1185
1132
  exports.DescribeSimulationCommand = DescribeSimulationCommand;
1186
- exports.InternalServerException = InternalServerException;
1133
+ exports.InternalServerException = InternalServerException$1;
1187
1134
  exports.LifecycleManagementStrategy = LifecycleManagementStrategy;
1188
1135
  exports.ListAppsCommand = ListAppsCommand;
1189
1136
  exports.ListSimulationsCommand = ListSimulationsCommand;
1190
1137
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1191
- exports.ResourceNotFoundException = ResourceNotFoundException;
1192
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1138
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1139
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1193
1140
  exports.SimSpaceWeaver = SimSpaceWeaver;
1194
1141
  exports.SimSpaceWeaverClient = SimSpaceWeaverClient;
1195
- exports.SimSpaceWeaverServiceException = SimSpaceWeaverServiceException;
1142
+ exports.SimSpaceWeaverServiceException = SimSpaceWeaverServiceException$1;
1196
1143
  exports.SimulationAppStatus = SimulationAppStatus;
1197
1144
  exports.SimulationAppTargetStatus = SimulationAppTargetStatus;
1198
1145
  exports.SimulationStatus = SimulationStatus;
1199
1146
  exports.SimulationTargetStatus = SimulationTargetStatus;
1200
1147
  exports.StartAppCommand = StartAppCommand;
1201
- exports.StartAppInputFilterSensitiveLog = StartAppInputFilterSensitiveLog;
1202
1148
  exports.StartClockCommand = StartClockCommand;
1203
1149
  exports.StartSimulationCommand = StartSimulationCommand;
1204
- exports.StartSimulationInputFilterSensitiveLog = StartSimulationInputFilterSensitiveLog;
1205
1150
  exports.StopAppCommand = StopAppCommand;
1206
1151
  exports.StopClockCommand = StopClockCommand;
1207
1152
  exports.StopSimulationCommand = StopSimulationCommand;
1208
1153
  exports.TagResourceCommand = TagResourceCommand;
1209
- exports.TooManyTagsException = TooManyTagsException;
1154
+ exports.TooManyTagsException = TooManyTagsException$1;
1210
1155
  exports.UntagResourceCommand = UntagResourceCommand;
1211
- exports.ValidationException = ValidationException;
1156
+ exports.ValidationException = ValidationException$1;
1212
1157
  exports.paginateListApps = paginateListApps;
1213
1158
  exports.paginateListSimulations = paginateListSimulations;