@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,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
+ export interface GameLiftStreamsExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,10 @@
1
+ export * from "./GameLiftStreamsClient";
2
+ export * from "./GameLiftStreams";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./waiters";
9
+ export * from "./models";
10
+ export { GameLiftStreamsServiceException } from "./models/GameLiftStreamsServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class GameLiftStreamsServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,518 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { GameLiftStreamsServiceException as __BaseException } from "./GameLiftStreamsServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export interface LocationConfiguration {
12
+ LocationName: string | undefined;
13
+ AlwaysOnCapacity?: number | undefined;
14
+ OnDemandCapacity?: number | undefined;
15
+ }
16
+ export interface AddStreamGroupLocationsInput {
17
+ Identifier: string | undefined;
18
+ LocationConfigurations: LocationConfiguration[] | undefined;
19
+ }
20
+ export declare const StreamGroupLocationStatus: {
21
+ readonly ACTIVATING: "ACTIVATING";
22
+ readonly ACTIVE: "ACTIVE";
23
+ readonly ERROR: "ERROR";
24
+ readonly REMOVING: "REMOVING";
25
+ };
26
+ export type StreamGroupLocationStatus =
27
+ (typeof StreamGroupLocationStatus)[keyof typeof StreamGroupLocationStatus];
28
+ export interface LocationState {
29
+ LocationName?: string | undefined;
30
+ Status?: StreamGroupLocationStatus | undefined;
31
+ AlwaysOnCapacity?: number | undefined;
32
+ OnDemandCapacity?: number | undefined;
33
+ RequestedCapacity?: number | undefined;
34
+ AllocatedCapacity?: number | undefined;
35
+ IdleCapacity?: number | undefined;
36
+ }
37
+ export interface AddStreamGroupLocationsOutput {
38
+ Identifier: string | undefined;
39
+ Locations: LocationState[] | undefined;
40
+ }
41
+ export declare class InternalServerException extends __BaseException {
42
+ readonly name: "InternalServerException";
43
+ readonly $fault: "server";
44
+ $retryable: {};
45
+ Message: string | undefined;
46
+ constructor(
47
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
48
+ );
49
+ }
50
+ export declare class ResourceNotFoundException extends __BaseException {
51
+ readonly name: "ResourceNotFoundException";
52
+ readonly $fault: "client";
53
+ Message: string | undefined;
54
+ constructor(
55
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
56
+ );
57
+ }
58
+ export declare class ServiceQuotaExceededException extends __BaseException {
59
+ readonly name: "ServiceQuotaExceededException";
60
+ readonly $fault: "client";
61
+ Message: string | undefined;
62
+ constructor(
63
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
64
+ );
65
+ }
66
+ export declare class ThrottlingException extends __BaseException {
67
+ readonly name: "ThrottlingException";
68
+ readonly $fault: "client";
69
+ $retryable: {
70
+ throttling: boolean;
71
+ };
72
+ Message: string | undefined;
73
+ constructor(
74
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
75
+ );
76
+ }
77
+ export declare class ValidationException extends __BaseException {
78
+ readonly name: "ValidationException";
79
+ readonly $fault: "client";
80
+ Message: string | undefined;
81
+ constructor(
82
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
83
+ );
84
+ }
85
+ export declare const ApplicationStatus: {
86
+ readonly DELETING: "DELETING";
87
+ readonly ERROR: "ERROR";
88
+ readonly INITIALIZED: "INITIALIZED";
89
+ readonly PROCESSING: "PROCESSING";
90
+ readonly READY: "READY";
91
+ };
92
+ export type ApplicationStatus =
93
+ (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
94
+ export declare const ApplicationStatusReason: {
95
+ readonly ACCESS_DENIED: "accessDenied";
96
+ readonly INTERNAL_ERROR: "internalError";
97
+ };
98
+ export type ApplicationStatusReason =
99
+ (typeof ApplicationStatusReason)[keyof typeof ApplicationStatusReason];
100
+ export declare class ConflictException extends __BaseException {
101
+ readonly name: "ConflictException";
102
+ readonly $fault: "client";
103
+ Message: string | undefined;
104
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
105
+ }
106
+ export declare const RuntimeEnvironmentType: {
107
+ readonly PROTON: "PROTON";
108
+ readonly UBUNTU: "UBUNTU";
109
+ readonly WINDOWS: "WINDOWS";
110
+ };
111
+ export type RuntimeEnvironmentType =
112
+ (typeof RuntimeEnvironmentType)[keyof typeof RuntimeEnvironmentType];
113
+ export interface RuntimeEnvironment {
114
+ Type: RuntimeEnvironmentType | undefined;
115
+ Version: string | undefined;
116
+ }
117
+ export interface CreateApplicationInput {
118
+ Description: string | undefined;
119
+ RuntimeEnvironment: RuntimeEnvironment | undefined;
120
+ ExecutablePath: string | undefined;
121
+ ApplicationSourceUri: string | undefined;
122
+ ApplicationLogPaths?: string[] | undefined;
123
+ ApplicationLogOutputUri?: string | undefined;
124
+ Tags?: Record<string, string> | undefined;
125
+ ClientToken?: string | undefined;
126
+ }
127
+ export declare const ReplicationStatusType: {
128
+ readonly COMPLETED: "COMPLETED";
129
+ readonly REPLICATING: "REPLICATING";
130
+ };
131
+ export type ReplicationStatusType =
132
+ (typeof ReplicationStatusType)[keyof typeof ReplicationStatusType];
133
+ export interface ReplicationStatus {
134
+ Location?: string | undefined;
135
+ Status?: ReplicationStatusType | undefined;
136
+ }
137
+ export interface CreateApplicationOutput {
138
+ Arn: string | undefined;
139
+ Description?: string | undefined;
140
+ RuntimeEnvironment?: RuntimeEnvironment | undefined;
141
+ ExecutablePath?: string | undefined;
142
+ ApplicationLogPaths?: string[] | undefined;
143
+ ApplicationLogOutputUri?: string | undefined;
144
+ ApplicationSourceUri?: string | undefined;
145
+ Id?: string | undefined;
146
+ Status?: ApplicationStatus | undefined;
147
+ StatusReason?: ApplicationStatusReason | undefined;
148
+ ReplicationStatuses?: ReplicationStatus[] | undefined;
149
+ CreatedAt?: Date | undefined;
150
+ LastUpdatedAt?: Date | undefined;
151
+ AssociatedStreamGroups?: string[] | undefined;
152
+ }
153
+ export interface DeleteApplicationInput {
154
+ Identifier: string | undefined;
155
+ }
156
+ export interface GetApplicationInput {
157
+ Identifier: string | undefined;
158
+ }
159
+ export interface GetApplicationOutput {
160
+ Arn: string | undefined;
161
+ Description?: string | undefined;
162
+ RuntimeEnvironment?: RuntimeEnvironment | undefined;
163
+ ExecutablePath?: string | undefined;
164
+ ApplicationLogPaths?: string[] | undefined;
165
+ ApplicationLogOutputUri?: string | undefined;
166
+ ApplicationSourceUri?: string | undefined;
167
+ Id?: string | undefined;
168
+ Status?: ApplicationStatus | undefined;
169
+ StatusReason?: ApplicationStatusReason | undefined;
170
+ ReplicationStatuses?: ReplicationStatus[] | undefined;
171
+ CreatedAt?: Date | undefined;
172
+ LastUpdatedAt?: Date | undefined;
173
+ AssociatedStreamGroups?: string[] | undefined;
174
+ }
175
+ export interface ListApplicationsInput {
176
+ NextToken?: string | undefined;
177
+ MaxResults?: number | undefined;
178
+ }
179
+ export interface ApplicationSummary {
180
+ Arn: string | undefined;
181
+ Id?: string | undefined;
182
+ Description?: string | undefined;
183
+ Status?: ApplicationStatus | undefined;
184
+ CreatedAt?: Date | undefined;
185
+ LastUpdatedAt?: Date | undefined;
186
+ RuntimeEnvironment?: RuntimeEnvironment | undefined;
187
+ }
188
+ export interface ListApplicationsOutput {
189
+ Items?: ApplicationSummary[] | undefined;
190
+ NextToken?: string | undefined;
191
+ }
192
+ export interface UpdateApplicationInput {
193
+ Identifier: string | undefined;
194
+ Description?: string | undefined;
195
+ ApplicationLogPaths?: string[] | undefined;
196
+ ApplicationLogOutputUri?: string | undefined;
197
+ }
198
+ export interface UpdateApplicationOutput {
199
+ Arn: string | undefined;
200
+ Description?: string | undefined;
201
+ RuntimeEnvironment?: RuntimeEnvironment | undefined;
202
+ ExecutablePath?: string | undefined;
203
+ ApplicationLogPaths?: string[] | undefined;
204
+ ApplicationLogOutputUri?: string | undefined;
205
+ ApplicationSourceUri?: string | undefined;
206
+ Id?: string | undefined;
207
+ Status?: ApplicationStatus | undefined;
208
+ StatusReason?: ApplicationStatusReason | undefined;
209
+ ReplicationStatuses?: ReplicationStatus[] | undefined;
210
+ CreatedAt?: Date | undefined;
211
+ LastUpdatedAt?: Date | undefined;
212
+ AssociatedStreamGroups?: string[] | undefined;
213
+ }
214
+ export interface AssociateApplicationsInput {
215
+ Identifier: string | undefined;
216
+ ApplicationIdentifiers: string[] | undefined;
217
+ }
218
+ export interface AssociateApplicationsOutput {
219
+ Arn?: string | undefined;
220
+ ApplicationArns?: string[] | undefined;
221
+ }
222
+ export declare const StreamClass: {
223
+ readonly gen4n_high: "gen4n_high";
224
+ readonly gen4n_ultra: "gen4n_ultra";
225
+ readonly gen4n_win2022: "gen4n_win2022";
226
+ readonly gen5n_high: "gen5n_high";
227
+ readonly gen5n_ultra: "gen5n_ultra";
228
+ readonly gen5n_win2022: "gen5n_win2022";
229
+ };
230
+ export type StreamClass = (typeof StreamClass)[keyof typeof StreamClass];
231
+ export interface CreateStreamGroupInput {
232
+ Description: string | undefined;
233
+ StreamClass: StreamClass | undefined;
234
+ DefaultApplicationIdentifier?: string | undefined;
235
+ LocationConfigurations?: LocationConfiguration[] | undefined;
236
+ Tags?: Record<string, string> | undefined;
237
+ ClientToken?: string | undefined;
238
+ }
239
+ export interface DefaultApplication {
240
+ Id?: string | undefined;
241
+ Arn?: string | undefined;
242
+ }
243
+ export declare const StreamGroupStatus: {
244
+ readonly ACTIVATING: "ACTIVATING";
245
+ readonly ACTIVE: "ACTIVE";
246
+ readonly ACTIVE_WITH_ERRORS: "ACTIVE_WITH_ERRORS";
247
+ readonly DELETING: "DELETING";
248
+ readonly ERROR: "ERROR";
249
+ readonly UPDATING_LOCATIONS: "UPDATING_LOCATIONS";
250
+ };
251
+ export type StreamGroupStatus =
252
+ (typeof StreamGroupStatus)[keyof typeof StreamGroupStatus];
253
+ export declare const StreamGroupStatusReason: {
254
+ readonly INTERNAL_ERROR: "internalError";
255
+ readonly NO_AVAILABLE_INSTANCES: "noAvailableInstances";
256
+ };
257
+ export type StreamGroupStatusReason =
258
+ (typeof StreamGroupStatusReason)[keyof typeof StreamGroupStatusReason];
259
+ export interface CreateStreamGroupOutput {
260
+ Arn: string | undefined;
261
+ Description?: string | undefined;
262
+ DefaultApplication?: DefaultApplication | undefined;
263
+ LocationStates?: LocationState[] | undefined;
264
+ StreamClass?: StreamClass | undefined;
265
+ Id?: string | undefined;
266
+ Status?: StreamGroupStatus | undefined;
267
+ StatusReason?: StreamGroupStatusReason | undefined;
268
+ LastUpdatedAt?: Date | undefined;
269
+ CreatedAt?: Date | undefined;
270
+ AssociatedApplications?: string[] | undefined;
271
+ }
272
+ export interface CreateStreamSessionConnectionInput {
273
+ ClientToken?: string | undefined;
274
+ Identifier: string | undefined;
275
+ StreamSessionIdentifier: string | undefined;
276
+ SignalRequest: string | undefined;
277
+ }
278
+ export interface CreateStreamSessionConnectionOutput {
279
+ SignalResponse?: string | undefined;
280
+ }
281
+ export interface DeleteStreamGroupInput {
282
+ Identifier: string | undefined;
283
+ }
284
+ export interface DisassociateApplicationsInput {
285
+ Identifier: string | undefined;
286
+ ApplicationIdentifiers: string[] | undefined;
287
+ }
288
+ export interface DisassociateApplicationsOutput {
289
+ Arn?: string | undefined;
290
+ ApplicationArns?: string[] | undefined;
291
+ }
292
+ export declare const ExportFilesStatus: {
293
+ readonly FAILED: "FAILED";
294
+ readonly PENDING: "PENDING";
295
+ readonly SUCCEEDED: "SUCCEEDED";
296
+ };
297
+ export type ExportFilesStatus =
298
+ (typeof ExportFilesStatus)[keyof typeof ExportFilesStatus];
299
+ export interface ExportFilesMetadata {
300
+ Status?: ExportFilesStatus | undefined;
301
+ StatusReason?: string | undefined;
302
+ OutputUri?: string | undefined;
303
+ }
304
+ export interface ExportStreamSessionFilesInput {
305
+ Identifier: string | undefined;
306
+ StreamSessionIdentifier: string | undefined;
307
+ OutputUri: string | undefined;
308
+ }
309
+ export interface ExportStreamSessionFilesOutput {}
310
+ export interface GetStreamSessionInput {
311
+ Identifier: string | undefined;
312
+ StreamSessionIdentifier: string | undefined;
313
+ }
314
+ export declare const Protocol: {
315
+ readonly WEBRTC: "WebRTC";
316
+ };
317
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
318
+ export declare const StreamSessionStatus: {
319
+ readonly ACTIVATING: "ACTIVATING";
320
+ readonly ACTIVE: "ACTIVE";
321
+ readonly CONNECTED: "CONNECTED";
322
+ readonly ERROR: "ERROR";
323
+ readonly PENDING_CLIENT_RECONNECTION: "PENDING_CLIENT_RECONNECTION";
324
+ readonly RECONNECTING: "RECONNECTING";
325
+ readonly TERMINATED: "TERMINATED";
326
+ readonly TERMINATING: "TERMINATING";
327
+ };
328
+ export type StreamSessionStatus =
329
+ (typeof StreamSessionStatus)[keyof typeof StreamSessionStatus];
330
+ export declare const StreamSessionStatusReason: {
331
+ readonly APP_LOG_S3_DESTINATION_ERROR: "applicationLogS3DestinationError";
332
+ readonly INTERNAL_ERROR: "internalError";
333
+ readonly INVALID_SIGNAL_REQUEST: "invalidSignalRequest";
334
+ readonly PLACEMENT_TIMEOUT: "placementTimeout";
335
+ };
336
+ export type StreamSessionStatusReason =
337
+ (typeof StreamSessionStatusReason)[keyof typeof StreamSessionStatusReason];
338
+ export interface GetStreamSessionOutput {
339
+ Arn?: string | undefined;
340
+ Description?: string | undefined;
341
+ StreamGroupId?: string | undefined;
342
+ UserId?: string | undefined;
343
+ Status?: StreamSessionStatus | undefined;
344
+ StatusReason?: StreamSessionStatusReason | undefined;
345
+ Protocol?: Protocol | undefined;
346
+ Location?: string | undefined;
347
+ SignalRequest?: string | undefined;
348
+ SignalResponse?: string | undefined;
349
+ ConnectionTimeoutSeconds?: number | undefined;
350
+ SessionLengthSeconds?: number | undefined;
351
+ AdditionalLaunchArgs?: string[] | undefined;
352
+ AdditionalEnvironmentVariables?: Record<string, string> | undefined;
353
+ LogFileLocationUri?: string | undefined;
354
+ WebSdkProtocolUrl?: string | undefined;
355
+ LastUpdatedAt?: Date | undefined;
356
+ CreatedAt?: Date | undefined;
357
+ ApplicationArn?: string | undefined;
358
+ ExportFilesMetadata?: ExportFilesMetadata | undefined;
359
+ }
360
+ export interface ListStreamSessionsInput {
361
+ Status?: StreamSessionStatus | undefined;
362
+ ExportFilesStatus?: ExportFilesStatus | undefined;
363
+ NextToken?: string | undefined;
364
+ MaxResults?: number | undefined;
365
+ Identifier: string | undefined;
366
+ }
367
+ export interface StreamSessionSummary {
368
+ Arn?: string | undefined;
369
+ UserId?: string | undefined;
370
+ Status?: StreamSessionStatus | undefined;
371
+ Protocol?: Protocol | undefined;
372
+ LastUpdatedAt?: Date | undefined;
373
+ CreatedAt?: Date | undefined;
374
+ ApplicationArn?: string | undefined;
375
+ ExportFilesMetadata?: ExportFilesMetadata | undefined;
376
+ Location?: string | undefined;
377
+ }
378
+ export interface ListStreamSessionsOutput {
379
+ Items?: StreamSessionSummary[] | undefined;
380
+ NextToken?: string | undefined;
381
+ }
382
+ export interface ListStreamSessionsByAccountInput {
383
+ Status?: StreamSessionStatus | undefined;
384
+ ExportFilesStatus?: ExportFilesStatus | undefined;
385
+ NextToken?: string | undefined;
386
+ MaxResults?: number | undefined;
387
+ }
388
+ export interface ListStreamSessionsByAccountOutput {
389
+ Items?: StreamSessionSummary[] | undefined;
390
+ NextToken?: string | undefined;
391
+ }
392
+ export interface ListTagsForResourceRequest {
393
+ ResourceArn: string | undefined;
394
+ }
395
+ export interface ListTagsForResourceResponse {
396
+ Tags?: Record<string, string> | undefined;
397
+ }
398
+ export interface RemoveStreamGroupLocationsInput {
399
+ Identifier: string | undefined;
400
+ Locations: string[] | undefined;
401
+ }
402
+ export interface StartStreamSessionInput {
403
+ ClientToken?: string | undefined;
404
+ Description?: string | undefined;
405
+ Identifier: string | undefined;
406
+ Protocol: Protocol | undefined;
407
+ SignalRequest: string | undefined;
408
+ ApplicationIdentifier: string | undefined;
409
+ UserId?: string | undefined;
410
+ Locations?: string[] | undefined;
411
+ ConnectionTimeoutSeconds?: number | undefined;
412
+ SessionLengthSeconds?: number | undefined;
413
+ AdditionalLaunchArgs?: string[] | undefined;
414
+ AdditionalEnvironmentVariables?: Record<string, string> | undefined;
415
+ }
416
+ export interface StartStreamSessionOutput {
417
+ Arn?: string | undefined;
418
+ Description?: string | undefined;
419
+ StreamGroupId?: string | undefined;
420
+ UserId?: string | undefined;
421
+ Status?: StreamSessionStatus | undefined;
422
+ StatusReason?: StreamSessionStatusReason | undefined;
423
+ Protocol?: Protocol | undefined;
424
+ Location?: string | undefined;
425
+ SignalRequest?: string | undefined;
426
+ SignalResponse?: string | undefined;
427
+ ConnectionTimeoutSeconds?: number | undefined;
428
+ SessionLengthSeconds?: number | undefined;
429
+ AdditionalLaunchArgs?: string[] | undefined;
430
+ AdditionalEnvironmentVariables?: Record<string, string> | undefined;
431
+ LogFileLocationUri?: string | undefined;
432
+ WebSdkProtocolUrl?: string | undefined;
433
+ LastUpdatedAt?: Date | undefined;
434
+ CreatedAt?: Date | undefined;
435
+ ApplicationArn?: string | undefined;
436
+ ExportFilesMetadata?: ExportFilesMetadata | undefined;
437
+ }
438
+ export interface GetStreamGroupInput {
439
+ Identifier: string | undefined;
440
+ }
441
+ export interface GetStreamGroupOutput {
442
+ Arn: string | undefined;
443
+ Description?: string | undefined;
444
+ DefaultApplication?: DefaultApplication | undefined;
445
+ LocationStates?: LocationState[] | undefined;
446
+ StreamClass?: StreamClass | undefined;
447
+ Id?: string | undefined;
448
+ Status?: StreamGroupStatus | undefined;
449
+ StatusReason?: StreamGroupStatusReason | undefined;
450
+ LastUpdatedAt?: Date | undefined;
451
+ CreatedAt?: Date | undefined;
452
+ AssociatedApplications?: string[] | undefined;
453
+ }
454
+ export interface ListStreamGroupsInput {
455
+ NextToken?: string | undefined;
456
+ MaxResults?: number | undefined;
457
+ }
458
+ export interface StreamGroupSummary {
459
+ Arn: string | undefined;
460
+ Id?: string | undefined;
461
+ Description?: string | undefined;
462
+ DefaultApplication?: DefaultApplication | undefined;
463
+ StreamClass?: StreamClass | undefined;
464
+ Status?: StreamGroupStatus | undefined;
465
+ CreatedAt?: Date | undefined;
466
+ LastUpdatedAt?: Date | undefined;
467
+ }
468
+ export interface ListStreamGroupsOutput {
469
+ Items?: StreamGroupSummary[] | undefined;
470
+ NextToken?: string | undefined;
471
+ }
472
+ export interface UpdateStreamGroupInput {
473
+ Identifier: string | undefined;
474
+ LocationConfigurations?: LocationConfiguration[] | undefined;
475
+ Description?: string | undefined;
476
+ }
477
+ export interface UpdateStreamGroupOutput {
478
+ Arn: string | undefined;
479
+ Description?: string | undefined;
480
+ DefaultApplication?: DefaultApplication | undefined;
481
+ LocationStates?: LocationState[] | undefined;
482
+ StreamClass?: StreamClass | undefined;
483
+ Id?: string | undefined;
484
+ Status?: StreamGroupStatus | undefined;
485
+ StatusReason?: StreamGroupStatusReason | undefined;
486
+ LastUpdatedAt?: Date | undefined;
487
+ CreatedAt?: Date | undefined;
488
+ AssociatedApplications?: string[] | undefined;
489
+ }
490
+ export interface TagResourceRequest {
491
+ ResourceArn: string | undefined;
492
+ Tags: Record<string, string> | undefined;
493
+ }
494
+ export interface TagResourceResponse {}
495
+ export interface TerminateStreamSessionInput {
496
+ Identifier: string | undefined;
497
+ StreamSessionIdentifier: string | undefined;
498
+ }
499
+ export interface UntagResourceRequest {
500
+ ResourceArn: string | undefined;
501
+ TagKeys: string[] | undefined;
502
+ }
503
+ export interface UntagResourceResponse {}
504
+ export declare const CreateStreamSessionConnectionInputFilterSensitiveLog: (
505
+ obj: CreateStreamSessionConnectionInput
506
+ ) => any;
507
+ export declare const CreateStreamSessionConnectionOutputFilterSensitiveLog: (
508
+ obj: CreateStreamSessionConnectionOutput
509
+ ) => any;
510
+ export declare const GetStreamSessionOutputFilterSensitiveLog: (
511
+ obj: GetStreamSessionOutput
512
+ ) => any;
513
+ export declare const StartStreamSessionInputFilterSensitiveLog: (
514
+ obj: StartStreamSessionInput
515
+ ) => any;
516
+ export declare const StartStreamSessionOutputFilterSensitiveLog: (
517
+ obj: StartStreamSessionOutput
518
+ ) => any;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { GameLiftStreamsClient } from "../GameLiftStreamsClient";
3
+ export interface GameLiftStreamsPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: GameLiftStreamsClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListApplicationsCommandInput,
4
+ ListApplicationsCommandOutput,
5
+ } from "../commands/ListApplicationsCommand";
6
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListApplications: (
8
+ config: GameLiftStreamsPaginationConfiguration,
9
+ input: ListApplicationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListApplicationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListStreamGroupsCommandInput,
4
+ ListStreamGroupsCommandOutput,
5
+ } from "../commands/ListStreamGroupsCommand";
6
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListStreamGroups: (
8
+ config: GameLiftStreamsPaginationConfiguration,
9
+ input: ListStreamGroupsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListStreamGroupsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListStreamSessionsByAccountCommandInput,
4
+ ListStreamSessionsByAccountCommandOutput,
5
+ } from "../commands/ListStreamSessionsByAccountCommand";
6
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListStreamSessionsByAccount: (
8
+ config: GameLiftStreamsPaginationConfiguration,
9
+ input: ListStreamSessionsByAccountCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListStreamSessionsByAccountCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListStreamSessionsCommandInput,
4
+ ListStreamSessionsCommandOutput,
5
+ } from "../commands/ListStreamSessionsCommand";
6
+ import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListStreamSessions: (
8
+ config: GameLiftStreamsPaginationConfiguration,
9
+ input: ListStreamSessionsCommandInput,
10
+ ...rest: any[]
11
+ ) => 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";