@aws-sdk/client-gamelift 3.216.0 → 3.222.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 +29 -28
@@ -8,8 +8,8 @@ export interface DescribeMatchmakingRuleSetsCommandInput extends DescribeMatchma
8
8
  export interface DescribeMatchmakingRuleSetsCommandOutput extends DescribeMatchmakingRuleSetsOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Retrieves the details for FlexMatch matchmaking rule sets. You can request all
12
- * existing rule sets for the Region, or provide a list of one or more rule set names. When
11
+ * <p>Retrieves the details for FlexMatch matchmaking rule sets. You can request all existing
12
+ * rule sets for the Region, or provide a list of one or more rule set names. When
13
13
  * requesting multiple items, use the pagination parameters to retrieve results as a set of
14
14
  * sequential pages. If successful, a rule set is returned for each requested name. </p>
15
15
  * <p>
@@ -23,20 +23,6 @@ export interface DescribeMatchmakingRuleSetsCommandOutput extends DescribeMatchm
23
23
  * </p>
24
24
  * </li>
25
25
  * </ul>
26
- * <p>
27
- * <b>Related actions</b>
28
- * </p>
29
- * <p>
30
- * <a>CreateMatchmakingConfiguration</a> |
31
- * <a>DescribeMatchmakingConfigurations</a> |
32
- * <a>UpdateMatchmakingConfiguration</a> |
33
- * <a>DeleteMatchmakingConfiguration</a> |
34
- * <a>CreateMatchmakingRuleSet</a> |
35
- * <a>DescribeMatchmakingRuleSets</a> |
36
- * <a>ValidateMatchmakingRuleSet</a> |
37
- * <a>DeleteMatchmakingRuleSet</a> |
38
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
39
- * </p>
40
26
  * @example
41
27
  * Use a bare-bones client and the command you need to make an API call.
42
28
  * ```javascript
@@ -24,23 +24,15 @@ export interface DescribePlayerSessionsCommandOutput extends DescribePlayerSessi
24
24
  * only.</p>
25
25
  * </li>
26
26
  * </ul>
27
- * <p>To request player sessions, specify either a player session ID, game session ID, or player
28
- * ID. You can filter this request by player session status. Use the pagination parameters
29
- * to retrieve results as a set of sequential pages. </p>
27
+ * <p>To request player sessions, specify either a player session ID, game session ID, or
28
+ * player ID. You can filter this request by player session status. Use the pagination
29
+ * parameters to retrieve results as a set of sequential pages. </p>
30
30
  * <p>If successful, a <code>PlayerSession</code> object is returned for each session that
31
31
  * matches the request.</p>
32
32
  * <p>
33
- * <i>Available in Amazon GameLift Local.</i>
34
- * </p>
35
- * <p>
36
33
  * <b>Related actions</b>
37
34
  * </p>
38
35
  * <p>
39
- * <a>CreatePlayerSession</a> |
40
- * <a>CreatePlayerSessions</a> |
41
- * <a>DescribePlayerSessions</a> |
42
- * <a>StartGameSessionPlacement</a> |
43
- * <a>DescribeGameSessionPlacement</a> |
44
36
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
45
37
  * </p>
46
38
  * @example
@@ -12,35 +12,20 @@ export interface DescribeRuntimeConfigurationCommandOutput extends DescribeRunti
12
12
  * GameLift which server processes to run (and how) on each instance in the fleet.</p>
13
13
  * <p>To get the runtime configuration that is currently in forces for a fleet, provide the
14
14
  * fleet ID. </p>
15
- * <p>If successful, a <a>RuntimeConfiguration</a> object is returned for the
15
+ * <p>If successful, a <code>RuntimeConfiguration</code> object is returned for the
16
16
  * requested fleet. If the requested fleet has been deleted, the result set is
17
17
  * empty.</p>
18
- * <p>
18
+ * <p>
19
19
  * <b>Learn more</b>
20
20
  * </p>
21
- * <p>
22
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
21
+ * <p>
22
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift
23
+ * fleets</a>
23
24
  * </p>
24
25
  * <p>
25
26
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-multiprocess.html">Running multiple
26
27
  * processes on a fleet</a>
27
28
  * </p>
28
- * <p>
29
- * <b>Related actions</b>
30
- * </p>
31
- * <p>
32
- * <a>ListFleets</a> |
33
- * <a>DescribeEC2InstanceLimits</a> |
34
- * <a>DescribeFleetAttributes</a> |
35
- * <a>DescribeFleetCapacity</a> |
36
- * <a>DescribeFleetEvents</a> |
37
- * <a>DescribeFleetLocationAttributes</a> |
38
- * <a>DescribeFleetPortSettings</a> |
39
- * <a>DescribeFleetUtilization</a> |
40
- * <a>DescribeRuntimeConfiguration</a> |
41
- * <a>DescribeScalingPolicies</a> |
42
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
43
- * </p>
44
29
  * @example
45
30
  * Use a bare-bones client and the command you need to make an API call.
46
31
  * ```javascript
