@aws-sdk/client-gameliftstreams 3.1096.0 → 3.1098.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/README.md +35 -0
- package/dist-cjs/index.js +184 -4
- package/dist-es/GameLiftStreams.js +12 -0
- package/dist-es/commands/CreateStreamUrlCommand.js +4 -0
- package/dist-es/commands/GetStreamUrlCommand.js +4 -0
- package/dist-es/commands/ListApplicationShaderCachesCommand.js +4 -0
- package/dist-es/commands/ListStreamUrlsCommand.js +4 -0
- package/dist-es/commands/RevokeStreamUrlCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +27 -3
- package/dist-es/pagination/ListStreamUrlsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +107 -0
- package/dist-types/GameLiftStreams.d.ts +43 -0
- package/dist-types/GameLiftStreamsClient.d.ts +7 -2
- package/dist-types/commands/CreateStreamUrlCommand.d.ts +144 -0
- package/dist-types/commands/GetStreamUrlCommand.d.ts +135 -0
- package/dist-types/commands/ListApplicationShaderCachesCommand.d.ts +97 -0
- package/dist-types/commands/ListStreamUrlsCommand.d.ts +103 -0
- package/dist-types/commands/RevokeStreamUrlCommand.d.ts +86 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +64 -8
- package/dist-types/models/models_0.d.ts +520 -43
- package/dist-types/pagination/ListStreamUrlsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/GameLiftStreams.d.ts +93 -0
- package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateStreamUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetStreamUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListApplicationShaderCachesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListStreamUrlsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RevokeStreamUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -4
- package/dist-types/ts3.4/models/models_0.d.ts +122 -12
- package/dist-types/ts3.4/pagination/ListStreamUrlsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -223,6 +223,13 @@ CreateStreamSessionConnection
|
|
|
223
223
|
</details>
|
|
224
224
|
<details>
|
|
225
225
|
<summary>
|
|
226
|
+
CreateStreamUrl
|
|
227
|
+
</summary>
|
|
228
|
+
|
|
229
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gameliftstreams/command/CreateStreamUrlCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/CreateStreamUrlCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/CreateStreamUrlCommandOutput/)
|
|
230
|
+
</details>
|
|
231
|
+
<details>
|
|
232
|
+
<summary>
|
|
226
233
|
DeleteApplication
|
|
227
234
|
</summary>
|
|
228
235
|
|
|
@@ -272,6 +279,13 @@ GetStreamSession
|
|
|
272
279
|
</details>
|
|
273
280
|
<details>
|
|
274
281
|
<summary>
|
|
282
|
+
GetStreamUrl
|
|
283
|
+
</summary>
|
|
284
|
+
|
|
285
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gameliftstreams/command/GetStreamUrlCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/GetStreamUrlCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/GetStreamUrlCommandOutput/)
|
|
286
|
+
</details>
|
|
287
|
+
<details>
|
|
288
|
+
<summary>
|
|
275
289
|
ListApplications
|
|
276
290
|
</summary>
|
|
277
291
|
|
|
@@ -279,6 +293,13 @@ ListApplications
|
|
|
279
293
|
</details>
|
|
280
294
|
<details>
|
|
281
295
|
<summary>
|
|
296
|
+
ListApplicationShaderCaches
|
|
297
|
+
</summary>
|
|
298
|
+
|
|
299
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gameliftstreams/command/ListApplicationShaderCachesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/ListApplicationShaderCachesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/ListApplicationShaderCachesCommandOutput/)
|
|
300
|
+
</details>
|
|
301
|
+
<details>
|
|
302
|
+
<summary>
|
|
282
303
|
ListStreamGroups
|
|
283
304
|
</summary>
|
|
284
305
|
|
|
@@ -300,6 +321,13 @@ ListStreamSessionsByAccount
|
|
|
300
321
|
</details>
|
|
301
322
|
<details>
|
|
302
323
|
<summary>
|
|
324
|
+
ListStreamUrls
|
|
325
|
+
</summary>
|
|
326
|
+
|
|
327
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gameliftstreams/command/ListStreamUrlsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/ListStreamUrlsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/ListStreamUrlsCommandOutput/)
|
|
328
|
+
</details>
|
|
329
|
+
<details>
|
|
330
|
+
<summary>
|
|
303
331
|
ListTagsForResource
|
|
304
332
|
</summary>
|
|
305
333
|
|
|
@@ -314,6 +342,13 @@ RemoveStreamGroupLocations
|
|
|
314
342
|
</details>
|
|
315
343
|
<details>
|
|
316
344
|
<summary>
|
|
345
|
+
RevokeStreamUrl
|
|
346
|
+
</summary>
|
|
347
|
+
|
|
348
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gameliftstreams/command/RevokeStreamUrlCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/RevokeStreamUrlCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gameliftstreams/Interface/RevokeStreamUrlCommandOutput/)
|
|
349
|
+
</details>
|
|
350
|
+
<details>
|
|
351
|
+
<summary>
|
|
317
352
|
StartStreamSession
|
|
318
353
|
</summary>
|
|
319
354
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -67,7 +67,7 @@ const commonParams = {
|
|
|
67
67
|
Region: { type: "builtInParams", name: "region" },
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
-
var version = "3.
|
|
70
|
+
var version = "3.1097.0";
|
|
71
71
|
var packageInfo = {
|
|
72
72
|
version: version};
|
|
73
73
|
|
|
@@ -274,6 +274,9 @@ const _CSSASO = "CreateStreamSessionAdminShellOutput";
|
|
|
274
274
|
const _CSSC = "CreateStreamSessionConnection";
|
|
275
275
|
const _CSSCI = "CreateStreamSessionConnectionInput";
|
|
276
276
|
const _CSSCO = "CreateStreamSessionConnectionOutput";
|
|
277
|
+
const _CSU = "CreateStreamUrl";
|
|
278
|
+
const _CSUI = "CreateStreamUrlInput";
|
|
279
|
+
const _CSUO = "CreateStreamUrlOutput";
|
|
277
280
|
const _CT = "ClientToken";
|
|
278
281
|
const _CTS = "ConnectionTimeoutSeconds";
|
|
279
282
|
const _D = "Description";
|
|
@@ -303,6 +306,9 @@ const _GSGO = "GetStreamGroupOutput";
|
|
|
303
306
|
const _GSS = "GetStreamSession";
|
|
304
307
|
const _GSSI = "GetStreamSessionInput";
|
|
305
308
|
const _GSSO = "GetStreamSessionOutput";
|
|
309
|
+
const _GSU = "GetStreamUrl";
|
|
310
|
+
const _GSUI = "GetStreamUrlInput";
|
|
311
|
+
const _GSUO = "GetStreamUrlOutput";
|
|
306
312
|
const _H = "Height";
|
|
307
313
|
const _I = "Identifier";
|
|
308
314
|
const _IC = "IdleCapacity";
|
|
@@ -316,6 +322,9 @@ const _L = "Locations";
|
|
|
316
322
|
const _LA = "ListApplications";
|
|
317
323
|
const _LAI = "ListApplicationsInput";
|
|
318
324
|
const _LAO = "ListApplicationsOutput";
|
|
325
|
+
const _LASC = "ListApplicationShaderCaches";
|
|
326
|
+
const _LASCI = "ListApplicationShaderCachesInput";
|
|
327
|
+
const _LASCO = "ListApplicationShaderCachesOutput";
|
|
319
328
|
const _LC = "LocationConfigurations";
|
|
320
329
|
const _LCo = "LocationConfiguration";
|
|
321
330
|
const _LFLU = "LogFileLocationUri";
|
|
@@ -330,6 +339,9 @@ const _LSSBAI = "ListStreamSessionsByAccountInput";
|
|
|
330
339
|
const _LSSBAO = "ListStreamSessionsByAccountOutput";
|
|
331
340
|
const _LSSI = "ListStreamSessionsInput";
|
|
332
341
|
const _LSSO = "ListStreamSessionsOutput";
|
|
342
|
+
const _LSU = "ListStreamUrls";
|
|
343
|
+
const _LSUI = "ListStreamUrlsInput";
|
|
344
|
+
const _LSUO = "ListStreamUrlsOutput";
|
|
333
345
|
const _LSo = "LocationState";
|
|
334
346
|
const _LTFR = "ListTagsForResource";
|
|
335
347
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
@@ -349,14 +361,23 @@ const _RA = "RoleArn";
|
|
|
349
361
|
const _RAe = "ResourceArn";
|
|
350
362
|
const _RC = "RequestedCapacity";
|
|
351
363
|
const _RE = "RuntimeEnvironment";
|
|
364
|
+
const _RM = "RevocationMode";
|
|
352
365
|
const _RNFE = "ResourceNotFoundException";
|
|
353
366
|
const _RS = "ReplicationStatuses";
|
|
354
367
|
const _RSGL = "RemoveStreamGroupLocations";
|
|
355
368
|
const _RSGLI = "RemoveStreamGroupLocationsInput";
|
|
369
|
+
const _RSU = "RevokeStreamUrl";
|
|
370
|
+
const _RSUI = "RevokeStreamUrlInput";
|
|
356
371
|
const _RSe = "ReplicationStatus";
|
|
372
|
+
const _RU = "RemainingUses";
|
|
357
373
|
const _S = "Status";
|
|
374
|
+
const _SB = "StorageBytes";
|
|
358
375
|
const _SC = "StreamClass";
|
|
376
|
+
const _SCS = "ShaderCacheSummary";
|
|
377
|
+
const _SCSL = "ShaderCacheSummaryList";
|
|
378
|
+
const _SGA = "StreamGroupArn";
|
|
359
379
|
const _SGI = "StreamGroupId";
|
|
380
|
+
const _SGIt = "StreamGroupIdentifier";
|
|
360
381
|
const _SGS = "StreamGroupSummary";
|
|
361
382
|
const _SGSL = "StreamGroupSummaryList";
|
|
362
383
|
const _SI = "SessionId";
|
|
@@ -365,14 +386,20 @@ const _SQEE = "ServiceQuotaExceededException";
|
|
|
365
386
|
const _SR = "SignalRequest";
|
|
366
387
|
const _SRi = "SignalResponse";
|
|
367
388
|
const _SRt = "StatusReason";
|
|
389
|
+
const _SS = "StreamSessions";
|
|
368
390
|
const _SSANRE = "StreamSessionAccessNotReadyException";
|
|
369
391
|
const _SSI = "StreamSessionIdentifier";
|
|
370
392
|
const _SSS = "StreamSessionSummary";
|
|
371
393
|
const _SSSI = "StartStreamSessionInput";
|
|
372
394
|
const _SSSL = "StreamSessionSummaryList";
|
|
373
395
|
const _SSSO = "StartStreamSessionOutput";
|
|
396
|
+
const _SSSU = "StreamSessionStreamUrl";
|
|
374
397
|
const _SSSt = "StartStreamSession";
|
|
375
398
|
const _SU = "StreamUrl";
|
|
399
|
+
const _SUI = "StreamUrlId";
|
|
400
|
+
const _SUIt = "StreamUrlIdentifier";
|
|
401
|
+
const _SUS = "StreamUrlSummary";
|
|
402
|
+
const _SUSL = "StreamUrlSummaryList";
|
|
376
403
|
const _SWC = "SharedWithClient";
|
|
377
404
|
const _T = "Tags";
|
|
378
405
|
const _TE = "ThrottlingException";
|
|
@@ -390,7 +417,9 @@ const _Ty = "Type";
|
|
|
390
417
|
const _UA = "UpdateApplication";
|
|
391
418
|
const _UAI = "UpdateApplicationInput";
|
|
392
419
|
const _UAO = "UpdateApplicationOutput";
|
|
420
|
+
const _UEAM = "UrlExpiresAfterMinutes";
|
|
393
421
|
const _UI = "UserId";
|
|
422
|
+
const _UL = "UsageLimit";
|
|
394
423
|
const _UR = "UntagResource";
|
|
395
424
|
const _URR = "UntagResourceRequest";
|
|
396
425
|
const _URRn = "UntagResourceResponse";
|
|
@@ -473,6 +502,7 @@ const errorTypeRegistries = [
|
|
|
473
502
|
var IamRoleArn = [0, n0, _IRA, 8, 0];
|
|
474
503
|
var SignalRequest = [0, n0, _SR, 8, 0];
|
|
475
504
|
var SignalResponse = [0, n0, _SRi, 8, 0];
|
|
505
|
+
var StreamSessionStreamUrl = [0, n0, _SSSU, 8, 0];
|
|
476
506
|
var TokenValue = [0, n0, _TV, 8, 0];
|
|
477
507
|
var AddStreamGroupLocationsInput$ = [3, n0, _ASGLI,
|
|
478
508
|
0,
|
|
@@ -539,6 +569,16 @@ var CreateStreamSessionConnectionOutput$ = [3, n0, _CSSCO,
|
|
|
539
569
|
[_SRi],
|
|
540
570
|
[[() => SignalResponse, 0]]
|
|
541
571
|
];
|
|
572
|
+
var CreateStreamUrlInput$ = [3, n0, _CSUI,
|
|
573
|
+
0,
|
|
574
|
+
[_I, _AIp, _P, _UEAM, _L, _UL, _D, _SLS, _ALA, _AEV, _RA, _DC, _CT],
|
|
575
|
+
[[0, 1], 0, 0, 1, 64 | 0, 1, 0, 1, 64 | 0, 128 | 0, [() => IamRoleArn, 0], () => DisplayConfiguration$, [0, 4]], 5
|
|
576
|
+
];
|
|
577
|
+
var CreateStreamUrlOutput$ = [3, n0, _CSUO,
|
|
578
|
+
0,
|
|
579
|
+
[_A, _SUI, _SU, _S, _SRt, _EA, _CA, _UL, _RU, _SGA, _AAp, _P, _L, _SLS, _D, _ALA, _AEV, _RA, _DC],
|
|
580
|
+
[0, 0, [() => StreamSessionStreamUrl, 0], 0, 0, 4, 4, 1, 1, 0, 0, 0, 64 | 0, 1, 0, 64 | 0, 128 | 0, [() => IamRoleArn, 0], () => DisplayConfiguration$], 1
|
|
581
|
+
];
|
|
542
582
|
var DefaultApplication$ = [3, n0, _DA,
|
|
543
583
|
0,
|
|
544
584
|
[_Id, _A],
|
|
@@ -614,6 +654,26 @@ var GetStreamSessionOutput$ = [3, n0, _GSSO,
|
|
|
614
654
|
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM, _RA, _DC],
|
|
615
655
|
[0, 0, 0, 0, 0, 0, 0, 0, [() => SignalRequest, 0], [() => SignalResponse, 0], 1, 1, 64 | 0, 128 | 0, () => PerformanceStatsConfiguration$, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, [() => IamRoleArn, 0], () => DisplayConfiguration$]
|
|
616
656
|
];
|
|
657
|
+
var GetStreamUrlInput$ = [3, n0, _GSUI,
|
|
658
|
+
0,
|
|
659
|
+
[_I, _SUIt],
|
|
660
|
+
[[0, 1], [0, 1]], 2
|
|
661
|
+
];
|
|
662
|
+
var GetStreamUrlOutput$ = [3, n0, _GSUO,
|
|
663
|
+
0,
|
|
664
|
+
[_A, _SUI, _SU, _S, _SRt, _EA, _CA, _UL, _RU, _SGA, _AAp, _P, _L, _SLS, _D, _ALA, _AEV, _RA, _DC, _SS],
|
|
665
|
+
[0, 0, [() => StreamSessionStreamUrl, 0], 0, 0, 4, 4, 1, 1, 0, 0, 0, 64 | 0, 1, 0, 64 | 0, 128 | 0, [() => IamRoleArn, 0], () => DisplayConfiguration$, [() => StreamSessionSummaryList, 0]], 1
|
|
666
|
+
];
|
|
667
|
+
var ListApplicationShaderCachesInput$ = [3, n0, _LASCI,
|
|
668
|
+
0,
|
|
669
|
+
[_I],
|
|
670
|
+
[[0, 1]], 1
|
|
671
|
+
];
|
|
672
|
+
var ListApplicationShaderCachesOutput$ = [3, n0, _LASCO,
|
|
673
|
+
0,
|
|
674
|
+
[_It],
|
|
675
|
+
[() => ShaderCacheSummaryList]
|
|
676
|
+
];
|
|
617
677
|
var ListApplicationsInput$ = [3, n0, _LAI,
|
|
618
678
|
0,
|
|
619
679
|
[_NT, _MR],
|
|
@@ -654,6 +714,16 @@ var ListStreamSessionsOutput$ = [3, n0, _LSSO,
|
|
|
654
714
|
[_It, _NT],
|
|
655
715
|
[[() => StreamSessionSummaryList, 0], 0]
|
|
656
716
|
];
|
|
717
|
+
var ListStreamUrlsInput$ = [3, n0, _LSUI,
|
|
718
|
+
0,
|
|
719
|
+
[_S, _SGIt, _NT, _MR],
|
|
720
|
+
[[0, { [_hQ]: _S }], [0, { [_hQ]: _SGIt }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
721
|
+
];
|
|
722
|
+
var ListStreamUrlsOutput$ = [3, n0, _LSUO,
|
|
723
|
+
0,
|
|
724
|
+
[_It, _NT],
|
|
725
|
+
[[() => StreamUrlSummaryList, 0], 0]
|
|
726
|
+
];
|
|
657
727
|
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
658
728
|
0,
|
|
659
729
|
[_RAe],
|
|
@@ -694,11 +764,21 @@ var Resolution$ = [3, n0, _R,
|
|
|
694
764
|
[_W, _H],
|
|
695
765
|
[1, 1], 2
|
|
696
766
|
];
|
|
767
|
+
var RevokeStreamUrlInput$ = [3, n0, _RSUI,
|
|
768
|
+
0,
|
|
769
|
+
[_I, _SUIt, _RM],
|
|
770
|
+
[[0, 1], [0, 1], 0], 2
|
|
771
|
+
];
|
|
697
772
|
var RuntimeEnvironment$ = [3, n0, _RE,
|
|
698
773
|
0,
|
|
699
774
|
[_Ty, _V],
|
|
700
775
|
[0, 0], 2
|
|
701
776
|
];
|
|
777
|
+
var ShaderCacheSummary$ = [3, n0, _SCS,
|
|
778
|
+
0,
|
|
779
|
+
[_I, _AAp, _S, _LUA, _SB, _ASG],
|
|
780
|
+
[0, 0, 0, 4, 1, 64 | 0], 2
|
|
781
|
+
];
|
|
702
782
|
var StartStreamSessionInput$ = [3, n0, _SSSI,
|
|
703
783
|
0,
|
|
704
784
|
[_I, _P, _SR, _AIp, _CT, _D, _UI, _L, _CTS, _SLS, _ALA, _AEV, _PSC, _RA, _DC],
|
|
@@ -719,6 +799,11 @@ var StreamSessionSummary$ = [3, n0, _SSS,
|
|
|
719
799
|
[_A, _UI, _S, _SRt, _P, _LUA, _CA, _AAp, _EFM, _Lo, _RA],
|
|
720
800
|
[0, 0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, 0, [() => IamRoleArn, 0]]
|
|
721
801
|
];
|
|
802
|
+
var StreamUrlSummary$ = [3, n0, _SUS,
|
|
803
|
+
0,
|
|
804
|
+
[_A, _SUI, _SU, _S, _SRt, _EA, _CA, _UL, _RU, _SGA, _AAp, _SLS, _D],
|
|
805
|
+
[0, 0, [() => StreamSessionStreamUrl, 0], 0, 0, 4, 4, 1, 1, 0, 0, 1, 0], 1
|
|
806
|
+
];
|
|
722
807
|
var TagResourceRequest$ = [3, n0, _TRR,
|
|
723
808
|
0,
|
|
724
809
|
[_RAe, _T],
|
|
@@ -787,6 +872,9 @@ var LocationStates = [1, n0, _LS,
|
|
|
787
872
|
var ReplicationStatuses = [1, n0, _RS,
|
|
788
873
|
0, () => ReplicationStatus$
|
|
789
874
|
];
|
|
875
|
+
var ShaderCacheSummaryList = [1, n0, _SCSL,
|
|
876
|
+
0, () => ShaderCacheSummary$
|
|
877
|
+
];
|
|
790
878
|
var StreamGroupSummaryList = [1, n0, _SGSL,
|
|
791
879
|
0, () => StreamGroupSummary$
|
|
792
880
|
];
|
|
@@ -794,6 +882,10 @@ var StreamSessionSummaryList = [1, n0, _SSSL,
|
|
|
794
882
|
0, [() => StreamSessionSummary$,
|
|
795
883
|
0]
|
|
796
884
|
];
|
|
885
|
+
var StreamUrlSummaryList = [1, n0, _SUSL,
|
|
886
|
+
0, [() => StreamUrlSummary$,
|
|
887
|
+
0]
|
|
888
|
+
];
|
|
797
889
|
var AddStreamGroupLocations$ = [9, n0, _ASGL,
|
|
798
890
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/locations", 200] }, () => AddStreamGroupLocationsInput$, () => AddStreamGroupLocationsOutput$
|
|
799
891
|
];
|
|
@@ -812,6 +904,9 @@ var CreateStreamSessionAdminShell$ = [9, n0, _CSSAS,
|
|
|
812
904
|
var CreateStreamSessionConnection$ = [9, n0, _CSSC,
|
|
813
905
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/connections", 200] }, () => CreateStreamSessionConnectionInput$, () => CreateStreamSessionConnectionOutput$
|
|
814
906
|
];
|
|
907
|
+
var CreateStreamUrl$ = [9, n0, _CSU,
|
|
908
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamurls", 201] }, () => CreateStreamUrlInput$, () => CreateStreamUrlOutput$
|
|
909
|
+
];
|
|
815
910
|
var DeleteApplication$ = [9, n0, _DAe,
|
|
816
911
|
{ [_h]: ["DELETE", "/applications/{Identifier}", 204] }, () => DeleteApplicationInput$, () => __Unit
|
|
817
912
|
];
|
|
@@ -833,9 +928,15 @@ var GetStreamGroup$ = [9, n0, _GSG,
|
|
|
833
928
|
var GetStreamSession$ = [9, n0, _GSS,
|
|
834
929
|
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 200] }, () => GetStreamSessionInput$, () => GetStreamSessionOutput$
|
|
835
930
|
];
|
|
931
|
+
var GetStreamUrl$ = [9, n0, _GSU,
|
|
932
|
+
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamurls/{StreamUrlIdentifier}", 200] }, () => GetStreamUrlInput$, () => GetStreamUrlOutput$
|
|
933
|
+
];
|
|
836
934
|
var ListApplications$ = [9, n0, _LA,
|
|
837
935
|
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsInput$, () => ListApplicationsOutput$
|
|
838
936
|
];
|
|
937
|
+
var ListApplicationShaderCaches$ = [9, n0, _LASC,
|
|
938
|
+
{ [_h]: ["GET", "/applications/{Identifier}/shadercaches", 200] }, () => ListApplicationShaderCachesInput$, () => ListApplicationShaderCachesOutput$
|
|
939
|
+
];
|
|
839
940
|
var ListStreamGroups$ = [9, n0, _LSG,
|
|
840
941
|
{ [_h]: ["GET", "/streamgroups", 200] }, () => ListStreamGroupsInput$, () => ListStreamGroupsOutput$
|
|
841
942
|
];
|
|
@@ -845,12 +946,18 @@ var ListStreamSessions$ = [9, n0, _LSS,
|
|
|
845
946
|
var ListStreamSessionsByAccount$ = [9, n0, _LSSBA,
|
|
846
947
|
{ [_h]: ["GET", "/streamsessions", 200] }, () => ListStreamSessionsByAccountInput$, () => ListStreamSessionsByAccountOutput$
|
|
847
948
|
];
|
|
949
|
+
var ListStreamUrls$ = [9, n0, _LSU,
|
|
950
|
+
{ [_h]: ["GET", "/streamurls", 200] }, () => ListStreamUrlsInput$, () => ListStreamUrlsOutput$
|
|
951
|
+
];
|
|
848
952
|
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
849
953
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
850
954
|
];
|
|
851
955
|
var RemoveStreamGroupLocations$ = [9, n0, _RSGL,
|
|
852
956
|
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/locations", 204] }, () => RemoveStreamGroupLocationsInput$, () => __Unit
|
|
853
957
|
];
|
|
958
|
+
var RevokeStreamUrl$ = [9, n0, _RSU,
|
|
959
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamurls/{StreamUrlIdentifier}/revoke", 204] }, () => RevokeStreamUrlInput$, () => __Unit
|
|
960
|
+
];
|
|
854
961
|
var StartStreamSession$ = [9, n0, _SSSt,
|
|
855
962
|
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions", 201] }, () => StartStreamSessionInput$, () => StartStreamSessionOutput$
|
|
856
963
|
];
|
|
@@ -1038,6 +1145,9 @@ class CreateStreamSessionAdminShellCommand extends command(_ep0, _mw0, "CreateSt
|
|
|
1038
1145
|
class CreateStreamSessionConnectionCommand extends command(_ep0, _mw0, "CreateStreamSessionConnection", CreateStreamSessionConnection$) {
|
|
1039
1146
|
}
|
|
1040
1147
|
|
|
1148
|
+
class CreateStreamUrlCommand extends command(_ep0, _mw0, "CreateStreamUrl", CreateStreamUrl$) {
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1041
1151
|
class DeleteApplicationCommand extends command(_ep0, _mw0, "DeleteApplication", DeleteApplication$) {
|
|
1042
1152
|
}
|
|
1043
1153
|
|
|
@@ -1059,9 +1169,15 @@ class GetStreamGroupCommand extends command(_ep0, _mw0, "GetStreamGroup", GetStr
|
|
|
1059
1169
|
class GetStreamSessionCommand extends command(_ep0, _mw0, "GetStreamSession", GetStreamSession$) {
|
|
1060
1170
|
}
|
|
1061
1171
|
|
|
1172
|
+
class GetStreamUrlCommand extends command(_ep0, _mw0, "GetStreamUrl", GetStreamUrl$) {
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1062
1175
|
class ListApplicationsCommand extends command(_ep0, _mw0, "ListApplications", ListApplications$) {
|
|
1063
1176
|
}
|
|
1064
1177
|
|
|
1178
|
+
class ListApplicationShaderCachesCommand extends command(_ep0, _mw0, "ListApplicationShaderCaches", ListApplicationShaderCaches$) {
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1065
1181
|
class ListStreamGroupsCommand extends command(_ep0, _mw0, "ListStreamGroups", ListStreamGroups$) {
|
|
1066
1182
|
}
|
|
1067
1183
|
|
|
@@ -1071,12 +1187,18 @@ class ListStreamSessionsByAccountCommand extends command(_ep0, _mw0, "ListStream
|
|
|
1071
1187
|
class ListStreamSessionsCommand extends command(_ep0, _mw0, "ListStreamSessions", ListStreamSessions$) {
|
|
1072
1188
|
}
|
|
1073
1189
|
|
|
1190
|
+
class ListStreamUrlsCommand extends command(_ep0, _mw0, "ListStreamUrls", ListStreamUrls$) {
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1074
1193
|
class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
|
|
1075
1194
|
}
|
|
1076
1195
|
|
|
1077
1196
|
class RemoveStreamGroupLocationsCommand extends command(_ep0, _mw0, "RemoveStreamGroupLocations", RemoveStreamGroupLocations$) {
|
|
1078
1197
|
}
|
|
1079
1198
|
|
|
1199
|
+
class RevokeStreamUrlCommand extends command(_ep0, _mw0, "RevokeStreamUrl", RevokeStreamUrl$) {
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1080
1202
|
class StartStreamSessionCommand extends command(_ep0, _mw0, "StartStreamSession", StartStreamSession$) {
|
|
1081
1203
|
}
|
|
1082
1204
|
|
|
@@ -1103,6 +1225,8 @@ const paginateListStreamSessionsByAccount = createPaginator(GameLiftStreamsClien
|
|
|
1103
1225
|
|
|
1104
1226
|
const paginateListStreamSessions = createPaginator(GameLiftStreamsClient, ListStreamSessionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1105
1227
|
|
|
1228
|
+
const paginateListStreamUrls = createPaginator(GameLiftStreamsClient, ListStreamUrlsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1229
|
+
|
|
1106
1230
|
const checkState$4 = async (client, input) => {
|
|
1107
1231
|
let reason;
|
|
1108
1232
|
try {
|
|
@@ -1293,6 +1417,7 @@ const commands = {
|
|
|
1293
1417
|
CreateStreamGroupCommand,
|
|
1294
1418
|
CreateStreamSessionAdminShellCommand,
|
|
1295
1419
|
CreateStreamSessionConnectionCommand,
|
|
1420
|
+
CreateStreamUrlCommand,
|
|
1296
1421
|
DeleteApplicationCommand,
|
|
1297
1422
|
DeleteStreamGroupCommand,
|
|
1298
1423
|
DisassociateApplicationsCommand,
|
|
@@ -1300,12 +1425,16 @@ const commands = {
|
|
|
1300
1425
|
GetApplicationCommand,
|
|
1301
1426
|
GetStreamGroupCommand,
|
|
1302
1427
|
GetStreamSessionCommand,
|
|
1428
|
+
GetStreamUrlCommand,
|
|
1303
1429
|
ListApplicationsCommand,
|
|
1430
|
+
ListApplicationShaderCachesCommand,
|
|
1304
1431
|
ListStreamGroupsCommand,
|
|
1305
1432
|
ListStreamSessionsCommand,
|
|
1306
1433
|
ListStreamSessionsByAccountCommand,
|
|
1434
|
+
ListStreamUrlsCommand,
|
|
1307
1435
|
ListTagsForResourceCommand,
|
|
1308
1436
|
RemoveStreamGroupLocationsCommand,
|
|
1437
|
+
RevokeStreamUrlCommand,
|
|
1309
1438
|
StartStreamSessionCommand,
|
|
1310
1439
|
TagResourceCommand,
|
|
1311
1440
|
TerminateStreamSessionCommand,
|
|
@@ -1318,6 +1447,7 @@ const paginators = {
|
|
|
1318
1447
|
paginateListStreamGroups,
|
|
1319
1448
|
paginateListStreamSessions,
|
|
1320
1449
|
paginateListStreamSessionsByAccount,
|
|
1450
|
+
paginateListStreamUrls,
|
|
1321
1451
|
};
|
|
1322
1452
|
const waiters = {
|
|
1323
1453
|
waitUntilApplicationReady,
|
|
@@ -1389,14 +1519,27 @@ const StreamGroupStatusReason = {
|
|
|
1389
1519
|
INTERNAL_ERROR: "internalError",
|
|
1390
1520
|
NO_AVAILABLE_INSTANCES: "noAvailableInstances",
|
|
1391
1521
|
};
|
|
1522
|
+
const Protocol = {
|
|
1523
|
+
WEBRTC: "WebRTC",
|
|
1524
|
+
};
|
|
1525
|
+
const StreamUrlStatus = {
|
|
1526
|
+
ACTIVE: "ACTIVE",
|
|
1527
|
+
EXPIRED: "EXPIRED",
|
|
1528
|
+
LIMIT_REACHED: "LIMIT_REACHED",
|
|
1529
|
+
REVOKED: "REVOKED",
|
|
1530
|
+
};
|
|
1531
|
+
const StreamUrlStatusReason = {
|
|
1532
|
+
APPLICATION_DELETED: "applicationDeleted",
|
|
1533
|
+
REVOKED_AND_SESSIONS_TERMINATED: "revokedAndSessionsTerminated",
|
|
1534
|
+
REVOKED_AND_TERMINATING_SESSIONS: "revokedAndTerminatingSessions",
|
|
1535
|
+
STREAM_GROUP_DELETED: "streamGroupDeleted",
|
|
1536
|
+
USER_REVOKED: "userRevoked",
|
|
1537
|
+
};
|
|
1392
1538
|
const ExportFilesStatus = {
|
|
1393
1539
|
FAILED: "FAILED",
|
|
1394
1540
|
PENDING: "PENDING",
|
|
1395
1541
|
SUCCEEDED: "SUCCEEDED",
|
|
1396
1542
|
};
|
|
1397
|
-
const Protocol = {
|
|
1398
|
-
WEBRTC: "WebRTC",
|
|
1399
|
-
};
|
|
1400
1543
|
const StreamSessionStatus = {
|
|
1401
1544
|
ACTIVATING: "ACTIVATING",
|
|
1402
1545
|
ACTIVE: "ACTIVE",
|
|
@@ -1420,6 +1563,17 @@ const StreamSessionStatusReason = {
|
|
|
1420
1563
|
PLACEMENT_TIMEOUT: "placementTimeout",
|
|
1421
1564
|
RECONNECTION_TIMEOUT: "reconnectionTimeout",
|
|
1422
1565
|
};
|
|
1566
|
+
const ShaderCacheStatus = {
|
|
1567
|
+
DELETING: "DELETING",
|
|
1568
|
+
ERROR: "ERROR",
|
|
1569
|
+
INITIALIZED: "INITIALIZED",
|
|
1570
|
+
PROCESSING: "PROCESSING",
|
|
1571
|
+
READY: "READY",
|
|
1572
|
+
};
|
|
1573
|
+
const RevocationMode = {
|
|
1574
|
+
REVOKE_AND_TERMINATE_SESSIONS: "REVOKE_AND_TERMINATE_SESSIONS",
|
|
1575
|
+
REVOKE_URL: "REVOKE_URL",
|
|
1576
|
+
};
|
|
1423
1577
|
|
|
1424
1578
|
exports.AccessDeniedException = AccessDeniedException;
|
|
1425
1579
|
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
@@ -1452,6 +1606,10 @@ exports.CreateStreamSessionConnection$ = CreateStreamSessionConnection$;
|
|
|
1452
1606
|
exports.CreateStreamSessionConnectionCommand = CreateStreamSessionConnectionCommand;
|
|
1453
1607
|
exports.CreateStreamSessionConnectionInput$ = CreateStreamSessionConnectionInput$;
|
|
1454
1608
|
exports.CreateStreamSessionConnectionOutput$ = CreateStreamSessionConnectionOutput$;
|
|
1609
|
+
exports.CreateStreamUrl$ = CreateStreamUrl$;
|
|
1610
|
+
exports.CreateStreamUrlCommand = CreateStreamUrlCommand;
|
|
1611
|
+
exports.CreateStreamUrlInput$ = CreateStreamUrlInput$;
|
|
1612
|
+
exports.CreateStreamUrlOutput$ = CreateStreamUrlOutput$;
|
|
1455
1613
|
exports.DefaultApplication$ = DefaultApplication$;
|
|
1456
1614
|
exports.DeleteApplication$ = DeleteApplication$;
|
|
1457
1615
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
@@ -1486,8 +1644,16 @@ exports.GetStreamSession$ = GetStreamSession$;
|
|
|
1486
1644
|
exports.GetStreamSessionCommand = GetStreamSessionCommand;
|
|
1487
1645
|
exports.GetStreamSessionInput$ = GetStreamSessionInput$;
|
|
1488
1646
|
exports.GetStreamSessionOutput$ = GetStreamSessionOutput$;
|
|
1647
|
+
exports.GetStreamUrl$ = GetStreamUrl$;
|
|
1648
|
+
exports.GetStreamUrlCommand = GetStreamUrlCommand;
|
|
1649
|
+
exports.GetStreamUrlInput$ = GetStreamUrlInput$;
|
|
1650
|
+
exports.GetStreamUrlOutput$ = GetStreamUrlOutput$;
|
|
1489
1651
|
exports.InternalServerException = InternalServerException;
|
|
1490
1652
|
exports.InternalServerException$ = InternalServerException$;
|
|
1653
|
+
exports.ListApplicationShaderCaches$ = ListApplicationShaderCaches$;
|
|
1654
|
+
exports.ListApplicationShaderCachesCommand = ListApplicationShaderCachesCommand;
|
|
1655
|
+
exports.ListApplicationShaderCachesInput$ = ListApplicationShaderCachesInput$;
|
|
1656
|
+
exports.ListApplicationShaderCachesOutput$ = ListApplicationShaderCachesOutput$;
|
|
1491
1657
|
exports.ListApplications$ = ListApplications$;
|
|
1492
1658
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1493
1659
|
exports.ListApplicationsInput$ = ListApplicationsInput$;
|
|
@@ -1504,6 +1670,10 @@ exports.ListStreamSessionsByAccountOutput$ = ListStreamSessionsByAccountOutput$;
|
|
|
1504
1670
|
exports.ListStreamSessionsCommand = ListStreamSessionsCommand;
|
|
1505
1671
|
exports.ListStreamSessionsInput$ = ListStreamSessionsInput$;
|
|
1506
1672
|
exports.ListStreamSessionsOutput$ = ListStreamSessionsOutput$;
|
|
1673
|
+
exports.ListStreamUrls$ = ListStreamUrls$;
|
|
1674
|
+
exports.ListStreamUrlsCommand = ListStreamUrlsCommand;
|
|
1675
|
+
exports.ListStreamUrlsInput$ = ListStreamUrlsInput$;
|
|
1676
|
+
exports.ListStreamUrlsOutput$ = ListStreamUrlsOutput$;
|
|
1507
1677
|
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1508
1678
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1509
1679
|
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
@@ -1520,10 +1690,16 @@ exports.ReplicationStatusType = ReplicationStatusType;
|
|
|
1520
1690
|
exports.Resolution$ = Resolution$;
|
|
1521
1691
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1522
1692
|
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1693
|
+
exports.RevocationMode = RevocationMode;
|
|
1694
|
+
exports.RevokeStreamUrl$ = RevokeStreamUrl$;
|
|
1695
|
+
exports.RevokeStreamUrlCommand = RevokeStreamUrlCommand;
|
|
1696
|
+
exports.RevokeStreamUrlInput$ = RevokeStreamUrlInput$;
|
|
1523
1697
|
exports.RuntimeEnvironment$ = RuntimeEnvironment$;
|
|
1524
1698
|
exports.RuntimeEnvironmentType = RuntimeEnvironmentType;
|
|
1525
1699
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1526
1700
|
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1701
|
+
exports.ShaderCacheStatus = ShaderCacheStatus;
|
|
1702
|
+
exports.ShaderCacheSummary$ = ShaderCacheSummary$;
|
|
1527
1703
|
exports.StartStreamSession$ = StartStreamSession$;
|
|
1528
1704
|
exports.StartStreamSessionCommand = StartStreamSessionCommand;
|
|
1529
1705
|
exports.StartStreamSessionInput$ = StartStreamSessionInput$;
|
|
@@ -1538,6 +1714,9 @@ exports.StreamSessionAccessNotReadyException$ = StreamSessionAccessNotReadyExcep
|
|
|
1538
1714
|
exports.StreamSessionStatus = StreamSessionStatus;
|
|
1539
1715
|
exports.StreamSessionStatusReason = StreamSessionStatusReason;
|
|
1540
1716
|
exports.StreamSessionSummary$ = StreamSessionSummary$;
|
|
1717
|
+
exports.StreamUrlStatus = StreamUrlStatus;
|
|
1718
|
+
exports.StreamUrlStatusReason = StreamUrlStatusReason;
|
|
1719
|
+
exports.StreamUrlSummary$ = StreamUrlSummary$;
|
|
1541
1720
|
exports.TagResource$ = TagResource$;
|
|
1542
1721
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1543
1722
|
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
@@ -1568,6 +1747,7 @@ exports.paginateListApplications = paginateListApplications;
|
|
|
1568
1747
|
exports.paginateListStreamGroups = paginateListStreamGroups;
|
|
1569
1748
|
exports.paginateListStreamSessions = paginateListStreamSessions;
|
|
1570
1749
|
exports.paginateListStreamSessionsByAccount = paginateListStreamSessionsByAccount;
|
|
1750
|
+
exports.paginateListStreamUrls = paginateListStreamUrls;
|
|
1571
1751
|
exports.waitForApplicationDeleted = waitForApplicationDeleted;
|
|
1572
1752
|
exports.waitForApplicationReady = waitForApplicationReady;
|
|
1573
1753
|
exports.waitForStreamGroupActive = waitForStreamGroupActive;
|
|
@@ -5,6 +5,7 @@ import { CreateApplicationCommand, } from "./commands/CreateApplicationCommand";
|
|
|
5
5
|
import { CreateStreamGroupCommand, } from "./commands/CreateStreamGroupCommand";
|
|
6
6
|
import { CreateStreamSessionAdminShellCommand, } from "./commands/CreateStreamSessionAdminShellCommand";
|
|
7
7
|
import { CreateStreamSessionConnectionCommand, } from "./commands/CreateStreamSessionConnectionCommand";
|
|
8
|
+
import { CreateStreamUrlCommand, } from "./commands/CreateStreamUrlCommand";
|
|
8
9
|
import { DeleteApplicationCommand, } from "./commands/DeleteApplicationCommand";
|
|
9
10
|
import { DeleteStreamGroupCommand, } from "./commands/DeleteStreamGroupCommand";
|
|
10
11
|
import { DisassociateApplicationsCommand, } from "./commands/DisassociateApplicationsCommand";
|
|
@@ -12,12 +13,16 @@ import { ExportStreamSessionFilesCommand, } from "./commands/ExportStreamSession
|
|
|
12
13
|
import { GetApplicationCommand, } from "./commands/GetApplicationCommand";
|
|
13
14
|
import { GetStreamGroupCommand, } from "./commands/GetStreamGroupCommand";
|
|
14
15
|
import { GetStreamSessionCommand, } from "./commands/GetStreamSessionCommand";
|
|
16
|
+
import { GetStreamUrlCommand, } from "./commands/GetStreamUrlCommand";
|
|
15
17
|
import { ListApplicationsCommand, } from "./commands/ListApplicationsCommand";
|
|
18
|
+
import { ListApplicationShaderCachesCommand, } from "./commands/ListApplicationShaderCachesCommand";
|
|
16
19
|
import { ListStreamGroupsCommand, } from "./commands/ListStreamGroupsCommand";
|
|
17
20
|
import { ListStreamSessionsByAccountCommand, } from "./commands/ListStreamSessionsByAccountCommand";
|
|
18
21
|
import { ListStreamSessionsCommand, } from "./commands/ListStreamSessionsCommand";
|
|
22
|
+
import { ListStreamUrlsCommand, } from "./commands/ListStreamUrlsCommand";
|
|
19
23
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
20
24
|
import { RemoveStreamGroupLocationsCommand, } from "./commands/RemoveStreamGroupLocationsCommand";
|
|
25
|
+
import { RevokeStreamUrlCommand, } from "./commands/RevokeStreamUrlCommand";
|
|
21
26
|
import { StartStreamSessionCommand, } from "./commands/StartStreamSessionCommand";
|
|
22
27
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
23
28
|
import { TerminateStreamSessionCommand, } from "./commands/TerminateStreamSessionCommand";
|
|
@@ -29,6 +34,7 @@ import { paginateListApplications } from "./pagination/ListApplicationsPaginator
|
|
|
29
34
|
import { paginateListStreamGroups } from "./pagination/ListStreamGroupsPaginator";
|
|
30
35
|
import { paginateListStreamSessionsByAccount } from "./pagination/ListStreamSessionsByAccountPaginator";
|
|
31
36
|
import { paginateListStreamSessions } from "./pagination/ListStreamSessionsPaginator";
|
|
37
|
+
import { paginateListStreamUrls } from "./pagination/ListStreamUrlsPaginator";
|
|
32
38
|
import { waitUntilApplicationDeleted } from "./waiters/waitForApplicationDeleted";
|
|
33
39
|
import { waitUntilApplicationReady } from "./waiters/waitForApplicationReady";
|
|
34
40
|
import { waitUntilStreamGroupActive } from "./waiters/waitForStreamGroupActive";
|
|
@@ -41,6 +47,7 @@ const commands = {
|
|
|
41
47
|
CreateStreamGroupCommand,
|
|
42
48
|
CreateStreamSessionAdminShellCommand,
|
|
43
49
|
CreateStreamSessionConnectionCommand,
|
|
50
|
+
CreateStreamUrlCommand,
|
|
44
51
|
DeleteApplicationCommand,
|
|
45
52
|
DeleteStreamGroupCommand,
|
|
46
53
|
DisassociateApplicationsCommand,
|
|
@@ -48,12 +55,16 @@ const commands = {
|
|
|
48
55
|
GetApplicationCommand,
|
|
49
56
|
GetStreamGroupCommand,
|
|
50
57
|
GetStreamSessionCommand,
|
|
58
|
+
GetStreamUrlCommand,
|
|
51
59
|
ListApplicationsCommand,
|
|
60
|
+
ListApplicationShaderCachesCommand,
|
|
52
61
|
ListStreamGroupsCommand,
|
|
53
62
|
ListStreamSessionsCommand,
|
|
54
63
|
ListStreamSessionsByAccountCommand,
|
|
64
|
+
ListStreamUrlsCommand,
|
|
55
65
|
ListTagsForResourceCommand,
|
|
56
66
|
RemoveStreamGroupLocationsCommand,
|
|
67
|
+
RevokeStreamUrlCommand,
|
|
57
68
|
StartStreamSessionCommand,
|
|
58
69
|
TagResourceCommand,
|
|
59
70
|
TerminateStreamSessionCommand,
|
|
@@ -66,6 +77,7 @@ const paginators = {
|
|
|
66
77
|
paginateListStreamGroups,
|
|
67
78
|
paginateListStreamSessions,
|
|
68
79
|
paginateListStreamSessionsByAccount,
|
|
80
|
+
paginateListStreamUrls,
|
|
69
81
|
};
|
|
70
82
|
const waiters = {
|
|
71
83
|
waitUntilApplicationReady,
|
|
@@ -4,6 +4,7 @@ export * from "./CreateApplicationCommand";
|
|
|
4
4
|
export * from "./CreateStreamGroupCommand";
|
|
5
5
|
export * from "./CreateStreamSessionAdminShellCommand";
|
|
6
6
|
export * from "./CreateStreamSessionConnectionCommand";
|
|
7
|
+
export * from "./CreateStreamUrlCommand";
|
|
7
8
|
export * from "./DeleteApplicationCommand";
|
|
8
9
|
export * from "./DeleteStreamGroupCommand";
|
|
9
10
|
export * from "./DisassociateApplicationsCommand";
|
|
@@ -11,12 +12,16 @@ export * from "./ExportStreamSessionFilesCommand";
|
|
|
11
12
|
export * from "./GetApplicationCommand";
|
|
12
13
|
export * from "./GetStreamGroupCommand";
|
|
13
14
|
export * from "./GetStreamSessionCommand";
|
|
15
|
+
export * from "./GetStreamUrlCommand";
|
|
16
|
+
export * from "./ListApplicationShaderCachesCommand";
|
|
14
17
|
export * from "./ListApplicationsCommand";
|
|
15
18
|
export * from "./ListStreamGroupsCommand";
|
|
16
19
|
export * from "./ListStreamSessionsByAccountCommand";
|
|
17
20
|
export * from "./ListStreamSessionsCommand";
|
|
21
|
+
export * from "./ListStreamUrlsCommand";
|
|
18
22
|
export * from "./ListTagsForResourceCommand";
|
|
19
23
|
export * from "./RemoveStreamGroupLocationsCommand";
|
|
24
|
+
export * from "./RevokeStreamUrlCommand";
|
|
20
25
|
export * from "./StartStreamSessionCommand";
|
|
21
26
|
export * from "./TagResourceCommand";
|
|
22
27
|
export * from "./TerminateStreamSessionCommand";
|