@aws-sdk/client-gameliftstreams 3.948.0 → 3.953.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 (44) hide show
  1. package/dist-cjs/index.js +295 -203
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AddStreamGroupLocationsCommand.js +2 -2
  4. package/dist-es/commands/AssociateApplicationsCommand.js +2 -2
  5. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  6. package/dist-es/commands/CreateStreamGroupCommand.js +2 -2
  7. package/dist-es/commands/CreateStreamSessionConnectionCommand.js +2 -2
  8. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  9. package/dist-es/commands/DeleteStreamGroupCommand.js +2 -2
  10. package/dist-es/commands/DisassociateApplicationsCommand.js +2 -2
  11. package/dist-es/commands/ExportStreamSessionFilesCommand.js +2 -2
  12. package/dist-es/commands/GetApplicationCommand.js +2 -2
  13. package/dist-es/commands/GetStreamGroupCommand.js +2 -2
  14. package/dist-es/commands/GetStreamSessionCommand.js +2 -2
  15. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  16. package/dist-es/commands/ListStreamGroupsCommand.js +2 -2
  17. package/dist-es/commands/ListStreamSessionsByAccountCommand.js +2 -2
  18. package/dist-es/commands/ListStreamSessionsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-es/commands/RemoveStreamGroupLocationsCommand.js +2 -2
  21. package/dist-es/commands/StartStreamSessionCommand.js +2 -2
  22. package/dist-es/commands/TagResourceCommand.js +2 -2
  23. package/dist-es/commands/TerminateStreamSessionCommand.js +2 -2
  24. package/dist-es/commands/UntagResourceCommand.js +2 -2
  25. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  26. package/dist-es/commands/UpdateStreamGroupCommand.js +2 -2
  27. package/dist-es/index.js +1 -0
  28. package/dist-es/runtimeConfig.shared.js +6 -1
  29. package/dist-es/schemas/schemas_0.js +177 -170
  30. package/dist-types/GameLiftStreamsClient.d.ts +1 -10
  31. package/dist-types/index.d.ts +1 -0
  32. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  33. package/dist-types/runtimeConfig.d.ts +6 -2
  34. package/dist-types/runtimeConfig.native.d.ts +6 -2
  35. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  36. package/dist-types/schemas/schemas_0.d.ts +86 -104
  37. package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +0 -4
  38. package/dist-types/ts3.4/index.d.ts +1 -0
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  43. package/dist-types/ts3.4/schemas/schemas_0.d.ts +85 -105
  44. package/package.json +35 -35
package/dist-cjs/index.js CHANGED
@@ -109,14 +109,14 @@ class GameLiftStreamsClient extends smithyClient.Client {
109
109
  }
110
110
  }
111
111
 
112
- let GameLiftStreamsServiceException$1 = class GameLiftStreamsServiceException extends smithyClient.ServiceException {
112
+ class GameLiftStreamsServiceException extends smithyClient.ServiceException {
113
113
  constructor(options) {
114
114
  super(options);
115
115
  Object.setPrototypeOf(this, GameLiftStreamsServiceException.prototype);
116
116
  }
117
- };
117
+ }
118
118
 