@@ -9,28 +9,12 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol
9
9
  }
10
10
  /**
11
11
  * <p>Retrieves all scaling policies applied to a fleet.</p>
12
- * <p>To get a fleet's scaling policies, specify the fleet ID. You can filter this
13
- * request by policy status, such as to retrieve only active scaling policies. Use the
14
- * pagination parameters to retrieve results as a set of sequential pages. If successful,
15
- * set of <a>ScalingPolicy</a> objects is returned for the fleet.</p>
16
- * <p>A fleet may have all of its scaling policies suspended (<a>StopFleetActions</a>). This operation does not affect the status of the scaling
17
- * policies, which remains ACTIVE. To see whether a fleet's scaling policies are in force
18
- * or suspended, call <a>DescribeFleetAttributes</a> and check the stopped
19
- * actions.</p>
20
- * <p>
21
- * <b>Related actions</b>
22
- * </p>
23
- * <p>
24
- * <a>DescribeFleetCapacity</a> |
25
- * <a>UpdateFleetCapacity</a> |
26
- * <a>DescribeEC2InstanceLimits</a> |
27
- * <a>PutScalingPolicy</a> |
28
- * <a>DescribeScalingPolicies</a> |
29
- * <a>DeleteScalingPolicy</a> |
30
- * <a>StopFleetActions</a> |
31
- * <a>StartFleetActions</a> |
32
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
33
- * </p>
12
+ * <p>To get a fleet's scaling policies, specify the fleet ID. You can filter this request
13
+ * by policy status, such as to retrieve only active scaling policies. Use the pagination
14
+ * parameters to retrieve results as a set of sequential pages. If successful, set of
15
+ * <code>ScalingPolicy</code> objects is returned for the fleet.</p>
16
+ * <p>A fleet may have all of its scaling policies suspended. This operation does not affect
17
+ * the status of the scaling policies, which remains ACTIVE.</p>
34
18
  * @example
35
19
  * Use a bare-bones client and the command you need to make an API call.
36
20
  * ```javascript
@@ -9,23 +9,18 @@ export interface DescribeScriptCommandOutput extends DescribeScriptOutput, __Met
9
9
  }
10
10
  /**
11
11
  * <p>Retrieves properties for a Realtime script. </p>
12
- * <p>To request a script record, specify the script ID. If successful, an object containing the script properties
13
- * is returned.</p>
12
+ * <p>To request a script record, specify the script ID. If successful, an object containing
13
+ * the script properties is returned.</p>
14
14
  * <p>
15
15
  * <b>Learn more</b>
16
16
  * </p>
17
17
  * <p>
18
18
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/realtime-intro.html">Amazon GameLift Realtime Servers</a>
19
19
  * </p>
20
- * <p>
20
+ * <p>
21
21
  * <b>Related actions</b>
22
22
  * </p>
23
23
  * <p>
24
- * <a>CreateScript</a> |
25
- * <a>ListScripts</a> |
26
- * <a>DescribeScript</a> |
27
- * <a>UpdateScript</a> |
28
- * <a>DeleteScript</a> |
29
24
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
30
25
  * </p>
31
26
  * @example
@@ -11,17 +11,11 @@ export interface DescribeVpcPeeringAuthorizationsCommandOutput extends DescribeV
11
11
  * <p>Retrieves valid VPC peering authorizations that are pending for the Amazon Web Services account.
12
12
  * This operation returns all VPC peering authorizations and requests for peering. This
13
13
  * includes those initiated and received by this account. </p>
14
- * <p>
14
+ * <p>
15
15
  * <b>Related actions</b>
16
16
  * </p>
17
17
  * <p>
18
- * <a>CreateVpcPeeringAuthorization</a> |
19
- * <a>DescribeVpcPeeringAuthorizations</a> |
20
- * <a>DeleteVpcPeeringAuthorization</a> |
21
- * <a>CreateVpcPeeringConnection</a> |
22
- * <a>DescribeVpcPeeringConnections</a> |
23
- * <a>DeleteVpcPeeringConnection</a> |
24
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
18
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
25
19
  * </p>
26
20
  * @example
27
21
  * Use a bare-bones client and the command you need to make an API call.
@@ -10,22 +10,16 @@ export interface DescribeVpcPeeringConnectionsCommandOutput extends DescribeVpcP
10
10
  /**
11
11
  * <p>Retrieves information on VPC peering connections. Use this operation to get peering
12
12
  * information for all fleets or for one specific fleet ID. </p>
13
- * <p>To retrieve connection information, call this operation from the Amazon Web Services account that
14
- * is used to manage the Amazon GameLift fleets. Specify a fleet ID or leave the parameter empty
15
- * to retrieve all connection records. If successful, the retrieved information includes
16
- * both active and pending connections. Active connections identify the IpV4 CIDR block
17
- * that the VPC uses to connect. </p>
18
- * <p>
13
+ * <p>To retrieve connection information, call this operation from the Amazon Web Services account that is
14
+ * used to manage the Amazon GameLift fleets. Specify a fleet ID or leave the parameter empty to
15
+ * retrieve all connection records. If successful, the retrieved information includes both
16
+ * active and pending connections. Active connections identify the IpV4 CIDR block that the
17
+ * VPC uses to connect. </p>
18
+ * <p>
19
19
  * <b>Related actions</b>
20
20
  * </p>
21
21
  * <p>
22
- * <a>CreateVpcPeeringAuthorization</a> |
23
- * <a>DescribeVpcPeeringAuthorizations</a> |
24
- * <a>DeleteVpcPeeringAuthorization</a> |
25
- * <a>CreateVpcPeeringConnection</a> |
26
- * <a>DescribeVpcPeeringConnections</a> |
27
- * <a>DeleteVpcPeeringConnection</a> |
28
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
22
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
29
23
  * </p>
30
24
  * @example
31
25
  * Use a bare-bones client and the command you need to make an API call.
@@ -0,0 +1,59 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { GetComputeAccessInput, GetComputeAccessOutput } from "../models/models_0";
6
+ export interface GetComputeAccessCommandInput extends GetComputeAccessInput {
7
+ }
8
+ export interface GetComputeAccessCommandOutput extends GetComputeAccessOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Requests remote access to a fleet instance. Remote access is useful for debugging,
12
+ * gathering benchmarking data, or observing activity in real time. </p>
13
+ * <p>To remotely access an instance, you need credentials that match the operating system
14
+ * of the instance. For a Windows instance, GameLift returns a user name and password as
15
+ * strings for use with a Windows Remote Desktop client. For a Linux instance, GameLift
16
+ * returns a user name and RSA private key, also as strings, for use with an SSH client.
17
+ * The private key must be saved in the proper format to a <code>.pem</code> file before
18
+ * using. If you're making this request using the CLI, saving the secret can be handled
19
+ * as part of the <code>GetInstanceAccess</code> request, as shown in one of the examples
20
+ * for this operation. </p>
21
+ * <p>To request access to a specific instance, specify the IDs of both the instance and the
22
+ * fleet it belongs to.</p>
23
+ * <p>
24
+ * <b>Learn more</b>
25
+ * </p>
26
+ * <p>
27
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-remote-access.html">Remotely Access Fleet
28
+ * Instances</a>
29
+ * </p>
30
+ * <p>
31
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-creating-debug.html">Debug Fleet
32
+ * Issues</a>
33
+ * </p>
34
+ * @example
35
+ * Use a bare-bones client and the command you need to make an API call.
36
+ * ```javascript
37
+ * import { GameLiftClient, GetComputeAccessCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
38
+ * // const { GameLiftClient, GetComputeAccessCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
39
+ * const client = new GameLiftClient(config);
40
+ * const command = new GetComputeAccessCommand(input);
41
+ * const response = await client.send(command);
42
+ * ```
43
+ *
44
+ * @see {@link GetComputeAccessCommandInput} for command's `input` shape.
45
+ * @see {@link GetComputeAccessCommandOutput} for command's `response` shape.
46
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
47
+ *
48
+ */
49
+ export declare class GetComputeAccessCommand extends $Command<GetComputeAccessCommandInput, GetComputeAccessCommandOutput, GameLiftClientResolvedConfig> {
50
+ readonly input: GetComputeAccessCommandInput;
51
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
52
+ constructor(input: GetComputeAccessCommandInput);
53
+ /**
54
+ * @internal
55
+ */
56
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComputeAccessCommandInput, GetComputeAccessCommandOutput>;
57
+ private serialize;
58
+ private deserialize;
59
+ }
@@ -0,0 +1,40 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { GetComputeAuthTokenInput, GetComputeAuthTokenOutput } from "../models/models_0";
6
+ export interface GetComputeAuthTokenCommandInput extends GetComputeAuthTokenInput {
7
+ }
8
+ export interface GetComputeAuthTokenCommandOutput extends GetComputeAuthTokenOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Requests an authorization token from GameLift. The authorization token is used by your
12
+ * game server to authenticate with GameLift. Each authentication token has an expiration
13
+ * token. To continue using the compute resource to host your game server, regularly
14
+ * retrieve a new authorization token.</p>
15
+ * @example
16
+ * Use a bare-bones client and the command you need to make an API call.
17
+ * ```javascript
18
+ * import { GameLiftClient, GetComputeAuthTokenCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
19
+ * // const { GameLiftClient, GetComputeAuthTokenCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
20
+ * const client = new GameLiftClient(config);
21
+ * const command = new GetComputeAuthTokenCommand(input);
22
+ * const response = await client.send(command);
23
+ * ```
24
+ *
25
+ * @see {@link GetComputeAuthTokenCommandInput} for command's `input` shape.
26
+ * @see {@link GetComputeAuthTokenCommandOutput} for command's `response` shape.
27
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
28
+ *
29
+ */
30
+ export declare class GetComputeAuthTokenCommand extends $Command<GetComputeAuthTokenCommandInput, GetComputeAuthTokenCommandOutput, GameLiftClientResolvedConfig> {
31
+ readonly input: GetComputeAuthTokenCommandInput;
32
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
33
+ constructor(input: GetComputeAuthTokenCommandInput);
34
+ /**
35
+ * @internal
36
+ */
37
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComputeAuthTokenCommandInput, GetComputeAuthTokenCommandOutput>;
38
+ private serialize;
39
+ private deserialize;
40
+ }
@@ -8,27 +8,15 @@ export interface GetGameSessionLogUrlCommandInput extends GetGameSessionLogUrlIn
8
8
  export interface GetGameSessionLogUrlCommandOutput extends GetGameSessionLogUrlOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Retrieves the location of stored game session logs for a specified game session.
