@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,154 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient";
4
+ import { UpdateStreamGroupInput, UpdateStreamGroupOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateStreamGroupCommand}.
14
+ */
15
+ export interface UpdateStreamGroupCommandInput extends UpdateStreamGroupInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateStreamGroupCommand}.
21
+ */
22
+ export interface UpdateStreamGroupCommandOutput extends UpdateStreamGroupOutput, __MetadataBearer {
23
+ }
24
+ declare const UpdateStreamGroupCommand_base: {
25
+ new (input: UpdateStreamGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateStreamGroupCommandInput, UpdateStreamGroupCommandOutput, GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateStreamGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateStreamGroupCommandInput, UpdateStreamGroupCommandOutput, GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Updates the configuration settings for an Amazon GameLift Streams stream group resource. You
32
+ * can change the description, the set of locations, and the requested capacity of a stream group per location. If you want to change the stream class, create a new stream group.
33
+ * </p>
34
+ * <p>
35
+ * Stream capacity represents the number of concurrent streams that can be active at a time. You set stream capacity per location, per stream group. There are two types of capacity: always-on and on-demand:
36
+ * </p>
37
+ * <ul>
38
+ * <li>
39
+ * <p>
40
+ * <b>Always-on</b>:
41
+ * The streaming capacity that is allocated and ready to handle stream requests without delay. You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session.
42
+ *
43
+ * </p>
44
+ * </li>
45
+ * <li>
46
+ * <p>
47
+ * <b>On-demand</b>:
48
+ * The streaming capacity that Amazon GameLift Streams can allocate in response to stream requests, and then de-allocate when the session has terminated. This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes).
49
+ *
50
+ * </p>
51
+ * </li>
52
+ * </ul>
53
+ * <p>To update a stream group, specify the stream group's Amazon Resource Name (ARN) and provide the new values. If
54
+ * the request is successful, Amazon GameLift Streams returns the complete updated metadata for the stream
55
+ * group.</p>
56
+ * @example
57
+ * Use a bare-bones client and the command you need to make an API call.
58
+ * ```javascript
59
+ * import { GameLiftStreamsClient, UpdateStreamGroupCommand } from "@aws-sdk/client-gameliftstreams"; // ES Modules import
60
+ * // const { GameLiftStreamsClient, UpdateStreamGroupCommand } = require("@aws-sdk/client-gameliftstreams"); // CommonJS import
61
+ * const client = new GameLiftStreamsClient(config);
62
+ * const input = { // UpdateStreamGroupInput
63
+ * Identifier: "STRING_VALUE", // required
64
+ * LocationConfigurations: [ // LocationConfigurations
65
+ * { // LocationConfiguration
66
+ * LocationName: "STRING_VALUE", // required
67
+ * AlwaysOnCapacity: Number("int"),
68
+ * OnDemandCapacity: Number("int"),
69
+ * },
70
+ * ],
71
+ * Description: "STRING_VALUE",
72
+ * };
73
+ * const command = new UpdateStreamGroupCommand(input);
74
+ * const response = await client.send(command);
75
+ * // { // UpdateStreamGroupOutput
76
+ * // Arn: "STRING_VALUE", // required
77
+ * // Description: "STRING_VALUE",
78
+ * // DefaultApplication: { // DefaultApplication
79
+ * // Id: "STRING_VALUE",
80
+ * // Arn: "STRING_VALUE",
81
+ * // },
82
+ * // LocationStates: [ // LocationStates
83
+ * // { // LocationState
84
+ * // LocationName: "STRING_VALUE",
85
+ * // Status: "ACTIVATING" || "ACTIVE" || "ERROR" || "REMOVING",
86
+ * // AlwaysOnCapacity: Number("int"),
87
+ * // OnDemandCapacity: Number("int"),
88
+ * // RequestedCapacity: Number("int"),
89
+ * // AllocatedCapacity: Number("int"),
90
+ * // IdleCapacity: Number("int"),
91
+ * // },
92
+ * // ],
93
+ * // StreamClass: "gen4n_high" || "gen4n_ultra" || "gen4n_win2022" || "gen5n_high" || "gen5n_ultra" || "gen5n_win2022",
94
+ * // Id: "STRING_VALUE",
95
+ * // Status: "ACTIVATING" || "UPDATING_LOCATIONS" || "ACTIVE" || "ACTIVE_WITH_ERRORS" || "ERROR" || "DELETING",
96
+ * // StatusReason: "internalError" || "noAvailableInstances",
97
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
98
+ * // CreatedAt: new Date("TIMESTAMP"),
99
+ * // AssociatedApplications: [ // ArnList
100
+ * // "STRING_VALUE",
101
+ * // ],
102
+ * // };
103
+ *
104
+ * ```
105
+ *
106
+ * @param UpdateStreamGroupCommandInput - {@link UpdateStreamGroupCommandInput}
107
+ * @returns {@link UpdateStreamGroupCommandOutput}
108
+ * @see {@link UpdateStreamGroupCommandInput} for command's `input` shape.
109
+ * @see {@link UpdateStreamGroupCommandOutput} for command's `response` shape.
110
+ * @see {@link GameLiftStreamsClientResolvedConfig | config} for GameLiftStreamsClient's `config` shape.
111
+ *
112
+ * @throws {@link AccessDeniedException} (client fault)
113
+ * <p>You don't have the required permissions to access this Amazon GameLift Streams resource. Correct the
114
+ * permissions before you try again.</p>
115
+ *
116
+ * @throws {@link ConflictException} (client fault)
117
+ * <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.</p>
118
+ *
119
+ * @throws {@link InternalServerException} (server fault)
120
+ * <p>The service encountered an internal error and is unable to complete the request.</p>
121
+ *
122
+ * @throws {@link ResourceNotFoundException} (client fault)
123
+ * <p>The resource specified in the request was not found. Correct the request before you try again.</p>
124
+ *
125
+ * @throws {@link ServiceQuotaExceededException} (client fault)
126
+ * <p>The request would cause the resource to exceed an allowed service quota. Resolve the
127
+ * issue before you try again.</p>
128
+ *
129
+ * @throws {@link ThrottlingException} (client fault)
130
+ * <p>The request was denied due to request throttling. Retry the request after the
131
+ * suggested wait time.</p>
132
+ *
133
+ * @throws {@link ValidationException} (client fault)
134
+ * <p>One or more parameter values in the request fail to satisfy the specified constraints.
135
+ * Correct the invalid parameter values before retrying the request.</p>
136
+ *
137
+ * @throws {@link GameLiftStreamsServiceException}
138
+ * <p>Base exception class for all service exceptions from GameLiftStreams service.</p>
139
+ *
140
+ * @public
141
+ */
142
+ export declare class UpdateStreamGroupCommand extends UpdateStreamGroupCommand_base {
143
+ /** @internal type navigation helper, not in runtime. */
144
+ protected static __types: {
145
+ api: {
146
+ input: UpdateStreamGroupInput;
147
+ output: UpdateStreamGroupOutput;
148
+ };
149
+ sdk: {
150
+ input: UpdateStreamGroupCommandInput;
151
+ output: UpdateStreamGroupCommandOutput;
152
+ };
153
+ };
154
+ }
@@ -0,0 +1,24 @@
1
+ export * from "./AddStreamGroupLocationsCommand";
2
+ export * from "./AssociateApplicationsCommand";
3
+ export * from "./CreateApplicationCommand";
4
+ export * from "./CreateStreamGroupCommand";
5
+ export * from "./CreateStreamSessionConnectionCommand";
6
+ export * from "./DeleteApplicationCommand";
7
+ export * from "./DeleteStreamGroupCommand";
8
+ export * from "./DisassociateApplicationsCommand";
9
+ export * from "./ExportStreamSessionFilesCommand";
10
+ export * from "./GetApplicationCommand";
11
+ export * from "./GetStreamGroupCommand";
12
+ export * from "./GetStreamSessionCommand";
13
+ export * from "./ListApplicationsCommand";
14
+ export * from "./ListStreamGroupsCommand";
15
+ export * from "./ListStreamSessionsByAccountCommand";
16
+ export * from "./ListStreamSessionsCommand";
17
+ export * from "./ListTagsForResourceCommand";
18
+ export * from "./RemoveStreamGroupLocationsCommand";
19
+ export * from "./StartStreamSessionCommand";
20
+ export * from "./TagResourceCommand";
21
+ export * from "./TerminateStreamSessionCommand";
22
+ export * from "./UntagResourceCommand";
23
+ export * from "./UpdateApplicationCommand";
24
+ export * from "./UpdateStreamGroupCommand";
@@ -0,0 +1,34 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ useFipsEndpoint?: boolean | Provider<boolean>;
7
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
8
+ region?: string | Provider<string>;
9
+ }
10
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
11
+ defaultSigningName: string;
12
+ };
13
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
14
+ defaultSigningName: string;
15
+ };
16
+ export declare const commonParams: {
17
+ readonly UseFIPS: {
18
+ readonly type: "builtInParams";
19
+ readonly name: "useFipsEndpoint";
20
+ };
21
+ readonly Endpoint: {
22
+ readonly type: "builtInParams";
23
+ readonly name: "endpoint";
24
+ };
25
+ readonly Region: {
26
+ readonly type: "builtInParams";
27
+ readonly name: "region";
28
+ };
29
+ };
30
+ export interface EndpointParameters extends __EndpointParameters {
31
+ UseFIPS?: boolean;
32
+ Endpoint?: string;
33
+ Region?: string;
34
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ /**
6
+ * @internal
7
+ */
8
+ export interface GameLiftStreamsExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
9
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * <fullname>Amazon GameLift Streams</fullname>
3
+ * <p>Amazon GameLift Streams provides a global cloud solution for content streaming experiences. Use Amazon GameLift Streams
4
+ * tools to upload and configure content for streaming, deploy and scale computing resources
5
+ * to host streams, and manage stream session placement to meet customer demand.</p>
6
+ * <p>This Reference Guide describes the Amazon GameLift Streams service API. You can use the API through the
7
+ * Amazon Web Services SDK, the Command Line Interface (AWS CLI), or by making direct REST calls through HTTPS.</p>
8
+ * <p>See the <i>Amazon GameLift Streams Developer Guide</i> for more information on how Amazon GameLift Streams works and how to work with it.</p>
9
+ *
10
+ * @packageDocumentation
11
+ */
12
+ export * from "./GameLiftStreamsClient";
13
+ export * from "./GameLiftStreams";
14
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
15
+ export type { RuntimeExtension } from "./runtimeExtensions";
16
+ export type { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration";
17
+ export * from "./commands";
18
+ export * from "./pagination";
19
+ export * from "./waiters";
20
+ export * from "./models";
21
+ export { GameLiftStreamsServiceException } from "./models/GameLiftStreamsServiceException";
@@ -0,0 +1,14 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
+ export type { __ServiceExceptionOptions };
3
+ export { __ServiceException };
4
+ /**
5
+ * @public
6
+ *
7
+ * Base exception class for all service exceptions from GameLiftStreams service.
8
+ */
9
+ export declare class GameLiftStreamsServiceException extends __ServiceException {
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(options: __ServiceExceptionOptions);
14
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";