@aws-sdk/client-gamelift 3.218.0 → 3.223.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 (202) hide show
  1. package/README.md +19 -20
  2. package/dist-cjs/GameLift.js +135 -0
  3. package/dist-cjs/commands/CreateLocationCommand.js +46 -0
  4. package/dist-cjs/commands/DeleteLocationCommand.js +46 -0
  5. package/dist-cjs/commands/DeregisterComputeCommand.js +46 -0
  6. package/dist-cjs/commands/DescribeComputeCommand.js +46 -0
  7. package/dist-cjs/commands/GetComputeAccessCommand.js +46 -0
  8. package/dist-cjs/commands/GetComputeAuthTokenCommand.js +46 -0
  9. package/dist-cjs/commands/ListComputeCommand.js +46 -0
  10. package/dist-cjs/commands/ListLocationsCommand.js +46 -0
  11. package/dist-cjs/commands/RegisterComputeCommand.js +46 -0
  12. package/dist-cjs/commands/UpdateFleetPortSettingsCommand.js +2 -1
  13. package/dist-cjs/commands/UpdateGameServerCommand.js +3 -3
  14. package/dist-cjs/commands/UpdateGameServerGroupCommand.js +3 -3
  15. package/dist-cjs/commands/UpdateGameSessionCommand.js +3 -3
  16. package/dist-cjs/commands/UpdateGameSessionQueueCommand.js +3 -3
  17. package/dist-cjs/commands/UpdateMatchmakingConfigurationCommand.js +3 -3
  18. package/dist-cjs/commands/UpdateRuntimeConfigurationCommand.js +3 -3
  19. package/dist-cjs/commands/UpdateScriptCommand.js +3 -3
  20. package/dist-cjs/commands/ValidateMatchmakingRuleSetCommand.js +3 -3
  21. package/dist-cjs/commands/index.js +9 -0
  22. package/dist-cjs/endpoint/ruleset.js +1 -1
  23. package/dist-cjs/models/index.js +1 -0
  24. package/dist-cjs/models/models_0.js +348 -78
  25. package/dist-cjs/models/models_1.js +75 -0
  26. package/dist-cjs/pagination/ListComputePaginator.js +36 -0
  27. package/dist-cjs/pagination/ListLocationsPaginator.js +36 -0
  28. package/dist-cjs/pagination/index.js +2 -0
  29. package/dist-cjs/protocols/Aws_json1_1.js +731 -34
  30. package/dist-es/GameLift.js +135 -0
  31. package/dist-es/commands/CreateLocationCommand.js +42 -0
  32. package/dist-es/commands/DeleteLocationCommand.js +42 -0
  33. package/dist-es/commands/DeregisterComputeCommand.js +42 -0
  34. package/dist-es/commands/DescribeComputeCommand.js +42 -0
  35. package/dist-es/commands/GetComputeAccessCommand.js +42 -0
  36. package/dist-es/commands/GetComputeAuthTokenCommand.js +42 -0
  37. package/dist-es/commands/ListComputeCommand.js +42 -0
  38. package/dist-es/commands/ListLocationsCommand.js +42 -0
  39. package/dist-es/commands/RegisterComputeCommand.js +42 -0
  40. package/dist-es/commands/UpdateFleetPortSettingsCommand.js +2 -1
  41. package/dist-es/commands/UpdateGameServerCommand.js +1 -1
  42. package/dist-es/commands/UpdateGameServerGroupCommand.js +1 -1
  43. package/dist-es/commands/UpdateGameSessionCommand.js +1 -1
  44. package/dist-es/commands/UpdateGameSessionQueueCommand.js +1 -1
  45. package/dist-es/commands/UpdateMatchmakingConfigurationCommand.js +1 -1
  46. package/dist-es/commands/UpdateRuntimeConfigurationCommand.js +1 -1
  47. package/dist-es/commands/UpdateScriptCommand.js +1 -1
  48. package/dist-es/commands/ValidateMatchmakingRuleSetCommand.js +1 -1
  49. package/dist-es/commands/index.js +9 -0
  50. package/dist-es/endpoint/ruleset.js +1 -1
  51. package/dist-es/models/index.js +1 -0
  52. package/dist-es/models/models_0.js +321 -55
  53. package/dist-es/models/models_1.js +55 -0
  54. package/dist-es/pagination/ListComputePaginator.js +32 -0
  55. package/dist-es/pagination/ListLocationsPaginator.js +32 -0
  56. package/dist-es/pagination/index.js +2 -0
  57. package/dist-es/protocols/Aws_json1_1.js +729 -51
  58. package/dist-types/GameLift.d.ts +756 -1757
  59. package/dist-types/GameLiftClient.d.ts +32 -23
  60. package/dist-types/commands/AcceptMatchCommand.d.ts +3 -13
  61. package/dist-types/commands/ClaimGameServerCommand.d.ts +15 -26
  62. package/dist-types/commands/CreateAliasCommand.d.ts +2 -8
  63. package/dist-types/commands/CreateBuildCommand.d.ts +15 -26
  64. package/dist-types/commands/CreateFleetCommand.d.ts +9 -28
  65. package/dist-types/commands/CreateFleetLocationsCommand.d.ts +11 -30
  66. package/dist-types/commands/CreateGameServerGroupCommand.d.ts +13 -25
  67. package/dist-types/commands/CreateGameSessionCommand.d.ts +8 -21
  68. package/dist-types/commands/CreateGameSessionQueueCommand.d.ts +9 -14
  69. package/dist-types/commands/CreateLocationCommand.d.ts +37 -0
  70. package/dist-types/commands/CreateMatchmakingConfigurationCommand.d.ts +7 -23
  71. package/dist-types/commands/CreateMatchmakingRuleSetCommand.d.ts +3 -19
  72. package/dist-types/commands/CreatePlayerSessionCommand.d.ts +12 -20
  73. package/dist-types/commands/CreatePlayerSessionsCommand.d.ts +11 -18
  74. package/dist-types/commands/CreateScriptCommand.d.ts +11 -15
  75. package/dist-types/commands/CreateVpcPeeringAuthorizationCommand.d.ts +14 -21
  76. package/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +18 -25
  77. package/dist-types/commands/DeleteAliasCommand.d.ts +1 -7
  78. package/dist-types/commands/DeleteBuildCommand.d.ts +6 -14
  79. package/dist-types/commands/DeleteFleetCommand.d.ts +6 -22
  80. package/dist-types/commands/DeleteFleetLocationsCommand.d.ts +3 -18
  81. package/dist-types/commands/DeleteGameServerGroupCommand.d.ts +10 -23
  82. package/dist-types/commands/DeleteGameSessionQueueCommand.d.ts +2 -24
  83. package/dist-types/commands/DeleteLocationCommand.d.ts +39 -0
  84. package/dist-types/commands/DeleteMatchmakingConfigurationCommand.d.ts +0 -14
  85. package/dist-types/commands/DeleteMatchmakingRuleSetCommand.d.ts +2 -16
  86. package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +4 -18
  87. package/dist-types/commands/DeleteScriptCommand.d.ts +2 -7
  88. package/dist-types/commands/DeleteVpcPeeringAuthorizationCommand.d.ts +3 -9
  89. package/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +5 -13
  90. package/dist-types/commands/DeregisterComputeCommand.d.ts +38 -0
  91. package/dist-types/commands/DeregisterGameServerCommand.d.ts +5 -16
  92. package/dist-types/commands/DescribeAliasCommand.d.ts +1 -7
  93. package/dist-types/commands/DescribeBuildCommand.d.ts +3 -11
  94. package/dist-types/commands/DescribeComputeCommand.d.ts +39 -0
  95. package/dist-types/commands/DescribeEC2InstanceLimitsCommand.d.ts +9 -25
  96. package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +6 -21
  97. package/dist-types/commands/DescribeFleetCapacityCommand.d.ts +8 -22
  98. package/dist-types/commands/DescribeFleetEventsCommand.d.ts +4 -19
  99. package/dist-types/commands/DescribeFleetLocationAttributesCommand.d.ts +4 -19
  100. package/dist-types/commands/DescribeFleetLocationCapacityCommand.d.ts +4 -19
  101. package/dist-types/commands/DescribeFleetLocationUtilizationCommand.d.ts +4 -19
  102. package/dist-types/commands/DescribeFleetPortSettingsCommand.d.ts +8 -23
  103. package/dist-types/commands/DescribeFleetUtilizationCommand.d.ts +9 -24
  104. package/dist-types/commands/DescribeGameServerCommand.d.ts +5 -15
  105. package/dist-types/commands/DescribeGameServerGroupCommand.d.ts +8 -20
  106. package/dist-types/commands/DescribeGameServerInstancesCommand.d.ts +7 -23
  107. package/dist-types/commands/DescribeGameSessionDetailsCommand.d.ts +6 -20
  108. package/dist-types/commands/DescribeGameSessionPlacementCommand.d.ts +8 -26
  109. package/dist-types/commands/DescribeGameSessionQueuesCommand.d.ts +5 -20
  110. package/dist-types/commands/DescribeGameSessionsCommand.d.ts +9 -32
  111. package/dist-types/commands/DescribeInstancesCommand.d.ts +5 -7
  112. package/dist-types/commands/DescribeMatchmakingCommand.d.ts +6 -19
  113. package/dist-types/commands/DescribeMatchmakingConfigurationsCommand.d.ts +1 -16
  114. package/dist-types/commands/DescribeMatchmakingRuleSetsCommand.d.ts +2 -16
  115. package/dist-types/commands/DescribePlayerSessionsCommand.d.ts +3 -11
  116. package/dist-types/commands/DescribeRuntimeConfigurationCommand.d.ts +5 -20
  117. package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +6 -22
  118. package/dist-types/commands/DescribeScriptCommand.d.ts +3 -8
  119. package/dist-types/commands/DescribeVpcPeeringAuthorizationsCommand.d.ts +2 -8
  120. package/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +7 -13
  121. package/dist-types/commands/GetComputeAccessCommand.d.ts +59 -0
  122. package/dist-types/commands/GetComputeAuthTokenCommand.d.ts +40 -0
  123. package/dist-types/commands/GetGameSessionLogUrlCommand.d.ts +3 -15
  124. package/dist-types/commands/GetInstanceAccessCommand.d.ts +2 -8
  125. package/dist-types/commands/ListAliasesCommand.d.ts +4 -10
  126. package/dist-types/commands/ListBuildsCommand.d.ts +3 -11
  127. package/dist-types/commands/ListComputeCommand.d.ts +37 -0
  128. package/dist-types/commands/ListFleetsCommand.d.ts +9 -23
  129. package/dist-types/commands/ListGameServerGroupsCommand.d.ts +1 -26
  130. package/dist-types/commands/ListGameServersCommand.d.ts +6 -16
  131. package/dist-types/commands/ListLocationsCommand.d.ts +37 -0
  132. package/dist-types/commands/ListScriptsCommand.d.ts +3 -7
  133. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -13
  134. package/dist-types/commands/PutScalingPolicyCommand.d.ts +21 -40
  135. package/dist-types/commands/RegisterComputeCommand.d.ts +57 -0
  136. package/dist-types/commands/RegisterGameServerCommand.d.ts +9 -21
  137. package/dist-types/commands/RequestUploadCredentialsCommand.d.ts +3 -12
  138. package/dist-types/commands/ResolveAliasCommand.d.ts +1 -7
  139. package/dist-types/commands/ResumeGameServerGroupCommand.d.ts +11 -23
  140. package/dist-types/commands/SearchGameSessionsCommand.d.ts +21 -38
  141. package/dist-types/commands/StartFleetActionsCommand.d.ts +7 -21
  142. package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +31 -46
  143. package/dist-types/commands/StartMatchBackfillCommand.d.ts +19 -29
  144. package/dist-types/commands/StartMatchmakingCommand.d.ts +4 -15
  145. package/dist-types/commands/StopFleetActionsCommand.d.ts +5 -21
  146. package/dist-types/commands/StopGameSessionPlacementCommand.d.ts +2 -17
  147. package/dist-types/commands/StopMatchmakingCommand.d.ts +3 -14
  148. package/dist-types/commands/SuspendGameServerGroupCommand.d.ts +7 -19
  149. package/dist-types/commands/TagResourceCommand.d.ts +7 -10
  150. package/dist-types/commands/UntagResourceCommand.d.ts +12 -16
  151. package/dist-types/commands/UpdateAliasCommand.d.ts +1 -7
  152. package/dist-types/commands/UpdateBuildCommand.d.ts +3 -11
  153. package/dist-types/commands/UpdateFleetAttributesCommand.d.ts +3 -19
  154. package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +10 -26
  155. package/dist-types/commands/UpdateFleetPortSettingsCommand.d.ts +6 -21
  156. package/dist-types/commands/UpdateGameServerCommand.d.ts +20 -29
  157. package/dist-types/commands/UpdateGameServerGroupCommand.d.ts +9 -21
  158. package/dist-types/commands/UpdateGameSessionCommand.d.ts +1 -13
  159. package/dist-types/commands/UpdateGameSessionQueueCommand.d.ts +2 -16
  160. package/dist-types/commands/UpdateMatchmakingConfigurationCommand.d.ts +6 -20
  161. package/dist-types/commands/UpdateRuntimeConfigurationCommand.d.ts +5 -21
  162. package/dist-types/commands/UpdateScriptCommand.d.ts +2 -7
  163. package/dist-types/commands/ValidateMatchmakingRuleSetCommand.d.ts +4 -18
  164. package/dist-types/commands/index.d.ts +9 -0
  165. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  166. package/dist-types/models/index.d.ts +1 -0
  167. package/dist-types/models/models_0.d.ts +1598 -1987
  168. package/dist-types/models/models_1.d.ts +452 -0
  169. package/dist-types/pagination/ListComputePaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListLocationsPaginator.d.ts +4 -0
  171. package/dist-types/pagination/index.d.ts +2 -0
  172. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  173. package/dist-types/ts3.4/GameLift.d.ts +153 -0
  174. package/dist-types/ts3.4/GameLiftClient.d.ts +54 -0
  175. package/dist-types/ts3.4/commands/CreateLocationCommand.d.ts +34 -0
  176. package/dist-types/ts3.4/commands/DeleteLocationCommand.d.ts +34 -0
  177. package/dist-types/ts3.4/commands/DeregisterComputeCommand.d.ts +37 -0
  178. package/dist-types/ts3.4/commands/DescribeComputeCommand.d.ts +37 -0
  179. package/dist-types/ts3.4/commands/GetComputeAccessCommand.d.ts +37 -0
  180. package/dist-types/ts3.4/commands/GetComputeAuthTokenCommand.d.ts +38 -0
  181. package/dist-types/ts3.4/commands/ListComputeCommand.d.ts +34 -0
  182. package/dist-types/ts3.4/commands/ListLocationsCommand.d.ts +34 -0
  183. package/dist-types/ts3.4/commands/RegisterComputeCommand.d.ts +37 -0
  184. package/dist-types/ts3.4/commands/UpdateFleetPortSettingsCommand.d.ts +2 -4
  185. package/dist-types/ts3.4/commands/UpdateGameServerCommand.d.ts +1 -1
  186. package/dist-types/ts3.4/commands/UpdateGameServerGroupCommand.d.ts +1 -1
  187. package/dist-types/ts3.4/commands/UpdateGameSessionCommand.d.ts +1 -1
  188. package/dist-types/ts3.4/commands/UpdateGameSessionQueueCommand.d.ts +1 -1
  189. package/dist-types/ts3.4/commands/UpdateMatchmakingConfigurationCommand.d.ts +1 -1
  190. package/dist-types/ts3.4/commands/UpdateRuntimeConfigurationCommand.d.ts +1 -1
  191. package/dist-types/ts3.4/commands/UpdateScriptCommand.d.ts +1 -1
  192. package/dist-types/ts3.4/commands/ValidateMatchmakingRuleSetCommand.d.ts +1 -1
  193. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  194. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  195. package/dist-types/ts3.4/models/index.d.ts +1 -0
  196. package/dist-types/ts3.4/models/models_0.d.ts +417 -370
  197. package/dist-types/ts3.4/models/models_1.d.ts +166 -0
  198. package/dist-types/ts3.4/pagination/ListComputePaginator.d.ts +11 -0
  199. package/dist-types/ts3.4/pagination/ListLocationsPaginator.d.ts +11 -0
  200. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  201. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
  202. package/package.json +28 -28