12
- * When a game session is terminated, GameLift automatically stores the logs in Amazon S3 and
11
+ * <p>Retrieves the location of stored game session logs for a specified game session. When
12
+ * a game session is terminated, GameLift automatically stores the logs in Amazon S3 and
13
13
  * retains them for 14 days. Use this URL to download the logs.</p>
14
14
  * <note>
15
15
  * <p>See the <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_gamelift">Amazon Web Services Service
16
16
  * Limits</a> page for maximum log file sizes. Log files that exceed this limit
17
17
  * are not saved.</p>
18
18
  * </note>
19
- * <p>
20
- * <b>Related actions</b>
21
- * </p>
22
- * <p>
23
- * <a>CreateGameSession</a> |
24
- * <a>DescribeGameSessions</a> |
25
- * <a>DescribeGameSessionDetails</a> |
26
- * <a>SearchGameSessions</a> |
27
- * <a>UpdateGameSession</a> |
28
- * <a>GetGameSessionLogUrl</a> |
29
- * <a>StartGameSessionPlacement</a> |
30
- * <a>DescribeGameSessionPlacement</a> |
31
- * <a>StopGameSessionPlacement</a> |
19
+ * <p>
32
20
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
33
21
  * </p>
34
22
  * @example
@@ -19,9 +19,7 @@ export interface GetInstanceAccessCommandOutput extends GetInstanceAccessOutput,
19
19
  * as part of the <code>GetInstanceAccess</code> request, as shown in one of the examples
