@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface GameLiftStreamsPaginationConfiguration extends PaginationConfiguration {
7
+ client: GameLiftStreamsClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
3
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListApplications: (config: GameLiftStreamsPaginationConfiguration, input: ListApplicationsCommandInput, ...rest: any[]) => Paginator<ListApplicationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListStreamGroupsCommandInput, ListStreamGroupsCommandOutput } from "../commands/ListStreamGroupsCommand";
3
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListStreamGroups: (config: GameLiftStreamsPaginationConfiguration, input: ListStreamGroupsCommandInput, ...rest: any[]) => Paginator<ListStreamGroupsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListStreamSessionsByAccountCommandInput, ListStreamSessionsByAccountCommandOutput } from "../commands/ListStreamSessionsByAccountCommand";
3
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListStreamSessionsByAccount: (config: GameLiftStreamsPaginationConfiguration, input: ListStreamSessionsByAccountCommandInput, ...rest: any[]) => Paginator<ListStreamSessionsByAccountCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
3
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListStreamSessions: (config: GameLiftStreamsPaginationConfiguration, input: ListStreamSessionsCommandInput, ...rest: any[]) => Paginator<ListStreamSessionsCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListApplicationsPaginator";
3
+ export * from "./ListStreamGroupsPaginator";
4
+ export * from "./ListStreamSessionsByAccountPaginator";
5
+ export * from "./ListStreamSessionsPaginator";
@@ -0,0 +1,218 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { AddStreamGroupLocationsCommandInput, AddStreamGroupLocationsCommandOutput } from "../commands/AddStreamGroupLocationsCommand";
4
+ import { AssociateApplicationsCommandInput, AssociateApplicationsCommandOutput } from "../commands/AssociateApplicationsCommand";
5
+ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
6
+ import { CreateStreamGroupCommandInput, CreateStreamGroupCommandOutput } from "../commands/CreateStreamGroupCommand";
7
+ import { CreateStreamSessionConnectionCommandInput, CreateStreamSessionConnectionCommandOutput } from "../commands/CreateStreamSessionConnectionCommand";
8
+ import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
9
+ import { DeleteStreamGroupCommandInput, DeleteStreamGroupCommandOutput } from "../commands/DeleteStreamGroupCommand";
10
+ import { DisassociateApplicationsCommandInput, DisassociateApplicationsCommandOutput } from "../commands/DisassociateApplicationsCommand";
11
+ import { ExportStreamSessionFilesCommandInput, ExportStreamSessionFilesCommandOutput } from "../commands/ExportStreamSessionFilesCommand";
12
+ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
13
+ import { GetStreamGroupCommandInput, GetStreamGroupCommandOutput } from "../commands/GetStreamGroupCommand";
14
+ import { GetStreamSessionCommandInput, GetStreamSessionCommandOutput } from "../commands/GetStreamSessionCommand";
15
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
16
+ import { ListStreamGroupsCommandInput, ListStreamGroupsCommandOutput } from "../commands/ListStreamGroupsCommand";
17
+ import { ListStreamSessionsByAccountCommandInput, ListStreamSessionsByAccountCommandOutput } from "../commands/ListStreamSessionsByAccountCommand";
18
+ import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
19
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
20
+ import { RemoveStreamGroupLocationsCommandInput, RemoveStreamGroupLocationsCommandOutput } from "../commands/RemoveStreamGroupLocationsCommand";
21
+ import { StartStreamSessionCommandInput, StartStreamSessionCommandOutput } from "../commands/StartStreamSessionCommand";
22
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
23
+ import { TerminateStreamSessionCommandInput, TerminateStreamSessionCommandOutput } from "../commands/TerminateStreamSessionCommand";
24
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
25
+ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "../commands/UpdateApplicationCommand";
26
+ import { UpdateStreamGroupCommandInput, UpdateStreamGroupCommandOutput } from "../commands/UpdateStreamGroupCommand";
27
+ /**
28
+ * serializeAws_restJson1AddStreamGroupLocationsCommand
29
+ */
30
+ export declare const se_AddStreamGroupLocationsCommand: (input: AddStreamGroupLocationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1AssociateApplicationsCommand
33
+ */
34
+ export declare const se_AssociateApplicationsCommand: (input: AssociateApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1CreateApplicationCommand
37
+ */
38
+ export declare const se_CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1CreateStreamGroupCommand
41
+ */
42
+ export declare const se_CreateStreamGroupCommand: (input: CreateStreamGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1CreateStreamSessionConnectionCommand
45
+ */
46
+ export declare const se_CreateStreamSessionConnectionCommand: (input: CreateStreamSessionConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_restJson1DeleteApplicationCommand
49
+ */
50
+ export declare const se_DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_restJson1DeleteStreamGroupCommand
53
+ */
54
+ export declare const se_DeleteStreamGroupCommand: (input: DeleteStreamGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1DisassociateApplicationsCommand
57
+ */
58
+ export declare const se_DisassociateApplicationsCommand: (input: DisassociateApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1ExportStreamSessionFilesCommand
61
+ */
62
+ export declare const se_ExportStreamSessionFilesCommand: (input: ExportStreamSessionFilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * serializeAws_restJson1GetApplicationCommand
65
+ */
66
+ export declare const se_GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ /**
68
+ * serializeAws_restJson1GetStreamGroupCommand
69
+ */
70
+ export declare const se_GetStreamGroupCommand: (input: GetStreamGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ /**
72
+ * serializeAws_restJson1GetStreamSessionCommand
73
+ */
74
+ export declare const se_GetStreamSessionCommand: (input: GetStreamSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ /**
76
+ * serializeAws_restJson1ListApplicationsCommand
77
+ */
78
+ export declare const se_ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
+ /**
80
+ * serializeAws_restJson1ListStreamGroupsCommand
81
+ */
82
+ export declare const se_ListStreamGroupsCommand: (input: ListStreamGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ /**
84
+ * serializeAws_restJson1ListStreamSessionsCommand
85
+ */
86
+ export declare const se_ListStreamSessionsCommand: (input: ListStreamSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
+ /**
88
+ * serializeAws_restJson1ListStreamSessionsByAccountCommand
89
+ */
90
+ export declare const se_ListStreamSessionsByAccountCommand: (input: ListStreamSessionsByAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
+ /**
92
+ * serializeAws_restJson1ListTagsForResourceCommand
93
+ */
94
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ /**
96
+ * serializeAws_restJson1RemoveStreamGroupLocationsCommand
97
+ */
98
+ export declare const se_RemoveStreamGroupLocationsCommand: (input: RemoveStreamGroupLocationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ /**
100
+ * serializeAws_restJson1StartStreamSessionCommand
101
+ */
102
+ export declare const se_StartStreamSessionCommand: (input: StartStreamSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
+ /**
104
+ * serializeAws_restJson1TagResourceCommand
105
+ */
106
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
+ /**
108
+ * serializeAws_restJson1TerminateStreamSessionCommand
109
+ */
110
+ export declare const se_TerminateStreamSessionCommand: (input: TerminateStreamSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
+ /**
112
+ * serializeAws_restJson1UntagResourceCommand
113
+ */
114
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
+ /**
116
+ * serializeAws_restJson1UpdateApplicationCommand
117
+ */
118
+ export declare const se_UpdateApplicationCommand: (input: UpdateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
+ /**
120
+ * serializeAws_restJson1UpdateStreamGroupCommand
121
+ */
122
+ export declare const se_UpdateStreamGroupCommand: (input: UpdateStreamGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
+ /**
124
+ * deserializeAws_restJson1AddStreamGroupLocationsCommand
125
+ */
126
+ export declare const de_AddStreamGroupLocationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddStreamGroupLocationsCommandOutput>;
127
+ /**
128
+ * deserializeAws_restJson1AssociateApplicationsCommand
129
+ */
130
+ export declare const de_AssociateApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApplicationsCommandOutput>;
131
+ /**
132
+ * deserializeAws_restJson1CreateApplicationCommand
133
+ */
134
+ export declare const de_CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
135
+ /**
136
+ * deserializeAws_restJson1CreateStreamGroupCommand
137
+ */
138
+ export declare const de_CreateStreamGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamGroupCommandOutput>;
139
+ /**
140
+ * deserializeAws_restJson1CreateStreamSessionConnectionCommand
141
+ */
142
+ export declare const de_CreateStreamSessionConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamSessionConnectionCommandOutput>;
143
+ /**
144
+ * deserializeAws_restJson1DeleteApplicationCommand
145
+ */
146
+ export declare const de_DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
147
+ /**
148
+ * deserializeAws_restJson1DeleteStreamGroupCommand
149
+ */
150
+ export declare const de_DeleteStreamGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamGroupCommandOutput>;
151
+ /**
152
+ * deserializeAws_restJson1DisassociateApplicationsCommand
153
+ */
154
+ export declare const de_DisassociateApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApplicationsCommandOutput>;
155
+ /**
156
+ * deserializeAws_restJson1ExportStreamSessionFilesCommand
157
+ */
158
+ export declare const de_ExportStreamSessionFilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportStreamSessionFilesCommandOutput>;
159
+ /**
160
+ * deserializeAws_restJson1GetApplicationCommand
161
+ */
162
+ export declare const de_GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
163
+ /**
164
+ * deserializeAws_restJson1GetStreamGroupCommand
165
+ */
166
+ export declare const de_GetStreamGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamGroupCommandOutput>;
167
+ /**
168
+ * deserializeAws_restJson1GetStreamSessionCommand
169
+ */
170
+ export declare const de_GetStreamSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamSessionCommandOutput>;
171
+ /**
172
+ * deserializeAws_restJson1ListApplicationsCommand
173
+ */
174
+ export declare const de_ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
175
+ /**
176
+ * deserializeAws_restJson1ListStreamGroupsCommand
177
+ */
178
+ export declare const de_ListStreamGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamGroupsCommandOutput>;
179
+ /**
180
+ * deserializeAws_restJson1ListStreamSessionsCommand
181
+ */
182
+ export declare const de_ListStreamSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamSessionsCommandOutput>;
183
+ /**
184
+ * deserializeAws_restJson1ListStreamSessionsByAccountCommand
185
+ */
186
+ export declare const de_ListStreamSessionsByAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamSessionsByAccountCommandOutput>;
187
+ /**
188
+ * deserializeAws_restJson1ListTagsForResourceCommand
189
+ */
190
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
191
+ /**
192
+ * deserializeAws_restJson1RemoveStreamGroupLocationsCommand
193
+ */
194
+ export declare const de_RemoveStreamGroupLocationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveStreamGroupLocationsCommandOutput>;
195
+ /**
196
+ * deserializeAws_restJson1StartStreamSessionCommand
197
+ */
198
+ export declare const de_StartStreamSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartStreamSessionCommandOutput>;
199
+ /**
200
+ * deserializeAws_restJson1TagResourceCommand
201
+ */
202
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
203
+ /**
204
+ * deserializeAws_restJson1TerminateStreamSessionCommand
205
+ */
206
+ export declare const de_TerminateStreamSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TerminateStreamSessionCommandOutput>;
207
+ /**
208
+ * deserializeAws_restJson1UntagResourceCommand
209
+ */
210
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
211
+ /**
212
+ * deserializeAws_restJson1UpdateApplicationCommand
213
+ */
214
+ export declare const de_UpdateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationCommandOutput>;
215
+ /**
216
+ * deserializeAws_restJson1UpdateStreamGroupCommand
217
+ */
218
+ export declare const de_UpdateStreamGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStreamGroupCommandOutput>;
@@ -0,0 +1,49 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string | undefined;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger | undefined;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean | undefined;
40
+ serviceConfiguredEndpoint?: undefined;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
45
+ signingEscapePath?: boolean | undefined;
46
+ systemClockOffset?: number | undefined;
47
+ signingRegion?: string | undefined;
48
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
49
+ };
@@ -0,0 +1,49 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
+ apiVersion: string;
22
+ cacheMiddleware?: boolean | undefined;
23
+ urlParser: import("@smithy/types").UrlParser;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: string | Uint8Array) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: string | Uint8Array) => string;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ profile?: string | undefined;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger | undefined;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean | undefined;
40
+ serviceConfiguredEndpoint?: undefined;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
45
+ signingEscapePath?: boolean | undefined;
46
+ systemClockOffset?: number | undefined;
47
+ signingRegion?: string | undefined;
48
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
49
+ };
@@ -0,0 +1,48 @@
1
+ import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean | undefined;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: string | Uint8Array) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: string | Uint8Array) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string | undefined;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
41
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
42
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
43
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
44
+ signingEscapePath?: boolean | undefined;
45
+ systemClockOffset?: number | undefined;
46
+ signingRegion?: string | undefined;
47
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ };
@@ -0,0 +1,21 @@
1
+ import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: GameLiftStreamsClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GameLiftStreamsHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: GameLiftStreamsExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;