@aws-sdk/client-gamelift 3.975.0 → 3.978.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.
- package/dist-cjs/index.js +84 -55
- package/dist-es/GameLift.js +57 -1
- package/dist-types/GameLift.d.ts +190 -1
- package/dist-types/ts3.4/GameLift.d.ts +194 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -4805,6 +4805,60 @@ class ValidateMatchmakingRuleSetCommand extends smithyClient.Command
|
|
|
4805
4805
|
.build() {
|
|
4806
4806
|
}
|
|
4807
4807
|
|
|
4808
|
+
const paginateDescribeFleetAttributes = core.createPaginator(GameLiftClient, DescribeFleetAttributesCommand, "NextToken", "NextToken", "Limit");
|
|
4809
|
+
|
|
4810
|
+
const paginateDescribeFleetCapacity = core.createPaginator(GameLiftClient, DescribeFleetCapacityCommand, "NextToken", "NextToken", "Limit");
|
|
4811
|
+
|
|
4812
|
+
const paginateDescribeFleetEvents = core.createPaginator(GameLiftClient, DescribeFleetEventsCommand, "NextToken", "NextToken", "Limit");
|
|
4813
|
+
|
|
4814
|
+
const paginateDescribeFleetLocationAttributes = core.createPaginator(GameLiftClient, DescribeFleetLocationAttributesCommand, "NextToken", "NextToken", "Limit");
|
|
4815
|
+
|
|
4816
|
+
const paginateDescribeFleetUtilization = core.createPaginator(GameLiftClient, DescribeFleetUtilizationCommand, "NextToken", "NextToken", "Limit");
|
|
4817
|
+
|
|
4818
|
+
const paginateDescribeGameServerInstances = core.createPaginator(GameLiftClient, DescribeGameServerInstancesCommand, "NextToken", "NextToken", "Limit");
|
|
4819
|
+
|
|
4820
|
+
const paginateDescribeGameSessionDetails = core.createPaginator(GameLiftClient, DescribeGameSessionDetailsCommand, "NextToken", "NextToken", "Limit");
|
|
4821
|
+
|
|
4822
|
+
const paginateDescribeGameSessionQueues = core.createPaginator(GameLiftClient, DescribeGameSessionQueuesCommand, "NextToken", "NextToken", "Limit");
|
|
4823
|
+
|
|
4824
|
+
const paginateDescribeGameSessions = core.createPaginator(GameLiftClient, DescribeGameSessionsCommand, "NextToken", "NextToken", "Limit");
|
|
4825
|
+
|
|
4826
|
+
const paginateDescribeInstances = core.createPaginator(GameLiftClient, DescribeInstancesCommand, "NextToken", "NextToken", "Limit");
|
|
4827
|
+
|
|
4828
|
+
const paginateDescribeMatchmakingConfigurations = core.createPaginator(GameLiftClient, DescribeMatchmakingConfigurationsCommand, "NextToken", "NextToken", "Limit");
|
|
4829
|
+
|
|
4830
|
+
const paginateDescribeMatchmakingRuleSets = core.createPaginator(GameLiftClient, DescribeMatchmakingRuleSetsCommand, "NextToken", "NextToken", "Limit");
|
|
4831
|
+
|
|
4832
|
+
const paginateDescribePlayerSessions = core.createPaginator(GameLiftClient, DescribePlayerSessionsCommand, "NextToken", "NextToken", "Limit");
|
|
4833
|
+
|
|
4834
|
+
const paginateDescribeScalingPolicies = core.createPaginator(GameLiftClient, DescribeScalingPoliciesCommand, "NextToken", "NextToken", "Limit");
|
|
4835
|
+
|
|
4836
|
+
const paginateListAliases = core.createPaginator(GameLiftClient, ListAliasesCommand, "NextToken", "NextToken", "Limit");
|
|
4837
|
+
|
|
4838
|
+
const paginateListBuilds = core.createPaginator(GameLiftClient, ListBuildsCommand, "NextToken", "NextToken", "Limit");
|
|
4839
|
+
|
|
4840
|
+
const paginateListCompute = core.createPaginator(GameLiftClient, ListComputeCommand, "NextToken", "NextToken", "Limit");
|
|
4841
|
+
|
|
4842
|
+
const paginateListContainerFleets = core.createPaginator(GameLiftClient, ListContainerFleetsCommand, "NextToken", "NextToken", "Limit");
|
|
4843
|
+
|
|
4844
|
+
const paginateListContainerGroupDefinitions = core.createPaginator(GameLiftClient, ListContainerGroupDefinitionsCommand, "NextToken", "NextToken", "Limit");
|
|
4845
|
+
|
|
4846
|
+
const paginateListContainerGroupDefinitionVersions = core.createPaginator(GameLiftClient, ListContainerGroupDefinitionVersionsCommand, "NextToken", "NextToken", "Limit");
|
|
4847
|
+
|
|
4848
|
+
const paginateListFleetDeployments = core.createPaginator(GameLiftClient, ListFleetDeploymentsCommand, "NextToken", "NextToken", "Limit");
|
|
4849
|
+
|
|
4850
|
+
const paginateListFleets = core.createPaginator(GameLiftClient, ListFleetsCommand, "NextToken", "NextToken", "Limit");
|
|
4851
|
+
|
|
4852
|
+
const paginateListGameServerGroups = core.createPaginator(GameLiftClient, ListGameServerGroupsCommand, "NextToken", "NextToken", "Limit");
|
|
4853
|
+
|
|
4854
|
+
const paginateListGameServers = core.createPaginator(GameLiftClient, ListGameServersCommand, "NextToken", "NextToken", "Limit");
|
|
4855
|
+
|
|
4856
|
+
const paginateListLocations = core.createPaginator(GameLiftClient, ListLocationsCommand, "NextToken", "NextToken", "Limit");
|
|
4857
|
+
|
|
4858
|
+
const paginateListScripts = core.createPaginator(GameLiftClient, ListScriptsCommand, "NextToken", "NextToken", "Limit");
|
|
4859
|
+
|
|
4860
|
+
const paginateSearchGameSessions = core.createPaginator(GameLiftClient, SearchGameSessionsCommand, "NextToken", "NextToken", "Limit");
|
|
4861
|
+
|
|
4808
4862
|
const commands = {
|
|
4809
4863
|
AcceptMatchCommand,
|
|
4810
4864
|
ClaimGameServerCommand,
|
|
@@ -4925,63 +4979,38 @@ const commands = {
|
|
|
4925
4979
|
UpdateScriptCommand,
|
|
4926
4980
|
ValidateMatchmakingRuleSetCommand,
|
|
4927
4981
|
};
|
|
4982
|
+
const paginators = {
|
|
4983
|
+
paginateDescribeFleetAttributes,
|
|
4984
|
+
paginateDescribeFleetCapacity,
|
|
4985
|
+
paginateDescribeFleetEvents,
|
|
4986
|
+
paginateDescribeFleetLocationAttributes,
|
|
4987
|
+
paginateDescribeFleetUtilization,
|
|
4988
|
+
paginateDescribeGameServerInstances,
|
|
4989
|
+
paginateDescribeGameSessionDetails,
|
|
4990
|
+
paginateDescribeGameSessionQueues,
|
|
4991
|
+
paginateDescribeGameSessions,
|
|
4992
|
+
paginateDescribeInstances,
|
|
4993
|
+
paginateDescribeMatchmakingConfigurations,
|
|
4994
|
+
paginateDescribeMatchmakingRuleSets,
|
|
4995
|
+
paginateDescribePlayerSessions,
|
|
4996
|
+
paginateDescribeScalingPolicies,
|
|
4997
|
+
paginateListAliases,
|
|
4998
|
+
paginateListBuilds,
|
|
4999
|
+
paginateListCompute,
|
|
5000
|
+
paginateListContainerFleets,
|
|
5001
|
+
paginateListContainerGroupDefinitions,
|
|
5002
|
+
paginateListContainerGroupDefinitionVersions,
|
|
5003
|
+
paginateListFleetDeployments,
|
|
5004
|
+
paginateListFleets,
|
|
5005
|
+
paginateListGameServerGroups,
|
|
5006
|
+
paginateListGameServers,
|
|
5007
|
+
paginateListLocations,
|
|
5008
|
+
paginateListScripts,
|
|
5009
|
+
paginateSearchGameSessions,
|
|
5010
|
+
};
|
|
4928
5011
|
class GameLift extends GameLiftClient {
|
|
4929
5012
|
}
|
|
4930
|
-
smithyClient.createAggregatedClient(commands, GameLift);
|
|
4931
|
-
|
|
4932
|
-
const paginateDescribeFleetAttributes = core.createPaginator(GameLiftClient, DescribeFleetAttributesCommand, "NextToken", "NextToken", "Limit");
|
|
4933
|
-
|
|
4934
|
-
const paginateDescribeFleetCapacity = core.createPaginator(GameLiftClient, DescribeFleetCapacityCommand, "NextToken", "NextToken", "Limit");
|
|
4935
|
-
|
|
4936
|
-
const paginateDescribeFleetEvents = core.createPaginator(GameLiftClient, DescribeFleetEventsCommand, "NextToken", "NextToken", "Limit");
|
|
4937
|
-
|
|
4938
|
-
const paginateDescribeFleetLocationAttributes = core.createPaginator(GameLiftClient, DescribeFleetLocationAttributesCommand, "NextToken", "NextToken", "Limit");
|
|
4939
|
-
|
|
4940
|
-
const paginateDescribeFleetUtilization = core.createPaginator(GameLiftClient, DescribeFleetUtilizationCommand, "NextToken", "NextToken", "Limit");
|
|
4941
|
-
|
|
4942
|
-
const paginateDescribeGameServerInstances = core.createPaginator(GameLiftClient, DescribeGameServerInstancesCommand, "NextToken", "NextToken", "Limit");
|
|
4943
|
-
|
|
4944
|
-
const paginateDescribeGameSessionDetails = core.createPaginator(GameLiftClient, DescribeGameSessionDetailsCommand, "NextToken", "NextToken", "Limit");
|
|
4945
|
-
|
|
4946
|
-
const paginateDescribeGameSessionQueues = core.createPaginator(GameLiftClient, DescribeGameSessionQueuesCommand, "NextToken", "NextToken", "Limit");
|
|
4947
|
-
|
|
4948
|
-
const paginateDescribeGameSessions = core.createPaginator(GameLiftClient, DescribeGameSessionsCommand, "NextToken", "NextToken", "Limit");
|
|
4949
|
-
|
|
4950
|
-
const paginateDescribeInstances = core.createPaginator(GameLiftClient, DescribeInstancesCommand, "NextToken", "NextToken", "Limit");
|
|
4951
|
-
|
|
4952
|
-
const paginateDescribeMatchmakingConfigurations = core.createPaginator(GameLiftClient, DescribeMatchmakingConfigurationsCommand, "NextToken", "NextToken", "Limit");
|
|
4953
|
-
|
|
4954
|
-
const paginateDescribeMatchmakingRuleSets = core.createPaginator(GameLiftClient, DescribeMatchmakingRuleSetsCommand, "NextToken", "NextToken", "Limit");
|
|
4955
|
-
|
|
4956
|
-
const paginateDescribePlayerSessions = core.createPaginator(GameLiftClient, DescribePlayerSessionsCommand, "NextToken", "NextToken", "Limit");
|
|
4957
|
-
|
|
4958
|
-
const paginateDescribeScalingPolicies = core.createPaginator(GameLiftClient, DescribeScalingPoliciesCommand, "NextToken", "NextToken", "Limit");
|
|
4959
|
-
|
|
4960
|
-
const paginateListAliases = core.createPaginator(GameLiftClient, ListAliasesCommand, "NextToken", "NextToken", "Limit");
|
|
4961
|
-
|
|
4962
|
-
const paginateListBuilds = core.createPaginator(GameLiftClient, ListBuildsCommand, "NextToken", "NextToken", "Limit");
|
|
4963
|
-
|
|
4964
|
-
const paginateListCompute = core.createPaginator(GameLiftClient, ListComputeCommand, "NextToken", "NextToken", "Limit");
|
|
4965
|
-
|
|
4966
|
-
const paginateListContainerFleets = core.createPaginator(GameLiftClient, ListContainerFleetsCommand, "NextToken", "NextToken", "Limit");
|
|
4967
|
-
|
|
4968
|
-
const paginateListContainerGroupDefinitions = core.createPaginator(GameLiftClient, ListContainerGroupDefinitionsCommand, "NextToken", "NextToken", "Limit");
|
|
4969
|
-
|
|
4970
|
-
const paginateListContainerGroupDefinitionVersions = core.createPaginator(GameLiftClient, ListContainerGroupDefinitionVersionsCommand, "NextToken", "NextToken", "Limit");
|
|
4971
|
-
|
|
4972
|
-
const paginateListFleetDeployments = core.createPaginator(GameLiftClient, ListFleetDeploymentsCommand, "NextToken", "NextToken", "Limit");
|
|
4973
|
-
|
|
4974
|
-
const paginateListFleets = core.createPaginator(GameLiftClient, ListFleetsCommand, "NextToken", "NextToken", "Limit");
|
|
4975
|
-
|
|
4976
|
-
const paginateListGameServerGroups = core.createPaginator(GameLiftClient, ListGameServerGroupsCommand, "NextToken", "NextToken", "Limit");
|
|
4977
|
-
|
|
4978
|
-
const paginateListGameServers = core.createPaginator(GameLiftClient, ListGameServersCommand, "NextToken", "NextToken", "Limit");
|
|
4979
|
-
|
|
4980
|
-
const paginateListLocations = core.createPaginator(GameLiftClient, ListLocationsCommand, "NextToken", "NextToken", "Limit");
|
|
4981
|
-
|
|
4982
|
-
const paginateListScripts = core.createPaginator(GameLiftClient, ListScriptsCommand, "NextToken", "NextToken", "Limit");
|
|
4983
|
-
|
|
4984
|
-
const paginateSearchGameSessions = core.createPaginator(GameLiftClient, SearchGameSessionsCommand, "NextToken", "NextToken", "Limit");
|
|
5013
|
+
smithyClient.createAggregatedClient(commands, GameLift, { paginators });
|
|
4985
5014
|
|
|
4986
5015
|
const AcceptanceType = {
|
|
4987
5016
|
ACCEPT: "ACCEPT",
|
package/dist-es/GameLift.js
CHANGED
|
@@ -118,6 +118,33 @@ import { UpdateRuntimeConfigurationCommand, } from "./commands/UpdateRuntimeConf
|
|
|
118
118
|
import { UpdateScriptCommand, } from "./commands/UpdateScriptCommand";
|
|
119
119
|
import { ValidateMatchmakingRuleSetCommand, } from "./commands/ValidateMatchmakingRuleSetCommand";
|
|
120
120
|
import { GameLiftClient } from "./GameLiftClient";
|
|
121
|
+
import { paginateDescribeFleetAttributes } from "./pagination/DescribeFleetAttributesPaginator";
|
|
122
|
+
import { paginateDescribeFleetCapacity } from "./pagination/DescribeFleetCapacityPaginator";
|
|
123
|
+
import { paginateDescribeFleetEvents } from "./pagination/DescribeFleetEventsPaginator";
|
|
124
|
+
import { paginateDescribeFleetLocationAttributes } from "./pagination/DescribeFleetLocationAttributesPaginator";
|
|
125
|
+
import { paginateDescribeFleetUtilization } from "./pagination/DescribeFleetUtilizationPaginator";
|
|
126
|
+
import { paginateDescribeGameServerInstances } from "./pagination/DescribeGameServerInstancesPaginator";
|
|
127
|
+
import { paginateDescribeGameSessionDetails } from "./pagination/DescribeGameSessionDetailsPaginator";
|
|
128
|
+
import { paginateDescribeGameSessionQueues } from "./pagination/DescribeGameSessionQueuesPaginator";
|
|
129
|
+
import { paginateDescribeGameSessions } from "./pagination/DescribeGameSessionsPaginator";
|
|
130
|
+
import { paginateDescribeInstances } from "./pagination/DescribeInstancesPaginator";
|
|
131
|
+
import { paginateDescribeMatchmakingConfigurations } from "./pagination/DescribeMatchmakingConfigurationsPaginator";
|
|
132
|
+
import { paginateDescribeMatchmakingRuleSets } from "./pagination/DescribeMatchmakingRuleSetsPaginator";
|
|
133
|
+
import { paginateDescribePlayerSessions } from "./pagination/DescribePlayerSessionsPaginator";
|
|
134
|
+
import { paginateDescribeScalingPolicies } from "./pagination/DescribeScalingPoliciesPaginator";
|
|
135
|
+
import { paginateListAliases } from "./pagination/ListAliasesPaginator";
|
|
136
|
+
import { paginateListBuilds } from "./pagination/ListBuildsPaginator";
|
|
137
|
+
import { paginateListCompute } from "./pagination/ListComputePaginator";
|
|
138
|
+
import { paginateListContainerFleets } from "./pagination/ListContainerFleetsPaginator";
|
|
139
|
+
import { paginateListContainerGroupDefinitions } from "./pagination/ListContainerGroupDefinitionsPaginator";
|
|
140
|
+
import { paginateListContainerGroupDefinitionVersions, } from "./pagination/ListContainerGroupDefinitionVersionsPaginator";
|
|
141
|
+
import { paginateListFleetDeployments } from "./pagination/ListFleetDeploymentsPaginator";
|
|
142
|
+
import { paginateListFleets } from "./pagination/ListFleetsPaginator";
|
|
143
|
+
import { paginateListGameServerGroups } from "./pagination/ListGameServerGroupsPaginator";
|
|
144
|
+
import { paginateListGameServers } from "./pagination/ListGameServersPaginator";
|
|
145
|
+
import { paginateListLocations } from "./pagination/ListLocationsPaginator";
|
|
146
|
+
import { paginateListScripts } from "./pagination/ListScriptsPaginator";
|
|
147
|
+
import { paginateSearchGameSessions } from "./pagination/SearchGameSessionsPaginator";
|
|
121
148
|
const commands = {
|
|
122
149
|
AcceptMatchCommand,
|
|
123
150
|
ClaimGameServerCommand,
|
|
@@ -238,6 +265,35 @@ const commands = {
|
|
|
238
265
|
UpdateScriptCommand,
|
|
239
266
|
ValidateMatchmakingRuleSetCommand,
|
|
240
267
|
};
|
|
268
|
+
const paginators = {
|
|
269
|
+
paginateDescribeFleetAttributes,
|
|
270
|
+
paginateDescribeFleetCapacity,
|
|
271
|
+
paginateDescribeFleetEvents,
|
|
272
|
+
paginateDescribeFleetLocationAttributes,
|
|
273
|
+
paginateDescribeFleetUtilization,
|
|
274
|
+
paginateDescribeGameServerInstances,
|
|
275
|
+
paginateDescribeGameSessionDetails,
|
|
276
|
+
paginateDescribeGameSessionQueues,
|
|
277
|
+
paginateDescribeGameSessions,
|
|
278
|
+
paginateDescribeInstances,
|
|
279
|
+
paginateDescribeMatchmakingConfigurations,
|
|
280
|
+
paginateDescribeMatchmakingRuleSets,
|
|
281
|
+
paginateDescribePlayerSessions,
|
|
282
|
+
paginateDescribeScalingPolicies,
|
|
283
|
+
paginateListAliases,
|
|
284
|
+
paginateListBuilds,
|
|
285
|
+
paginateListCompute,
|
|
286
|
+
paginateListContainerFleets,
|
|
287
|
+
paginateListContainerGroupDefinitions,
|
|
288
|
+
paginateListContainerGroupDefinitionVersions,
|
|
289
|
+
paginateListFleetDeployments,
|
|
290
|
+
paginateListFleets,
|
|
291
|
+
paginateListGameServerGroups,
|
|
292
|
+
paginateListGameServers,
|
|
293
|
+
paginateListLocations,
|
|
294
|
+
paginateListScripts,
|
|
295
|
+
paginateSearchGameSessions,
|
|
296
|
+
};
|
|
241
297
|
export class GameLift extends GameLiftClient {
|
|
242
298
|
}
|
|
243
|
-
createAggregatedClient(commands, GameLift);
|
|
299
|
+
createAggregatedClient(commands, GameLift, { paginators });
|
package/dist-types/GameLift.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand";
|
|
3
3
|
import { ClaimGameServerCommandInput, ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
4
4
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
@@ -851,6 +851,195 @@ export interface GameLift {
|
|
|
851
851
|
validateMatchmakingRuleSet(args: ValidateMatchmakingRuleSetCommandInput, options?: __HttpHandlerOptions): Promise<ValidateMatchmakingRuleSetCommandOutput>;
|
|
852
852
|
validateMatchmakingRuleSet(args: ValidateMatchmakingRuleSetCommandInput, cb: (err: any, data?: ValidateMatchmakingRuleSetCommandOutput) => void): void;
|
|
853
853
|
validateMatchmakingRuleSet(args: ValidateMatchmakingRuleSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateMatchmakingRuleSetCommandOutput) => void): void;
|
|
854
|
+
/**
|
|
855
|
+
* @see {@link DescribeFleetAttributesCommand}
|
|
856
|
+
* @param args - command input.
|
|
857
|
+
* @param paginationConfig - optional pagination config.
|
|
858
|
+
* @returns AsyncIterable of {@link DescribeFleetAttributesCommandOutput}.
|
|
859
|
+
*/
|
|
860
|
+
paginateDescribeFleetAttributes(args?: DescribeFleetAttributesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFleetAttributesCommandOutput>;
|
|
861
|
+
/**
|
|
862
|
+
* @see {@link DescribeFleetCapacityCommand}
|
|
863
|
+
* @param args - command input.
|
|
864
|
+
* @param paginationConfig - optional pagination config.
|
|
865
|
+
* @returns AsyncIterable of {@link DescribeFleetCapacityCommandOutput}.
|
|
866
|
+
*/
|
|
867
|
+
paginateDescribeFleetCapacity(args?: DescribeFleetCapacityCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFleetCapacityCommandOutput>;
|
|
868
|
+
/**
|
|
869
|
+
* @see {@link DescribeFleetEventsCommand}
|
|
870
|
+
* @param args - command input.
|
|
871
|
+
* @param paginationConfig - optional pagination config.
|
|
872
|
+
* @returns AsyncIterable of {@link DescribeFleetEventsCommandOutput}.
|
|
873
|
+
*/
|
|
874
|
+
paginateDescribeFleetEvents(args: DescribeFleetEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFleetEventsCommandOutput>;
|
|
875
|
+
/**
|
|
876
|
+
* @see {@link DescribeFleetLocationAttributesCommand}
|
|
877
|
+
* @param args - command input.
|
|
878
|
+
* @param paginationConfig - optional pagination config.
|
|
879
|
+
* @returns AsyncIterable of {@link DescribeFleetLocationAttributesCommandOutput}.
|
|
880
|
+
*/
|
|
881
|
+
paginateDescribeFleetLocationAttributes(args: DescribeFleetLocationAttributesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFleetLocationAttributesCommandOutput>;
|
|
882
|
+
/**
|
|
883
|
+
* @see {@link DescribeFleetUtilizationCommand}
|
|
884
|
+
* @param args - command input.
|
|
885
|
+
* @param paginationConfig - optional pagination config.
|
|
886
|
+
* @returns AsyncIterable of {@link DescribeFleetUtilizationCommandOutput}.
|
|
887
|
+
*/
|
|
888
|
+
paginateDescribeFleetUtilization(args?: DescribeFleetUtilizationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFleetUtilizationCommandOutput>;
|
|
889
|
+
/**
|
|
890
|
+
* @see {@link DescribeGameServerInstancesCommand}
|
|
891
|
+
* @param args - command input.
|
|
892
|
+
* @param paginationConfig - optional pagination config.
|
|
893
|
+
* @returns AsyncIterable of {@link DescribeGameServerInstancesCommandOutput}.
|
|
894
|
+
*/
|
|
895
|
+
paginateDescribeGameServerInstances(args: DescribeGameServerInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeGameServerInstancesCommandOutput>;
|
|
896
|
+
/**
|
|
897
|
+
* @see {@link DescribeGameSessionDetailsCommand}
|
|
898
|
+
* @param args - command input.
|
|
899
|
+
* @param paginationConfig - optional pagination config.
|
|
900
|
+
* @returns AsyncIterable of {@link DescribeGameSessionDetailsCommandOutput}.
|
|
901
|
+
*/
|
|
902
|
+
paginateDescribeGameSessionDetails(args?: DescribeGameSessionDetailsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeGameSessionDetailsCommandOutput>;
|
|
903
|
+
/**
|
|
904
|
+
* @see {@link DescribeGameSessionQueuesCommand}
|
|
905
|
+
* @param args - command input.
|
|
906
|
+
* @param paginationConfig - optional pagination config.
|
|
907
|
+
* @returns AsyncIterable of {@link DescribeGameSessionQueuesCommandOutput}.
|
|
908
|
+
*/
|
|
909
|
+
paginateDescribeGameSessionQueues(args?: DescribeGameSessionQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeGameSessionQueuesCommandOutput>;
|
|
910
|
+
/**
|
|
911
|
+
* @see {@link DescribeGameSessionsCommand}
|
|
912
|
+
* @param args - command input.
|
|
913
|
+
* @param paginationConfig - optional pagination config.
|
|
914
|
+
* @returns AsyncIterable of {@link DescribeGameSessionsCommandOutput}.
|
|
915
|
+
*/
|
|
916
|
+
paginateDescribeGameSessions(args?: DescribeGameSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeGameSessionsCommandOutput>;
|
|
917
|
+
/**
|
|
918
|
+
* @see {@link DescribeInstancesCommand}
|
|
919
|
+
* @param args - command input.
|
|
920
|
+
* @param paginationConfig - optional pagination config.
|
|
921
|
+
* @returns AsyncIterable of {@link DescribeInstancesCommandOutput}.
|
|
922
|
+
*/
|
|
923
|
+
paginateDescribeInstances(args: DescribeInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstancesCommandOutput>;
|
|
924
|
+
/**
|
|
925
|
+
* @see {@link DescribeMatchmakingConfigurationsCommand}
|
|
926
|
+
* @param args - command input.
|
|
927
|
+
* @param paginationConfig - optional pagination config.
|
|
928
|
+
* @returns AsyncIterable of {@link DescribeMatchmakingConfigurationsCommandOutput}.
|
|
929
|
+
*/
|
|
930
|
+
paginateDescribeMatchmakingConfigurations(args?: DescribeMatchmakingConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeMatchmakingConfigurationsCommandOutput>;
|
|
931
|
+
/**
|
|
932
|
+
* @see {@link DescribeMatchmakingRuleSetsCommand}
|
|
933
|
+
* @param args - command input.
|
|
934
|
+
* @param paginationConfig - optional pagination config.
|
|
935
|
+
* @returns AsyncIterable of {@link DescribeMatchmakingRuleSetsCommandOutput}.
|
|
936
|
+
*/
|
|
937
|
+
paginateDescribeMatchmakingRuleSets(args?: DescribeMatchmakingRuleSetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeMatchmakingRuleSetsCommandOutput>;
|
|
938
|
+
/**
|
|
939
|
+
* @see {@link DescribePlayerSessionsCommand}
|
|
940
|
+
* @param args - command input.
|
|
941
|
+
* @param paginationConfig - optional pagination config.
|
|
942
|
+
* @returns AsyncIterable of {@link DescribePlayerSessionsCommandOutput}.
|
|
943
|
+
*/
|
|
944
|
+
paginateDescribePlayerSessions(args?: DescribePlayerSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribePlayerSessionsCommandOutput>;
|
|
945
|
+
/**
|
|
946
|
+
* @see {@link DescribeScalingPoliciesCommand}
|
|
947
|
+
* @param args - command input.
|
|
948
|
+
* @param paginationConfig - optional pagination config.
|
|
949
|
+
* @returns AsyncIterable of {@link DescribeScalingPoliciesCommandOutput}.
|
|
950
|
+
*/
|
|
951
|
+
paginateDescribeScalingPolicies(args: DescribeScalingPoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeScalingPoliciesCommandOutput>;
|
|
952
|
+
/**
|
|
953
|
+
* @see {@link ListAliasesCommand}
|
|
954
|
+
* @param args - command input.
|
|
955
|
+
* @param paginationConfig - optional pagination config.
|
|
956
|
+
* @returns AsyncIterable of {@link ListAliasesCommandOutput}.
|
|
957
|
+
*/
|
|
958
|
+
paginateListAliases(args?: ListAliasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAliasesCommandOutput>;
|
|
959
|
+
/**
|
|
960
|
+
* @see {@link ListBuildsCommand}
|
|
961
|
+
* @param args - command input.
|
|
962
|
+
* @param paginationConfig - optional pagination config.
|
|
963
|
+
* @returns AsyncIterable of {@link ListBuildsCommandOutput}.
|
|
964
|
+
*/
|
|
965
|
+
paginateListBuilds(args?: ListBuildsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBuildsCommandOutput>;
|
|
966
|
+
/**
|
|
967
|
+
* @see {@link ListComputeCommand}
|
|
968
|
+
* @param args - command input.
|
|
969
|
+
* @param paginationConfig - optional pagination config.
|
|
970
|
+
* @returns AsyncIterable of {@link ListComputeCommandOutput}.
|
|
971
|
+
*/
|
|
972
|
+
paginateListCompute(args: ListComputeCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListComputeCommandOutput>;
|
|
973
|
+
/**
|
|
974
|
+
* @see {@link ListContainerFleetsCommand}
|
|
975
|
+
* @param args - command input.
|
|
976
|
+
* @param paginationConfig - optional pagination config.
|
|
977
|
+
* @returns AsyncIterable of {@link ListContainerFleetsCommandOutput}.
|
|
978
|
+
*/
|
|
979
|
+
paginateListContainerFleets(args?: ListContainerFleetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContainerFleetsCommandOutput>;
|
|
980
|
+
/**
|
|
981
|
+
* @see {@link ListContainerGroupDefinitionsCommand}
|
|
982
|
+
* @param args - command input.
|
|
983
|
+
* @param paginationConfig - optional pagination config.
|
|
984
|
+
* @returns AsyncIterable of {@link ListContainerGroupDefinitionsCommandOutput}.
|
|
985
|
+
*/
|
|
986
|
+
paginateListContainerGroupDefinitions(args?: ListContainerGroupDefinitionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContainerGroupDefinitionsCommandOutput>;
|
|
987
|
+
/**
|
|
988
|
+
* @see {@link ListContainerGroupDefinitionVersionsCommand}
|
|
989
|
+
* @param args - command input.
|
|
990
|
+
* @param paginationConfig - optional pagination config.
|
|
991
|
+
* @returns AsyncIterable of {@link ListContainerGroupDefinitionVersionsCommandOutput}.
|
|
992
|
+
*/
|
|
993
|
+
paginateListContainerGroupDefinitionVersions(args: ListContainerGroupDefinitionVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContainerGroupDefinitionVersionsCommandOutput>;
|
|
994
|
+
/**
|
|
995
|
+
* @see {@link ListFleetDeploymentsCommand}
|
|
996
|
+
* @param args - command input.
|
|
997
|
+
* @param paginationConfig - optional pagination config.
|
|
998
|
+
* @returns AsyncIterable of {@link ListFleetDeploymentsCommandOutput}.
|
|
999
|
+
*/
|
|
1000
|
+
paginateListFleetDeployments(args?: ListFleetDeploymentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFleetDeploymentsCommandOutput>;
|
|
1001
|
+
/**
|
|
1002
|
+
* @see {@link ListFleetsCommand}
|
|
1003
|
+
* @param args - command input.
|
|
1004
|
+
* @param paginationConfig - optional pagination config.
|
|
1005
|
+
* @returns AsyncIterable of {@link ListFleetsCommandOutput}.
|
|
1006
|
+
*/
|
|
1007
|
+
paginateListFleets(args?: ListFleetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFleetsCommandOutput>;
|
|
1008
|
+
/**
|
|
1009
|
+
* @see {@link ListGameServerGroupsCommand}
|
|
1010
|
+
* @param args - command input.
|
|
1011
|
+
* @param paginationConfig - optional pagination config.
|
|
1012
|
+
* @returns AsyncIterable of {@link ListGameServerGroupsCommandOutput}.
|
|
1013
|
+
*/
|
|
1014
|
+
paginateListGameServerGroups(args?: ListGameServerGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGameServerGroupsCommandOutput>;
|
|
1015
|
+
/**
|
|
1016
|
+
* @see {@link ListGameServersCommand}
|
|
1017
|
+
* @param args - command input.
|
|
1018
|
+
* @param paginationConfig - optional pagination config.
|
|
1019
|
+
* @returns AsyncIterable of {@link ListGameServersCommandOutput}.
|
|
1020
|
+
*/
|
|
1021
|
+
paginateListGameServers(args: ListGameServersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGameServersCommandOutput>;
|
|
1022
|
+
/**
|
|
1023
|
+
* @see {@link ListLocationsCommand}
|
|
1024
|
+
* @param args - command input.
|
|
1025
|
+
* @param paginationConfig - optional pagination config.
|
|
1026
|
+
* @returns AsyncIterable of {@link ListLocationsCommandOutput}.
|
|
1027
|
+
*/
|
|
1028
|
+
paginateListLocations(args?: ListLocationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLocationsCommandOutput>;
|
|
1029
|
+
/**
|
|
1030
|
+
* @see {@link ListScriptsCommand}
|
|
1031
|
+
* @param args - command input.
|
|
1032
|
+
* @param paginationConfig - optional pagination config.
|
|
1033
|
+
* @returns AsyncIterable of {@link ListScriptsCommandOutput}.
|
|
1034
|
+
*/
|
|
1035
|
+
paginateListScripts(args?: ListScriptsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListScriptsCommandOutput>;
|
|
1036
|
+
/**
|
|
1037
|
+
* @see {@link SearchGameSessionsCommand}
|
|
1038
|
+
* @param args - command input.
|
|
1039
|
+
* @param paginationConfig - optional pagination config.
|
|
1040
|
+
* @returns AsyncIterable of {@link SearchGameSessionsCommandOutput}.
|
|
1041
|
+
*/
|
|
1042
|
+
paginateSearchGameSessions(args?: SearchGameSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchGameSessionsCommandOutput>;
|
|
854
1043
|
}
|
|
855
1044
|
/**
|
|
856
1045
|
* <p>Amazon GameLift Servers provides solutions for hosting session-based multiplayer game servers in the
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AcceptMatchCommandInput,
|
|
4
8
|
AcceptMatchCommandOutput,
|
|
@@ -2043,5 +2047,194 @@ export interface GameLift {
|
|
|
2043
2047
|
options: __HttpHandlerOptions,
|
|
2044
2048
|
cb: (err: any, data?: ValidateMatchmakingRuleSetCommandOutput) => void
|
|
2045
2049
|
): void;
|
|
2050
|
+
paginateDescribeFleetAttributes(
|
|
2051
|
+
args?: DescribeFleetAttributesCommandInput,
|
|
2052
|
+
paginationConfig?: Pick<
|
|
2053
|
+
PaginationConfiguration,
|
|
2054
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2055
|
+
>
|
|
2056
|
+
): Paginator<DescribeFleetAttributesCommandOutput>;
|
|
2057
|
+
paginateDescribeFleetCapacity(
|
|
2058
|
+
args?: DescribeFleetCapacityCommandInput,
|
|
2059
|
+
paginationConfig?: Pick<
|
|
2060
|
+
PaginationConfiguration,
|
|
2061
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2062
|
+
>
|
|
2063
|
+
): Paginator<DescribeFleetCapacityCommandOutput>;
|
|
2064
|
+
paginateDescribeFleetEvents(
|
|
2065
|
+
args: DescribeFleetEventsCommandInput,
|
|
2066
|
+
paginationConfig?: Pick<
|
|
2067
|
+
PaginationConfiguration,
|
|
2068
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2069
|
+
>
|
|
2070
|
+
): Paginator<DescribeFleetEventsCommandOutput>;
|
|
2071
|
+
paginateDescribeFleetLocationAttributes(
|
|
2072
|
+
args: DescribeFleetLocationAttributesCommandInput,
|
|
2073
|
+
paginationConfig?: Pick<
|
|
2074
|
+
PaginationConfiguration,
|
|
2075
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2076
|
+
>
|
|
2077
|
+
): Paginator<DescribeFleetLocationAttributesCommandOutput>;
|
|
2078
|
+
paginateDescribeFleetUtilization(
|
|
2079
|
+
args?: DescribeFleetUtilizationCommandInput,
|
|
2080
|
+
paginationConfig?: Pick<
|
|
2081
|
+
PaginationConfiguration,
|
|
2082
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2083
|
+
>
|
|
2084
|
+
): Paginator<DescribeFleetUtilizationCommandOutput>;
|
|
2085
|
+
paginateDescribeGameServerInstances(
|
|
2086
|
+
args: DescribeGameServerInstancesCommandInput,
|
|
2087
|
+
paginationConfig?: Pick<
|
|
2088
|
+
PaginationConfiguration,
|
|
2089
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2090
|
+
>
|
|
2091
|
+
): Paginator<DescribeGameServerInstancesCommandOutput>;
|
|
2092
|
+
paginateDescribeGameSessionDetails(
|
|
2093
|
+
args?: DescribeGameSessionDetailsCommandInput,
|
|
2094
|
+
paginationConfig?: Pick<
|
|
2095
|
+
PaginationConfiguration,
|
|
2096
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2097
|
+
>
|
|
2098
|
+
): Paginator<DescribeGameSessionDetailsCommandOutput>;
|
|
2099
|
+
paginateDescribeGameSessionQueues(
|
|
2100
|
+
args?: DescribeGameSessionQueuesCommandInput,
|
|
2101
|
+
paginationConfig?: Pick<
|
|
2102
|
+
PaginationConfiguration,
|
|
2103
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2104
|
+
>
|
|
2105
|
+
): Paginator<DescribeGameSessionQueuesCommandOutput>;
|
|
2106
|
+
paginateDescribeGameSessions(
|
|
2107
|
+
args?: DescribeGameSessionsCommandInput,
|
|
2108
|
+
paginationConfig?: Pick<
|
|
2109
|
+
PaginationConfiguration,
|
|
2110
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2111
|
+
>
|
|
2112
|
+
): Paginator<DescribeGameSessionsCommandOutput>;
|
|
2113
|
+
paginateDescribeInstances(
|
|
2114
|
+
args: DescribeInstancesCommandInput,
|
|
2115
|
+
paginationConfig?: Pick<
|
|
2116
|
+
PaginationConfiguration,
|
|
2117
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2118
|
+
>
|
|
2119
|
+
): Paginator<DescribeInstancesCommandOutput>;
|
|
2120
|
+
paginateDescribeMatchmakingConfigurations(
|
|
2121
|
+
args?: DescribeMatchmakingConfigurationsCommandInput,
|
|
2122
|
+
paginationConfig?: Pick<
|
|
2123
|
+
PaginationConfiguration,
|
|
2124
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2125
|
+
>
|
|
2126
|
+
): Paginator<DescribeMatchmakingConfigurationsCommandOutput>;
|
|
2127
|
+
paginateDescribeMatchmakingRuleSets(
|
|
2128
|
+
args?: DescribeMatchmakingRuleSetsCommandInput,
|
|
2129
|
+
paginationConfig?: Pick<
|
|
2130
|
+
PaginationConfiguration,
|
|
2131
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2132
|
+
>
|
|
2133
|
+
): Paginator<DescribeMatchmakingRuleSetsCommandOutput>;
|
|
2134
|
+
paginateDescribePlayerSessions(
|
|
2135
|
+
args?: DescribePlayerSessionsCommandInput,
|
|
2136
|
+
paginationConfig?: Pick<
|
|
2137
|
+
PaginationConfiguration,
|
|
2138
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2139
|
+
>
|
|
2140
|
+
): Paginator<DescribePlayerSessionsCommandOutput>;
|
|
2141
|
+
paginateDescribeScalingPolicies(
|
|
2142
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
2143
|
+
paginationConfig?: Pick<
|
|
2144
|
+
PaginationConfiguration,
|
|
2145
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2146
|
+
>
|
|
2147
|
+
): Paginator<DescribeScalingPoliciesCommandOutput>;
|
|
2148
|
+
paginateListAliases(
|
|
2149
|
+
args?: ListAliasesCommandInput,
|
|
2150
|
+
paginationConfig?: Pick<
|
|
2151
|
+
PaginationConfiguration,
|
|
2152
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2153
|
+
>
|
|
2154
|
+
): Paginator<ListAliasesCommandOutput>;
|
|
2155
|
+
paginateListBuilds(
|
|
2156
|
+
args?: ListBuildsCommandInput,
|
|
2157
|
+
paginationConfig?: Pick<
|
|
2158
|
+
PaginationConfiguration,
|
|
2159
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2160
|
+
>
|
|
2161
|
+
): Paginator<ListBuildsCommandOutput>;
|
|
2162
|
+
paginateListCompute(
|
|
2163
|
+
args: ListComputeCommandInput,
|
|
2164
|
+
paginationConfig?: Pick<
|
|
2165
|
+
PaginationConfiguration,
|
|
2166
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2167
|
+
>
|
|
2168
|
+
): Paginator<ListComputeCommandOutput>;
|
|
2169
|
+
paginateListContainerFleets(
|
|
2170
|
+
args?: ListContainerFleetsCommandInput,
|
|
2171
|
+
paginationConfig?: Pick<
|
|
2172
|
+
PaginationConfiguration,
|
|
2173
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2174
|
+
>
|
|
2175
|
+
): Paginator<ListContainerFleetsCommandOutput>;
|
|
2176
|
+
paginateListContainerGroupDefinitions(
|
|
2177
|
+
args?: ListContainerGroupDefinitionsCommandInput,
|
|
2178
|
+
paginationConfig?: Pick<
|
|
2179
|
+
PaginationConfiguration,
|
|
2180
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2181
|
+
>
|
|
2182
|
+
): Paginator<ListContainerGroupDefinitionsCommandOutput>;
|
|
2183
|
+
paginateListContainerGroupDefinitionVersions(
|
|
2184
|
+
args: ListContainerGroupDefinitionVersionsCommandInput,
|
|
2185
|
+
paginationConfig?: Pick<
|
|
2186
|
+
PaginationConfiguration,
|
|
2187
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2188
|
+
>
|
|
2189
|
+
): Paginator<ListContainerGroupDefinitionVersionsCommandOutput>;
|
|
2190
|
+
paginateListFleetDeployments(
|
|
2191
|
+
args?: ListFleetDeploymentsCommandInput,
|
|
2192
|
+
paginationConfig?: Pick<
|
|
2193
|
+
PaginationConfiguration,
|
|
2194
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2195
|
+
>
|
|
2196
|
+
): Paginator<ListFleetDeploymentsCommandOutput>;
|
|
2197
|
+
paginateListFleets(
|
|
2198
|
+
args?: ListFleetsCommandInput,
|
|
2199
|
+
paginationConfig?: Pick<
|
|
2200
|
+
PaginationConfiguration,
|
|
2201
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2202
|
+
>
|
|
2203
|
+
): Paginator<ListFleetsCommandOutput>;
|
|
2204
|
+
paginateListGameServerGroups(
|
|
2205
|
+
args?: ListGameServerGroupsCommandInput,
|
|
2206
|
+
paginationConfig?: Pick<
|
|
2207
|
+
PaginationConfiguration,
|
|
2208
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2209
|
+
>
|
|
2210
|
+
): Paginator<ListGameServerGroupsCommandOutput>;
|
|
2211
|
+
paginateListGameServers(
|
|
2212
|
+
args: ListGameServersCommandInput,
|
|
2213
|
+
paginationConfig?: Pick<
|
|
2214
|
+
PaginationConfiguration,
|
|
2215
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2216
|
+
>
|
|
2217
|
+
): Paginator<ListGameServersCommandOutput>;
|
|
2218
|
+
paginateListLocations(
|
|
2219
|
+
args?: ListLocationsCommandInput,
|
|
2220
|
+
paginationConfig?: Pick<
|
|
2221
|
+
PaginationConfiguration,
|
|
2222
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2223
|
+
>
|
|
2224
|
+
): Paginator<ListLocationsCommandOutput>;
|
|
2225
|
+
paginateListScripts(
|
|
2226
|
+
args?: ListScriptsCommandInput,
|
|
2227
|
+
paginationConfig?: Pick<
|
|
2228
|
+
PaginationConfiguration,
|
|
2229
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2230
|
+
>
|
|
2231
|
+
): Paginator<ListScriptsCommandOutput>;
|
|
2232
|
+
paginateSearchGameSessions(
|
|
2233
|
+
args?: SearchGameSessionsCommandInput,
|
|
2234
|
+
paginationConfig?: Pick<
|
|
2235
|
+
PaginationConfiguration,
|
|
2236
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2237
|
+
>
|
|
2238
|
+
): Paginator<SearchGameSessionsCommandOutput>;
|
|
2046
2239
|
}
|
|
2047
2240
|
export declare class GameLift extends GameLiftClient implements GameLift {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-gamelift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Gamelift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-gamelift",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
26
|
+
"@aws-sdk/core": "^3.973.4",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
33
|
+
"@aws-sdk/types": "^3.973.1",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.6",
|
|
38
|
-
"@smithy/core": "^3.
|
|
38
|
+
"@smithy/core": "^3.22.0",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
40
40
|
"@smithy/hash-node": "^4.2.8",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.9",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.8",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.8",
|
|
48
48
|
"@smithy/node-http-handler": "^4.4.8",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.8",
|
|
50
|
-
"@smithy/smithy-client": "^4.
|
|
50
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
51
51
|
"@smithy/types": "^4.12.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.8",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
58
58
|
"@smithy/util-endpoints": "^3.2.8",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.8",
|
|
60
60
|
"@smithy/util-retry": "^4.2.8",
|