119
- let AccessDeniedException$1 = class AccessDeniedException extends GameLiftStreamsServiceException$1 {
119
+ class AccessDeniedException extends GameLiftStreamsServiceException {
120
120
  name = "AccessDeniedException";
121
121
  $fault = "client";
122
122
  Message;
@@ -129,8 +129,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends GameLiftStream
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  this.Message = opts.Message;
131
131
  }
132
- };
133
- let InternalServerException$1 = class InternalServerException extends GameLiftStreamsServiceException$1 {
132
+ }
133
+ class InternalServerException extends GameLiftStreamsServiceException {
134
134
  name = "InternalServerException";
135
135
  $fault = "server";
136
136
  $retryable = {};
@@ -144,8 +144,8 @@ let InternalServerException$1 = class InternalServerException extends GameLiftSt
144
144
  Object.setPrototypeOf(this, InternalServerException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends GameLiftStreamsServiceException$1 {
147
+ }
148
+ class ResourceNotFoundException extends GameLiftStreamsServiceException {
149
149
  name = "ResourceNotFoundException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends GameLi
158
158
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends GameLiftStreamsServiceException$1 {
161
+ }
162
+ class ServiceQuotaExceededException extends GameLiftStreamsServiceException {
163
163
  name = "ServiceQuotaExceededException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
172
172
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let ThrottlingException$1 = class ThrottlingException extends GameLiftStreamsServiceException$1 {
175
+ }
176
+ class ThrottlingException extends GameLiftStreamsServiceException {
177
177
  name = "ThrottlingException";
178
178
  $fault = "client";
179
179
  $retryable = {
@@ -189,8 +189,8 @@ let ThrottlingException$1 = class ThrottlingException extends GameLiftStreamsSer
189
189
  Object.setPrototypeOf(this, ThrottlingException.prototype);
190
190
  this.Message = opts.Message;
191
191
  }
192
- };
193
- let ValidationException$1 = class ValidationException extends GameLiftStreamsServiceException$1 {
192
+ }
193
+ class ValidationException extends GameLiftStreamsServiceException {
194
194
  name = "ValidationException";
195
195
  $fault = "client";
196
196
  Message;
@@ -203,8 +203,8 @@ let ValidationException$1 = class ValidationException extends GameLiftStreamsSer
203
203
  Object.setPrototypeOf(this, ValidationException.prototype);
204
204
  this.Message = opts.Message;
205
205
  }
206
- };
207
- let ConflictException$1 = class ConflictException extends GameLiftStreamsServiceException$1 {
206
+ }
207
+ class ConflictException extends GameLiftStreamsServiceException {
208
208
  name = "ConflictException";
209
209
  $fault = "client";
210
210
  Message;
@@ -217,7 +217,7 @@ let ConflictException$1 = class ConflictException extends GameLiftStreamsService
217
217
  Object.setPrototypeOf(this, ConflictException.prototype);
218
218
  this.Message = opts.Message;
219
219
  }
220
- };
220
+ }
221
221
 
222
222
  const _A = "Arn";
223
223
  const _AA = "ApplicationArns";
@@ -374,9 +374,9 @@ const _tK = "tagKeys";
374
374
  const n0 = "com.amazonaws.gameliftstreams";
375
375
  var SignalRequest = [0, n0, _SR, 8, 0];
376
376
  var SignalResponse = [0, n0, _SRi, 8, 0];
377
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
378
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
379
- var AddStreamGroupLocationsInput = [
377
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
378
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
379
+ var AddStreamGroupLocationsInput$ = [
380
380
  3,
381
381
  n0,
382
382
  _ASGLI,
@@ -384,7 +384,7 @@ var AddStreamGroupLocationsInput = [
384
384
  [_I, _LC],
385
385
  [[0, 1], () => LocationConfigurations],
386
386
  ];
387
- var AddStreamGroupLocationsOutput = [
387
+ var AddStreamGroupLocationsOutput$ = [
388
388
  3,
389
389
  n0,
390
390
  _ASGLO,
@@ -392,35 +392,35 @@ var AddStreamGroupLocationsOutput = [
392
392
  [_I, _L],
393
393
  [0, () => LocationStates],
394
394
  ];
395
- var ApplicationSummary = [
395
+ var ApplicationSummary$ = [
396
396
  3,
397
397
  n0,
398
398
  _AS,
399
399
  0,
400
400
  [_A, _Id, _D, _S, _CA, _LUA, _RE],
401
- [0, 0, 0, 0, 4, 4, () => RuntimeEnvironment],
401
+ [0, 0, 0, 0, 4, 4, () => RuntimeEnvironment$],
402
402
  ];
403
- var AssociateApplicationsInput = [3, n0, _AAI, 0, [_I, _AI], [[0, 1], 64 | 0]];
404
- var AssociateApplicationsOutput = [3, n0, _AAO, 0, [_A, _AA], [0, 64 | 0]];
405
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
406
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
407
- var CreateApplicationInput = [
403
+ var AssociateApplicationsInput$ = [3, n0, _AAI, 0, [_I, _AI], [[0, 1], 64 | 0]];
404
+ var AssociateApplicationsOutput$ = [3, n0, _AAO, 0, [_A, _AA], [0, 64 | 0]];
405
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
406
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
407
+ var CreateApplicationInput$ = [
408
408
  3,
409
409
  n0,
410
410
  _CAI,
411
411
  0,
412
412
  [_D, _RE, _EP, _ASU, _ALP, _ALOU, _T, _CT],
413
- [0, () => RuntimeEnvironment, 0, 0, 64 | 0, 0, 128 | 0, [0, 4]],
413
+ [0, () => RuntimeEnvironment$, 0, 0, 64 | 0, 0, 128 | 0, [0, 4]],
414
414
  ];
415
- var CreateApplicationOutput = [
415
+ var CreateApplicationOutput$ = [
416
416
  3,
417
417
  n0,
418
418
  _CAO,
419
419
  0,
420
420
  [_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
421
- [0, 0, () => RuntimeEnvironment, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
421
+ [0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
422
422
  ];
423
- var CreateStreamGroupInput = [
423
+ var CreateStreamGroupInput$ = [
424
424
  3,
425
425
  n0,
426
426
  _CSGI,
@@ -428,15 +428,15 @@ var CreateStreamGroupInput = [
428
428
  [_D, _SC, _DAI, _LC, _T, _CT],
429
429
  [0, 0, 0, () => LocationConfigurations, 128 | 0, [0, 4]],
430
430
  ];
431
- var CreateStreamGroupOutput = [
431
+ var CreateStreamGroupOutput$ = [
432
432
  3,
433
433
  n0,
434
434
  _CSGO,
435
435
  0,
436
436
  [_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
437
- [0, 0, () => DefaultApplication, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
437
+ [0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
438
438
  ];
439
- var CreateStreamSessionConnectionInput = [
439
+ var CreateStreamSessionConnectionInput$ = [
440
440
  3,
441
441
  n0,
442
442
  _CSSCI,
@@ -449,7 +449,7 @@ var CreateStreamSessionConnectionInput = [
449
449
  [() => SignalRequest, 0],
450
450
  ],
451
451
  ];
452
- var CreateStreamSessionConnectionOutput = [
452
+ var CreateStreamSessionConnectionOutput$ = [
453
453
  3,
454
454
  n0,
455
455
  _CSSCO,
@@ -457,13 +457,13 @@ var CreateStreamSessionConnectionOutput = [
457
457
  [_SRi],
458
458
  [[() => SignalResponse, 0]],
459
459
  ];
460
- var DefaultApplication = [3, n0, _DA, 0, [_Id, _A], [0, 0]];
461
- var DeleteApplicationInput = [3, n0, _DAIe, 0, [_I], [[0, 1]]];
462
- var DeleteStreamGroupInput = [3, n0, _DSGI, 0, [_I], [[0, 1]]];
463
- var DisassociateApplicationsInput = [3, n0, _DAIi, 0, [_I, _AI], [[0, 1], 64 | 0]];
464
- var DisassociateApplicationsOutput = [3, n0, _DAO, 0, [_A, _AA], [0, 64 | 0]];
465
- var ExportFilesMetadata = [3, n0, _EFM, 0, [_S, _SRt, _OU], [0, 0, 0]];
466
- var ExportStreamSessionFilesInput = [
460
+ var DefaultApplication$ = [3, n0, _DA, 0, [_Id, _A], [0, 0]];
461
+ var DeleteApplicationInput$ = [3, n0, _DAIe, 0, [_I], [[0, 1]]];
462
+ var DeleteStreamGroupInput$ = [3, n0, _DSGI, 0, [_I], [[0, 1]]];
463
+ var DisassociateApplicationsInput$ = [3, n0, _DAIi, 0, [_I, _AI], [[0, 1], 64 | 0]];
464
+ var DisassociateApplicationsOutput$ = [3, n0, _DAO, 0, [_A, _AA], [0, 64 | 0]];
465
+ var ExportFilesMetadata$ = [3, n0, _EFM, 0, [_S, _SRt, _OU], [0, 0, 0]];
466
+ var ExportStreamSessionFilesInput$ = [
467
467
  3,
468
468
  n0,
469
469
  _ESSFI,
@@ -471,26 +471,26 @@ var ExportStreamSessionFilesInput = [
471
471
  [_I, _SSI, _OU],
472
472
  [[0, 1], [0, 1], 0],
473
473
  ];
474
- var ExportStreamSessionFilesOutput = [3, n0, _ESSFO, 0, [], []];
475
- var GetApplicationInput = [3, n0, _GAI, 0, [_I], [[0, 1]]];
476
- var GetApplicationOutput = [
474
+ var ExportStreamSessionFilesOutput$ = [3, n0, _ESSFO, 0, [], []];
475
+ var GetApplicationInput$ = [3, n0, _GAI, 0, [_I], [[0, 1]]];
476
+ var GetApplicationOutput$ = [
477
477
  3,
478
478
  n0,
479
479
  _GAO,
480
480
  0,
481
481
  [_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
482
- [0, 0, () => RuntimeEnvironment, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
482
+ [0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
483
483
  ];
484
- var GetStreamGroupInput = [3, n0, _GSGI, 0, [_I], [[0, 1]]];
485
- var GetStreamGroupOutput = [
484
+ var GetStreamGroupInput$ = [3, n0, _GSGI, 0, [_I], [[0, 1]]];
485
+ var GetStreamGroupOutput$ = [
486
486
  3,
487
487
  n0,
488
488
  _GSGO,
489
489
  0,
490
490
  [_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
491
- [0, 0, () => DefaultApplication, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
491
+ [0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
492
492
  ];
493
- var GetStreamSessionInput = [
493
+ var GetStreamSessionInput$ = [
494
494
  3,
495
495
  n0,
496
496
  _GSSI,
@@ -501,7 +501,7 @@ var GetStreamSessionInput = [
501
501
  [0, 1],
502
502
  ],
503
503
  ];
504
- var GetStreamSessionOutput = [
504
+ var GetStreamSessionOutput$ = [
505
505
  3,
506
506
  n0,
507
507
  _GSSO,
@@ -527,12 +527,12 @@ var GetStreamSessionOutput = [
527
527
  4,
528
528
  4,
529
529
  0,
530
- () => ExportFilesMetadata,
530
+ () => ExportFilesMetadata$,
531
531
  ],
532
532
  ];
533
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
534
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
535
- var ListApplicationsInput = [
533
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
534
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
535
+ var ListApplicationsInput$ = [
536
536
  3,
537
537
  n0,
538
538
  _LAI,
@@ -543,7 +543,7 @@ var ListApplicationsInput = [
543
543
  [1, { [_hQ]: _MR }],
544
544
  ],
545
545
  ];
546
- var ListApplicationsOutput = [
546
+ var ListApplicationsOutput$ = [
547
547
  3,
548
548
  n0,
549
549
  _LAO,
@@ -551,7 +551,7 @@ var ListApplicationsOutput = [
551
551
  [_It, _NT],
552
552
  [() => ApplicationSummaryList, 0],
553
553
  ];
554
- var ListStreamGroupsInput = [
554
+ var ListStreamGroupsInput$ = [
555
555
  3,
556
556
  n0,
557
557
  _LSGI,
@@ -562,7 +562,7 @@ var ListStreamGroupsInput = [
562
562
  [1, { [_hQ]: _MR }],
563
563
  ],
564
564
  ];
565
- var ListStreamGroupsOutput = [
565
+ var ListStreamGroupsOutput$ = [
566
566
  3,
567
567
  n0,
568
568
  _LSGO,
@@ -570,7 +570,7 @@ var ListStreamGroupsOutput = [
570
570
  [_It, _NT],
571
571
  [() => StreamGroupSummaryList, 0],
572
572
  ];
573
- var ListStreamSessionsByAccountInput = [
573
+ var ListStreamSessionsByAccountInput$ = [
574
574
  3,
575
575
  n0,
576
576
  _LSSBAI,
@@ -583,7 +583,7 @@ var ListStreamSessionsByAccountInput = [
583
583
  [1, { [_hQ]: _MR }],
584
584
  ],
585
585
  ];
586
- var ListStreamSessionsByAccountOutput = [
586
+ var ListStreamSessionsByAccountOutput$ = [
587
587
  3,
588
588
  n0,
589
589
  _LSSBAO,
@@ -591,7 +591,7 @@ var ListStreamSessionsByAccountOutput = [
591
591
  [_It, _NT],
592
592
  [() => StreamSessionSummaryList, 0],
593
593
  ];
594
- var ListStreamSessionsInput = [
594
+ var ListStreamSessionsInput$ = [
595
595
  3,
596
596
  n0,
597
597
  _LSSI,
@@ -605,7 +605,7 @@ var ListStreamSessionsInput = [
605
605
  [0, 1],
606
606
  ],
607
607
  ];
608
- var ListStreamSessionsOutput = [
608
+ var ListStreamSessionsOutput$ = [
609
609
  3,
610
610
  n0,
611
611
  _LSSO,
@@ -613,10 +613,10 @@ var ListStreamSessionsOutput = [
613
613
  [_It, _NT],
614
614
  [() => StreamSessionSummaryList, 0],
615
615
  ];
616
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
617
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
618
- var LocationConfiguration = [3, n0, _LCo, 0, [_LN, _AOC, _ODC], [0, 1, 1]];
619
- var LocationState = [
616
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
617
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
618
+ var LocationConfiguration$ = [3, n0, _LCo, 0, [_LN, _AOC, _ODC], [0, 1, 1]];
619
+ var LocationState$ = [
620
620
  3,
621
621
  n0,
622
622
  _LSo,
@@ -624,7 +624,7 @@ var LocationState = [
624
624
  [_LN, _S, _AOC, _ODC, _RC, _AC, _IC],
625
625
  [0, 0, 1, 1, 1, 1, 1],
626
626
  ];
627
- var RemoveStreamGroupLocationsInput = [
627
+ var RemoveStreamGroupLocationsInput$ = [
628
628
  3,
629
629
  n0,
630
630
  _RSGLI,
@@ -635,13 +635,13 @@ var RemoveStreamGroupLocationsInput = [
635
635
  [64 | 0, { [_hQ]: _l }],
636
636
  ],
637
637
  ];
638
- var ReplicationStatus = [3, n0, _RSe, 0, [_Lo, _S], [0, 0]];
639
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
640
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
641
- var RuntimeEnvironment = [3, n0, _RE, 0, [_Ty, _V], [0, 0]];
642
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
643
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
644
- var StartStreamSessionInput = [
638
+ var ReplicationStatus$ = [3, n0, _RSe, 0, [_Lo, _S], [0, 0]];
639
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
640
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
641
+ var RuntimeEnvironment$ = [3, n0, _RE, 0, [_Ty, _V], [0, 0]];
642
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
643
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
644
+ var StartStreamSessionInput$ = [
645
645
  3,
646
646
  n0,
647
647
  _SSSI,
@@ -649,7 +649,7 @@ var StartStreamSessionInput = [
649
649
  [_CT, _D, _I, _P, _SR, _AIp, _UI, _L, _CTS, _SLS, _ALA, _AEV],
650
650
  [[0, 4], 0, [0, 1], 0, [() => SignalRequest, 0], 0, 0, 64 | 0, 1, 1, 64 | 0, 128 | 0],
651
651
  ];
652
- var StartStreamSessionOutput = [
652
+ var StartStreamSessionOutput$ = [
653
653
  3,
654
654
  n0,
655
655
  _SSSO,
@@ -675,28 +675,28 @@ var StartStreamSessionOutput = [
675
675
  4,
676
676
  4,
677
677
  0,
678
- () => ExportFilesMetadata,
678
+ () => ExportFilesMetadata$,
679
679
  ],
680
680
  ];
681
- var StreamGroupSummary = [
681
+ var StreamGroupSummary$ = [
682
682
  3,
683
683
  n0,
684
684
  _SGS,
685
685
  0,
686
686
  [_A, _Id, _D, _DA, _SC, _S, _CA, _LUA, _EA],
687
- [0, 0, 0, () => DefaultApplication, 0, 0, 4, 4, 4],
687
+ [0, 0, 0, () => DefaultApplication$, 0, 0, 4, 4, 4],
688
688
  ];
689
- var StreamSessionSummary = [
689
+ var StreamSessionSummary$ = [
690
690
  3,
691
691
  n0,
692
692
  _SSS,
693
693
  0,
694
694
  [_A, _UI, _S, _P, _LUA, _CA, _AAp, _EFM, _Lo],
695
- [0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata, 0],
695
+ [0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, 0],
696
696
  ];
697
- var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _T], [[0, 1], 128 | 0]];
698
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
699
- var TerminateStreamSessionInput = [
697
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _T], [[0, 1], 128 | 0]];
698
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
699
+ var TerminateStreamSessionInput$ = [
700
700
  3,
701
701
  n0,
702
702
  _TSSI,
@@ -707,9 +707,9 @@ var TerminateStreamSessionInput = [
707
707
  [0, 1],
708
708
  ],
709
709
  ];
710
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
711
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
712
- var UntagResourceRequest = [
710
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
711
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
712
+ var UntagResourceRequest$ = [
713
713
  3,
714
714
  n0,
715
715
  _URR,
@@ -720,8 +720,8 @@ var UntagResourceRequest = [
720
720
  [64 | 0, { [_hQ]: _tK }],
721
721
  ],
722
722
  ];
723
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
724
- var UpdateApplicationInput = [
723
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
724
+ var UpdateApplicationInput$ = [
725
725
  3,
726
726
  n0,
727
727
  _UAI,
@@ -729,15 +729,15 @@ var UpdateApplicationInput = [
729
729
  [_I, _D, _ALP, _ALOU],
730
730
  [[0, 1], 0, 64 | 0, 0],
731
731
  ];
732
- var UpdateApplicationOutput = [
732
+ var UpdateApplicationOutput$ = [
733
733
  3,
734
734
  n0,
735
735
  _UAO,
736
736
  0,
737
737
  [_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
738
- [0, 0, () => RuntimeEnvironment, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
738
+ [0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
739
739
  ];
740
- var UpdateStreamGroupInput = [
740
+ var UpdateStreamGroupInput$ = [
741
741
  3,
742
742
  n0,
743
743
  _USGI,
@@ -745,216 +745,223 @@ var UpdateStreamGroupInput = [
745
745
  [_I, _LC, _D, _DAI],
746
746
  [[0, 1], () => LocationConfigurations, 0, 0],
747
747
  ];
748
- var UpdateStreamGroupOutput = [
748
+ var UpdateStreamGroupOutput$ = [
749
749
  3,
750
750
  n0,
751
751
  _USGO,
752
752
  0,
753
753
  [_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
754
- [0, 0, () => DefaultApplication, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
754
+ [0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
755
755
  ];
756
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
757
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
756
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
757
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
758
758
  var __Unit = "unit";
759
- var GameLiftStreamsServiceException = [-3, _sm, "GameLiftStreamsServiceException", 0, [], []];
760
- schema.TypeRegistry.for(_sm).registerError(GameLiftStreamsServiceException, GameLiftStreamsServiceException$1);
761
- var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary];
762
- var LocationConfigurations = [1, n0, _LC, 0, () => LocationConfiguration];
763
- var LocationStates = [1, n0, _LS, 0, () => LocationState];
764
- var ReplicationStatuses = [1, n0, _RS, 0, () => ReplicationStatus];
765
- var StreamGroupSummaryList = [1, n0, _SGSL, 0, () => StreamGroupSummary];
766
- var StreamSessionSummaryList = [1, n0, _SSSL, 0, () => StreamSessionSummary];
767
- var AddStreamGroupLocations = [
759
+ var GameLiftStreamsServiceException$ = [
760
+ -3,
761
+ _sm,
762
+ "GameLiftStreamsServiceException",
763
+ 0,
764
+ [],
765
+ [],
766
+ ];
767
+ schema.TypeRegistry.for(_sm).registerError(GameLiftStreamsServiceException$, GameLiftStreamsServiceException);
768
+ var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary$];
769
+ var LocationConfigurations = [1, n0, _LC, 0, () => LocationConfiguration$];
770
+ var LocationStates = [1, n0, _LS, 0, () => LocationState$];
771
+ var ReplicationStatuses = [1, n0, _RS, 0, () => ReplicationStatus$];
772
+ var StreamGroupSummaryList = [1, n0, _SGSL, 0, () => StreamGroupSummary$];
773
+ var StreamSessionSummaryList = [1, n0, _SSSL, 0, () => StreamSessionSummary$];
774
+ var AddStreamGroupLocations$ = [
768
775
  9,
769
776
  n0,
770
777
  _ASGL,
771
778
  { [_h]: ["POST", "/streamgroups/{Identifier}/locations", 200] },
772
- () => AddStreamGroupLocationsInput,
773
- () => AddStreamGroupLocationsOutput,
779
+ () => AddStreamGroupLocationsInput$,
780
+ () => AddStreamGroupLocationsOutput$,
774
781
  ];
775
- var AssociateApplications = [
782
+ var AssociateApplications$ = [
776
783
  9,
777
784
  n0,
778
785
  _AAss,
779
786
  { [_h]: ["POST", "/streamgroups/{Identifier}/associations", 200] },
780
- () => AssociateApplicationsInput,
781
- () => AssociateApplicationsOutput,
787
+ () => AssociateApplicationsInput$,
788
+ () => AssociateApplicationsOutput$,
782
789
  ];
783
- var CreateApplication = [
790
+ var CreateApplication$ = [
784
791
  9,
785
792
  n0,
786
793
  _CAr,
787
794
  { [_h]: ["POST", "/applications", 201] },
788
- () => CreateApplicationInput,
789
- () => CreateApplicationOutput,
795
+ () => CreateApplicationInput$,
796
+ () => CreateApplicationOutput$,
790
797
  ];
791
- var CreateStreamGroup = [
798
+ var CreateStreamGroup$ = [
792
799
  9,
793
800
  n0,
794
801
  _CSG,
795
802
  { [_h]: ["POST", "/streamgroups", 201] },
796
- () => CreateStreamGroupInput,
797
- () => CreateStreamGroupOutput,
803
+ () => CreateStreamGroupInput$,
804
+ () => CreateStreamGroupOutput$,
798
805
  ];
799
- var CreateStreamSessionConnection = [
806
+ var CreateStreamSessionConnection$ = [
800
807
  9,
801
808
  n0,
802
809
  _CSSC,
803
810
  { [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/connections", 200] },
804
- () => CreateStreamSessionConnectionInput,
805
- () => CreateStreamSessionConnectionOutput,
811
+ () => CreateStreamSessionConnectionInput$,
812
+ () => CreateStreamSessionConnectionOutput$,
806
813
  ];
807
- var DeleteApplication = [
814
+ var DeleteApplication$ = [
808
815
  9,
809
816
  n0,
810
817
  _DAe,
811
818
  { [_h]: ["DELETE", "/applications/{Identifier}", 204] },
812
- () => DeleteApplicationInput,
819
+ () => DeleteApplicationInput$,
813
820
  () => __Unit,
814
821
  ];
815
- var DeleteStreamGroup = [
822
+ var DeleteStreamGroup$ = [
816
823
  9,
817
824
  n0,
818
825
  _DSG,
819
826
  { [_h]: ["DELETE", "/streamgroups/{Identifier}", 204] },
820
- () => DeleteStreamGroupInput,
827
+ () => DeleteStreamGroupInput$,
821
828
  () => __Unit,
822
829
  ];
823
- var DisassociateApplications = [
830
+ var DisassociateApplications$ = [
824
831
  9,
825
832
  n0,
826
833
  _DAi,
827
834
  { [_h]: ["POST", "/streamgroups/{Identifier}/disassociations", 200] },
828
- () => DisassociateApplicationsInput,
829
- () => DisassociateApplicationsOutput,
835
+ () => DisassociateApplicationsInput$,
836
+ () => DisassociateApplicationsOutput$,
830
837
  ];
831
- var ExportStreamSessionFiles = [
838
+ var ExportStreamSessionFiles$ = [
832
839
  9,
833
840
  n0,
834
841
  _ESSF,
835
842
  { [_h]: ["PUT", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/exportfiles", 200] },
836
- () => ExportStreamSessionFilesInput,
837
- () => ExportStreamSessionFilesOutput,
843
+ () => ExportStreamSessionFilesInput$,
844
+ () => ExportStreamSessionFilesOutput$,
838
845
  ];
839
- var GetApplication = [
846
+ var GetApplication$ = [
840
847
  9,
841
848
  n0,
842
849
  _GA,
843
850
  { [_h]: ["GET", "/applications/{Identifier}", 200] },
844
- () => GetApplicationInput,
845
- () => GetApplicationOutput,
851
+ () => GetApplicationInput$,
852
+ () => GetApplicationOutput$,
846
853
  ];
847
- var GetStreamGroup = [
854
+ var GetStreamGroup$ = [
848
855
  9,
849
856
  n0,
850
857
  _GSG,
851
858
  { [_h]: ["GET", "/streamgroups/{Identifier}", 200] },
852
- () => GetStreamGroupInput,
853
- () => GetStreamGroupOutput,
859
+ () => GetStreamGroupInput$,
860
+ () => GetStreamGroupOutput$,
854
861
  ];
855
- var GetStreamSession = [
862
+ var GetStreamSession$ = [
856
863
  9,
857
864
  n0,
858
865
  _GSS,
859
866
  { [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 200] },
860
- () => GetStreamSessionInput,
861
- () => GetStreamSessionOutput,
867
+ () => GetStreamSessionInput$,
868
+ () => GetStreamSessionOutput$,
862
869
  ];
863
- var ListApplications = [
870
+ var ListApplications$ = [
864
871
  9,
865
872
  n0,
866
873
  _LA,
867
874
  { [_h]: ["GET", "/applications", 200] },
868
- () => ListApplicationsInput,
869
- () => ListApplicationsOutput,
875
+ () => ListApplicationsInput$,
876
+ () => ListApplicationsOutput$,
870
877
  ];
871
- var ListStreamGroups = [
878
+ var ListStreamGroups$ = [
872
879
  9,
873
880
  n0,
874
881
  _LSG,
875
882
  { [_h]: ["GET", "/streamgroups", 200] },
876
- () => ListStreamGroupsInput,
877
- () => ListStreamGroupsOutput,
883
+ () => ListStreamGroupsInput$,
884
+ () => ListStreamGroupsOutput$,
878
885
  ];
879
- var ListStreamSessions = [
886
+ var ListStreamSessions$ = [
880
887
  9,
881
888
  n0,
882
889
  _LSS,
883
890
  { [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions", 200] },
884
- () => ListStreamSessionsInput,
885
- () => ListStreamSessionsOutput,
891
+ () => ListStreamSessionsInput$,
892
+ () => ListStreamSessionsOutput$,
886
893
  ];
887
- var ListStreamSessionsByAccount = [
894
+ var ListStreamSessionsByAccount$ = [
888
895
  9,
889
896
  n0,
890
897
  _LSSBA,
891
898
  { [_h]: ["GET", "/streamsessions", 200] },
892
- () => ListStreamSessionsByAccountInput,
893
- () => ListStreamSessionsByAccountOutput,
899
+ () => ListStreamSessionsByAccountInput$,
900
+ () => ListStreamSessionsByAccountOutput$,
894
901
  ];
895
- var ListTagsForResource = [
902
+ var ListTagsForResource$ = [
896
903
  9,
897
904
  n0,
898
905
  _LTFR,
899
906
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
900
- () => ListTagsForResourceRequest,
901
- () => ListTagsForResourceResponse,
907
+ () => ListTagsForResourceRequest$,
908
+ () => ListTagsForResourceResponse$,
902
909
  ];
903
- var RemoveStreamGroupLocations = [
910
+ var RemoveStreamGroupLocations$ = [
904
911
  9,
905
912
  n0,
906
913
  _RSGL,
907
914
  { [_h]: ["DELETE", "/streamgroups/{Identifier}/locations", 204] },
908
- () => RemoveStreamGroupLocationsInput,
915
+ () => RemoveStreamGroupLocationsInput$,
909
916
  () => __Unit,
910
917
  ];
911
- var StartStreamSession = [
918
+ var StartStreamSession$ = [
912
919
  9,
913
920
  n0,
914
921
  _SSSt,
915
922
  { [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions", 201] },
916
- () => StartStreamSessionInput,
917
- () => StartStreamSessionOutput,
923
+ () => StartStreamSessionInput$,
924
+ () => StartStreamSessionOutput$,
918
925
  ];
919
- var TagResource = [
926
+ var TagResource$ = [
920
927
  9,
921
928
  n0,
922
929
  _TR,
923
930
  { [_h]: ["POST", "/tags/{ResourceArn}", 200] },
924
- () => TagResourceRequest,
925
- () => TagResourceResponse,
931
+ () => TagResourceRequest$,
932
+ () => TagResourceResponse$,
926
933
  ];
927
- var TerminateStreamSession = [
934
+ var TerminateStreamSession$ = [
928
935
  9,
929
936
  n0,
930
937
  _TSS,
931
938
  { [_h]: ["DELETE", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 204] },
932
- () => TerminateStreamSessionInput,
939
+ () => TerminateStreamSessionInput$,
933
940
  () => __Unit,
934
941
  ];
935
- var UntagResource = [
942
+ var UntagResource$ = [
936
943
  9,
937
944
  n0,
938
945
  _UR,
939
946
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
940
- () => UntagResourceRequest,
941
- () => UntagResourceResponse,
947
+ () => UntagResourceRequest$,
948
+ () => UntagResourceResponse$,
942
949
  ];
943
- var UpdateApplication = [
950
+ var UpdateApplication$ = [
944
951
  9,
945
952
  n0,
946
953
  _UA,
947
954
  { [_h]: ["PATCH", "/applications/{Identifier}", 200] },
948
- () => UpdateApplicationInput,
949
- () => UpdateApplicationOutput,
955
+ () => UpdateApplicationInput$,
956
+ () => UpdateApplicationOutput$,
950
957
  ];
951
- var UpdateStreamGroup = [
958
+ var UpdateStreamGroup$ = [
952
959
  9,
953
960
  n0,
954
961
  _USG,
955
962
  { [_h]: ["PATCH", "/streamgroups/{Identifier}", 200] },
956
- () => UpdateStreamGroupInput,
957
- () => UpdateStreamGroupOutput,
963
+ () => UpdateStreamGroupInput$,
964
+ () => UpdateStreamGroupOutput$,
958
965
  ];
959
966
 
960
967
  class AddStreamGroupLocationsCommand extends smithyClient.Command
@@ -965,7 +972,7 @@ class AddStreamGroupLocationsCommand extends smithyClient.Command
965
972
  })
966
973
  .s("GameLiftStreams", "AddStreamGroupLocations", {})
967
974
  .n("GameLiftStreamsClient", "AddStreamGroupLocationsCommand")
968
- .sc(AddStreamGroupLocations)
975
+ .sc(AddStreamGroupLocations$)
969
976
  .build() {
970
977
  }
971
978
 
@@ -977,7 +984,7 @@ class AssociateApplicationsCommand extends smithyClient.Command
977
984
  })
978
985
  .s("GameLiftStreams", "AssociateApplications", {})
979
986
  .n("GameLiftStreamsClient", "AssociateApplicationsCommand")
980
- .sc(AssociateApplications)
987
+ .sc(AssociateApplications$)
981
988
  .build() {
982
989
  }
983
990
 
@@ -989,7 +996,7 @@ class CreateApplicationCommand extends smithyClient.Command
989
996
  })
990
997
  .s("GameLiftStreams", "CreateApplication", {})
991
998
  .n("GameLiftStreamsClient", "CreateApplicationCommand")
992
- .sc(CreateApplication)
999
+ .sc(CreateApplication$)
993
1000
  .build() {
994
1001
  }
995
1002
 
@@ -1001,7 +1008,7 @@ class CreateStreamGroupCommand extends smithyClient.Command
1001
1008
  })
1002
1009
  .s("GameLiftStreams", "CreateStreamGroup", {})
1003
1010
  .n("GameLiftStreamsClient", "CreateStreamGroupCommand")
1004
- .sc(CreateStreamGroup)
1011
+ .sc(CreateStreamGroup$)
1005
1012
  .build() {
1006
1013
  }
1007
1014
 
@@ -1013,7 +1020,7 @@ class CreateStreamSessionConnectionCommand extends smithyClient.Command
1013
1020
  })
1014
1021
  .s("GameLiftStreams", "CreateStreamSessionConnection", {})
1015
1022
  .n("GameLiftStreamsClient", "CreateStreamSessionConnectionCommand")
1016
- .sc(CreateStreamSessionConnection)
1023
+ .sc(CreateStreamSessionConnection$)
1017
1024
  .build() {
1018
1025
  }
1019
1026
 
@@ -1025,7 +1032,7 @@ class DeleteApplicationCommand extends smithyClient.Command
1025
1032
  })
1026
1033
  .s("GameLiftStreams", "DeleteApplication", {})
1027
1034
  .n("GameLiftStreamsClient", "DeleteApplicationCommand")
1028
- .sc(DeleteApplication)
1035
+ .sc(DeleteApplication$)
1029
1036
  .build() {
1030
1037
  }
1031
1038
 
@@ -1037,7 +1044,7 @@ class DeleteStreamGroupCommand extends smithyClient.Command
1037
1044
  })
1038
1045
  .s("GameLiftStreams", "DeleteStreamGroup", {})
1039
1046
  .n("GameLiftStreamsClient", "DeleteStreamGroupCommand")
1040
- .sc(DeleteStreamGroup)
1047
+ .sc(DeleteStreamGroup$)
1041
1048
  .build() {
1042
1049
  }
1043
1050
 
@@ -1049,7 +1056,7 @@ class DisassociateApplicationsCommand extends smithyClient.Command
1049
1056
  })
1050
1057
  .s("GameLiftStreams", "DisassociateApplications", {})
1051
1058
  .n("GameLiftStreamsClient", "DisassociateApplicationsCommand")
1052
- .sc(DisassociateApplications)
1059
+ .sc(DisassociateApplications$)
1053
1060
  .build() {
1054
1061
  }
1055
1062
 
@@ -1061,7 +1068,7 @@ class ExportStreamSessionFilesCommand extends smithyClient.Command
1061
1068
  })
1062
1069
  .s("GameLiftStreams", "ExportStreamSessionFiles", {})
1063
1070
  .n("GameLiftStreamsClient", "ExportStreamSessionFilesCommand")
1064
- .sc(ExportStreamSessionFiles)
1071
+ .sc(ExportStreamSessionFiles$)
1065
1072
  .build() {
1066
1073
  }
1067
1074
 
@@ -1073,7 +1080,7 @@ class GetApplicationCommand extends smithyClient.Command
1073
1080
  })
1074
1081
  .s("GameLiftStreams", "GetApplication", {})
1075
1082
  .n("GameLiftStreamsClient", "GetApplicationCommand")
1076
- .sc(GetApplication)
1083
+ .sc(GetApplication$)
1077
1084
  .build() {
1078
1085
  }
1079
1086
 
@@ -1085,7 +1092,7 @@ class GetStreamGroupCommand extends smithyClient.Command
1085
1092
  })
1086
1093
  .s("GameLiftStreams", "GetStreamGroup", {})
1087
1094
  .n("GameLiftStreamsClient", "GetStreamGroupCommand")
1088
- .sc(GetStreamGroup)
1095
+ .sc(GetStreamGroup$)
1089
1096
  .build() {
1090
1097
  }
1091
1098
 
@@ -1097,7 +1104,7 @@ class GetStreamSessionCommand extends smithyClient.Command
1097
1104
  })
1098
1105
  .s("GameLiftStreams", "GetStreamSession", {})
1099
1106
  .n("GameLiftStreamsClient", "GetStreamSessionCommand")
1100
- .sc(GetStreamSession)
1107
+ .sc(GetStreamSession$)
1101
1108
  .build() {
1102
1109
  }
1103
1110
 
@@ -1109,7 +1116,7 @@ class ListApplicationsCommand extends smithyClient.Command
1109
1116
  })
1110
1117
  .s("GameLiftStreams", "ListApplications", {})
1111
1118
  .n("GameLiftStreamsClient", "ListApplicationsCommand")
1112
- .sc(ListApplications)
1119
+ .sc(ListApplications$)
1113
1120
  .build() {
1114
1121
  }
1115
1122
 
@@ -1121,7 +1128,7 @@ class ListStreamGroupsCommand extends smithyClient.Command
1121
1128
  })
1122
1129
  .s("GameLiftStreams", "ListStreamGroups", {})
1123
1130
  .n("GameLiftStreamsClient", "ListStreamGroupsCommand")
1124
- .sc(ListStreamGroups)
1131
+ .sc(ListStreamGroups$)
1125
1132
  .build() {
1126
1133
  }
1127
1134
 
@@ -1133,7 +1140,7 @@ class ListStreamSessionsByAccountCommand extends smithyClient.Command
1133
1140
  })
1134
1141
  .s("GameLiftStreams", "ListStreamSessionsByAccount", {})
1135
1142
  .n("GameLiftStreamsClient", "ListStreamSessionsByAccountCommand")
1136
- .sc(ListStreamSessionsByAccount)
1143
+ .sc(ListStreamSessionsByAccount$)
1137
1144
  .build() {
1138
1145
  }
1139
1146
 
@@ -1145,7 +1152,7 @@ class ListStreamSessionsCommand extends smithyClient.Command
1145
1152
  })
1146
1153
  .s("GameLiftStreams", "ListStreamSessions", {})
1147
1154
  .n("GameLiftStreamsClient", "ListStreamSessionsCommand")
1148
- .sc(ListStreamSessions)
1155
+ .sc(ListStreamSessions$)
1149
1156
  .build() {
1150
1157
  }
1151
1158
 
@@ -1157,7 +1164,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1157
1164
  })
1158
1165
  .s("GameLiftStreams", "ListTagsForResource", {})
1159
1166
  .n("GameLiftStreamsClient", "ListTagsForResourceCommand")
1160
- .sc(ListTagsForResource)
1167
+ .sc(ListTagsForResource$)
1161
1168
  .build() {
1162
1169
  }
1163
1170
 
@@ -1169,7 +1176,7 @@ class RemoveStreamGroupLocationsCommand extends smithyClient.Command
1169
1176
  })
1170
1177
  .s("GameLiftStreams", "RemoveStreamGroupLocations", {})
1171
1178
  .n("GameLiftStreamsClient", "RemoveStreamGroupLocationsCommand")
1172
- .sc(RemoveStreamGroupLocations)
1179
+ .sc(RemoveStreamGroupLocations$)
1173
1180
  .build() {
1174
1181
  }
1175
1182
 
@@ -1181,7 +1188,7 @@ class StartStreamSessionCommand extends smithyClient.Command
1181
1188
  })
1182
1189
  .s("GameLiftStreams", "StartStreamSession", {})
1183
1190
  .n("GameLiftStreamsClient", "StartStreamSessionCommand")
1184
- .sc(StartStreamSession)
1191
+ .sc(StartStreamSession$)
1185
1192
  .build() {
1186
1193
  }
1187
1194
 
@@ -1193,7 +1200,7 @@ class TagResourceCommand extends smithyClient.Command
1193
1200
  })
1194
1201
  .s("GameLiftStreams", "TagResource", {})
1195
1202
  .n("GameLiftStreamsClient", "TagResourceCommand")
1196
- .sc(TagResource)
1203
+ .sc(TagResource$)
1197
1204
  .build() {
1198
1205
  }
1199
1206
 
@@ -1205,7 +1212,7 @@ class TerminateStreamSessionCommand extends smithyClient.Command
1205
1212
  })
1206
1213
  .s("GameLiftStreams", "TerminateStreamSession", {})
1207
1214
  .n("GameLiftStreamsClient", "TerminateStreamSessionCommand")
1208
- .sc(TerminateStreamSession)
1215
+ .sc(TerminateStreamSession$)
1209
1216
  .build() {
1210
1217
  }
1211
1218
 
@@ -1217,7 +1224,7 @@ class UntagResourceCommand extends smithyClient.Command
1217
1224
  })
1218
1225
  .s("GameLiftStreams", "UntagResource", {})
1219
1226
  .n("GameLiftStreamsClient", "UntagResourceCommand")
1220
- .sc(UntagResource)
1227
+ .sc(UntagResource$)
1221
1228
  .build() {
1222
1229
  }
1223
1230
 
@@ -1229,7 +1236,7 @@ class UpdateApplicationCommand extends smithyClient.Command
1229
1236
  })
1230
1237
  .s("GameLiftStreams", "UpdateApplication", {})
1231
1238
  .n("GameLiftStreamsClient", "UpdateApplicationCommand")
1232
- .sc(UpdateApplication)
1239
+ .sc(UpdateApplication$)
1233
1240
  .build() {
1234
1241
  }
1235
1242
 
@@ -1241,7 +1248,7 @@ class UpdateStreamGroupCommand extends smithyClient.Command
1241
1248
  })
1242
1249
  .s("GameLiftStreams", "UpdateStreamGroup", {})
1243
1250
  .n("GameLiftStreamsClient", "UpdateStreamGroupCommand")
1244
- .sc(UpdateStreamGroup)
1251
+ .sc(UpdateStreamGroup$)
1245
1252
  .build() {
1246
1253
  }
1247
1254
 
@@ -1552,52 +1559,137 @@ Object.defineProperty(exports, "__Client", {
1552
1559
  enumerable: true,
1553
1560
  get: function () { return smithyClient.Client; }
1554
1561
  });
1555
- exports.AccessDeniedException = AccessDeniedException$1;
1562
+ exports.AccessDeniedException = AccessDeniedException;
1563
+ exports.AccessDeniedException$ = AccessDeniedException$;
1564
+ exports.AddStreamGroupLocations$ = AddStreamGroupLocations$;
1556
1565
  exports.AddStreamGroupLocationsCommand = AddStreamGroupLocationsCommand;
1566
+ exports.AddStreamGroupLocationsInput$ = AddStreamGroupLocationsInput$;
1567
+ exports.AddStreamGroupLocationsOutput$ = AddStreamGroupLocationsOutput$;
1557
1568
  exports.ApplicationStatus = ApplicationStatus;
1558
1569
  exports.ApplicationStatusReason = ApplicationStatusReason;
1570
+ exports.ApplicationSummary$ = ApplicationSummary$;
1571
+ exports.AssociateApplications$ = AssociateApplications$;
1559
1572
  exports.AssociateApplicationsCommand = AssociateApplicationsCommand;
1560
- exports.ConflictException = ConflictException$1;
1573
+ exports.AssociateApplicationsInput$ = AssociateApplicationsInput$;
1574
+ exports.AssociateApplicationsOutput$ = AssociateApplicationsOutput$;
1575
+ exports.ConflictException = ConflictException;
1576
+ exports.ConflictException$ = ConflictException$;
1577
+ exports.CreateApplication$ = CreateApplication$;
1561
1578
  exports.CreateApplicationCommand = CreateApplicationCommand;
1579
+ exports.CreateApplicationInput$ = CreateApplicationInput$;
1580
+ exports.CreateApplicationOutput$ = CreateApplicationOutput$;
1581
+ exports.CreateStreamGroup$ = CreateStreamGroup$;
1562
1582
  exports.CreateStreamGroupCommand = CreateStreamGroupCommand;
1583
+ exports.CreateStreamGroupInput$ = CreateStreamGroupInput$;
1584
+ exports.CreateStreamGroupOutput$ = CreateStreamGroupOutput$;
1585
+ exports.CreateStreamSessionConnection$ = CreateStreamSessionConnection$;
1563
1586
  exports.CreateStreamSessionConnectionCommand = CreateStreamSessionConnectionCommand;
1587
+ exports.CreateStreamSessionConnectionInput$ = CreateStreamSessionConnectionInput$;
1588
+ exports.CreateStreamSessionConnectionOutput$ = CreateStreamSessionConnectionOutput$;
1589
+ exports.DefaultApplication$ = DefaultApplication$;
1590
+ exports.DeleteApplication$ = DeleteApplication$;
1564
1591
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
1592
+ exports.DeleteApplicationInput$ = DeleteApplicationInput$;
1593
+ exports.DeleteStreamGroup$ = DeleteStreamGroup$;
1565
1594
  exports.DeleteStreamGroupCommand = DeleteStreamGroupCommand;
1595
+ exports.DeleteStreamGroupInput$ = DeleteStreamGroupInput$;
1596
+ exports.DisassociateApplications$ = DisassociateApplications$;
1566
1597
  exports.DisassociateApplicationsCommand = DisassociateApplicationsCommand;
1598
+ exports.DisassociateApplicationsInput$ = DisassociateApplicationsInput$;
1599
+ exports.DisassociateApplicationsOutput$ = DisassociateApplicationsOutput$;
1600
+ exports.ExportFilesMetadata$ = ExportFilesMetadata$;
1567
1601
  exports.ExportFilesStatus = ExportFilesStatus;
1602
+ exports.ExportStreamSessionFiles$ = ExportStreamSessionFiles$;
1568
1603
  exports.ExportStreamSessionFilesCommand = ExportStreamSessionFilesCommand;
1604
+ exports.ExportStreamSessionFilesInput$ = ExportStreamSessionFilesInput$;
1605
+ exports.ExportStreamSessionFilesOutput$ = ExportStreamSessionFilesOutput$;
1569
1606
  exports.GameLiftStreams = GameLiftStreams;
1570
1607
  exports.GameLiftStreamsClient = GameLiftStreamsClient;
1571
- exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException$1;
1608
+ exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException;
1609
+ exports.GameLiftStreamsServiceException$ = GameLiftStreamsServiceException$;
1610
+ exports.GetApplication$ = GetApplication$;
1572
1611
  exports.GetApplicationCommand = GetApplicationCommand;
1612
+ exports.GetApplicationInput$ = GetApplicationInput$;
1613
+ exports.GetApplicationOutput$ = GetApplicationOutput$;
1614
+ exports.GetStreamGroup$ = GetStreamGroup$;
1573
1615
  exports.GetStreamGroupCommand = GetStreamGroupCommand;
1616
+ exports.GetStreamGroupInput$ = GetStreamGroupInput$;
1617
+ exports.GetStreamGroupOutput$ = GetStreamGroupOutput$;
1618
+ exports.GetStreamSession$ = GetStreamSession$;
1574
1619
  exports.GetStreamSessionCommand = GetStreamSessionCommand;
1575
- exports.InternalServerException = InternalServerException$1;
1620
+ exports.GetStreamSessionInput$ = GetStreamSessionInput$;
1621
+ exports.GetStreamSessionOutput$ = GetStreamSessionOutput$;
1622
+ exports.InternalServerException = InternalServerException;
1623
+ exports.InternalServerException$ = InternalServerException$;
1624
+ exports.ListApplications$ = ListApplications$;
1576
1625
  exports.ListApplicationsCommand = ListApplicationsCommand;
1626
+ exports.ListApplicationsInput$ = ListApplicationsInput$;
1627
+ exports.ListApplicationsOutput$ = ListApplicationsOutput$;
1628
+ exports.ListStreamGroups$ = ListStreamGroups$;
1577
1629
  exports.ListStreamGroupsCommand = ListStreamGroupsCommand;
1630
+ exports.ListStreamGroupsInput$ = ListStreamGroupsInput$;
1631
+ exports.ListStreamGroupsOutput$ = ListStreamGroupsOutput$;
1632
+ exports.ListStreamSessions$ = ListStreamSessions$;
1633
+ exports.ListStreamSessionsByAccount$ = ListStreamSessionsByAccount$;
1578
1634
  exports.ListStreamSessionsByAccountCommand = ListStreamSessionsByAccountCommand;
1635
+ exports.ListStreamSessionsByAccountInput$ = ListStreamSessionsByAccountInput$;
1636
+ exports.ListStreamSessionsByAccountOutput$ = ListStreamSessionsByAccountOutput$;
1579
1637
  exports.ListStreamSessionsCommand = ListStreamSessionsCommand;
1638
+ exports.ListStreamSessionsInput$ = ListStreamSessionsInput$;
1639
+ exports.ListStreamSessionsOutput$ = ListStreamSessionsOutput$;
1640
+ exports.ListTagsForResource$ = ListTagsForResource$;
1580
1641
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1642
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1643
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1644
+ exports.LocationConfiguration$ = LocationConfiguration$;
1645
+ exports.LocationState$ = LocationState$;
1581
1646
  exports.Protocol = Protocol;
1647
+ exports.RemoveStreamGroupLocations$ = RemoveStreamGroupLocations$;
1582
1648
  exports.RemoveStreamGroupLocationsCommand = RemoveStreamGroupLocationsCommand;
1649
+ exports.RemoveStreamGroupLocationsInput$ = RemoveStreamGroupLocationsInput$;
1650
+ exports.ReplicationStatus$ = ReplicationStatus$;
1583
1651
  exports.ReplicationStatusType = ReplicationStatusType;
1584
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1652
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1653
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1654
+ exports.RuntimeEnvironment$ = RuntimeEnvironment$;
1585
1655
  exports.RuntimeEnvironmentType = RuntimeEnvironmentType;
1586
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1656
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1657
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1658
+ exports.StartStreamSession$ = StartStreamSession$;
1587
1659
  exports.StartStreamSessionCommand = StartStreamSessionCommand;
1660
+ exports.StartStreamSessionInput$ = StartStreamSessionInput$;
1661
+ exports.StartStreamSessionOutput$ = StartStreamSessionOutput$;
1588
1662
  exports.StreamClass = StreamClass;
1589
1663
  exports.StreamGroupLocationStatus = StreamGroupLocationStatus;
1590
1664
  exports.StreamGroupStatus = StreamGroupStatus;
1591
1665
  exports.StreamGroupStatusReason = StreamGroupStatusReason;
1666
+ exports.StreamGroupSummary$ = StreamGroupSummary$;
1592
1667
  exports.StreamSessionStatus = StreamSessionStatus;
1593
1668
  exports.StreamSessionStatusReason = StreamSessionStatusReason;
1669
+ exports.StreamSessionSummary$ = StreamSessionSummary$;
1670
+ exports.TagResource$ = TagResource$;
1594
1671
  exports.TagResourceCommand = TagResourceCommand;
1672
+ exports.TagResourceRequest$ = TagResourceRequest$;
1673
+ exports.TagResourceResponse$ = TagResourceResponse$;
1674
+ exports.TerminateStreamSession$ = TerminateStreamSession$;
1595
1675
  exports.TerminateStreamSessionCommand = TerminateStreamSessionCommand;
1596
- exports.ThrottlingException = ThrottlingException$1;
1676
+ exports.TerminateStreamSessionInput$ = TerminateStreamSessionInput$;
1677
+ exports.ThrottlingException = ThrottlingException;
1678
+ exports.ThrottlingException$ = ThrottlingException$;
1679
+ exports.UntagResource$ = UntagResource$;
1597
1680
  exports.UntagResourceCommand = UntagResourceCommand;
1681
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1682
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1683
+ exports.UpdateApplication$ = UpdateApplication$;
1598
1684
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
1685
+ exports.UpdateApplicationInput$ = UpdateApplicationInput$;
1686
+ exports.UpdateApplicationOutput$ = UpdateApplicationOutput$;
1687
+ exports.UpdateStreamGroup$ = UpdateStreamGroup$;
1599
1688
  exports.UpdateStreamGroupCommand = UpdateStreamGroupCommand;
1600
- exports.ValidationException = ValidationException$1;
1689
+ exports.UpdateStreamGroupInput$ = UpdateStreamGroupInput$;
1690
+ exports.UpdateStreamGroupOutput$ = UpdateStreamGroupOutput$;
1691
+ exports.ValidationException = ValidationException;
1692
+ exports.ValidationException$ = ValidationException$;
1601
1693
  exports.paginateListApplications = paginateListApplications;
1602
1694
  exports.paginateListStreamGroups = paginateListStreamGroups;
1603
1695
  exports.paginateListStreamSessions = paginateListStreamSessions;