@@ -1,6 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { GameLiftServiceException as __BaseException } from "./GameLiftServiceException";
3
- export declare type AcceptanceType = "ACCEPT" | "REJECT";
3
+ export declare enum AcceptanceType {
4
+ ACCEPT = "ACCEPT",
5
+ REJECT = "REJECT",
6
+ }
4
7
  export interface AcceptMatchInput {
5
8
  TicketId: string | undefined;
6
9
  PlayerIds: string[] | undefined;
@@ -55,6 +58,9 @@ export interface Alias {
55
58
  CreationTime?: Date;
56
59
  LastUpdatedTime?: Date;
57
60
  }
61
+ export interface AnywhereConfiguration {
62
+ Cost: string | undefined;
63
+ }
58
64
  export interface AttributeValue {
59
65
  S?: string;
60
66
  N?: number;
@@ -94,6 +100,7 @@ export interface Build {
94
100
  SizeOnDisk?: number;
95
101
  OperatingSystem?: OperatingSystem | string;
96
102
  CreationTime?: Date;
103
+ ServerSdkVersion?: string;
97
104
  }
98
105
  export declare enum CertificateType {
99
106
  Disabled = "DISABLED",
@@ -158,6 +165,145 @@ export declare enum ComparisonOperatorType {
158
165
  LessThanOrEqualToThreshold = "LessThanOrEqualToThreshold",
159
166
  LessThanThreshold = "LessThanThreshold",
160
167
  }
168
+ export declare enum ComputeStatus {
169
+ ACTIVE = "ACTIVE",
170
+ PENDING = "PENDING",
171
+ TERMINATING = "TERMINATING",
172
+ }
173
+ export declare enum EC2InstanceType {
174
+ c3_2xlarge = "c3.2xlarge",
175
+ c3_4xlarge = "c3.4xlarge",
176
+ c3_8xlarge = "c3.8xlarge",
177
+ c3_large = "c3.large",
178
+ c3_xlarge = "c3.xlarge",
179
+ c4_2xlarge = "c4.2xlarge",
180
+ c4_4xlarge = "c4.4xlarge",
181
+ c4_8xlarge = "c4.8xlarge",
182
+ c4_large = "c4.large",
183
+ c4_xlarge = "c4.xlarge",
184
+ c5_12xlarge = "c5.12xlarge",
185
+ c5_18xlarge = "c5.18xlarge",
186
+ c5_24xlarge = "c5.24xlarge",
187
+ c5_2xlarge = "c5.2xlarge",
188
+ c5_4xlarge = "c5.4xlarge",
189
+ c5_9xlarge = "c5.9xlarge",
190
+ c5_large = "c5.large",
191
+ c5_xlarge = "c5.xlarge",
192
+ c5a_12xlarge = "c5a.12xlarge",
193
+ c5a_16xlarge = "c5a.16xlarge",
194
+ c5a_24xlarge = "c5a.24xlarge",
195
+ c5a_2xlarge = "c5a.2xlarge",
196
+ c5a_4xlarge = "c5a.4xlarge",
197
+ c5a_8xlarge = "c5a.8xlarge",
198
+ c5a_large = "c5a.large",
199
+ c5a_xlarge = "c5a.xlarge",
200
+ c5d_12xlarge = "c5d.12xlarge",
201
+ c5d_18xlarge = "c5d.18xlarge",
202
+ c5d_24xlarge = "c5d.24xlarge",
203
+ c5d_2xlarge = "c5d.2xlarge",
204
+ c5d_4xlarge = "c5d.4xlarge",
205
+ c5d_9xlarge = "c5d.9xlarge",
206
+ c5d_large = "c5d.large",
207
+ c5d_xlarge = "c5d.xlarge",
208
+ c6a_12xlarge = "c6a.12xlarge",
209
+ c6a_16xlarge = "c6a.16xlarge",
210
+ c6a_24xlarge = "c6a.24xlarge",
211
+ c6a_2xlarge = "c6a.2xlarge",
212
+ c6a_4xlarge = "c6a.4xlarge",
213
+ c6a_8xlarge = "c6a.8xlarge",
214
+ c6a_large = "c6a.large",
215
+ c6a_xlarge = "c6a.xlarge",
216
+ c6i_12xlarge = "c6i.12xlarge",
217
+ c6i_16xlarge = "c6i.16xlarge",
218
+ c6i_24xlarge = "c6i.24xlarge",
219
+ c6i_2xlarge = "c6i.2xlarge",
220
+ c6i_4xlarge = "c6i.4xlarge",
221
+ c6i_8xlarge = "c6i.8xlarge",
222
+ c6i_large = "c6i.large",
223
+ c6i_xlarge = "c6i.xlarge",
224
+ m3_2xlarge = "m3.2xlarge",
225
+ m3_large = "m3.large",
226
+ m3_medium = "m3.medium",
227
+ m3_xlarge = "m3.xlarge",
228
+ m4_10xlarge = "m4.10xlarge",
229
+ m4_2xlarge = "m4.2xlarge",
230
+ m4_4xlarge = "m4.4xlarge",
231
+ m4_large = "m4.large",
232
+ m4_xlarge = "m4.xlarge",
233
+ m5_12xlarge = "m5.12xlarge",
234
+ m5_16xlarge = "m5.16xlarge",
235
+ m5_24xlarge = "m5.24xlarge",
236
+ m5_2xlarge = "m5.2xlarge",
237
+ m5_4xlarge = "m5.4xlarge",
238
+ m5_8xlarge = "m5.8xlarge",
239
+ m5_large = "m5.large",
240
+ m5_xlarge = "m5.xlarge",
241
+ m5a_12xlarge = "m5a.12xlarge",
242
+ m5a_16xlarge = "m5a.16xlarge",
243
+ m5a_24xlarge = "m5a.24xlarge",
244
+ m5a_2xlarge = "m5a.2xlarge",
245
+ m5a_4xlarge = "m5a.4xlarge",
246
+ m5a_8xlarge = "m5a.8xlarge",
247
+ m5a_large = "m5a.large",
248
+ m5a_xlarge = "m5a.xlarge",
249
+ r3_2xlarge = "r3.2xlarge",
250
+ r3_4xlarge = "r3.4xlarge",
251
+ r3_8xlarge = "r3.8xlarge",
252
+ r3_large = "r3.large",
253
+ r3_xlarge = "r3.xlarge",
254
+ r4_16xlarge = "r4.16xlarge",
255
+ r4_2xlarge = "r4.2xlarge",
256
+ r4_4xlarge = "r4.4xlarge",
257
+ r4_8xlarge = "r4.8xlarge",
258
+ r4_large = "r4.large",
259
+ r4_xlarge = "r4.xlarge",
260
+ r5_12xlarge = "r5.12xlarge",
261
+ r5_16xlarge = "r5.16xlarge",
262
+ r5_24xlarge = "r5.24xlarge",
263
+ r5_2xlarge = "r5.2xlarge",
264
+ r5_4xlarge = "r5.4xlarge",
265
+ r5_8xlarge = "r5.8xlarge",
266
+ r5_large = "r5.large",
267
+ r5_xlarge = "r5.xlarge",
268
+ r5a_12xlarge = "r5a.12xlarge",
269
+ r5a_16xlarge = "r5a.16xlarge",
270
+ r5a_24xlarge = "r5a.24xlarge",
271
+ r5a_2xlarge = "r5a.2xlarge",
272
+ r5a_4xlarge = "r5a.4xlarge",
273
+ r5a_8xlarge = "r5a.8xlarge",
274
+ r5a_large = "r5a.large",
275
+ r5a_xlarge = "r5a.xlarge",
276
+ r5d_12xlarge = "r5d.12xlarge",
277
+ r5d_16xlarge = "r5d.16xlarge",
278
+ r5d_24xlarge = "r5d.24xlarge",
279
+ r5d_2xlarge = "r5d.2xlarge",
280
+ r5d_4xlarge = "r5d.4xlarge",
281
+ r5d_8xlarge = "r5d.8xlarge",
282
+ r5d_large = "r5d.large",
283
+ r5d_xlarge = "r5d.xlarge",
284
+ t2_large = "t2.large",
285
+ t2_medium = "t2.medium",
286
+ t2_micro = "t2.micro",
287
+ t2_small = "t2.small",
288
+ }
289
+ export interface Compute {
290
+ FleetId?: string;
291
+ FleetArn?: string;
292
+ ComputeName?: string;
293
+ ComputeArn?: string;
294
+ IpAddress?: string;
295
+ DnsName?: string;
296
+ ComputeStatus?: ComputeStatus | string;
297
+ Location?: string;
298
+ CreationTime?: Date;
299
+ OperatingSystem?: OperatingSystem | string;
300
+ Type?: EC2InstanceType | string;
301
+ GameLiftServiceSdkEndpoint?: string;
302
+ }
303
+ export declare enum ComputeType {
304
+ ANYWHERE = "ANYWHERE",
305
+ EC2 = "EC2",
306
+ }
161
307
  export interface Tag {
162
308
  Key: string | undefined;
163
309
  Value: string | undefined;
@@ -199,6 +345,7 @@ export interface CreateBuildInput {
199
345
  StorageLocation?: S3Location;
200
346
  OperatingSystem?: OperatingSystem | string;
201
347
  Tags?: Tag[];
348
+ ServerSdkVersion?: string;
202
349
  }
203
350
  export interface CreateBuildOutput {
204
351
  Build?: Build;
@@ -215,127 +362,12 @@ export interface IpPermission {
215
362
  IpRange: string | undefined;
216
363
  Protocol: IpProtocol | string | undefined;
217
364
  }
218
- export declare type EC2InstanceType =
219
- | "c3.2xlarge"
220
- | "c3.4xlarge"
221
- | "c3.8xlarge"
222
- | "c3.large"
223
- | "c3.xlarge"
224
- | "c4.2xlarge"
225
- | "c4.4xlarge"
226
- | "c4.8xlarge"
227
- | "c4.large"
228
- | "c4.xlarge"
229
- | "c5.12xlarge"
230
- | "c5.18xlarge"
231
- | "c5.24xlarge"
232
- | "c5.2xlarge"
233
- | "c5.4xlarge"
234
- | "c5.9xlarge"
235
- | "c5.large"
236
- | "c5.xlarge"
237
- | "c5a.12xlarge"
238
- | "c5a.16xlarge"
239
- | "c5a.24xlarge"
240
- | "c5a.2xlarge"
241
- | "c5a.4xlarge"
242
- | "c5a.8xlarge"
243
- | "c5a.large"
244
- | "c5a.xlarge"
245
- | "c5d.12xlarge"
246
- | "c5d.18xlarge"
247
- | "c5d.24xlarge"
248
- | "c5d.2xlarge"
249
- | "c5d.4xlarge"
250
- | "c5d.9xlarge"
251
- | "c5d.large"
252
- | "c5d.xlarge"
253
- | "c6a.12xlarge"
254
- | "c6a.16xlarge"
255
- | "c6a.24xlarge"
256
- | "c6a.2xlarge"
257
- | "c6a.4xlarge"
258
- | "c6a.8xlarge"
259
- | "c6a.large"
260
- | "c6a.xlarge"
261
- | "c6i.12xlarge"
262
- | "c6i.16xlarge"
263
- | "c6i.24xlarge"
264
- | "c6i.2xlarge"
265
- | "c6i.4xlarge"
266
- | "c6i.8xlarge"
267
- | "c6i.large"
268
- | "c6i.xlarge"
269
- | "m3.2xlarge"
270
- | "m3.large"
271
- | "m3.medium"
272
- | "m3.xlarge"
273
- | "m4.10xlarge"
274
- | "m4.2xlarge"
275
- | "m4.4xlarge"
276
- | "m4.large"
277
- | "m4.xlarge"
278
- | "m5.12xlarge"
279
- | "m5.16xlarge"
280
- | "m5.24xlarge"
281
- | "m5.2xlarge"
282
- | "m5.4xlarge"
283
- | "m5.8xlarge"
284
- | "m5.large"
285
- | "m5.xlarge"
286
- | "m5a.12xlarge"
287
- | "m5a.16xlarge"
288
- | "m5a.24xlarge"
289
- | "m5a.2xlarge"
290
- | "m5a.4xlarge"
291
- | "m5a.8xlarge"
292
- | "m5a.large"
293
- | "m5a.xlarge"
294
- | "r3.2xlarge"
295
- | "r3.4xlarge"
296
- | "r3.8xlarge"
297
- | "r3.large"
298
- | "r3.xlarge"
299
- | "r4.16xlarge"
300
- | "r4.2xlarge"
301
- | "r4.4xlarge"
302
- | "r4.8xlarge"
303
- | "r4.large"
304
- | "r4.xlarge"
305
- | "r5.12xlarge"
306
- | "r5.16xlarge"
307
- | "r5.24xlarge"
308
- | "r5.2xlarge"
309
- | "r5.4xlarge"
310
- | "r5.8xlarge"
311
- | "r5.large"
312
- | "r5.xlarge"
313
- | "r5a.12xlarge"
314
- | "r5a.16xlarge"
315
- | "r5a.24xlarge"
316
- | "r5a.2xlarge"
317
- | "r5a.4xlarge"
318
- | "r5a.8xlarge"
319
- | "r5a.large"
320
- | "r5a.xlarge"
321
- | "r5d.12xlarge"
322
- | "r5d.16xlarge"
323
- | "r5d.24xlarge"
324
- | "r5d.2xlarge"
325
- | "r5d.4xlarge"
326
- | "r5d.8xlarge"
327
- | "r5d.large"
328
- | "r5d.xlarge"
329
- | "t2.large"
330
- | "t2.medium"
331
- | "t2.micro"
332
- | "t2.small";
333
365
  export declare enum FleetType {
334
366
  OnDemand = "ON_DEMAND",
335
367
  Spot = "SPOT",
336
368
  }
337
369
  export interface LocationConfiguration {
338
- Location?: string;
370
+ Location: string | undefined;
339
371
  }
340
372
  export declare enum ProtectionPolicy {
341
373
  FullProtection = "FullProtection",
@@ -363,7 +395,7 @@ export interface CreateFleetInput {
363
395
  ServerLaunchPath?: string;
364
396
  ServerLaunchParameters?: string;
365
397
  LogPaths?: string[];
366
- EC2InstanceType: EC2InstanceType | string | undefined;
398
+ EC2InstanceType?: EC2InstanceType | string;
367
399
  EC2InboundPermissions?: IpPermission[];
368
400
  NewGameSessionProtectionPolicy?: ProtectionPolicy | string;
369
401
  RuntimeConfiguration?: RuntimeConfiguration;
@@ -376,6 +408,8 @@ export interface CreateFleetInput {
376
408
  CertificateConfiguration?: CertificateConfiguration;
377
409
  Locations?: LocationConfiguration[];
378
410
  Tags?: Tag[];
411
+ ComputeType?: ComputeType | string;
412
+ AnywhereConfiguration?: AnywhereConfiguration;
379
413
  }
380
414
  export declare enum FleetStatus {
381
415
  ACTIVATING = "ACTIVATING",
@@ -385,6 +419,7 @@ export declare enum FleetStatus {
385
419
  DOWNLOADING = "DOWNLOADING",
386
420
  ERROR = "ERROR",
387
421
  NEW = "NEW",
422
+ NOT_FOUND = "NOT_FOUND",
388
423
  TERMINATED = "TERMINATED",
389
424
  VALIDATING = "VALIDATING",
390
425
  }
@@ -415,6 +450,8 @@ export interface FleetAttributes {
415
450
  StoppedActions?: (FleetAction | string)[];
416
451
  InstanceRoleArn?: string;
417
452
  CertificateConfiguration?: CertificateConfiguration;
453
+ ComputeType?: ComputeType | string;
454
+ AnywhereConfiguration?: AnywhereConfiguration;
418
455
  }
419
456
  export interface LocationState {
420
457
  Location?: string;
@@ -452,95 +489,96 @@ export declare enum GameServerProtectionPolicy {
452
489
  FULL_PROTECTION = "FULL_PROTECTION",
453
490
  NO_PROTECTION = "NO_PROTECTION",
454
491
  }
455
- export declare type GameServerGroupInstanceType =
456
- | "c4.2xlarge"
457
- | "c4.4xlarge"
458
- | "c4.8xlarge"
459
- | "c4.large"
460
- | "c4.xlarge"
461
- | "c5.12xlarge"
462
- | "c5.18xlarge"
463
- | "c5.24xlarge"
464
- | "c5.2xlarge"
465
- | "c5.4xlarge"
466
- | "c5.9xlarge"
467
- | "c5.large"
468
- | "c5.xlarge"
469
- | "c5a.12xlarge"
470
- | "c5a.16xlarge"
471
- | "c5a.24xlarge"
472
- | "c5a.2xlarge"
473
- | "c5a.4xlarge"
474
- | "c5a.8xlarge"
475
- | "c5a.large"
476
- | "c5a.xlarge"
477
- | "c6g.12xlarge"
478
- | "c6g.16xlarge"
479
- | "c6g.2xlarge"
480
- | "c6g.4xlarge"
481
- | "c6g.8xlarge"
482
- | "c6g.large"
483
- | "c6g.medium"
484
- | "c6g.xlarge"
485
- | "m4.10xlarge"
486
- | "m4.2xlarge"
487
- | "m4.4xlarge"
488
- | "m4.large"
489
- | "m4.xlarge"
490
- | "m5.12xlarge"
491
- | "m5.16xlarge"
492
- | "m5.24xlarge"
493
- | "m5.2xlarge"
494
- | "m5.4xlarge"
495
- | "m5.8xlarge"
496
- | "m5.large"
497
- | "m5.xlarge"
498
- | "m5a.12xlarge"
499
- | "m5a.16xlarge"
500
- | "m5a.24xlarge"
501
- | "m5a.2xlarge"
502
- | "m5a.4xlarge"
503
- | "m5a.8xlarge"
504
- | "m5a.large"
505
- | "m5a.xlarge"
506
- | "m6g.12xlarge"
507
- | "m6g.16xlarge"
508
- | "m6g.2xlarge"
509
- | "m6g.4xlarge"
510
- | "m6g.8xlarge"
511
- | "m6g.large"
512
- | "m6g.medium"
513
- | "m6g.xlarge"
514
- | "r4.16xlarge"
515
- | "r4.2xlarge"
516
- | "r4.4xlarge"
517
- | "r4.8xlarge"
518
- | "r4.large"
519
- | "r4.xlarge"
520
- | "r5.12xlarge"
521
- | "r5.16xlarge"
522
- | "r5.24xlarge"
523
- | "r5.2xlarge"
524
- | "r5.4xlarge"
525
- | "r5.8xlarge"
526
- | "r5.large"
527
- | "r5.xlarge"
528
- | "r5a.12xlarge"
529
- | "r5a.16xlarge"
530
- | "r5a.24xlarge"
531
- | "r5a.2xlarge"
532
- | "r5a.4xlarge"
533
- | "r5a.8xlarge"
534
- | "r5a.large"
535
- | "r5a.xlarge"
536
- | "r6g.12xlarge"
537
- | "r6g.16xlarge"
538
- | "r6g.2xlarge"
539
- | "r6g.4xlarge"
540
- | "r6g.8xlarge"
541
- | "r6g.large"
542
- | "r6g.medium"
543
- | "r6g.xlarge";
492
+ export declare enum GameServerGroupInstanceType {
493
+ c4_2xlarge = "c4.2xlarge",
494
+ c4_4xlarge = "c4.4xlarge",
495
+ c4_8xlarge = "c4.8xlarge",
496
+ c4_large = "c4.large",
497
+ c4_xlarge = "c4.xlarge",
498
+ c5_12xlarge = "c5.12xlarge",
499
+ c5_18xlarge = "c5.18xlarge",
500
+ c5_24xlarge = "c5.24xlarge",
501
+ c5_2xlarge = "c5.2xlarge",
502
+ c5_4xlarge = "c5.4xlarge",
503
+ c5_9xlarge = "c5.9xlarge",
504
+ c5_large = "c5.large",
505
+ c5_xlarge = "c5.xlarge",
506
+ c5a_12xlarge = "c5a.12xlarge",
507
+ c5a_16xlarge = "c5a.16xlarge",
508
+ c5a_24xlarge = "c5a.24xlarge",
509
+ c5a_2xlarge = "c5a.2xlarge",
510
+ c5a_4xlarge = "c5a.4xlarge",
511
+ c5a_8xlarge = "c5a.8xlarge",
512
+ c5a_large = "c5a.large",
513
+ c5a_xlarge = "c5a.xlarge",
514
+ c6g_12xlarge = "c6g.12xlarge",
515
+ c6g_16xlarge = "c6g.16xlarge",
516
+ c6g_2xlarge = "c6g.2xlarge",
517
+ c6g_4xlarge = "c6g.4xlarge",
518
+ c6g_8xlarge = "c6g.8xlarge",
519
+ c6g_large = "c6g.large",
520
+ c6g_medium = "c6g.medium",
521
+ c6g_xlarge = "c6g.xlarge",
522
+ m4_10xlarge = "m4.10xlarge",
523
+ m4_2xlarge = "m4.2xlarge",
524
+ m4_4xlarge = "m4.4xlarge",
525
+ m4_large = "m4.large",
526
+ m4_xlarge = "m4.xlarge",
527
+ m5_12xlarge = "m5.12xlarge",
528
+ m5_16xlarge = "m5.16xlarge",
529
+ m5_24xlarge = "m5.24xlarge",
530
+ m5_2xlarge = "m5.2xlarge",
531
+ m5_4xlarge = "m5.4xlarge",
532
+ m5_8xlarge = "m5.8xlarge",
533
+ m5_large = "m5.large",
534
+ m5_xlarge = "m5.xlarge",
535
+ m5a_12xlarge = "m5a.12xlarge",
536
+ m5a_16xlarge = "m5a.16xlarge",
537
+ m5a_24xlarge = "m5a.24xlarge",
538
+ m5a_2xlarge = "m5a.2xlarge",
539
+ m5a_4xlarge = "m5a.4xlarge",
540
+ m5a_8xlarge = "m5a.8xlarge",
541
+ m5a_large = "m5a.large",
542
+ m5a_xlarge = "m5a.xlarge",
543
+ m6g_12xlarge = "m6g.12xlarge",
544
+ m6g_16xlarge = "m6g.16xlarge",
545
+ m6g_2xlarge = "m6g.2xlarge",
546
+ m6g_4xlarge = "m6g.4xlarge",
547
+ m6g_8xlarge = "m6g.8xlarge",
548
+ m6g_large = "m6g.large",
549
+ m6g_medium = "m6g.medium",
550
+ m6g_xlarge = "m6g.xlarge",
551
+ r4_16xlarge = "r4.16xlarge",
552
+ r4_2xlarge = "r4.2xlarge",
553
+ r4_4xlarge = "r4.4xlarge",
554
+ r4_8xlarge = "r4.8xlarge",
555
+ r4_large = "r4.large",
556
+ r4_xlarge = "r4.xlarge",
557
+ r5_12xlarge = "r5.12xlarge",
558
+ r5_16xlarge = "r5.16xlarge",
559
+ r5_24xlarge = "r5.24xlarge",
560
+ r5_2xlarge = "r5.2xlarge",
561
+ r5_4xlarge = "r5.4xlarge",
562
+ r5_8xlarge = "r5.8xlarge",
563
+ r5_large = "r5.large",
564
+ r5_xlarge = "r5.xlarge",
565
+ r5a_12xlarge = "r5a.12xlarge",
566
+ r5a_16xlarge = "r5a.16xlarge",
567
+ r5a_24xlarge = "r5a.24xlarge",
568
+ r5a_2xlarge = "r5a.2xlarge",
569
+ r5a_4xlarge = "r5a.4xlarge",
570
+ r5a_8xlarge = "r5a.8xlarge",
571
+ r5a_large = "r5a.large",
572
+ r5a_xlarge = "r5a.xlarge",
573
+ r6g_12xlarge = "r6g.12xlarge",
574
+ r6g_16xlarge = "r6g.16xlarge",
575
+ r6g_2xlarge = "r6g.2xlarge",
576
+ r6g_4xlarge = "r6g.4xlarge",
577
+ r6g_8xlarge = "r6g.8xlarge",
578
+ r6g_large = "r6g.large",
579
+ r6g_medium = "r6g.medium",
580
+ r6g_xlarge = "r6g.xlarge",
581
+ }
544
582
  export interface InstanceDefinition {
545
583
  InstanceType: GameServerGroupInstanceType | string | undefined;
546
584
  WeightedCapacity?: string;
@@ -721,6 +759,17 @@ export interface GameSessionQueue {
721
759
  export interface CreateGameSessionQueueOutput {
722
760
  GameSessionQueue?: GameSessionQueue;
723
761
  }
762
+ export interface CreateLocationInput {
763
+ LocationName: string | undefined;
764
+ Tags?: Tag[];
765
+ }
766
+ export interface LocationModel {
767
+ LocationName?: string;
768
+ LocationArn?: string;
769
+ }
770
+ export interface CreateLocationOutput {
771
+ Location?: LocationModel;
772
+ }
724
773
  export declare enum FlexMatchMode {
725
774
  STANDALONE = "STANDALONE",
726
775
  WITH_QUEUE = "WITH_QUEUE",
@@ -906,6 +955,10 @@ export interface DeleteGameSessionQueueInput {
906
955
  Name: string | undefined;
907
956
  }
908
957
  export interface DeleteGameSessionQueueOutput {}
958
+ export interface DeleteLocationInput {
959
+ LocationName: string | undefined;
960
+ }
961
+ export interface DeleteLocationOutput {}
909
962
  export interface DeleteMatchmakingConfigurationInput {
910
963
  Name: string | undefined;
911
964
  }
@@ -931,6 +984,11 @@ export interface DeleteVpcPeeringConnectionInput {
931
984
  VpcPeeringConnectionId: string | undefined;
932
985
  }
933
986
  export interface DeleteVpcPeeringConnectionOutput {}
987
+ export interface DeregisterComputeInput {
988
+ FleetId: string | undefined;
989
+ ComputeName: string | undefined;
990
+ }
991
+ export interface DeregisterComputeOutput {}
934
992
  export interface DeregisterGameServerInput {
935
993
  GameServerGroupName: string | undefined;
936
994
  GameServerId: string | undefined;
@@ -947,6 +1005,13 @@ export interface DescribeBuildInput {
947
1005
  export interface DescribeBuildOutput {
948
1006
  Build?: Build;
949
1007
  }
1008
+ export interface DescribeComputeInput {
1009
+ FleetId: string | undefined;
1010
+ ComputeName: string | undefined;
1011
+ }
1012
+ export interface DescribeComputeOutput {
1013
+ Compute?: Compute;
1014
+ }
950
1015
  export interface DescribeEC2InstanceLimitsInput {
951
1016
  EC2InstanceType?: EC2InstanceType | string;
952
1017
  Location?: string;
@@ -1028,6 +1093,7 @@ export declare enum EventCode {
1028
1093
  GAME_SESSION_ACTIVATION_TIMEOUT = "GAME_SESSION_ACTIVATION_TIMEOUT",
1029
1094
  GENERIC_EVENT = "GENERIC_EVENT",
1030
1095
  INSTANCE_INTERRUPTED = "INSTANCE_INTERRUPTED",
1096
+ INSTANCE_RECYCLED = "INSTANCE_RECYCLED",
1031
1097
  SERVER_PROCESS_CRASHED = "SERVER_PROCESS_CRASHED",
1032
1098
  SERVER_PROCESS_FORCE_TERMINATED = "SERVER_PROCESS_FORCE_TERMINATED",
1033
1099
  SERVER_PROCESS_INVALID_PATH = "SERVER_PROCESS_INVALID_PATH",
@@ -1274,15 +1340,16 @@ export interface Player {
1274
1340
  Team?: string;
1275
1341
  LatencyInMs?: Record<string, number>;
1276
1342
  }
1277
- export declare type MatchmakingConfigurationStatus =
1278
- | "CANCELLED"
1279
- | "COMPLETED"
1280
- | "FAILED"
1281
- | "PLACING"
1282
- | "QUEUED"
1283
- | "REQUIRES_ACCEPTANCE"
1284
- | "SEARCHING"
1285
- | "TIMED_OUT";
1343
+ export declare enum MatchmakingConfigurationStatus {
1344
+ CANCELLED = "CANCELLED",
1345
+ COMPLETED = "COMPLETED",
1346
+ FAILED = "FAILED",
1347
+ PLACING = "PLACING",
1348
+ QUEUED = "QUEUED",
1349
+ REQUIRES_ACCEPTANCE = "REQUIRES_ACCEPTANCE",
1350
+ SEARCHING = "SEARCHING",
1351
+ TIMED_OUT = "TIMED_OUT",
1352
+ }
1286
1353
  export interface MatchmakingTicket {
1287
1354
  TicketId?: string;
1288
1355
  ConfigurationName?: string;
@@ -1352,18 +1419,20 @@ export interface DescribeScalingPoliciesInput {
1352
1419
  NextToken?: string;
1353
1420
  Location?: string;
1354
1421
  }
1355
- export declare type MetricName =
1356
- | "ActivatingGameSessions"
1357
- | "ActiveGameSessions"
1358
- | "ActiveInstances"
1359
- | "AvailableGameSessions"
1360
- | "AvailablePlayerSessions"
1361
- | "CurrentPlayerSessions"
1362
- | "IdleInstances"
1363
- | "PercentAvailableGameSessions"
1364
- | "PercentIdleInstances"
1365
- | "QueueDepth"
1366
- | "WaitTime";
1422
+ export declare enum MetricName {
1423
+ ActivatingGameSessions = "ActivatingGameSessions",
1424
+ ActiveGameSessions = "ActiveGameSessions",
1425
+ ActiveInstances = "ActiveInstances",
1426
+ AvailableGameSessions = "AvailableGameSessions",
1427
+ AvailablePlayerSessions = "AvailablePlayerSessions",
1428
+ ConcurrentActivatableGameSessions = "ConcurrentActivatableGameSessions",
1429
+ CurrentPlayerSessions = "CurrentPlayerSessions",
1430
+ IdleInstances = "IdleInstances",
1431
+ PercentAvailableGameSessions = "PercentAvailableGameSessions",
1432
+ PercentIdleInstances = "PercentIdleInstances",
1433
+ QueueDepth = "QueueDepth",
1434
+ WaitTime = "WaitTime",
1435
+ }
1367
1436
  export declare enum PolicyType {
1368
1437
  RuleBased = "RuleBased",
1369
1438
  TargetBased = "TargetBased",
@@ -1429,6 +1498,29 @@ export interface DesiredPlayerSession {
1429
1498
  PlayerId?: string;
1430
1499
  PlayerData?: string;
1431
1500
  }
1501
+ export interface GetComputeAccessInput {
1502
+ FleetId: string | undefined;
1503
+ ComputeName: string | undefined;
1504
+ }
1505
+ export interface GetComputeAccessOutput {
1506
+ FleetId?: string;
1507
+ FleetArn?: string;
1508
+ ComputeName?: string;
1509
+ ComputeArn?: string;
1510
+ Credentials?: AwsCredentials;
1511
+ }
1512
+ export interface GetComputeAuthTokenInput {
1513
+ FleetId: string | undefined;
1514
+ ComputeName: string | undefined;
1515
+ }
1516
+ export interface GetComputeAuthTokenOutput {
1517
+ FleetId?: string;
1518
+ FleetArn?: string;
1519
+ ComputeName?: string;
1520
+ ComputeArn?: string;
1521
+ AuthToken?: string;
1522
+ ExpirationTimestamp?: Date;
1523
+ }
1432
1524
  export interface GetGameSessionLogUrlInput {
1433
1525
  GameSessionId: string | undefined;
1434
1526
  }
@@ -1472,6 +1564,16 @@ export interface ListBuildsOutput {
1472
1564
  Builds?: Build[];
1473
1565
  NextToken?: string;
1474
1566
  }
1567
+ export interface ListComputeInput {
1568
+ FleetId: string | undefined;
1569
+ Location?: string;
1570
+ Limit?: number;
1571
+ NextToken?: string;
1572
+ }
1573
+ export interface ListComputeOutput {
1574
+ ComputeList?: Compute[];
1575
+ NextToken?: string;
1576
+ }
1475
1577
  export interface ListFleetsInput {
1476
1578
  BuildId?: string;
1477
1579
  ScriptId?: string;
@@ -1504,6 +1606,19 @@ export interface ListGameServersOutput {
1504
1606
  GameServers?: GameServer[];
1505
1607
  NextToken?: string;
1506
1608
  }
1609
+ export declare enum LocationFilter {
1610
+ AWS = "AWS",
1611
+ CUSTOM = "CUSTOM",
1612
+ }
1613
+ export interface ListLocationsInput {
1614
+ Filters?: (LocationFilter | string)[];
1615
+ Limit?: number;
1616
+ NextToken?: string;
1617
+ }
1618
+ export interface ListLocationsOutput {
1619
+ Locations?: LocationModel[];
1620
+ NextToken?: string;
1621
+ }
1507
1622
  export interface ListScriptsInput {
1508
1623
  Limit?: number;
1509
1624
  NextToken?: string;
@@ -1533,6 +1648,17 @@ export interface PutScalingPolicyInput {
1533
1648
  export interface PutScalingPolicyOutput {
1534
1649
  Name?: string;
1535
1650
  }
1651
+ export interface RegisterComputeInput {
1652
+ FleetId: string | undefined;
1653
+ ComputeName: string | undefined;
1654
+ CertificatePath?: string;
1655
+ DnsName?: string;
1656
+ IpAddress?: string;
1657
+ Location?: string;
1658
+ }
1659
+ export interface RegisterComputeOutput {
1660
+ Compute?: Compute;
1661
+ }
1536
1662
  export interface RegisterGameServerInput {
1537
1663
  GameServerGroupName: string | undefined;
1538
1664
  GameServerId: string | undefined;
@@ -1676,9 +1802,11 @@ export interface UpdateFleetAttributesInput {
1676
1802
  NewGameSessionProtectionPolicy?: ProtectionPolicy | string;
1677
1803
  ResourceCreationLimitPolicy?: ResourceCreationLimitPolicy;
1678
1804
  MetricGroups?: string[];
1805
+ AnywhereConfiguration?: AnywhereConfiguration;
1679
1806
  }
1680
1807
  export interface UpdateFleetAttributesOutput {
1681
1808
  FleetId?: string;
1809
+ FleetArn?: string;
1682
1810
  }
1683
1811
  export interface UpdateFleetCapacityInput {
1684
1812
  FleetId: string | undefined;
@@ -1697,97 +1825,6 @@ export interface UpdateFleetPortSettingsInput {
1697
1825
  InboundPermissionAuthorizations?: IpPermission[];
1698
1826
  InboundPermissionRevocations?: IpPermission[];
1699
1827
  }
1700
- export interface UpdateFleetPortSettingsOutput {
1701
- FleetId?: string;
1702
- }
1703
- export declare enum GameServerHealthCheck {
1704
- HEALTHY = "HEALTHY",
1705
- }
1706
- export interface UpdateGameServerInput {
1707
- GameServerGroupName: string | undefined;
1708
- GameServerId: string | undefined;
1709
- GameServerData?: string;
1710
- UtilizationStatus?: GameServerUtilizationStatus | string;
1711
- HealthCheck?: GameServerHealthCheck | string;
1712
- }
1713
- export interface UpdateGameServerOutput {
1714
- GameServer?: GameServer;
1715
- }
1716
- export interface UpdateGameServerGroupInput {
1717
- GameServerGroupName: string | undefined;
1718
- RoleArn?: string;
1719
- InstanceDefinitions?: InstanceDefinition[];
1720
- GameServerProtectionPolicy?: GameServerProtectionPolicy | string;
1721
- BalancingStrategy?: BalancingStrategy | string;
1722
- }
1723
- export interface UpdateGameServerGroupOutput {
1724
- GameServerGroup?: GameServerGroup;
1725
- }
1726
- export interface UpdateGameSessionInput {
1727
- GameSessionId: string | undefined;
1728
- MaximumPlayerSessionCount?: number;
1729
- Name?: string;
1730
- PlayerSessionCreationPolicy?: PlayerSessionCreationPolicy | string;
1731
- ProtectionPolicy?: ProtectionPolicy | string;
1732
- }
1733
- export interface UpdateGameSessionOutput {
1734
- GameSession?: GameSession;
1735
- }
1736
- export interface UpdateGameSessionQueueInput {
1737
- Name: string | undefined;
1738
- TimeoutInSeconds?: number;
1739
- PlayerLatencyPolicies?: PlayerLatencyPolicy[];
1740
- Destinations?: GameSessionQueueDestination[];
1741
- FilterConfiguration?: FilterConfiguration;
1742
- PriorityConfiguration?: PriorityConfiguration;
1743
- CustomEventData?: string;
1744
- NotificationTarget?: string;
1745
- }
1746
- export interface UpdateGameSessionQueueOutput {
1747
- GameSessionQueue?: GameSessionQueue;
1748
- }
1749
- export interface UpdateMatchmakingConfigurationInput {
1750
- Name: string | undefined;
1751
- Description?: string;
1752
- GameSessionQueueArns?: string[];
1753
- RequestTimeoutSeconds?: number;
1754
- AcceptanceTimeoutSeconds?: number;
1755
- AcceptanceRequired?: boolean;
1756
- RuleSetName?: string;
1757
- NotificationTarget?: string;
1758
- AdditionalPlayerCount?: number;
1759
- CustomEventData?: string;
1760
- GameProperties?: GameProperty[];
1761
- GameSessionData?: string;
1762
- BackfillMode?: BackfillMode | string;
1763
- FlexMatchMode?: FlexMatchMode | string;
1764
- }
1765
- export interface UpdateMatchmakingConfigurationOutput {
1766
- Configuration?: MatchmakingConfiguration;
1767
- }
1768
- export interface UpdateRuntimeConfigurationInput {
1769
- FleetId: string | undefined;
1770
- RuntimeConfiguration: RuntimeConfiguration | undefined;
1771
- }
1772
- export interface UpdateRuntimeConfigurationOutput {
1773
- RuntimeConfiguration?: RuntimeConfiguration;
1774
- }
1775
- export interface UpdateScriptInput {
1776
- ScriptId: string | undefined;
1777
- Name?: string;
1778
- Version?: string;
1779
- StorageLocation?: S3Location;
1780
- ZipFile?: Uint8Array;
1781
- }
1782
- export interface UpdateScriptOutput {
1783
- Script?: Script;
1784
- }
1785
- export interface ValidateMatchmakingRuleSetInput {
1786
- RuleSetBody: string | undefined;
1787
- }
1788
- export interface ValidateMatchmakingRuleSetOutput {
1789
- Valid?: boolean;
1790
- }
1791
1828
  export declare const AcceptMatchInputFilterSensitiveLog: (
1792
1829
  obj: AcceptMatchInput
1793
1830
  ) => any;
@@ -1798,6 +1835,9 @@ export declare const RoutingStrategyFilterSensitiveLog: (
1798
1835
  obj: RoutingStrategy
1799
1836
  ) => any;
1800
1837
  export declare const AliasFilterSensitiveLog: (obj: Alias) => any;
1838
+ export declare const AnywhereConfigurationFilterSensitiveLog: (
1839
+ obj: AnywhereConfiguration
1840
+ ) => any;
1801
1841
  export declare const AttributeValueFilterSensitiveLog: (
1802
1842
  obj: AttributeValue
1803
1843
  ) => any;
@@ -1815,6 +1855,7 @@ export declare const GameServerFilterSensitiveLog: (obj: GameServer) => any;
1815
1855
  export declare const ClaimGameServerOutputFilterSensitiveLog: (
1816
1856
  obj: ClaimGameServerOutput
1817
1857
  ) => any;
1858
+ export declare const ComputeFilterSensitiveLog: (obj: Compute) => any;
1818
1859
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1819
1860
  export declare const CreateAliasInputFilterSensitiveLog: (
1820
1861
  obj: CreateAliasInput
@@ -1910,6 +1951,15 @@ export declare const GameSessionQueueFilterSensitiveLog: (
1910
1951
  export declare const CreateGameSessionQueueOutputFilterSensitiveLog: (
1911
1952
  obj: CreateGameSessionQueueOutput
1912
1953
  ) => any;
1954
+ export declare const CreateLocationInputFilterSensitiveLog: (
1955
+ obj: CreateLocationInput
1956
+ ) => any;
1957
+ export declare const LocationModelFilterSensitiveLog: (
1958
+ obj: LocationModel
1959
+ ) => any;
1960
+ export declare const CreateLocationOutputFilterSensitiveLog: (
1961
+ obj: CreateLocationOutput
1962
+ ) => any;
1913
1963
  export declare const CreateMatchmakingConfigurationInputFilterSensitiveLog: (
1914
1964
  obj: CreateMatchmakingConfigurationInput
1915
1965
  ) => any;
@@ -1992,6 +2042,12 @@ export declare const DeleteGameSessionQueueInputFilterSensitiveLog: (
1992
2042
  export declare const DeleteGameSessionQueueOutputFilterSensitiveLog: (
1993
2043
  obj: DeleteGameSessionQueueOutput
1994
2044
  ) => any;
2045
+ export declare const DeleteLocationInputFilterSensitiveLog: (
2046
+ obj: DeleteLocationInput
2047
+ ) => any;
2048
+ export declare const DeleteLocationOutputFilterSensitiveLog: (
2049
+ obj: DeleteLocationOutput
2050
+ ) => any;
1995
2051
  export declare const DeleteMatchmakingConfigurationInputFilterSensitiveLog: (
1996
2052
  obj: DeleteMatchmakingConfigurationInput
1997
2053
  ) => any;
@@ -2022,6 +2078,12 @@ export declare const DeleteVpcPeeringConnectionInputFilterSensitiveLog: (
2022
2078
  export declare const DeleteVpcPeeringConnectionOutputFilterSensitiveLog: (
2023
2079
  obj: DeleteVpcPeeringConnectionOutput
2024
2080
  ) => any;
2081
+ export declare const DeregisterComputeInputFilterSensitiveLog: (
2082
+ obj: DeregisterComputeInput
2083
+ ) => any;
2084
+ export declare const DeregisterComputeOutputFilterSensitiveLog: (
2085
+ obj: DeregisterComputeOutput
2086
+ ) => any;
2025
2087
  export declare const DeregisterGameServerInputFilterSensitiveLog: (
2026
2088
  obj: DeregisterGameServerInput
2027
2089
  ) => any;
@@ -2037,6 +2099,12 @@ export declare const DescribeBuildInputFilterSensitiveLog: (
2037
2099
  export declare const DescribeBuildOutputFilterSensitiveLog: (
2038
2100
  obj: DescribeBuildOutput
2039
2101
  ) => any;
2102
+ export declare const DescribeComputeInputFilterSensitiveLog: (
2103
+ obj: DescribeComputeInput
2104
+ ) => any;
2105
+ export declare const DescribeComputeOutputFilterSensitiveLog: (
2106
+ obj: DescribeComputeOutput
2107
+ ) => any;
2040
2108
  export declare const DescribeEC2InstanceLimitsInputFilterSensitiveLog: (
2041
2109
  obj: DescribeEC2InstanceLimitsInput
2042
2110
  ) => any;
@@ -2250,6 +2318,18 @@ export declare const DescribeVpcPeeringConnectionsOutputFilterSensitiveLog: (
2250
2318
  export declare const DesiredPlayerSessionFilterSensitiveLog: (
2251
2319
  obj: DesiredPlayerSession
2252
2320
  ) => any;
2321
+ export declare const GetComputeAccessInputFilterSensitiveLog: (
2322
+ obj: GetComputeAccessInput
2323
+ ) => any;
2324
+ export declare const GetComputeAccessOutputFilterSensitiveLog: (
2325
+ obj: GetComputeAccessOutput
2326
+ ) => any;
2327
+ export declare const GetComputeAuthTokenInputFilterSensitiveLog: (
2328
+ obj: GetComputeAuthTokenInput
2329
+ ) => any;
2330
+ export declare const GetComputeAuthTokenOutputFilterSensitiveLog: (
2331
+ obj: GetComputeAuthTokenOutput
2332
+ ) => any;
2253
2333
  export declare const GetGameSessionLogUrlInputFilterSensitiveLog: (
2254
2334
  obj: GetGameSessionLogUrlInput
2255
2335
  ) => any;
@@ -2280,6 +2360,12 @@ export declare const ListBuildsInputFilterSensitiveLog: (
2280
2360
  export declare const ListBuildsOutputFilterSensitiveLog: (
2281
2361
  obj: ListBuildsOutput
2282
2362
  ) => any;
2363
+ export declare const ListComputeInputFilterSensitiveLog: (
2364
+ obj: ListComputeInput
2365
+ ) => any;
2366
+ export declare const ListComputeOutputFilterSensitiveLog: (
2367
+ obj: ListComputeOutput
2368
+ ) => any;
2283
2369
  export declare const ListFleetsInputFilterSensitiveLog: (
2284
2370
  obj: ListFleetsInput
2285
2371
  ) => any;
@@ -2298,6 +2384,12 @@ export declare const ListGameServersInputFilterSensitiveLog: (
2298
2384
  export declare const ListGameServersOutputFilterSensitiveLog: (
2299
2385
  obj: ListGameServersOutput
2300
2386
  ) => any;
2387
+ export declare const ListLocationsInputFilterSensitiveLog: (
2388
+ obj: ListLocationsInput
2389
+ ) => any;
2390
+ export declare const ListLocationsOutputFilterSensitiveLog: (
2391
+ obj: ListLocationsOutput
2392
+ ) => any;
2301
2393
  export declare const ListScriptsInputFilterSensitiveLog: (
2302
2394
  obj: ListScriptsInput
2303
2395
  ) => any;
@@ -2316,6 +2408,12 @@ export declare const PutScalingPolicyInputFilterSensitiveLog: (
2316
2408
  export declare const PutScalingPolicyOutputFilterSensitiveLog: (
2317
2409
  obj: PutScalingPolicyOutput
2318
2410
  ) => any;
2411
+ export declare const RegisterComputeInputFilterSensitiveLog: (
2412
+ obj: RegisterComputeInput
2413
+ ) => any;
2414
+ export declare const RegisterComputeOutputFilterSensitiveLog: (
2415
+ obj: RegisterComputeOutput
2416
+ ) => any;
2319
2417
  export declare const RegisterGameServerInputFilterSensitiveLog: (
2320
2418
  obj: RegisterGameServerInput
2321
2419
  ) => any;
@@ -2433,54 +2531,3 @@ export declare const UpdateFleetCapacityOutputFilterSensitiveLog: (
2433
2531
  export declare const UpdateFleetPortSettingsInputFilterSensitiveLog: (
2434
2532
  obj: UpdateFleetPortSettingsInput
2435
2533
  ) => any;
2436
- export declare const UpdateFleetPortSettingsOutputFilterSensitiveLog: (
2437
- obj: UpdateFleetPortSettingsOutput
2438
- ) => any;
2439
- export declare const UpdateGameServerInputFilterSensitiveLog: (
2440
- obj: UpdateGameServerInput
2441
- ) => any;
2442
- export declare const UpdateGameServerOutputFilterSensitiveLog: (
2443
- obj: UpdateGameServerOutput
2444
- ) => any;
2445
- export declare const UpdateGameServerGroupInputFilterSensitiveLog: (
2446
- obj: UpdateGameServerGroupInput
2447
- ) => any;
2448
- export declare const UpdateGameServerGroupOutputFilterSensitiveLog: (
2449
- obj: UpdateGameServerGroupOutput
2450
- ) => any;
2451
- export declare const UpdateGameSessionInputFilterSensitiveLog: (
2452
- obj: UpdateGameSessionInput
2453
- ) => any;
2454
- export declare const UpdateGameSessionOutputFilterSensitiveLog: (
2455
- obj: UpdateGameSessionOutput
2456
- ) => any;
2457
- export declare const UpdateGameSessionQueueInputFilterSensitiveLog: (
2458
- obj: UpdateGameSessionQueueInput
2459
- ) => any;
2460
- export declare const UpdateGameSessionQueueOutputFilterSensitiveLog: (
2461
- obj: UpdateGameSessionQueueOutput
2462
- ) => any;
2463
- export declare const UpdateMatchmakingConfigurationInputFilterSensitiveLog: (
2464
- obj: UpdateMatchmakingConfigurationInput
2465
- ) => any;
2466
- export declare const UpdateMatchmakingConfigurationOutputFilterSensitiveLog: (
2467
- obj: UpdateMatchmakingConfigurationOutput
2468
- ) => any;
2469
- export declare const UpdateRuntimeConfigurationInputFilterSensitiveLog: (
2470
- obj: UpdateRuntimeConfigurationInput
2471
- ) => any;
2472
- export declare const UpdateRuntimeConfigurationOutputFilterSensitiveLog: (
2473
- obj: UpdateRuntimeConfigurationOutput
2474
- ) => any;
2475
- export declare const UpdateScriptInputFilterSensitiveLog: (
2476
- obj: UpdateScriptInput
2477
- ) => any;
2478
- export declare const UpdateScriptOutputFilterSensitiveLog: (
2479
- obj: UpdateScriptOutput
2480
- ) => any;
2481
- export declare const ValidateMatchmakingRuleSetInputFilterSensitiveLog: (
2482
- obj: ValidateMatchmakingRuleSetInput
2483
- ) => any;
2484
- export declare const ValidateMatchmakingRuleSetOutputFilterSensitiveLog: (
2485
- obj: ValidateMatchmakingRuleSetOutput
2486
- ) => any;