@aws-sdk/client-gameliftstreams 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +338 -210
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AddStreamGroupLocationsCommand.js +2 -2
- package/dist-es/commands/AssociateApplicationsCommand.js +2 -2
- package/dist-es/commands/CreateApplicationCommand.js +2 -2
- package/dist-es/commands/CreateStreamGroupCommand.js +2 -2
- package/dist-es/commands/CreateStreamSessionConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteStreamGroupCommand.js +2 -2
- package/dist-es/commands/DisassociateApplicationsCommand.js +2 -2
- package/dist-es/commands/ExportStreamSessionFilesCommand.js +2 -2
- package/dist-es/commands/GetApplicationCommand.js +2 -2
- package/dist-es/commands/GetStreamGroupCommand.js +2 -2
- package/dist-es/commands/GetStreamSessionCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListStreamGroupsCommand.js +2 -2
- package/dist-es/commands/ListStreamSessionsByAccountCommand.js +2 -2
- package/dist-es/commands/ListStreamSessionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RemoveStreamGroupLocationsCommand.js +2 -2
- package/dist-es/commands/StartStreamSessionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TerminateStreamSessionCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateStreamGroupCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +212 -177
- package/dist-types/GameLiftStreamsClient.d.ts +1 -10
- package/dist-types/commands/AddStreamGroupLocationsCommand.d.ts +4 -0
- package/dist-types/commands/CreateStreamGroupCommand.d.ts +7 -3
- package/dist-types/commands/GetStreamGroupCommand.d.ts +3 -1
- package/dist-types/commands/GetStreamSessionCommand.d.ts +3 -0
- package/dist-types/commands/ListStreamGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamSessionsByAccountCommand.d.ts +1 -0
- package/dist-types/commands/ListStreamSessionsCommand.d.ts +1 -0
- package/dist-types/commands/StartStreamSessionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateStreamGroupCommand.d.ts +6 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +65 -12
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +87 -104
- package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +86 -105
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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";
|
|
@@ -311,11 +311,13 @@ const _LTFRRi = "ListTagsForResourceResponse";
|
|
|
311
311
|
const _LUA = "LastUpdatedAt";
|
|
312
312
|
const _Lo = "Location";
|
|
313
313
|
const _M = "Message";
|
|
314
|
+
const _MC = "MaximumCapacity";
|
|
314
315
|
const _MR = "MaxResults";
|
|
315
316
|
const _NT = "NextToken";
|
|
316
317
|
const _ODC = "OnDemandCapacity";
|
|
317
318
|
const _OU = "OutputUri";
|
|
318
319
|
const _P = "Protocol";
|
|
320
|
+
const _PSC = "PerformanceStatsConfiguration";
|
|
319
321
|
const _RA = "ResourceArn";
|
|
320
322
|
const _RC = "RequestedCapacity";
|
|
321
323
|
const _RE = "RuntimeEnvironment";
|
|
@@ -340,8 +342,10 @@ const _SSSI = "StartStreamSessionInput";
|
|
|
340
342
|
const _SSSL = "StreamSessionSummaryList";
|
|
341
343
|
const _SSSO = "StartStreamSessionOutput";
|
|
342
344
|
const _SSSt = "StartStreamSession";
|
|
345
|
+
const _SWC = "SharedWithClient";
|
|
343
346
|
const _T = "Tags";
|
|
344
347
|
const _TE = "ThrottlingException";
|
|
348
|
+
const _TIC = "TargetIdleCapacity";
|
|
345
349
|
const _TK = "TagKeys";
|
|
346
350
|
const _TR = "TagResource";
|
|
347
351
|
const _TRR = "TagResourceRequest";
|
|
@@ -374,9 +378,9 @@ const _tK = "tagKeys";
|
|
|
374
378
|
const n0 = "com.amazonaws.gameliftstreams";
|
|
375
379
|
var SignalRequest = [0, n0, _SR, 8, 0];
|
|
376
380
|
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
|
|
379
|
-
var AddStreamGroupLocationsInput = [
|
|
381
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
382
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
383
|
+
var AddStreamGroupLocationsInput$ = [
|
|
380
384
|
3,
|
|
381
385
|
n0,
|
|
382
386
|
_ASGLI,
|
|
@@ -384,7 +388,7 @@ var AddStreamGroupLocationsInput = [
|
|
|
384
388
|
[_I, _LC],
|
|
385
389
|
[[0, 1], () => LocationConfigurations],
|
|
386
390
|
];
|
|
387
|
-
var AddStreamGroupLocationsOutput = [
|
|
391
|
+
var AddStreamGroupLocationsOutput$ = [
|
|
388
392
|
3,
|
|
389
393
|
n0,
|
|
390
394
|
_ASGLO,
|
|
@@ -392,35 +396,35 @@ var AddStreamGroupLocationsOutput = [
|
|
|
392
396
|
[_I, _L],
|
|
393
397
|
[0, () => LocationStates],
|
|
394
398
|
];
|
|
395
|
-
var ApplicationSummary = [
|
|
399
|
+
var ApplicationSummary$ = [
|
|
396
400
|
3,
|
|
397
401
|
n0,
|
|
398
402
|
_AS,
|
|
399
403
|
0,
|
|
400
404
|
[_A, _Id, _D, _S, _CA, _LUA, _RE],
|
|
401
|
-
[0, 0, 0, 0, 4, 4, () => RuntimeEnvironment],
|
|
405
|
+
[0, 0, 0, 0, 4, 4, () => RuntimeEnvironment$],
|
|
402
406
|
];
|
|
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
|
|
407
|
-
var CreateApplicationInput = [
|
|
407
|
+
var AssociateApplicationsInput$ = [3, n0, _AAI, 0, [_I, _AI], [[0, 1], 64 | 0]];
|
|
408
|
+
var AssociateApplicationsOutput$ = [3, n0, _AAO, 0, [_A, _AA], [0, 64 | 0]];
|
|
409
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
410
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
411
|
+
var CreateApplicationInput$ = [
|
|
408
412
|
3,
|
|
409
413
|
n0,
|
|
410
414
|
_CAI,
|
|
411
415
|
0,
|
|
412
416
|
[_D, _RE, _EP, _ASU, _ALP, _ALOU, _T, _CT],
|
|
413
|
-
[0, () => RuntimeEnvironment
|
|
417
|
+
[0, () => RuntimeEnvironment$, 0, 0, 64 | 0, 0, 128 | 0, [0, 4]],
|
|
414
418
|
];
|
|
415
|
-
var CreateApplicationOutput = [
|
|
419
|
+
var CreateApplicationOutput$ = [
|
|
416
420
|
3,
|
|
417
421
|
n0,
|
|
418
422
|
_CAO,
|
|
419
423
|
0,
|
|
420
424
|
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
421
|
-
[0, 0, () => RuntimeEnvironment
|
|
425
|
+
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
|
|
422
426
|
];
|
|
423
|
-
var CreateStreamGroupInput = [
|
|
427
|
+
var CreateStreamGroupInput$ = [
|
|
424
428
|
3,
|
|
425
429
|
n0,
|
|
426
430
|
_CSGI,
|
|
@@ -428,15 +432,15 @@ var CreateStreamGroupInput = [
|
|
|
428
432
|
[_D, _SC, _DAI, _LC, _T, _CT],
|
|
429
433
|
[0, 0, 0, () => LocationConfigurations, 128 | 0, [0, 4]],
|
|
430
434
|
];
|
|
431
|
-
var CreateStreamGroupOutput = [
|
|
435
|
+
var CreateStreamGroupOutput$ = [
|
|
432
436
|
3,
|
|
433
437
|
n0,
|
|
434
438
|
_CSGO,
|
|
435
439
|
0,
|
|
436
440
|
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
437
|
-
[0, 0, () => DefaultApplication
|
|
441
|
+
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
|
|
438
442
|
];
|
|
439
|
-
var CreateStreamSessionConnectionInput = [
|
|
443
|
+
var CreateStreamSessionConnectionInput$ = [
|
|
440
444
|
3,
|
|
441
445
|
n0,
|
|
442
446
|
_CSSCI,
|
|
@@ -449,7 +453,7 @@ var CreateStreamSessionConnectionInput = [
|
|
|
449
453
|
[() => SignalRequest, 0],
|
|
450
454
|
],
|
|
451
455
|
];
|
|
452
|
-
var CreateStreamSessionConnectionOutput = [
|
|
456
|
+
var CreateStreamSessionConnectionOutput$ = [
|
|
453
457
|
3,
|
|
454
458
|
n0,
|
|
455
459
|
_CSSCO,
|
|
@@ -457,13 +461,13 @@ var CreateStreamSessionConnectionOutput = [
|
|
|
457
461
|
[_SRi],
|
|
458
462
|
[[() => SignalResponse, 0]],
|
|
459
463
|
];
|
|
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 = [
|
|
464
|
+
var DefaultApplication$ = [3, n0, _DA, 0, [_Id, _A], [0, 0]];
|
|
465
|
+
var DeleteApplicationInput$ = [3, n0, _DAIe, 0, [_I], [[0, 1]]];
|
|
466
|
+
var DeleteStreamGroupInput$ = [3, n0, _DSGI, 0, [_I], [[0, 1]]];
|
|
467
|
+
var DisassociateApplicationsInput$ = [3, n0, _DAIi, 0, [_I, _AI], [[0, 1], 64 | 0]];
|
|
468
|
+
var DisassociateApplicationsOutput$ = [3, n0, _DAO, 0, [_A, _AA], [0, 64 | 0]];
|
|
469
|
+
var ExportFilesMetadata$ = [3, n0, _EFM, 0, [_S, _SRt, _OU], [0, 0, 0]];
|
|
470
|
+
var ExportStreamSessionFilesInput$ = [
|
|
467
471
|
3,
|
|
468
472
|
n0,
|
|
469
473
|
_ESSFI,
|
|
@@ -471,26 +475,26 @@ var ExportStreamSessionFilesInput = [
|
|
|
471
475
|
[_I, _SSI, _OU],
|
|
472
476
|
[[0, 1], [0, 1], 0],
|
|
473
477
|
];
|
|
474
|
-
var ExportStreamSessionFilesOutput = [3, n0, _ESSFO, 0, [], []];
|
|
475
|
-
var GetApplicationInput = [3, n0, _GAI, 0, [_I], [[0, 1]]];
|
|
476
|
-
var GetApplicationOutput = [
|
|
478
|
+
var ExportStreamSessionFilesOutput$ = [3, n0, _ESSFO, 0, [], []];
|
|
479
|
+
var GetApplicationInput$ = [3, n0, _GAI, 0, [_I], [[0, 1]]];
|
|
480
|
+
var GetApplicationOutput$ = [
|
|
477
481
|
3,
|
|
478
482
|
n0,
|
|
479
483
|
_GAO,
|
|
480
484
|
0,
|
|
481
485
|
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
482
|
-
[0, 0, () => RuntimeEnvironment
|
|
486
|
+
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
|
|
483
487
|
];
|
|
484
|
-
var GetStreamGroupInput = [3, n0, _GSGI, 0, [_I], [[0, 1]]];
|
|
485
|
-
var GetStreamGroupOutput = [
|
|
488
|
+
var GetStreamGroupInput$ = [3, n0, _GSGI, 0, [_I], [[0, 1]]];
|
|
489
|
+
var GetStreamGroupOutput$ = [
|
|
486
490
|
3,
|
|
487
491
|
n0,
|
|
488
492
|
_GSGO,
|
|
489
493
|
0,
|
|
490
494
|
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
491
|
-
[0, 0, () => DefaultApplication
|
|
495
|
+
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
|
|
492
496
|
];
|
|
493
|
-
var GetStreamSessionInput = [
|
|
497
|
+
var GetStreamSessionInput$ = [
|
|
494
498
|
3,
|
|
495
499
|
n0,
|
|
496
500
|
_GSSI,
|
|
@@ -501,12 +505,12 @@ var GetStreamSessionInput = [
|
|
|
501
505
|
[0, 1],
|
|
502
506
|
],
|
|
503
507
|
];
|
|
504
|
-
var GetStreamSessionOutput = [
|
|
508
|
+
var GetStreamSessionOutput$ = [
|
|
505
509
|
3,
|
|
506
510
|
n0,
|
|
507
511
|
_GSSO,
|
|
508
512
|
0,
|
|
509
|
-
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
513
|
+
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
510
514
|
[
|
|
511
515
|
0,
|
|
512
516
|
0,
|
|
@@ -522,17 +526,18 @@ var GetStreamSessionOutput = [
|
|
|
522
526
|
1,
|
|
523
527
|
64 | 0,
|
|
524
528
|
128 | 0,
|
|
529
|
+
() => PerformanceStatsConfiguration$,
|
|
525
530
|
0,
|
|
526
531
|
0,
|
|
527
532
|
4,
|
|
528
533
|
4,
|
|
529
534
|
0,
|
|
530
|
-
() => ExportFilesMetadata
|
|
535
|
+
() => ExportFilesMetadata$,
|
|
531
536
|
],
|
|
532
537
|
];
|
|
533
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
534
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
535
|
-
var ListApplicationsInput = [
|
|
538
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
539
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
540
|
+
var ListApplicationsInput$ = [
|
|
536
541
|
3,
|
|
537
542
|
n0,
|
|
538
543
|
_LAI,
|
|
@@ -543,7 +548,7 @@ var ListApplicationsInput = [
|
|
|
543
548
|
[1, { [_hQ]: _MR }],
|
|
544
549
|
],
|
|
545
550
|
];
|
|
546
|
-
var ListApplicationsOutput = [
|
|
551
|
+
var ListApplicationsOutput$ = [
|
|
547
552
|
3,
|
|
548
553
|
n0,
|
|
549
554
|
_LAO,
|
|
@@ -551,7 +556,7 @@ var ListApplicationsOutput = [
|
|
|
551
556
|
[_It, _NT],
|
|
552
557
|
[() => ApplicationSummaryList, 0],
|
|
553
558
|
];
|
|
554
|
-
var ListStreamGroupsInput = [
|
|
559
|
+
var ListStreamGroupsInput$ = [
|
|
555
560
|
3,
|
|
556
561
|
n0,
|
|
557
562
|
_LSGI,
|
|
@@ -562,7 +567,7 @@ var ListStreamGroupsInput = [
|
|
|
562
567
|
[1, { [_hQ]: _MR }],
|
|
563
568
|
],
|
|
564
569
|
];
|
|
565
|
-
var ListStreamGroupsOutput = [
|
|
570
|
+
var ListStreamGroupsOutput$ = [
|
|
566
571
|
3,
|
|
567
572
|
n0,
|
|
568
573
|
_LSGO,
|
|
@@ -570,7 +575,7 @@ var ListStreamGroupsOutput = [
|
|
|
570
575
|
[_It, _NT],
|
|
571
576
|
[() => StreamGroupSummaryList, 0],
|
|
572
577
|
];
|
|
573
|
-
var ListStreamSessionsByAccountInput = [
|
|
578
|
+
var ListStreamSessionsByAccountInput$ = [
|
|
574
579
|
3,
|
|
575
580
|
n0,
|
|
576
581
|
_LSSBAI,
|
|
@@ -583,7 +588,7 @@ var ListStreamSessionsByAccountInput = [
|
|
|
583
588
|
[1, { [_hQ]: _MR }],
|
|
584
589
|
],
|
|
585
590
|
];
|
|
586
|
-
var ListStreamSessionsByAccountOutput = [
|
|
591
|
+
var ListStreamSessionsByAccountOutput$ = [
|
|
587
592
|
3,
|
|
588
593
|
n0,
|
|
589
594
|
_LSSBAO,
|
|
@@ -591,7 +596,7 @@ var ListStreamSessionsByAccountOutput = [
|
|
|
591
596
|
[_It, _NT],
|
|
592
597
|
[() => StreamSessionSummaryList, 0],
|
|
593
598
|
];
|
|
594
|
-
var ListStreamSessionsInput = [
|
|
599
|
+
var ListStreamSessionsInput$ = [
|
|
595
600
|
3,
|
|
596
601
|
n0,
|
|
597
602
|
_LSSI,
|
|
@@ -605,7 +610,7 @@ var ListStreamSessionsInput = [
|
|
|
605
610
|
[0, 1],
|
|
606
611
|
],
|
|
607
612
|
];
|
|
608
|
-
var ListStreamSessionsOutput = [
|
|
613
|
+
var ListStreamSessionsOutput$ = [
|
|
609
614
|
3,
|
|
610
615
|
n0,
|
|
611
616
|
_LSSO,
|
|
@@ -613,18 +618,26 @@ var ListStreamSessionsOutput = [
|
|
|
613
618
|
[_It, _NT],
|
|
614
619
|
[() => StreamSessionSummaryList, 0],
|
|
615
620
|
];
|
|
616
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
617
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
|
|
618
|
-
var LocationConfiguration = [
|
|
619
|
-
|
|
621
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
622
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
|
|
623
|
+
var LocationConfiguration$ = [
|
|
624
|
+
3,
|
|
625
|
+
n0,
|
|
626
|
+
_LCo,
|
|
627
|
+
0,
|
|
628
|
+
[_LN, _AOC, _ODC, _TIC, _MC],
|
|
629
|
+
[0, 1, 1, 1, 1],
|
|
630
|
+
];
|
|
631
|
+
var LocationState$ = [
|
|
620
632
|
3,
|
|
621
633
|
n0,
|
|
622
634
|
_LSo,
|
|
623
635
|
0,
|
|
624
|
-
[_LN, _S, _AOC, _ODC, _RC, _AC, _IC],
|
|
625
|
-
[0, 0, 1, 1, 1, 1, 1],
|
|
636
|
+
[_LN, _S, _AOC, _ODC, _TIC, _MC, _RC, _AC, _IC],
|
|
637
|
+
[0, 0, 1, 1, 1, 1, 1, 1, 1],
|
|
626
638
|
];
|
|
627
|
-
var
|
|
639
|
+
var PerformanceStatsConfiguration$ = [3, n0, _PSC, 0, [_SWC], [2]];
|
|
640
|
+
var RemoveStreamGroupLocationsInput$ = [
|
|
628
641
|
3,
|
|
629
642
|
n0,
|
|
630
643
|
_RSGLI,
|
|
@@ -635,26 +648,40 @@ var RemoveStreamGroupLocationsInput = [
|
|
|
635
648
|
[64 | 0, { [_hQ]: _l }],
|
|
636
649
|
],
|
|
637
650
|
];
|
|
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
|
|
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
|
|
644
|
-
var StartStreamSessionInput = [
|
|
651
|
+
var ReplicationStatus$ = [3, n0, _RSe, 0, [_Lo, _S], [0, 0]];
|
|
652
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
653
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
654
|
+
var RuntimeEnvironment$ = [3, n0, _RE, 0, [_Ty, _V], [0, 0]];
|
|
655
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
656
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
657
|
+
var StartStreamSessionInput$ = [
|
|
645
658
|
3,
|
|
646
659
|
n0,
|
|
647
660
|
_SSSI,
|
|
648
661
|
0,
|
|
649
|
-
[_CT, _D, _I, _P, _SR, _AIp, _UI, _L, _CTS, _SLS, _ALA, _AEV],
|
|
650
|
-
[
|
|
662
|
+
[_CT, _D, _I, _P, _SR, _AIp, _UI, _L, _CTS, _SLS, _ALA, _AEV, _PSC],
|
|
663
|
+
[
|
|
664
|
+
[0, 4],
|
|
665
|
+
0,
|
|
666
|
+
[0, 1],
|
|
667
|
+
0,
|
|
668
|
+
[() => SignalRequest, 0],
|
|
669
|
+
0,
|
|
670
|
+
0,
|
|
671
|
+
64 | 0,
|
|
672
|
+
1,
|
|
673
|
+
1,
|
|
674
|
+
64 | 0,
|
|
675
|
+
128 | 0,
|
|
676
|
+
() => PerformanceStatsConfiguration$,
|
|
677
|
+
],
|
|
651
678
|
];
|
|
652
|
-
var StartStreamSessionOutput = [
|
|
679
|
+
var StartStreamSessionOutput$ = [
|
|
653
680
|
3,
|
|
654
681
|
n0,
|
|
655
682
|
_SSSO,
|
|
656
683
|
0,
|
|
657
|
-
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
684
|
+
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
658
685
|
[
|
|
659
686
|
0,
|
|
660
687
|
0,
|
|
@@ -670,33 +697,34 @@ var StartStreamSessionOutput = [
|
|
|
670
697
|
1,
|
|
671
698
|
64 | 0,
|
|
672
699
|
128 | 0,
|
|
700
|
+
() => PerformanceStatsConfiguration$,
|
|
673
701
|
0,
|
|
674
702
|
0,
|
|
675
703
|
4,
|
|
676
704
|
4,
|
|
677
705
|
0,
|
|
678
|
-
() => ExportFilesMetadata
|
|
706
|
+
() => ExportFilesMetadata$,
|
|
679
707
|
],
|
|
680
708
|
];
|
|
681
|
-
var StreamGroupSummary = [
|
|
709
|
+
var StreamGroupSummary$ = [
|
|
682
710
|
3,
|
|
683
711
|
n0,
|
|
684
712
|
_SGS,
|
|
685
713
|
0,
|
|
686
714
|
[_A, _Id, _D, _DA, _SC, _S, _CA, _LUA, _EA],
|
|
687
|
-
[0, 0, 0, () => DefaultApplication
|
|
715
|
+
[0, 0, 0, () => DefaultApplication$, 0, 0, 4, 4, 4],
|
|
688
716
|
];
|
|
689
|
-
var StreamSessionSummary = [
|
|
717
|
+
var StreamSessionSummary$ = [
|
|
690
718
|
3,
|
|
691
719
|
n0,
|
|
692
720
|
_SSS,
|
|
693
721
|
0,
|
|
694
|
-
[_A, _UI, _S, _P, _LUA, _CA, _AAp, _EFM, _Lo],
|
|
695
|
-
[0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata
|
|
722
|
+
[_A, _UI, _S, _SRt, _P, _LUA, _CA, _AAp, _EFM, _Lo],
|
|
723
|
+
[0, 0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, 0],
|
|
696
724
|
];
|
|
697
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _T], [[0, 1], 128 | 0]];
|
|
698
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
699
|
-
var TerminateStreamSessionInput = [
|
|
725
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _T], [[0, 1], 128 | 0]];
|
|
726
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
727
|
+
var TerminateStreamSessionInput$ = [
|
|
700
728
|
3,
|
|
701
729
|
n0,
|
|
702
730
|
_TSSI,
|
|
@@ -707,9 +735,9 @@ var TerminateStreamSessionInput = [
|
|
|
707
735
|
[0, 1],
|
|
708
736
|
],
|
|
709
737
|
];
|
|
710
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
711
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
712
|
-
var UntagResourceRequest = [
|
|
738
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
739
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
740
|
+
var UntagResourceRequest$ = [
|
|
713
741
|
3,
|
|
714
742
|
n0,
|
|
715
743
|
_URR,
|
|
@@ -720,8 +748,8 @@ var UntagResourceRequest = [
|
|
|
720
748
|
[64 | 0, { [_hQ]: _tK }],
|
|
721
749
|
],
|
|
722
750
|
];
|
|
723
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
724
|
-
var UpdateApplicationInput = [
|
|
751
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
752
|
+
var UpdateApplicationInput$ = [
|
|
725
753
|
3,
|
|
726
754
|
n0,
|
|
727
755
|
_UAI,
|
|
@@ -729,15 +757,15 @@ var UpdateApplicationInput = [
|
|
|
729
757
|
[_I, _D, _ALP, _ALOU],
|
|
730
758
|
[[0, 1], 0, 64 | 0, 0],
|
|
731
759
|
];
|
|
732
|
-
var UpdateApplicationOutput = [
|
|
760
|
+
var UpdateApplicationOutput$ = [
|
|
733
761
|
3,
|
|
734
762
|
n0,
|
|
735
763
|
_UAO,
|
|
736
764
|
0,
|
|
737
765
|
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
738
|
-
[0, 0, () => RuntimeEnvironment
|
|
766
|
+
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0],
|
|
739
767
|
];
|
|
740
|
-
var UpdateStreamGroupInput = [
|
|
768
|
+
var UpdateStreamGroupInput$ = [
|
|
741
769
|
3,
|
|
742
770
|
n0,
|
|
743
771
|
_USGI,
|
|
@@ -745,216 +773,223 @@ var UpdateStreamGroupInput = [
|
|
|
745
773
|
[_I, _LC, _D, _DAI],
|
|
746
774
|
[[0, 1], () => LocationConfigurations, 0, 0],
|
|
747
775
|
];
|
|
748
|
-
var UpdateStreamGroupOutput = [
|
|
776
|
+
var UpdateStreamGroupOutput$ = [
|
|
749
777
|
3,
|
|
750
778
|
n0,
|
|
751
779
|
_USGO,
|
|
752
780
|
0,
|
|
753
781
|
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
754
|
-
[0, 0, () => DefaultApplication
|
|
782
|
+
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0],
|
|
755
783
|
];
|
|
756
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
757
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
784
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
785
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
758
786
|
var __Unit = "unit";
|
|
759
|
-
var GameLiftStreamsServiceException = [
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
787
|
+
var GameLiftStreamsServiceException$ = [
|
|
788
|
+
-3,
|
|
789
|
+
_sm,
|
|
790
|
+
"GameLiftStreamsServiceException",
|
|
791
|
+
0,
|
|
792
|
+
[],
|
|
793
|
+
[],
|
|
794
|
+
];
|
|
795
|
+
schema.TypeRegistry.for(_sm).registerError(GameLiftStreamsServiceException$, GameLiftStreamsServiceException);
|
|
796
|
+
var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary$];
|
|
797
|
+
var LocationConfigurations = [1, n0, _LC, 0, () => LocationConfiguration$];
|
|
798
|
+
var LocationStates = [1, n0, _LS, 0, () => LocationState$];
|
|
799
|
+
var ReplicationStatuses = [1, n0, _RS, 0, () => ReplicationStatus$];
|
|
800
|
+
var StreamGroupSummaryList = [1, n0, _SGSL, 0, () => StreamGroupSummary$];
|
|
801
|
+
var StreamSessionSummaryList = [1, n0, _SSSL, 0, () => StreamSessionSummary$];
|
|
802
|
+
var AddStreamGroupLocations$ = [
|
|
768
803
|
9,
|
|
769
804
|
n0,
|
|
770
805
|
_ASGL,
|
|
771
806
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/locations", 200] },
|
|
772
|
-
() => AddStreamGroupLocationsInput
|
|
773
|
-
() => AddStreamGroupLocationsOutput
|
|
807
|
+
() => AddStreamGroupLocationsInput$,
|
|
808
|
+
() => AddStreamGroupLocationsOutput$,
|
|
774
809
|
];
|
|
775
|
-
var AssociateApplications = [
|
|
810
|
+
var AssociateApplications$ = [
|
|
776
811
|
9,
|
|
777
812
|
n0,
|
|
778
813
|
_AAss,
|
|
779
814
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/associations", 200] },
|
|
780
|
-
() => AssociateApplicationsInput
|
|
781
|
-
() => AssociateApplicationsOutput
|
|
815
|
+
() => AssociateApplicationsInput$,
|
|
816
|
+
() => AssociateApplicationsOutput$,
|
|
782
817
|
];
|
|
783
|
-
var CreateApplication = [
|
|
818
|
+
var CreateApplication$ = [
|
|
784
819
|
9,
|
|
785
820
|
n0,
|
|
786
821
|
_CAr,
|
|
787
822
|
{ [_h]: ["POST", "/applications", 201] },
|
|
788
|
-
() => CreateApplicationInput
|
|
789
|
-
() => CreateApplicationOutput
|
|
823
|
+
() => CreateApplicationInput$,
|
|
824
|
+
() => CreateApplicationOutput$,
|
|
790
825
|
];
|
|
791
|
-
var CreateStreamGroup = [
|
|
826
|
+
var CreateStreamGroup$ = [
|
|
792
827
|
9,
|
|
793
828
|
n0,
|
|
794
829
|
_CSG,
|
|
795
830
|
{ [_h]: ["POST", "/streamgroups", 201] },
|
|
796
|
-
() => CreateStreamGroupInput
|
|
797
|
-
() => CreateStreamGroupOutput
|
|
831
|
+
() => CreateStreamGroupInput$,
|
|
832
|
+
() => CreateStreamGroupOutput$,
|
|
798
833
|
];
|
|
799
|
-
var CreateStreamSessionConnection = [
|
|
834
|
+
var CreateStreamSessionConnection$ = [
|
|
800
835
|
9,
|
|
801
836
|
n0,
|
|
802
837
|
_CSSC,
|
|
803
838
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/connections", 200] },
|
|
804
|
-
() => CreateStreamSessionConnectionInput
|
|
805
|
-
() => CreateStreamSessionConnectionOutput
|
|
839
|
+
() => CreateStreamSessionConnectionInput$,
|
|
840
|
+
() => CreateStreamSessionConnectionOutput$,
|
|
806
841
|
];
|
|
807
|
-
var DeleteApplication = [
|
|
842
|
+
var DeleteApplication$ = [
|
|
808
843
|
9,
|
|
809
844
|
n0,
|
|
810
845
|
_DAe,
|
|
811
846
|
{ [_h]: ["DELETE", "/applications/{Identifier}", 204] },
|
|
812
|
-
() => DeleteApplicationInput
|
|
847
|
+
() => DeleteApplicationInput$,
|
|
813
848
|
() => __Unit,
|
|
814
849
|
];
|
|
815
|
-
var DeleteStreamGroup = [
|
|
850
|
+
var DeleteStreamGroup$ = [
|
|
816
851
|
9,
|
|
817
852
|
n0,
|
|
818
853
|
_DSG,
|
|
819
854
|
{ [_h]: ["DELETE", "/streamgroups/{Identifier}", 204] },
|
|
820
|
-
() => DeleteStreamGroupInput
|
|
855
|
+
() => DeleteStreamGroupInput$,
|
|
821
856
|
() => __Unit,
|
|
822
857
|
];
|
|
823
|
-
var DisassociateApplications = [
|
|
858
|
+
var DisassociateApplications$ = [
|
|
824
859
|
9,
|
|
825
860
|
n0,
|
|
826
861
|
_DAi,
|
|
827
862
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/disassociations", 200] },
|
|
828
|
-
() => DisassociateApplicationsInput
|
|
829
|
-
() => DisassociateApplicationsOutput
|
|
863
|
+
() => DisassociateApplicationsInput$,
|
|
864
|
+
() => DisassociateApplicationsOutput$,
|
|
830
865
|
];
|
|
831
|
-
var ExportStreamSessionFiles = [
|
|
866
|
+
var ExportStreamSessionFiles$ = [
|
|
832
867
|
9,
|
|
833
868
|
n0,
|
|
834
869
|
_ESSF,
|
|
835
870
|
{ [_h]: ["PUT", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/exportfiles", 200] },
|
|
836
|
-
() => ExportStreamSessionFilesInput
|
|
837
|
-
() => ExportStreamSessionFilesOutput
|
|
871
|
+
() => ExportStreamSessionFilesInput$,
|
|
872
|
+
() => ExportStreamSessionFilesOutput$,
|
|
838
873
|
];
|
|
839
|
-
var GetApplication = [
|
|
874
|
+
var GetApplication$ = [
|
|
840
875
|
9,
|
|
841
876
|
n0,
|
|
842
877
|
_GA,
|
|
843
878
|
{ [_h]: ["GET", "/applications/{Identifier}", 200] },
|
|
844
|
-
() => GetApplicationInput
|
|
845
|
-
() => GetApplicationOutput
|
|
879
|
+
() => GetApplicationInput$,
|
|
880
|
+
() => GetApplicationOutput$,
|
|
846
881
|
];
|
|
847
|
-
var GetStreamGroup = [
|
|
882
|
+
var GetStreamGroup$ = [
|
|
848
883
|
9,
|
|
849
884
|
n0,
|
|
850
885
|
_GSG,
|
|
851
886
|
{ [_h]: ["GET", "/streamgroups/{Identifier}", 200] },
|
|
852
|
-
() => GetStreamGroupInput
|
|
853
|
-
() => GetStreamGroupOutput
|
|
887
|
+
() => GetStreamGroupInput$,
|
|
888
|
+
() => GetStreamGroupOutput$,
|
|
854
889
|
];
|
|
855
|
-
var GetStreamSession = [
|
|
890
|
+
var GetStreamSession$ = [
|
|
856
891
|
9,
|
|
857
892
|
n0,
|
|
858
893
|
_GSS,
|
|
859
894
|
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 200] },
|
|
860
|
-
() => GetStreamSessionInput
|
|
861
|
-
() => GetStreamSessionOutput
|
|
895
|
+
() => GetStreamSessionInput$,
|
|
896
|
+
() => GetStreamSessionOutput$,
|
|
862
897
|
];
|
|
863
|
-
var ListApplications = [
|
|
898
|
+
var ListApplications$ = [
|
|
864
899
|
9,
|
|
865
900
|
n0,
|
|
866
901
|
_LA,
|
|
867
902
|
{ [_h]: ["GET", "/applications", 200] },
|
|
868
|
-
() => ListApplicationsInput
|
|
869
|
-
() => ListApplicationsOutput
|
|
903
|
+
() => ListApplicationsInput$,
|
|
904
|
+
() => ListApplicationsOutput$,
|
|
870
905
|
];
|
|
871
|
-
var ListStreamGroups = [
|
|
906
|
+
var ListStreamGroups$ = [
|
|
872
907
|
9,
|
|
873
908
|
n0,
|
|
874
909
|
_LSG,
|
|
875
910
|
{ [_h]: ["GET", "/streamgroups", 200] },
|
|
876
|
-
() => ListStreamGroupsInput
|
|
877
|
-
() => ListStreamGroupsOutput
|
|
911
|
+
() => ListStreamGroupsInput$,
|
|
912
|
+
() => ListStreamGroupsOutput$,
|
|
878
913
|
];
|
|
879
|
-
var ListStreamSessions = [
|
|
914
|
+
var ListStreamSessions$ = [
|
|
880
915
|
9,
|
|
881
916
|
n0,
|
|
882
917
|
_LSS,
|
|
883
918
|
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions", 200] },
|
|
884
|
-
() => ListStreamSessionsInput
|
|
885
|
-
() => ListStreamSessionsOutput
|
|
919
|
+
() => ListStreamSessionsInput$,
|
|
920
|
+
() => ListStreamSessionsOutput$,
|
|
886
921
|
];
|
|
887
|
-
var ListStreamSessionsByAccount = [
|
|
922
|
+
var ListStreamSessionsByAccount$ = [
|
|
888
923
|
9,
|
|
889
924
|
n0,
|
|
890
925
|
_LSSBA,
|
|
891
926
|
{ [_h]: ["GET", "/streamsessions", 200] },
|
|
892
|
-
() => ListStreamSessionsByAccountInput
|
|
893
|
-
() => ListStreamSessionsByAccountOutput
|
|
927
|
+
() => ListStreamSessionsByAccountInput$,
|
|
928
|
+
() => ListStreamSessionsByAccountOutput$,
|
|
894
929
|
];
|
|
895
|
-
var ListTagsForResource = [
|
|
930
|
+
var ListTagsForResource$ = [
|
|
896
931
|
9,
|
|
897
932
|
n0,
|
|
898
933
|
_LTFR,
|
|
899
934
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
900
|
-
() => ListTagsForResourceRequest
|
|
901
|
-
() => ListTagsForResourceResponse
|
|
935
|
+
() => ListTagsForResourceRequest$,
|
|
936
|
+
() => ListTagsForResourceResponse$,
|
|
902
937
|
];
|
|
903
|
-
var RemoveStreamGroupLocations = [
|
|
938
|
+
var RemoveStreamGroupLocations$ = [
|
|
904
939
|
9,
|
|
905
940
|
n0,
|
|
906
941
|
_RSGL,
|
|
907
942
|
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/locations", 204] },
|
|
908
|
-
() => RemoveStreamGroupLocationsInput
|
|
943
|
+
() => RemoveStreamGroupLocationsInput$,
|
|
909
944
|
() => __Unit,
|
|
910
945
|
];
|
|
911
|
-
var StartStreamSession = [
|
|
946
|
+
var StartStreamSession$ = [
|
|
912
947
|
9,
|
|
913
948
|
n0,
|
|
914
949
|
_SSSt,
|
|
915
950
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions", 201] },
|
|
916
|
-
() => StartStreamSessionInput
|
|
917
|
-
() => StartStreamSessionOutput
|
|
951
|
+
() => StartStreamSessionInput$,
|
|
952
|
+
() => StartStreamSessionOutput$,
|
|
918
953
|
];
|
|
919
|
-
var TagResource = [
|
|
954
|
+
var TagResource$ = [
|
|
920
955
|
9,
|
|
921
956
|
n0,
|
|
922
957
|
_TR,
|
|
923
958
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] },
|
|
924
|
-
() => TagResourceRequest
|
|
925
|
-
() => TagResourceResponse
|
|
959
|
+
() => TagResourceRequest$,
|
|
960
|
+
() => TagResourceResponse$,
|
|
926
961
|
];
|
|
927
|
-
var TerminateStreamSession = [
|
|
962
|
+
var TerminateStreamSession$ = [
|
|
928
963
|
9,
|
|
929
964
|
n0,
|
|
930
965
|
_TSS,
|
|
931
966
|
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 204] },
|
|
932
|
-
() => TerminateStreamSessionInput
|
|
967
|
+
() => TerminateStreamSessionInput$,
|
|
933
968
|
() => __Unit,
|
|
934
969
|
];
|
|
935
|
-
var UntagResource = [
|
|
970
|
+
var UntagResource$ = [
|
|
936
971
|
9,
|
|
937
972
|
n0,
|
|
938
973
|
_UR,
|
|
939
974
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
|
|
940
|
-
() => UntagResourceRequest
|
|
941
|
-
() => UntagResourceResponse
|
|
975
|
+
() => UntagResourceRequest$,
|
|
976
|
+
() => UntagResourceResponse$,
|
|
942
977
|
];
|
|
943
|
-
var UpdateApplication = [
|
|
978
|
+
var UpdateApplication$ = [
|
|
944
979
|
9,
|
|
945
980
|
n0,
|
|
946
981
|
_UA,
|
|
947
982
|
{ [_h]: ["PATCH", "/applications/{Identifier}", 200] },
|
|
948
|
-
() => UpdateApplicationInput
|
|
949
|
-
() => UpdateApplicationOutput
|
|
983
|
+
() => UpdateApplicationInput$,
|
|
984
|
+
() => UpdateApplicationOutput$,
|
|
950
985
|
];
|
|
951
|
-
var UpdateStreamGroup = [
|
|
986
|
+
var UpdateStreamGroup$ = [
|
|
952
987
|
9,
|
|
953
988
|
n0,
|
|
954
989
|
_USG,
|
|
955
990
|
{ [_h]: ["PATCH", "/streamgroups/{Identifier}", 200] },
|
|
956
|
-
() => UpdateStreamGroupInput
|
|
957
|
-
() => UpdateStreamGroupOutput
|
|
991
|
+
() => UpdateStreamGroupInput$,
|
|
992
|
+
() => UpdateStreamGroupOutput$,
|
|
958
993
|
];
|
|
959
994
|
|
|
960
995
|
class AddStreamGroupLocationsCommand extends smithyClient.Command
|
|
@@ -965,7 +1000,7 @@ class AddStreamGroupLocationsCommand extends smithyClient.Command
|
|
|
965
1000
|
})
|
|
966
1001
|
.s("GameLiftStreams", "AddStreamGroupLocations", {})
|
|
967
1002
|
.n("GameLiftStreamsClient", "AddStreamGroupLocationsCommand")
|
|
968
|
-
.sc(AddStreamGroupLocations)
|
|
1003
|
+
.sc(AddStreamGroupLocations$)
|
|
969
1004
|
.build() {
|
|
970
1005
|
}
|
|
971
1006
|
|
|
@@ -977,7 +1012,7 @@ class AssociateApplicationsCommand extends smithyClient.Command
|
|
|
977
1012
|
})
|
|
978
1013
|
.s("GameLiftStreams", "AssociateApplications", {})
|
|
979
1014
|
.n("GameLiftStreamsClient", "AssociateApplicationsCommand")
|
|
980
|
-
.sc(AssociateApplications)
|
|
1015
|
+
.sc(AssociateApplications$)
|
|
981
1016
|
.build() {
|
|
982
1017
|
}
|
|
983
1018
|
|
|
@@ -989,7 +1024,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
989
1024
|
})
|
|
990
1025
|
.s("GameLiftStreams", "CreateApplication", {})
|
|
991
1026
|
.n("GameLiftStreamsClient", "CreateApplicationCommand")
|
|
992
|
-
.sc(CreateApplication)
|
|
1027
|
+
.sc(CreateApplication$)
|
|
993
1028
|
.build() {
|
|
994
1029
|
}
|
|
995
1030
|
|
|
@@ -1001,7 +1036,7 @@ class CreateStreamGroupCommand extends smithyClient.Command
|
|
|
1001
1036
|
})
|
|
1002
1037
|
.s("GameLiftStreams", "CreateStreamGroup", {})
|
|
1003
1038
|
.n("GameLiftStreamsClient", "CreateStreamGroupCommand")
|
|
1004
|
-
.sc(CreateStreamGroup)
|
|
1039
|
+
.sc(CreateStreamGroup$)
|
|
1005
1040
|
.build() {
|
|
1006
1041
|
}
|
|
1007
1042
|
|
|
@@ -1013,7 +1048,7 @@ class CreateStreamSessionConnectionCommand extends smithyClient.Command
|
|
|
1013
1048
|
})
|
|
1014
1049
|
.s("GameLiftStreams", "CreateStreamSessionConnection", {})
|
|
1015
1050
|
.n("GameLiftStreamsClient", "CreateStreamSessionConnectionCommand")
|
|
1016
|
-
.sc(CreateStreamSessionConnection)
|
|
1051
|
+
.sc(CreateStreamSessionConnection$)
|
|
1017
1052
|
.build() {
|
|
1018
1053
|
}
|
|
1019
1054
|
|
|
@@ -1025,7 +1060,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
1025
1060
|
})
|
|
1026
1061
|
.s("GameLiftStreams", "DeleteApplication", {})
|
|
1027
1062
|
.n("GameLiftStreamsClient", "DeleteApplicationCommand")
|
|
1028
|
-
.sc(DeleteApplication)
|
|
1063
|
+
.sc(DeleteApplication$)
|
|
1029
1064
|
.build() {
|
|
1030
1065
|
}
|
|
1031
1066
|
|
|
@@ -1037,7 +1072,7 @@ class DeleteStreamGroupCommand extends smithyClient.Command
|
|
|
1037
1072
|
})
|
|
1038
1073
|
.s("GameLiftStreams", "DeleteStreamGroup", {})
|
|
1039
1074
|
.n("GameLiftStreamsClient", "DeleteStreamGroupCommand")
|
|
1040
|
-
.sc(DeleteStreamGroup)
|
|
1075
|
+
.sc(DeleteStreamGroup$)
|
|
1041
1076
|
.build() {
|
|
1042
1077
|
}
|
|
1043
1078
|
|
|
@@ -1049,7 +1084,7 @@ class DisassociateApplicationsCommand extends smithyClient.Command
|
|
|
1049
1084
|
})
|
|
1050
1085
|
.s("GameLiftStreams", "DisassociateApplications", {})
|
|
1051
1086
|
.n("GameLiftStreamsClient", "DisassociateApplicationsCommand")
|
|
1052
|
-
.sc(DisassociateApplications)
|
|
1087
|
+
.sc(DisassociateApplications$)
|
|
1053
1088
|
.build() {
|
|
1054
1089
|
}
|
|
1055
1090
|
|
|
@@ -1061,7 +1096,7 @@ class ExportStreamSessionFilesCommand extends smithyClient.Command
|
|
|
1061
1096
|
})
|
|
1062
1097
|
.s("GameLiftStreams", "ExportStreamSessionFiles", {})
|
|
1063
1098
|
.n("GameLiftStreamsClient", "ExportStreamSessionFilesCommand")
|
|
1064
|
-
.sc(ExportStreamSessionFiles)
|
|
1099
|
+
.sc(ExportStreamSessionFiles$)
|
|
1065
1100
|
.build() {
|
|
1066
1101
|
}
|
|
1067
1102
|
|
|
@@ -1073,7 +1108,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
1073
1108
|
})
|
|
1074
1109
|
.s("GameLiftStreams", "GetApplication", {})
|
|
1075
1110
|
.n("GameLiftStreamsClient", "GetApplicationCommand")
|
|
1076
|
-
.sc(GetApplication)
|
|
1111
|
+
.sc(GetApplication$)
|
|
1077
1112
|
.build() {
|
|
1078
1113
|
}
|
|
1079
1114
|
|
|
@@ -1085,7 +1120,7 @@ class GetStreamGroupCommand extends smithyClient.Command
|
|
|
1085
1120
|
})
|
|
1086
1121
|
.s("GameLiftStreams", "GetStreamGroup", {})
|
|
1087
1122
|
.n("GameLiftStreamsClient", "GetStreamGroupCommand")
|
|
1088
|
-
.sc(GetStreamGroup)
|
|
1123
|
+
.sc(GetStreamGroup$)
|
|
1089
1124
|
.build() {
|
|
1090
1125
|
}
|
|
1091
1126
|
|
|
@@ -1097,7 +1132,7 @@ class GetStreamSessionCommand extends smithyClient.Command
|
|
|
1097
1132
|
})
|
|
1098
1133
|
.s("GameLiftStreams", "GetStreamSession", {})
|
|
1099
1134
|
.n("GameLiftStreamsClient", "GetStreamSessionCommand")
|
|
1100
|
-
.sc(GetStreamSession)
|
|
1135
|
+
.sc(GetStreamSession$)
|
|
1101
1136
|
.build() {
|
|
1102
1137
|
}
|
|
1103
1138
|
|
|
@@ -1109,7 +1144,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1109
1144
|
})
|
|
1110
1145
|
.s("GameLiftStreams", "ListApplications", {})
|
|
1111
1146
|
.n("GameLiftStreamsClient", "ListApplicationsCommand")
|
|
1112
|
-
.sc(ListApplications)
|
|
1147
|
+
.sc(ListApplications$)
|
|
1113
1148
|
.build() {
|
|
1114
1149
|
}
|
|
1115
1150
|
|
|
@@ -1121,7 +1156,7 @@ class ListStreamGroupsCommand extends smithyClient.Command
|
|
|
1121
1156
|
})
|
|
1122
1157
|
.s("GameLiftStreams", "ListStreamGroups", {})
|
|
1123
1158
|
.n("GameLiftStreamsClient", "ListStreamGroupsCommand")
|
|
1124
|
-
.sc(ListStreamGroups)
|
|
1159
|
+
.sc(ListStreamGroups$)
|
|
1125
1160
|
.build() {
|
|
1126
1161
|
}
|
|
1127
1162
|
|
|
@@ -1133,7 +1168,7 @@ class ListStreamSessionsByAccountCommand extends smithyClient.Command
|
|
|
1133
1168
|
})
|
|
1134
1169
|
.s("GameLiftStreams", "ListStreamSessionsByAccount", {})
|
|
1135
1170
|
.n("GameLiftStreamsClient", "ListStreamSessionsByAccountCommand")
|
|
1136
|
-
.sc(ListStreamSessionsByAccount)
|
|
1171
|
+
.sc(ListStreamSessionsByAccount$)
|
|
1137
1172
|
.build() {
|
|
1138
1173
|
}
|
|
1139
1174
|
|
|
@@ -1145,7 +1180,7 @@ class ListStreamSessionsCommand extends smithyClient.Command
|
|
|
1145
1180
|
})
|
|
1146
1181
|
.s("GameLiftStreams", "ListStreamSessions", {})
|
|
1147
1182
|
.n("GameLiftStreamsClient", "ListStreamSessionsCommand")
|
|
1148
|
-
.sc(ListStreamSessions)
|
|
1183
|
+
.sc(ListStreamSessions$)
|
|
1149
1184
|
.build() {
|
|
1150
1185
|
}
|
|
1151
1186
|
|
|
@@ -1157,7 +1192,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1157
1192
|
})
|
|
1158
1193
|
.s("GameLiftStreams", "ListTagsForResource", {})
|
|
1159
1194
|
.n("GameLiftStreamsClient", "ListTagsForResourceCommand")
|
|
1160
|
-
.sc(ListTagsForResource)
|
|
1195
|
+
.sc(ListTagsForResource$)
|
|
1161
1196
|
.build() {
|
|
1162
1197
|
}
|
|
1163
1198
|
|
|
@@ -1169,7 +1204,7 @@ class RemoveStreamGroupLocationsCommand extends smithyClient.Command
|
|
|
1169
1204
|
})
|
|
1170
1205
|
.s("GameLiftStreams", "RemoveStreamGroupLocations", {})
|
|
1171
1206
|
.n("GameLiftStreamsClient", "RemoveStreamGroupLocationsCommand")
|
|
1172
|
-
.sc(RemoveStreamGroupLocations)
|
|
1207
|
+
.sc(RemoveStreamGroupLocations$)
|
|
1173
1208
|
.build() {
|
|
1174
1209
|
}
|
|
1175
1210
|
|
|
@@ -1181,7 +1216,7 @@ class StartStreamSessionCommand extends smithyClient.Command
|
|
|
1181
1216
|
})
|
|
1182
1217
|
.s("GameLiftStreams", "StartStreamSession", {})
|
|
1183
1218
|
.n("GameLiftStreamsClient", "StartStreamSessionCommand")
|
|
1184
|
-
.sc(StartStreamSession)
|
|
1219
|
+
.sc(StartStreamSession$)
|
|
1185
1220
|
.build() {
|
|
1186
1221
|
}
|
|
1187
1222
|
|
|
@@ -1193,7 +1228,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1193
1228
|
})
|
|
1194
1229
|
.s("GameLiftStreams", "TagResource", {})
|
|
1195
1230
|
.n("GameLiftStreamsClient", "TagResourceCommand")
|
|
1196
|
-
.sc(TagResource)
|
|
1231
|
+
.sc(TagResource$)
|
|
1197
1232
|
.build() {
|
|
1198
1233
|
}
|
|
1199
1234
|
|
|
@@ -1205,7 +1240,7 @@ class TerminateStreamSessionCommand extends smithyClient.Command
|
|
|
1205
1240
|
})
|
|
1206
1241
|
.s("GameLiftStreams", "TerminateStreamSession", {})
|
|
1207
1242
|
.n("GameLiftStreamsClient", "TerminateStreamSessionCommand")
|
|
1208
|
-
.sc(TerminateStreamSession)
|
|
1243
|
+
.sc(TerminateStreamSession$)
|
|
1209
1244
|
.build() {
|
|
1210
1245
|
}
|
|
1211
1246
|
|
|
@@ -1217,7 +1252,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1217
1252
|
})
|
|
1218
1253
|
.s("GameLiftStreams", "UntagResource", {})
|
|
1219
1254
|
.n("GameLiftStreamsClient", "UntagResourceCommand")
|
|
1220
|
-
.sc(UntagResource)
|
|
1255
|
+
.sc(UntagResource$)
|
|
1221
1256
|
.build() {
|
|
1222
1257
|
}
|
|
1223
1258
|
|
|
@@ -1229,7 +1264,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1229
1264
|
})
|
|
1230
1265
|
.s("GameLiftStreams", "UpdateApplication", {})
|
|
1231
1266
|
.n("GameLiftStreamsClient", "UpdateApplicationCommand")
|
|
1232
|
-
.sc(UpdateApplication)
|
|
1267
|
+
.sc(UpdateApplication$)
|
|
1233
1268
|
.build() {
|
|
1234
1269
|
}
|
|
1235
1270
|
|
|
@@ -1241,7 +1276,7 @@ class UpdateStreamGroupCommand extends smithyClient.Command
|
|
|
1241
1276
|
})
|
|
1242
1277
|
.s("GameLiftStreams", "UpdateStreamGroup", {})
|
|
1243
1278
|
.n("GameLiftStreamsClient", "UpdateStreamGroupCommand")
|
|
1244
|
-
.sc(UpdateStreamGroup)
|
|
1279
|
+
.sc(UpdateStreamGroup$)
|
|
1245
1280
|
.build() {
|
|
1246
1281
|
}
|
|
1247
1282
|
|
|
@@ -1499,6 +1534,13 @@ const StreamClass = {
|
|
|
1499
1534
|
gen5n_high: "gen5n_high",
|
|
1500
1535
|
gen5n_ultra: "gen5n_ultra",
|
|
1501
1536
|
gen5n_win2022: "gen5n_win2022",
|
|
1537
|
+
gen6n_high: "gen6n_high",
|
|
1538
|
+
gen6n_medium: "gen6n_medium",
|
|
1539
|
+
gen6n_pro: "gen6n_pro",
|
|
1540
|
+
gen6n_pro_win2022: "gen6n_pro_win2022",
|
|
1541
|
+
gen6n_small: "gen6n_small",
|
|
1542
|
+
gen6n_ultra: "gen6n_ultra",
|
|
1543
|
+
gen6n_ultra_win2022: "gen6n_ultra_win2022",
|
|
1502
1544
|
};
|
|
1503
1545
|
const StreamGroupStatus = {
|
|
1504
1546
|
ACTIVATING: "ACTIVATING",
|
|
@@ -1552,52 +1594,138 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1552
1594
|
enumerable: true,
|
|
1553
1595
|
get: function () { return smithyClient.Client; }
|
|
1554
1596
|
});
|
|
1555
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1597
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1598
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1599
|
+
exports.AddStreamGroupLocations$ = AddStreamGroupLocations$;
|
|
1556
1600
|
exports.AddStreamGroupLocationsCommand = AddStreamGroupLocationsCommand;
|
|
1601
|
+
exports.AddStreamGroupLocationsInput$ = AddStreamGroupLocationsInput$;
|
|
1602
|
+
exports.AddStreamGroupLocationsOutput$ = AddStreamGroupLocationsOutput$;
|
|
1557
1603
|
exports.ApplicationStatus = ApplicationStatus;
|
|
1558
1604
|
exports.ApplicationStatusReason = ApplicationStatusReason;
|
|
1605
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1606
|
+
exports.AssociateApplications$ = AssociateApplications$;
|
|
1559
1607
|
exports.AssociateApplicationsCommand = AssociateApplicationsCommand;
|
|
1560
|
-
exports.
|
|
1608
|
+
exports.AssociateApplicationsInput$ = AssociateApplicationsInput$;
|
|
1609
|
+
exports.AssociateApplicationsOutput$ = AssociateApplicationsOutput$;
|
|
1610
|
+
exports.ConflictException = ConflictException;
|
|
1611
|
+
exports.ConflictException$ = ConflictException$;
|
|
1612
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
1561
1613
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1614
|
+
exports.CreateApplicationInput$ = CreateApplicationInput$;
|
|
1615
|
+
exports.CreateApplicationOutput$ = CreateApplicationOutput$;
|
|
1616
|
+
exports.CreateStreamGroup$ = CreateStreamGroup$;
|
|
1562
1617
|
exports.CreateStreamGroupCommand = CreateStreamGroupCommand;
|
|
1618
|
+
exports.CreateStreamGroupInput$ = CreateStreamGroupInput$;
|
|
1619
|
+
exports.CreateStreamGroupOutput$ = CreateStreamGroupOutput$;
|
|
1620
|
+
exports.CreateStreamSessionConnection$ = CreateStreamSessionConnection$;
|
|
1563
1621
|
exports.CreateStreamSessionConnectionCommand = CreateStreamSessionConnectionCommand;
|
|
1622
|
+
exports.CreateStreamSessionConnectionInput$ = CreateStreamSessionConnectionInput$;
|
|
1623
|
+
exports.CreateStreamSessionConnectionOutput$ = CreateStreamSessionConnectionOutput$;
|
|
1624
|
+
exports.DefaultApplication$ = DefaultApplication$;
|
|
1625
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
1564
1626
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1627
|
+
exports.DeleteApplicationInput$ = DeleteApplicationInput$;
|
|
1628
|
+
exports.DeleteStreamGroup$ = DeleteStreamGroup$;
|
|
1565
1629
|
exports.DeleteStreamGroupCommand = DeleteStreamGroupCommand;
|
|
1630
|
+
exports.DeleteStreamGroupInput$ = DeleteStreamGroupInput$;
|
|
1631
|
+
exports.DisassociateApplications$ = DisassociateApplications$;
|
|
1566
1632
|
exports.DisassociateApplicationsCommand = DisassociateApplicationsCommand;
|
|
1633
|
+
exports.DisassociateApplicationsInput$ = DisassociateApplicationsInput$;
|
|
1634
|
+
exports.DisassociateApplicationsOutput$ = DisassociateApplicationsOutput$;
|
|
1635
|
+
exports.ExportFilesMetadata$ = ExportFilesMetadata$;
|
|
1567
1636
|
exports.ExportFilesStatus = ExportFilesStatus;
|
|
1637
|
+
exports.ExportStreamSessionFiles$ = ExportStreamSessionFiles$;
|
|
1568
1638
|
exports.ExportStreamSessionFilesCommand = ExportStreamSessionFilesCommand;
|
|
1639
|
+
exports.ExportStreamSessionFilesInput$ = ExportStreamSessionFilesInput$;
|
|
1640
|
+
exports.ExportStreamSessionFilesOutput$ = ExportStreamSessionFilesOutput$;
|
|
1569
1641
|
exports.GameLiftStreams = GameLiftStreams;
|
|
1570
1642
|
exports.GameLiftStreamsClient = GameLiftStreamsClient;
|
|
1571
|
-
exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException
|
|
1643
|
+
exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException;
|
|
1644
|
+
exports.GameLiftStreamsServiceException$ = GameLiftStreamsServiceException$;
|
|
1645
|
+
exports.GetApplication$ = GetApplication$;
|
|
1572
1646
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1647
|
+
exports.GetApplicationInput$ = GetApplicationInput$;
|
|
1648
|
+
exports.GetApplicationOutput$ = GetApplicationOutput$;
|
|
1649
|
+
exports.GetStreamGroup$ = GetStreamGroup$;
|
|
1573
1650
|
exports.GetStreamGroupCommand = GetStreamGroupCommand;
|
|
1651
|
+
exports.GetStreamGroupInput$ = GetStreamGroupInput$;
|
|
1652
|
+
exports.GetStreamGroupOutput$ = GetStreamGroupOutput$;
|
|
1653
|
+
exports.GetStreamSession$ = GetStreamSession$;
|
|
1574
1654
|
exports.GetStreamSessionCommand = GetStreamSessionCommand;
|
|
1575
|
-
exports.
|
|
1655
|
+
exports.GetStreamSessionInput$ = GetStreamSessionInput$;
|
|
1656
|
+
exports.GetStreamSessionOutput$ = GetStreamSessionOutput$;
|
|
1657
|
+
exports.InternalServerException = InternalServerException;
|
|
1658
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1659
|
+
exports.ListApplications$ = ListApplications$;
|
|
1576
1660
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1661
|
+
exports.ListApplicationsInput$ = ListApplicationsInput$;
|
|
1662
|
+
exports.ListApplicationsOutput$ = ListApplicationsOutput$;
|
|
1663
|
+
exports.ListStreamGroups$ = ListStreamGroups$;
|
|
1577
1664
|
exports.ListStreamGroupsCommand = ListStreamGroupsCommand;
|
|
1665
|
+
exports.ListStreamGroupsInput$ = ListStreamGroupsInput$;
|
|
1666
|
+
exports.ListStreamGroupsOutput$ = ListStreamGroupsOutput$;
|
|
1667
|
+
exports.ListStreamSessions$ = ListStreamSessions$;
|
|
1668
|
+
exports.ListStreamSessionsByAccount$ = ListStreamSessionsByAccount$;
|
|
1578
1669
|
exports.ListStreamSessionsByAccountCommand = ListStreamSessionsByAccountCommand;
|
|
1670
|
+
exports.ListStreamSessionsByAccountInput$ = ListStreamSessionsByAccountInput$;
|
|
1671
|
+
exports.ListStreamSessionsByAccountOutput$ = ListStreamSessionsByAccountOutput$;
|
|
1579
1672
|
exports.ListStreamSessionsCommand = ListStreamSessionsCommand;
|
|
1673
|
+
exports.ListStreamSessionsInput$ = ListStreamSessionsInput$;
|
|
1674
|
+
exports.ListStreamSessionsOutput$ = ListStreamSessionsOutput$;
|
|
1675
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1580
1676
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1677
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1678
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1679
|
+
exports.LocationConfiguration$ = LocationConfiguration$;
|
|
1680
|
+
exports.LocationState$ = LocationState$;
|
|
1681
|
+
exports.PerformanceStatsConfiguration$ = PerformanceStatsConfiguration$;
|
|
1581
1682
|
exports.Protocol = Protocol;
|
|
1683
|
+
exports.RemoveStreamGroupLocations$ = RemoveStreamGroupLocations$;
|
|
1582
1684
|
exports.RemoveStreamGroupLocationsCommand = RemoveStreamGroupLocationsCommand;
|
|
1685
|
+
exports.RemoveStreamGroupLocationsInput$ = RemoveStreamGroupLocationsInput$;
|
|
1686
|
+
exports.ReplicationStatus$ = ReplicationStatus$;
|
|
1583
1687
|
exports.ReplicationStatusType = ReplicationStatusType;
|
|
1584
|
-
exports.ResourceNotFoundException = ResourceNotFoundException
|
|
1688
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1689
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1690
|
+
exports.RuntimeEnvironment$ = RuntimeEnvironment$;
|
|
1585
1691
|
exports.RuntimeEnvironmentType = RuntimeEnvironmentType;
|
|
1586
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException
|
|
1692
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1693
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1694
|
+
exports.StartStreamSession$ = StartStreamSession$;
|
|
1587
1695
|
exports.StartStreamSessionCommand = StartStreamSessionCommand;
|
|
1696
|
+
exports.StartStreamSessionInput$ = StartStreamSessionInput$;
|
|
1697
|
+
exports.StartStreamSessionOutput$ = StartStreamSessionOutput$;
|
|
1588
1698
|
exports.StreamClass = StreamClass;
|
|
1589
1699
|
exports.StreamGroupLocationStatus = StreamGroupLocationStatus;
|
|
1590
1700
|
exports.StreamGroupStatus = StreamGroupStatus;
|
|
1591
1701
|
exports.StreamGroupStatusReason = StreamGroupStatusReason;
|
|
1702
|
+
exports.StreamGroupSummary$ = StreamGroupSummary$;
|
|
1592
1703
|
exports.StreamSessionStatus = StreamSessionStatus;
|
|
1593
1704
|
exports.StreamSessionStatusReason = StreamSessionStatusReason;
|
|
1705
|
+
exports.StreamSessionSummary$ = StreamSessionSummary$;
|
|
1706
|
+
exports.TagResource$ = TagResource$;
|
|
1594
1707
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1708
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1709
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1710
|
+
exports.TerminateStreamSession$ = TerminateStreamSession$;
|
|
1595
1711
|
exports.TerminateStreamSessionCommand = TerminateStreamSessionCommand;
|
|
1596
|
-
exports.
|
|
1712
|
+
exports.TerminateStreamSessionInput$ = TerminateStreamSessionInput$;
|
|
1713
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1714
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1715
|
+
exports.UntagResource$ = UntagResource$;
|
|
1597
1716
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1717
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1718
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1719
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
1598
1720
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1721
|
+
exports.UpdateApplicationInput$ = UpdateApplicationInput$;
|
|
1722
|
+
exports.UpdateApplicationOutput$ = UpdateApplicationOutput$;
|
|
1723
|
+
exports.UpdateStreamGroup$ = UpdateStreamGroup$;
|
|
1599
1724
|
exports.UpdateStreamGroupCommand = UpdateStreamGroupCommand;
|
|
1600
|
-
exports.
|
|
1725
|
+
exports.UpdateStreamGroupInput$ = UpdateStreamGroupInput$;
|
|
1726
|
+
exports.UpdateStreamGroupOutput$ = UpdateStreamGroupOutput$;
|
|
1727
|
+
exports.ValidationException = ValidationException;
|
|
1728
|
+
exports.ValidationException$ = ValidationException$;
|
|
1601
1729
|
exports.paginateListApplications = paginateListApplications;
|
|
1602
1730
|
exports.paginateListStreamGroups = paginateListStreamGroups;
|
|
1603
1731
|
exports.paginateListStreamSessions = paginateListStreamSessions;
|