@aws-sdk/client-gameliftstreams 3.762.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (223) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +404 -0
  3. package/dist-cjs/GameLiftStreams.js +59 -0
  4. package/dist-cjs/GameLiftStreamsClient.js +51 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AddStreamGroupLocationsCommand.js +26 -0
  8. package/dist-cjs/commands/AssociateApplicationsCommand.js +26 -0
  9. package/dist-cjs/commands/CreateApplicationCommand.js +26 -0
  10. package/dist-cjs/commands/CreateStreamGroupCommand.js +26 -0
  11. package/dist-cjs/commands/CreateStreamSessionConnectionCommand.js +27 -0
  12. package/dist-cjs/commands/DeleteApplicationCommand.js +26 -0
  13. package/dist-cjs/commands/DeleteStreamGroupCommand.js +26 -0
  14. package/dist-cjs/commands/DisassociateApplicationsCommand.js +26 -0
  15. package/dist-cjs/commands/ExportStreamSessionFilesCommand.js +26 -0
  16. package/dist-cjs/commands/GetApplicationCommand.js +26 -0
  17. package/dist-cjs/commands/GetStreamGroupCommand.js +26 -0
  18. package/dist-cjs/commands/GetStreamSessionCommand.js +27 -0
  19. package/dist-cjs/commands/ListApplicationsCommand.js +26 -0
  20. package/dist-cjs/commands/ListStreamGroupsCommand.js +26 -0
  21. package/dist-cjs/commands/ListStreamSessionsByAccountCommand.js +26 -0
  22. package/dist-cjs/commands/ListStreamSessionsCommand.js +26 -0
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  24. package/dist-cjs/commands/RemoveStreamGroupLocationsCommand.js +26 -0
  25. package/dist-cjs/commands/StartStreamSessionCommand.js +27 -0
  26. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  27. package/dist-cjs/commands/TerminateStreamSessionCommand.js +26 -0
  28. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  29. package/dist-cjs/commands/UpdateApplicationCommand.js +26 -0
  30. package/dist-cjs/commands/UpdateStreamGroupCommand.js +26 -0
  31. package/dist-cjs/commands/index.js +27 -0
  32. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  33. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  34. package/dist-cjs/endpoint/ruleset.js +7 -0
  35. package/dist-cjs/extensionConfiguration.js +2 -0
  36. package/dist-cjs/index.js +12 -0
  37. package/dist-cjs/models/GameLiftStreamsServiceException.js +12 -0
  38. package/dist-cjs/models/index.js +4 -0
  39. package/dist-cjs/models/models_0.js +211 -0
  40. package/dist-cjs/pagination/Interfaces.js +2 -0
  41. package/dist-cjs/pagination/ListApplicationsPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListStreamGroupsPaginator.js +7 -0
  43. package/dist-cjs/pagination/ListStreamSessionsByAccountPaginator.js +7 -0
  44. package/dist-cjs/pagination/ListStreamSessionsPaginator.js +7 -0
  45. package/dist-cjs/pagination/index.js +8 -0
  46. package/dist-cjs/protocols/Aws_restJson1.js +1005 -0
  47. package/dist-cjs/runtimeConfig.browser.js +39 -0
  48. package/dist-cjs/runtimeConfig.js +52 -0
  49. package/dist-cjs/runtimeConfig.native.js +15 -0
  50. package/dist-cjs/runtimeConfig.shared.js +34 -0
  51. package/dist-cjs/runtimeExtensions.js +25 -0
  52. package/dist-cjs/waiters/index.js +8 -0
  53. package/dist-cjs/waiters/waitForApplicationDeleted.js +30 -0
  54. package/dist-cjs/waiters/waitForApplicationReady.js +45 -0
  55. package/dist-cjs/waiters/waitForStreamGroupActive.js +63 -0
  56. package/dist-cjs/waiters/waitForStreamGroupDeleted.js +30 -0
  57. package/dist-cjs/waiters/waitForStreamSessionActive.js +45 -0
  58. package/dist-es/GameLiftStreams.js +55 -0
  59. package/dist-es/GameLiftStreamsClient.js +47 -0
  60. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  61. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  62. package/dist-es/commands/AddStreamGroupLocationsCommand.js +22 -0
  63. package/dist-es/commands/AssociateApplicationsCommand.js +22 -0
  64. package/dist-es/commands/CreateApplicationCommand.js +22 -0
  65. package/dist-es/commands/CreateStreamGroupCommand.js +22 -0
  66. package/dist-es/commands/CreateStreamSessionConnectionCommand.js +23 -0
  67. package/dist-es/commands/DeleteApplicationCommand.js +22 -0
  68. package/dist-es/commands/DeleteStreamGroupCommand.js +22 -0
  69. package/dist-es/commands/DisassociateApplicationsCommand.js +22 -0
  70. package/dist-es/commands/ExportStreamSessionFilesCommand.js +22 -0
  71. package/dist-es/commands/GetApplicationCommand.js +22 -0
  72. package/dist-es/commands/GetStreamGroupCommand.js +22 -0
  73. package/dist-es/commands/GetStreamSessionCommand.js +23 -0
  74. package/dist-es/commands/ListApplicationsCommand.js +22 -0
  75. package/dist-es/commands/ListStreamGroupsCommand.js +22 -0
  76. package/dist-es/commands/ListStreamSessionsByAccountCommand.js +22 -0
  77. package/dist-es/commands/ListStreamSessionsCommand.js +22 -0
  78. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  79. package/dist-es/commands/RemoveStreamGroupLocationsCommand.js +22 -0
  80. package/dist-es/commands/StartStreamSessionCommand.js +23 -0
  81. package/dist-es/commands/TagResourceCommand.js +22 -0
  82. package/dist-es/commands/TerminateStreamSessionCommand.js +22 -0
  83. package/dist-es/commands/UntagResourceCommand.js +22 -0
  84. package/dist-es/commands/UpdateApplicationCommand.js +22 -0
  85. package/dist-es/commands/UpdateStreamGroupCommand.js +22 -0
  86. package/dist-es/commands/index.js +24 -0
  87. package/dist-es/endpoint/EndpointParameters.js +12 -0
  88. package/dist-es/endpoint/endpointResolver.js +14 -0
  89. package/dist-es/endpoint/ruleset.js +4 -0
  90. package/dist-es/extensionConfiguration.js +1 -0
  91. package/dist-es/index.js +7 -0
  92. package/dist-es/models/GameLiftStreamsServiceException.js +8 -0
  93. package/dist-es/models/index.js +1 -0
  94. package/dist-es/models/models_0.js +196 -0
  95. package/dist-es/pagination/Interfaces.js +1 -0
  96. package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
  97. package/dist-es/pagination/ListStreamGroupsPaginator.js +4 -0
  98. package/dist-es/pagination/ListStreamSessionsByAccountPaginator.js +4 -0
  99. package/dist-es/pagination/ListStreamSessionsPaginator.js +4 -0
  100. package/dist-es/pagination/index.js +5 -0
  101. package/dist-es/protocols/Aws_restJson1.js +954 -0
  102. package/dist-es/runtimeConfig.browser.js +34 -0
  103. package/dist-es/runtimeConfig.js +47 -0
  104. package/dist-es/runtimeConfig.native.js +11 -0
  105. package/dist-es/runtimeConfig.shared.js +30 -0
  106. package/dist-es/runtimeExtensions.js +21 -0
  107. package/dist-es/waiters/index.js +5 -0
  108. package/dist-es/waiters/waitForApplicationDeleted.js +25 -0
  109. package/dist-es/waiters/waitForApplicationReady.js +40 -0
  110. package/dist-es/waiters/waitForStreamGroupActive.js +58 -0
  111. package/dist-es/waiters/waitForStreamGroupDeleted.js +25 -0
  112. package/dist-es/waiters/waitForStreamSessionActive.js +40 -0
  113. package/dist-types/GameLiftStreams.d.ts +187 -0
  114. package/dist-types/GameLiftStreamsClient.d.ts +217 -0
  115. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  116. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  117. package/dist-types/commands/AddStreamGroupLocationsCommand.d.ts +116 -0
  118. package/dist-types/commands/AssociateApplicationsCommand.d.ts +99 -0
  119. package/dist-types/commands/CreateApplicationCommand.d.ts +146 -0
  120. package/dist-types/commands/CreateStreamGroupCommand.d.ts +158 -0
  121. package/dist-types/commands/CreateStreamSessionConnectionCommand.d.ts +114 -0
  122. package/dist-types/commands/DeleteApplicationCommand.d.ts +116 -0
  123. package/dist-types/commands/DeleteStreamGroupCommand.d.ts +93 -0
  124. package/dist-types/commands/DisassociateApplicationsCommand.d.ts +100 -0
  125. package/dist-types/commands/ExportStreamSessionFilesCommand.d.ts +116 -0
  126. package/dist-types/commands/GetApplicationCommand.d.ts +116 -0
  127. package/dist-types/commands/GetStreamGroupCommand.d.ts +116 -0
  128. package/dist-types/commands/GetStreamSessionCommand.d.ts +119 -0
  129. package/dist-types/commands/ListApplicationsCommand.d.ts +103 -0
  130. package/dist-types/commands/ListStreamGroupsCommand.d.ts +104 -0
  131. package/dist-types/commands/ListStreamSessionsByAccountCommand.d.ts +109 -0
  132. package/dist-types/commands/ListStreamSessionsCommand.d.ts +113 -0
  133. package/dist-types/commands/ListTagsForResourceCommand.d.ts +100 -0
  134. package/dist-types/commands/RemoveStreamGroupLocationsCommand.d.ts +95 -0
  135. package/dist-types/commands/StartStreamSessionCommand.d.ts +156 -0
  136. package/dist-types/commands/TagResourceCommand.d.ts +107 -0
  137. package/dist-types/commands/TerminateStreamSessionCommand.d.ts +91 -0
  138. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  139. package/dist-types/commands/UpdateApplicationCommand.d.ts +122 -0
  140. package/dist-types/commands/UpdateStreamGroupCommand.d.ts +154 -0
  141. package/dist-types/commands/index.d.ts +24 -0
  142. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  143. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  144. package/dist-types/endpoint/ruleset.d.ts +2 -0
  145. package/dist-types/extensionConfiguration.d.ts +9 -0
  146. package/dist-types/index.d.ts +21 -0
  147. package/dist-types/models/GameLiftStreamsServiceException.d.ts +14 -0
  148. package/dist-types/models/index.d.ts +1 -0
  149. package/dist-types/models/models_0.d.ts +3555 -0
  150. package/dist-types/pagination/Interfaces.d.ts +8 -0
  151. package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
  152. package/dist-types/pagination/ListStreamGroupsPaginator.d.ts +7 -0
  153. package/dist-types/pagination/ListStreamSessionsByAccountPaginator.d.ts +7 -0
  154. package/dist-types/pagination/ListStreamSessionsPaginator.d.ts +7 -0
  155. package/dist-types/pagination/index.d.ts +5 -0
  156. package/dist-types/protocols/Aws_restJson1.d.ts +218 -0
  157. package/dist-types/runtimeConfig.browser.d.ts +49 -0
  158. package/dist-types/runtimeConfig.d.ts +49 -0
  159. package/dist-types/runtimeConfig.native.d.ts +48 -0
  160. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  161. package/dist-types/runtimeExtensions.d.ts +17 -0
  162. package/dist-types/ts3.4/GameLiftStreams.d.ts +418 -0
  163. package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +264 -0
  164. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  165. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  166. package/dist-types/ts3.4/commands/AddStreamGroupLocationsCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/AssociateApplicationsCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +50 -0
  169. package/dist-types/ts3.4/commands/CreateStreamGroupCommand.d.ts +50 -0
  170. package/dist-types/ts3.4/commands/CreateStreamSessionConnectionCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +45 -0
  172. package/dist-types/ts3.4/commands/DeleteStreamGroupCommand.d.ts +45 -0
  173. package/dist-types/ts3.4/commands/DisassociateApplicationsCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/ExportStreamSessionFilesCommand.d.ts +51 -0
  175. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +47 -0
  176. package/dist-types/ts3.4/commands/GetStreamGroupCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +50 -0
  178. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +50 -0
  179. package/dist-types/ts3.4/commands/ListStreamGroupsCommand.d.ts +50 -0
  180. package/dist-types/ts3.4/commands/ListStreamSessionsByAccountCommand.d.ts +51 -0
  181. package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/RemoveStreamGroupLocationsCommand.d.ts +47 -0
  184. package/dist-types/ts3.4/commands/StartStreamSessionCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  186. package/dist-types/ts3.4/commands/TerminateStreamSessionCommand.d.ts +46 -0
  187. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  188. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +50 -0
  189. package/dist-types/ts3.4/commands/UpdateStreamGroupCommand.d.ts +50 -0
  190. package/dist-types/ts3.4/commands/index.d.ts +24 -0
  191. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  192. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  193. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  194. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  195. package/dist-types/ts3.4/index.d.ts +10 -0
  196. package/dist-types/ts3.4/models/GameLiftStreamsServiceException.d.ts +9 -0
  197. package/dist-types/ts3.4/models/index.d.ts +1 -0
  198. package/dist-types/ts3.4/models/models_0.d.ts +518 -0
  199. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  200. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListStreamGroupsPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListStreamSessionsByAccountPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  205. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -0
  206. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +98 -0
  207. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  208. package/dist-types/ts3.4/runtimeConfig.native.d.ts +102 -0
  209. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  210. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  211. package/dist-types/ts3.4/waiters/index.d.ts +5 -0
  212. package/dist-types/ts3.4/waiters/waitForApplicationDeleted.d.ts +11 -0
  213. package/dist-types/ts3.4/waiters/waitForApplicationReady.d.ts +11 -0
  214. package/dist-types/ts3.4/waiters/waitForStreamGroupActive.d.ts +11 -0
  215. package/dist-types/ts3.4/waiters/waitForStreamGroupDeleted.d.ts +11 -0
  216. package/dist-types/ts3.4/waiters/waitForStreamSessionActive.d.ts +11 -0
  217. package/dist-types/waiters/index.d.ts +5 -0
  218. package/dist-types/waiters/waitForApplicationDeleted.d.ts +14 -0
  219. package/dist-types/waiters/waitForApplicationReady.d.ts +14 -0
  220. package/dist-types/waiters/waitForStreamGroupActive.d.ts +14 -0
  221. package/dist-types/waiters/waitForStreamGroupDeleted.d.ts +14 -0
  222. package/dist-types/waiters/waitForStreamSessionActive.d.ts +14 -0
  223. package/package.json +102 -0
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StartStreamSessionCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const models_0_1 = require("../models/models_0");
10
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
+ class StartStreamSessionCommand extends smithy_client_1.Command
12
+ .classBuilder()
13
+ .ep(EndpointParameters_1.commonParams)
14
+ .m(function (Command, cs, config, o) {
15
+ return [
16
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
17
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
18
+ ];
19
+ })
20
+ .s("GameLiftStreams", "StartStreamSession", {})
21
+ .n("GameLiftStreamsClient", "StartStreamSessionCommand")
22
+ .f(models_0_1.StartStreamSessionInputFilterSensitiveLog, models_0_1.StartStreamSessionOutputFilterSensitiveLog)
23
+ .ser(Aws_restJson1_1.se_StartStreamSessionCommand)
24
+ .de(Aws_restJson1_1.de_StartStreamSessionCommand)
25
+ .build() {
26
+ }
27
+ exports.StartStreamSessionCommand = StartStreamSessionCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TagResourceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class TagResourceCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("GameLiftStreams", "TagResource", {})
20
+ .n("GameLiftStreamsClient", "TagResourceCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_TagResourceCommand)
23
+ .de(Aws_restJson1_1.de_TagResourceCommand)
24
+ .build() {
25
+ }
26
+ exports.TagResourceCommand = TagResourceCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TerminateStreamSessionCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class TerminateStreamSessionCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("GameLiftStreams", "TerminateStreamSession", {})
20
+ .n("GameLiftStreamsClient", "TerminateStreamSessionCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_TerminateStreamSessionCommand)
23
+ .de(Aws_restJson1_1.de_TerminateStreamSessionCommand)
24
+ .build() {
25
+ }
26
+ exports.TerminateStreamSessionCommand = TerminateStreamSessionCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UntagResourceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class UntagResourceCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("GameLiftStreams", "UntagResource", {})
20
+ .n("GameLiftStreamsClient", "UntagResourceCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_UntagResourceCommand)
23
+ .de(Aws_restJson1_1.de_UntagResourceCommand)
24
+ .build() {
25
+ }
26
+ exports.UntagResourceCommand = UntagResourceCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateApplicationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class UpdateApplicationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("GameLiftStreams", "UpdateApplication", {})
20
+ .n("GameLiftStreamsClient", "UpdateApplicationCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_UpdateApplicationCommand)
23
+ .de(Aws_restJson1_1.de_UpdateApplicationCommand)
24
+ .build() {
25
+ }
26
+ exports.UpdateApplicationCommand = UpdateApplicationCommand;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateStreamGroupCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class UpdateStreamGroupCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep(EndpointParameters_1.commonParams)
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
16
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("GameLiftStreams", "UpdateStreamGroup", {})
20
+ .n("GameLiftStreamsClient", "UpdateStreamGroupCommand")
21
+ .f(void 0, void 0)
22
+ .ser(Aws_restJson1_1.se_UpdateStreamGroupCommand)
23
+ .de(Aws_restJson1_1.de_UpdateStreamGroupCommand)
24
+ .build() {
25
+ }
26
+ exports.UpdateStreamGroupCommand = UpdateStreamGroupCommand;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./AddStreamGroupLocationsCommand"), exports);
5
+ tslib_1.__exportStar(require("./AssociateApplicationsCommand"), exports);
6
+ tslib_1.__exportStar(require("./CreateApplicationCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreateStreamGroupCommand"), exports);
8
+ tslib_1.__exportStar(require("./CreateStreamSessionConnectionCommand"), exports);
9
+ tslib_1.__exportStar(require("./DeleteApplicationCommand"), exports);
10
+ tslib_1.__exportStar(require("./DeleteStreamGroupCommand"), exports);
11
+ tslib_1.__exportStar(require("./DisassociateApplicationsCommand"), exports);
12
+ tslib_1.__exportStar(require("./ExportStreamSessionFilesCommand"), exports);
13
+ tslib_1.__exportStar(require("./GetApplicationCommand"), exports);
14
+ tslib_1.__exportStar(require("./GetStreamGroupCommand"), exports);
15
+ tslib_1.__exportStar(require("./GetStreamSessionCommand"), exports);
16
+ tslib_1.__exportStar(require("./ListApplicationsCommand"), exports);
17
+ tslib_1.__exportStar(require("./ListStreamGroupsCommand"), exports);
18
+ tslib_1.__exportStar(require("./ListStreamSessionsByAccountCommand"), exports);
19
+ tslib_1.__exportStar(require("./ListStreamSessionsCommand"), exports);
20
+ tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
21
+ tslib_1.__exportStar(require("./RemoveStreamGroupLocationsCommand"), exports);
22
+ tslib_1.__exportStar(require("./StartStreamSessionCommand"), exports);
23
+ tslib_1.__exportStar(require("./TagResourceCommand"), exports);
24
+ tslib_1.__exportStar(require("./TerminateStreamSessionCommand"), exports);
25
+ tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
26
+ tslib_1.__exportStar(require("./UpdateApplicationCommand"), exports);
27
+ tslib_1.__exportStar(require("./UpdateStreamGroupCommand"), exports);
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
+ const resolveClientEndpointParameters = (options) => {
5
+ return {
6
+ ...options,
7
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
8
+ defaultSigningName: "gameliftstreams",
9
+ };
10
+ };
11
+ exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
12
+ exports.commonParams = {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ };
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultEndpointResolver = void 0;
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
6
+ const ruleset_1 = require("./ruleset");
7
+ const cache = new util_endpoints_2.EndpointCache({
8
+ size: 50,
9
+ params: ["Endpoint", "Region", "UseFIPS"],
10
+ });
11
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
12
+ return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
13
+ endpointParams: endpointParams,
14
+ logger: context.logger,
15
+ }));
16
+ };
17
+ exports.defaultEndpointResolver = defaultEndpointResolver;
18
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ruleSet = void 0;
4
+ const l = "ref";
5
+ const a = true, b = false, c = "isSet", d = "error", e = "endpoint", f = "tree", g = { "required": false, "type": "String" }, h = { [l]: "Endpoint" }, i = {}, j = [{ "fn": "booleanEquals", "argv": [{ [l]: "UseFIPS" }, true] }], k = [{ [l]: "Region" }];
6
+ const _data = { version: "1.0", parameters: { UseFIPS: { required: a, default: b, type: "Boolean" }, Endpoint: g, Region: g }, rules: [{ conditions: [{ fn: c, argv: [h] }], rules: [{ conditions: j, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { endpoint: { url: h, properties: i, headers: i }, type: e }], type: f }, { rules: [{ conditions: [{ fn: c, argv: k }], rules: [{ conditions: [{ fn: "aws.partition", argv: k, assign: "PartitionResult" }], rules: [{ conditions: j, endpoint: { url: "https://gameliftstreams-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: i, headers: i }, type: e }, { endpoint: { url: "https://gameliftstreams.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: i, headers: i }, type: e }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
7
+ exports.ruleSet = _data;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GameLiftStreamsServiceException = void 0;
4
+ const tslib_1 = require("tslib");
5
+ tslib_1.__exportStar(require("./GameLiftStreamsClient"), exports);
6
+ tslib_1.__exportStar(require("./GameLiftStreams"), exports);
7
+ tslib_1.__exportStar(require("./commands"), exports);
8
+ tslib_1.__exportStar(require("./pagination"), exports);
9
+ tslib_1.__exportStar(require("./waiters"), exports);
10
+ tslib_1.__exportStar(require("./models"), exports);
11
+ var GameLiftStreamsServiceException_1 = require("./models/GameLiftStreamsServiceException");
12
+ Object.defineProperty(exports, "GameLiftStreamsServiceException", { enumerable: true, get: function () { return GameLiftStreamsServiceException_1.GameLiftStreamsServiceException; } });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GameLiftStreamsServiceException = exports.__ServiceException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
+ class GameLiftStreamsServiceException extends smithy_client_1.ServiceException {
7
+ constructor(options) {
8
+ super(options);
9
+ Object.setPrototypeOf(this, GameLiftStreamsServiceException.prototype);
10
+ }
11
+ }
12
+ exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException;
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./models_0"), exports);
@@ -0,0 +1,211 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StartStreamSessionOutputFilterSensitiveLog = exports.StartStreamSessionInputFilterSensitiveLog = exports.GetStreamSessionOutputFilterSensitiveLog = exports.CreateStreamSessionConnectionOutputFilterSensitiveLog = exports.CreateStreamSessionConnectionInputFilterSensitiveLog = exports.StreamSessionStatusReason = exports.StreamSessionStatus = exports.Protocol = exports.ExportFilesStatus = exports.StreamGroupStatusReason = exports.StreamGroupStatus = exports.StreamClass = exports.ReplicationStatusType = exports.RuntimeEnvironmentType = exports.ConflictException = exports.ApplicationStatusReason = exports.ApplicationStatus = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.StreamGroupLocationStatus = exports.AccessDeniedException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ const GameLiftStreamsServiceException_1 = require("./GameLiftStreamsServiceException");
6
+ class AccessDeniedException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
7
+ name = "AccessDeniedException";
8
+ $fault = "client";
9
+ Message;
10
+ constructor(opts) {
11
+ super({
12
+ name: "AccessDeniedException",
13
+ $fault: "client",
14
+ ...opts,
15
+ });
16
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
17
+ this.Message = opts.Message;
18
+ }
19
+ }
20
+ exports.AccessDeniedException = AccessDeniedException;
21
+ exports.StreamGroupLocationStatus = {
22
+ ACTIVATING: "ACTIVATING",
23
+ ACTIVE: "ACTIVE",
24
+ ERROR: "ERROR",
25
+ REMOVING: "REMOVING",
26
+ };
27
+ class InternalServerException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
28
+ name = "InternalServerException";
29
+ $fault = "server";
30
+ $retryable = {};
31
+ Message;
32
+ constructor(opts) {
33
+ super({
34
+ name: "InternalServerException",
35
+ $fault: "server",
36
+ ...opts,
37
+ });
38
+ Object.setPrototypeOf(this, InternalServerException.prototype);
39
+ this.Message = opts.Message;
40
+ }
41
+ }
42
+ exports.InternalServerException = InternalServerException;
43
+ class ResourceNotFoundException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
44
+ name = "ResourceNotFoundException";
45
+ $fault = "client";
46
+ Message;
47
+ constructor(opts) {
48
+ super({
49
+ name: "ResourceNotFoundException",
50
+ $fault: "client",
51
+ ...opts,
52
+ });
53
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
54
+ this.Message = opts.Message;
55
+ }
56
+ }
57
+ exports.ResourceNotFoundException = ResourceNotFoundException;
58
+ class ServiceQuotaExceededException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
59
+ name = "ServiceQuotaExceededException";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ServiceQuotaExceededException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
72
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
73
+ class ThrottlingException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
74
+ name = "ThrottlingException";
75
+ $fault = "client";
76
+ $retryable = {
77
+ throttling: true,
78
+ };
79
+ Message;
80
+ constructor(opts) {
81
+ super({
82
+ name: "ThrottlingException",
83
+ $fault: "client",
84
+ ...opts,
85
+ });
86
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
87
+ this.Message = opts.Message;
88
+ }
89
+ }
90
+ exports.ThrottlingException = ThrottlingException;
91
+ class ValidationException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
92
+ name = "ValidationException";
93
+ $fault = "client";
94
+ Message;
95
+ constructor(opts) {
96
+ super({
97
+ name: "ValidationException",
98
+ $fault: "client",
99
+ ...opts,
100
+ });
101
+ Object.setPrototypeOf(this, ValidationException.prototype);
102
+ this.Message = opts.Message;
103
+ }
104
+ }
105
+ exports.ValidationException = ValidationException;
106
+ exports.ApplicationStatus = {
107
+ DELETING: "DELETING",
108
+ ERROR: "ERROR",
109
+ INITIALIZED: "INITIALIZED",
110
+ PROCESSING: "PROCESSING",
111
+ READY: "READY",
112
+ };
113
+ exports.ApplicationStatusReason = {
114
+ ACCESS_DENIED: "accessDenied",
115
+ INTERNAL_ERROR: "internalError",
116
+ };
117
+ class ConflictException extends GameLiftStreamsServiceException_1.GameLiftStreamsServiceException {
118
+ name = "ConflictException";
119
+ $fault = "client";
120
+ Message;
121
+ constructor(opts) {
122
+ super({
123
+ name: "ConflictException",
124
+ $fault: "client",
125
+ ...opts,
126
+ });
127
+ Object.setPrototypeOf(this, ConflictException.prototype);
128
+ this.Message = opts.Message;
129
+ }
130
+ }
131
+ exports.ConflictException = ConflictException;
132
+ exports.RuntimeEnvironmentType = {
133
+ PROTON: "PROTON",
134
+ UBUNTU: "UBUNTU",
135
+ WINDOWS: "WINDOWS",
136
+ };
137
+ exports.ReplicationStatusType = {
138
+ COMPLETED: "COMPLETED",
139
+ REPLICATING: "REPLICATING",
140
+ };
141
+ exports.StreamClass = {
142
+ gen4n_high: "gen4n_high",
143
+ gen4n_ultra: "gen4n_ultra",
144
+ gen4n_win2022: "gen4n_win2022",
145
+ gen5n_high: "gen5n_high",
146
+ gen5n_ultra: "gen5n_ultra",
147
+ gen5n_win2022: "gen5n_win2022",
148
+ };
149
+ exports.StreamGroupStatus = {
150
+ ACTIVATING: "ACTIVATING",
151
+ ACTIVE: "ACTIVE",
152
+ ACTIVE_WITH_ERRORS: "ACTIVE_WITH_ERRORS",
153
+ DELETING: "DELETING",
154
+ ERROR: "ERROR",
155
+ UPDATING_LOCATIONS: "UPDATING_LOCATIONS",
156
+ };
157
+ exports.StreamGroupStatusReason = {
158
+ INTERNAL_ERROR: "internalError",
159
+ NO_AVAILABLE_INSTANCES: "noAvailableInstances",
160
+ };
161
+ exports.ExportFilesStatus = {
162
+ FAILED: "FAILED",
163
+ PENDING: "PENDING",
164
+ SUCCEEDED: "SUCCEEDED",
165
+ };
166
+ exports.Protocol = {
167
+ WEBRTC: "WebRTC",
168
+ };
169
+ exports.StreamSessionStatus = {
170
+ ACTIVATING: "ACTIVATING",
171
+ ACTIVE: "ACTIVE",
172
+ CONNECTED: "CONNECTED",
173
+ ERROR: "ERROR",
174
+ PENDING_CLIENT_RECONNECTION: "PENDING_CLIENT_RECONNECTION",
175
+ RECONNECTING: "RECONNECTING",
176
+ TERMINATED: "TERMINATED",
177
+ TERMINATING: "TERMINATING",
178
+ };
179
+ exports.StreamSessionStatusReason = {
180
+ APP_LOG_S3_DESTINATION_ERROR: "applicationLogS3DestinationError",
181
+ INTERNAL_ERROR: "internalError",
182
+ INVALID_SIGNAL_REQUEST: "invalidSignalRequest",
183
+ PLACEMENT_TIMEOUT: "placementTimeout",
184
+ };
185
+ const CreateStreamSessionConnectionInputFilterSensitiveLog = (obj) => ({
186
+ ...obj,
187
+ ...(obj.SignalRequest && { SignalRequest: smithy_client_1.SENSITIVE_STRING }),
188
+ });
189
+ exports.CreateStreamSessionConnectionInputFilterSensitiveLog = CreateStreamSessionConnectionInputFilterSensitiveLog;
190
+ const CreateStreamSessionConnectionOutputFilterSensitiveLog = (obj) => ({
191
+ ...obj,
192
+ ...(obj.SignalResponse && { SignalResponse: smithy_client_1.SENSITIVE_STRING }),
193
+ });
194
+ exports.CreateStreamSessionConnectionOutputFilterSensitiveLog = CreateStreamSessionConnectionOutputFilterSensitiveLog;
195
+ const GetStreamSessionOutputFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ ...(obj.SignalRequest && { SignalRequest: smithy_client_1.SENSITIVE_STRING }),
198
+ ...(obj.SignalResponse && { SignalResponse: smithy_client_1.SENSITIVE_STRING }),
199
+ });
200
+ exports.GetStreamSessionOutputFilterSensitiveLog = GetStreamSessionOutputFilterSensitiveLog;
201
+ const StartStreamSessionInputFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ ...(obj.SignalRequest && { SignalRequest: smithy_client_1.SENSITIVE_STRING }),
204
+ });
205
+ exports.StartStreamSessionInputFilterSensitiveLog = StartStreamSessionInputFilterSensitiveLog;
206
+ const StartStreamSessionOutputFilterSensitiveLog = (obj) => ({
207
+ ...obj,
208
+ ...(obj.SignalRequest && { SignalRequest: smithy_client_1.SENSITIVE_STRING }),
209
+ ...(obj.SignalResponse && { SignalResponse: smithy_client_1.SENSITIVE_STRING }),
210
+ });
211
+ exports.StartStreamSessionOutputFilterSensitiveLog = StartStreamSessionOutputFilterSensitiveLog;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListApplications = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListApplicationsCommand_1 = require("../commands/ListApplicationsCommand");
6
+ const GameLiftStreamsClient_1 = require("../GameLiftStreamsClient");
7
+ exports.paginateListApplications = (0, core_1.createPaginator)(GameLiftStreamsClient_1.GameLiftStreamsClient, ListApplicationsCommand_1.ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListStreamGroups = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListStreamGroupsCommand_1 = require("../commands/ListStreamGroupsCommand");
6
+ const GameLiftStreamsClient_1 = require("../GameLiftStreamsClient");
7
+ exports.paginateListStreamGroups = (0, core_1.createPaginator)(GameLiftStreamsClient_1.GameLiftStreamsClient, ListStreamGroupsCommand_1.ListStreamGroupsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListStreamSessionsByAccount = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListStreamSessionsByAccountCommand_1 = require("../commands/ListStreamSessionsByAccountCommand");
6
+ const GameLiftStreamsClient_1 = require("../GameLiftStreamsClient");
7
+ exports.paginateListStreamSessionsByAccount = (0, core_1.createPaginator)(GameLiftStreamsClient_1.GameLiftStreamsClient, ListStreamSessionsByAccountCommand_1.ListStreamSessionsByAccountCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListStreamSessions = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const ListStreamSessionsCommand_1 = require("../commands/ListStreamSessionsCommand");
6
+ const GameLiftStreamsClient_1 = require("../GameLiftStreamsClient");
7
+ exports.paginateListStreamSessions = (0, core_1.createPaginator)(GameLiftStreamsClient_1.GameLiftStreamsClient, ListStreamSessionsCommand_1.ListStreamSessionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./Interfaces"), exports);
5
+ tslib_1.__exportStar(require("./ListApplicationsPaginator"), exports);
6
+ tslib_1.__exportStar(require("./ListStreamGroupsPaginator"), exports);
7
+ tslib_1.__exportStar(require("./ListStreamSessionsByAccountPaginator"), exports);
8
+ tslib_1.__exportStar(require("./ListStreamSessionsPaginator"), exports);