20
20
  * for this operation. </p>
21
21
  * <p>To request access to a specific instance, specify the IDs of both the instance and the
22
- * fleet it belongs to. You can retrieve a fleet's instance IDs by calling <a>DescribeInstances</a>. If successful, an <a>InstanceAccess</a>
23
- * object is returned that contains the instance's IP address and a set of
24
- * credentials.</p>
22
+ * fleet it belongs to. You can retrieve a fleet's instance IDs by calling <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeInstances.html">DescribeInstances</a>. </p>
25
23
  * <p>
26
24
  * <b>Learn more</b>
27
25
  * </p>
@@ -33,14 +31,10 @@ export interface GetInstanceAccessCommandOutput extends GetInstanceAccessOutput,
33
31
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-creating-debug.html">Debug Fleet
34
32
  * Issues</a>
35
33
  * </p>
36
- *
37
- * <p>
34
+ * <p>
38
35
  * <b>Related actions</b>
39
36
  * </p>
40
37
  * <p>
41
- * <a>DescribeInstances</a> |
42
- * <a>GetInstanceAccess</a> |
43
- * <a>DescribeEC2InstanceLimits</a> |
44
38
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
45
39
  * </p>
46
40
  * @example
@@ -8,22 +8,16 @@ export interface ListAliasesCommandInput extends ListAliasesInput {
8
8
  export interface ListAliasesCommandOutput extends ListAliasesOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Retrieves all aliases for this Amazon Web Services account. You can filter the result set by
12
- * alias name and/or routing strategy type. Use the pagination parameters to retrieve
13
- * results in sequential pages.</p>
11
+ * <p>Retrieves all aliases for this Amazon Web Services account. You can filter the result set by alias
12
+ * name and/or routing strategy type. Use the pagination parameters to retrieve results in
13
+ * sequential pages.</p>
14
14
  * <note>
15
15
  * <p>Returned aliases are not listed in any particular order.</p>
16
16
  * </note>
17
- * <p>
17
+ * <p>
18
18
  * <b>Related actions</b>
19
19
  * </p>
20
20
  * <p>
21
- * <a>CreateAlias</a> |
22
- * <a>ListAliases</a> |
23
- * <a>DescribeAlias</a> |
24
- * <a>UpdateAlias</a> |
25
- * <a>DeleteAlias</a> |
26
- * <a>ResolveAlias</a> |
27
21
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
28
22
  * </p>
29
23
  * @example
@@ -19,18 +19,10 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea
19
19
  * <b>Learn more</b>
20
20
  * </p>
21
21
  * <p>
22
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-build-intro.html">
23
- * Upload a Custom Server Build</a>
22
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-build-intro.html"> Upload a Custom
23
+ * Server Build</a>
24
24
  * </p>
25
- * <p>
26
- * <b>Related actions</b>
27
- * </p>
28
- * <p>
29
- * <a>CreateBuild</a> |
30
- * <a>ListBuilds</a> |
31
- * <a>DescribeBuild</a> |
32
- * <a>UpdateBuild</a> |
33
- * <a>DeleteBuild</a> |
25
+ * <p>
34
26
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
35
27
  * </p>
36
28
  * @example
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { ListComputeInput, ListComputeOutput } from "../models/models_0";
6
+ export interface ListComputeCommandInput extends ListComputeInput {
7
+ }
8
+ export interface ListComputeCommandOutput extends ListComputeOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Retrieves all compute resources registered to a fleet in your Amazon Web Services account. You can filter the result set by location.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { GameLiftClient, ListComputeCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
16
+ * // const { GameLiftClient, ListComputeCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
17
+ * const client = new GameLiftClient(config);
18
+ * const command = new ListComputeCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ListComputeCommandInput} for command's `input` shape.
23
+ * @see {@link ListComputeCommandOutput} for command's `response` shape.
24
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class ListComputeCommand extends $Command<ListComputeCommandInput, ListComputeCommandOutput, GameLiftClientResolvedConfig> {
28
+ readonly input: ListComputeCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListComputeCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComputeCommandInput, ListComputeCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -8,11 +8,11 @@ export interface ListFleetsCommandInput extends ListFleetsInput {
8
8
  export interface ListFleetsCommandOutput extends ListFleetsOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Retrieves a collection of fleet resources in an Amazon Web Services Region. You can call this operation
12
- * to get fleets in a previously selected default Region (see <a href="https://docs.aws.amazon.com/credref/latest/refdocs/setting-global-region.html">https://docs.aws.amazon.com/credref/latest/refdocs/setting-global-region.html</a>or specify a Region in your
13
- * request. You can filter the result set to find only those fleets that are deployed with
14
- * a specific build or script. For fleets that have multiple locations, this operation
15
- * retrieves fleets based on their home Region only.</p>
11
+ * <p>Retrieves a collection of fleet resources in an Amazon Web Services Region. You can call this
12
+ * operation to get fleets in a previously selected default Region (see <a href="https://docs.aws.amazon.com/credref/latest/refdocs/setting-global-region.html">https://docs.aws.amazon.com/credref/latest/refdocs/setting-global-region.html</a>or
13
+ * specify a Region in your request. You can filter the result set to find only those
14
+ * fleets that are deployed with a specific build or script. For fleets that have multiple
15
+ * locations, this operation retrieves fleets based on their home Region only.</p>
16
16
  * <p>This operation can be used in the following ways: </p>
17
17
  * <ul>
18
18
  * <li>
@@ -34,26 +34,12 @@ export interface ListFleetsCommandOutput extends ListFleetsOutput, __MetadataBea
34
34
  * <note>
35
35
  * <p>Fleet resources are not listed in a particular order.</p>
36
36
  * </note>
37
- * <p>
37
+ * <p>
38
38
  * <b>Learn more</b>
39
39
  * </p>
40
- * <p>
41
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
42
- * </p>
43
- * <p>
44
- * <b>Related actions</b>
45
- * </p>
46
- * <p>
47
- * <a>CreateFleet</a> |
48
- * <a>UpdateFleetCapacity</a> |
49
- * <a>PutScalingPolicy</a> |
50
- * <a>DescribeEC2InstanceLimits</a> |
51
- * <a>DescribeFleetAttributes</a> |
52
- * <a>DescribeFleetLocationAttributes</a> |
53
- * <a>UpdateFleetAttributes</a> |
54
- * <a>StopFleetActions</a> |
55
- * <a>DeleteFleet</a> |
56
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
40
+ * <p>
41
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift
42
+ * fleets</a>
57
43
  * </p>
58
44
  * @example
59
45
  * Use a bare-bones client and the command you need to make an API call.
@@ -8,32 +8,7 @@ export interface ListGameServerGroupsCommandInput extends ListGameServerGroupsIn
8
8
  export interface ListGameServerGroupsCommandOutput extends ListGameServerGroupsOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>
12
- * <b>This operation is used with the GameLift FleetIQ solution and game server groups.</b>
13
- * </p>
14
- * <p>Retrieves information on all game servers groups that exist in the current Amazon Web Services
15
- * account for the selected Region. Use the pagination parameters to retrieve results in a
16
- * set of sequential segments. </p>
17
- * <p>
18
- * <b>Learn more</b>
19
- * </p>
20
- * <p>
21
- * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-intro.html">GameLift FleetIQ Guide</a>
22
- * </p>
23
- * <p>
24
- * <b>Related actions</b>
25
- * </p>
26
- * <p>
27
- * <a>CreateGameServerGroup</a> |
28
- * <a>ListGameServerGroups</a> |
29
- * <a>DescribeGameServerGroup</a> |
30
- * <a>UpdateGameServerGroup</a> |
31
- * <a>DeleteGameServerGroup</a> |
32
- * <a>ResumeGameServerGroup</a> |
33
- * <a>SuspendGameServerGroup</a> |
34
- * <a>DescribeGameServerInstances</a> |
35
- * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/reference-awssdk-fleetiq.html">All APIs by task</a>
36
- * </p>
11
+ * <p>Lists a game server groups.</p>
37
12
  * @example
38
13
  * Use a bare-bones client and the command you need to make an API call.
39
14
  * ```javascript
@@ -11,27 +11,17 @@ export interface ListGameServersCommandOutput extends ListGameServersOutput, __M
11
11
  * <p>
12
12
  * <b>This operation is used with the GameLift FleetIQ solution and game server groups.</b>
13
13
  * </p>
14
- * <p>Retrieves information on all game servers that are currently active in a specified
15
- * game server group. You can opt to sort the list by game server age. Use the
16
- * pagination parameters to retrieve results in a set of sequential segments. </p>
14
+ * <p>Retrieves information on all game
15
+ * servers that are currently active in a specified game server group. You can opt to sort
16
+ * the list by game server age. Use the pagination parameters to retrieve results in a set
17
+ * of sequential segments. </p>
17
18
  * <p>
18
19
  * <b>Learn more</b>
19
20
  * </p>
20
21
  * <p>
21
- * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-intro.html">GameLift FleetIQ Guide</a>
22
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-intro.html">GameLift FleetIQ
23
+ * Guide</a>
22
24
  * </p>
23
- * <p>
24
- * <b>Related actions</b>
25
- * </p>
26
- * <p>
27
- * <a>RegisterGameServer</a> |
28
- * <a>ListGameServers</a> |
29
- * <a>ClaimGameServer</a> |
30
- * <a>DescribeGameServer</a> |
31
- * <a>UpdateGameServer</a> |
32
- * <a>DeregisterGameServer</a> |
33
- * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/reference-awssdk-fleetiq.html">All APIs by task</a>
34
- * </p>
35
25
  * @example
36
26
  * Use a bare-bones client and the command you need to make an API call.
37
27
  * ```javascript
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { ListLocationsInput, ListLocationsOutput } from "../models/models_0";
6
+ export interface ListLocationsCommandInput extends ListLocationsInput {
7
+ }
8
+ export interface ListLocationsCommandOutput extends ListLocationsOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Lists all custom and Amazon Web Services locations.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { GameLiftClient, ListLocationsCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
16
+ * // const { GameLiftClient, ListLocationsCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
17
+ * const client = new GameLiftClient(config);
18
+ * const command = new ListLocationsCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ListLocationsCommandInput} for command's `input` shape.
23
+ * @see {@link ListLocationsCommandOutput} for command's `response` shape.
24
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class ListLocationsCommand extends $Command<ListLocationsCommandInput, ListLocationsCommandOutput, GameLiftClientResolvedConfig> {
28
+ readonly input: ListLocationsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListLocationsCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLocationsCommandInput, ListLocationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }