@aws-sdk/client-gamelift 3.1018.0 → 3.1020.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/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/GameLift.js +15 -15
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-types/GameLift.d.ts +119 -119
- package/dist-types/GameLiftClient.d.ts +122 -122
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +14 -2
- package/dist-types/models/models_1.d.ts +2 -2
- package/dist-types/pagination/DescribeFleetAttributesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetCapacityPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetLocationAttributesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeFleetUtilizationPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameServerInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameSessionDetailsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameSessionQueuesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeGameSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeMatchmakingConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeMatchmakingRuleSetsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePlayerSessionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeScalingPoliciesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBuildsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListComputePaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerFleetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerGroupDefinitionVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerGroupDefinitionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFleetDeploymentsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFleetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGameServerGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGameServersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLocationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListScriptsPaginator.d.ts +1 -1
- package/dist-types/pagination/SearchGameSessionsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/GameLiftClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +13 -13
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultGameLiftHttpAuthSchemeProvider = exports.defaultGameLiftHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultGameLiftHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultGameLiftHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultGameLiftHttpAuthSchemeProvider = defaultGameLiftHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/GameLift.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
|
-
import { AcceptMatchCommand } from "./commands/AcceptMatchCommand";
|
|
2
|
+
import { AcceptMatchCommand, } from "./commands/AcceptMatchCommand";
|
|
3
3
|
import { ClaimGameServerCommand, } from "./commands/ClaimGameServerCommand";
|
|
4
|
-
import { CreateAliasCommand } from "./commands/CreateAliasCommand";
|
|
5
|
-
import { CreateBuildCommand } from "./commands/CreateBuildCommand";
|
|
4
|
+
import { CreateAliasCommand, } from "./commands/CreateAliasCommand";
|
|
5
|
+
import { CreateBuildCommand, } from "./commands/CreateBuildCommand";
|
|
6
6
|
import { CreateContainerFleetCommand, } from "./commands/CreateContainerFleetCommand";
|
|
7
7
|
import { CreateContainerGroupDefinitionCommand, } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
8
|
-
import { CreateFleetCommand } from "./commands/CreateFleetCommand";
|
|
8
|
+
import { CreateFleetCommand, } from "./commands/CreateFleetCommand";
|
|
9
9
|
import { CreateFleetLocationsCommand, } from "./commands/CreateFleetLocationsCommand";
|
|
10
10
|
import { CreateGameServerGroupCommand, } from "./commands/CreateGameServerGroupCommand";
|
|
11
11
|
import { CreateGameSessionCommand, } from "./commands/CreateGameSessionCommand";
|
|
@@ -18,11 +18,11 @@ import { CreatePlayerSessionsCommand, } from "./commands/CreatePlayerSessionsCom
|
|
|
18
18
|
import { CreateScriptCommand, } from "./commands/CreateScriptCommand";
|
|
19
19
|
import { CreateVpcPeeringAuthorizationCommand, } from "./commands/CreateVpcPeeringAuthorizationCommand";
|
|
20
20
|
import { CreateVpcPeeringConnectionCommand, } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
21
|
-
import { DeleteAliasCommand } from "./commands/DeleteAliasCommand";
|
|
22
|
-
import { DeleteBuildCommand } from "./commands/DeleteBuildCommand";
|
|
21
|
+
import { DeleteAliasCommand, } from "./commands/DeleteAliasCommand";
|
|
22
|
+
import { DeleteBuildCommand, } from "./commands/DeleteBuildCommand";
|
|
23
23
|
import { DeleteContainerFleetCommand, } from "./commands/DeleteContainerFleetCommand";
|
|
24
24
|
import { DeleteContainerGroupDefinitionCommand, } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
25
|
-
import { DeleteFleetCommand } from "./commands/DeleteFleetCommand";
|
|
25
|
+
import { DeleteFleetCommand, } from "./commands/DeleteFleetCommand";
|
|
26
26
|
import { DeleteFleetLocationsCommand, } from "./commands/DeleteFleetLocationsCommand";
|
|
27
27
|
import { DeleteGameServerGroupCommand, } from "./commands/DeleteGameServerGroupCommand";
|
|
28
28
|
import { DeleteGameSessionQueueCommand, } from "./commands/DeleteGameSessionQueueCommand";
|
|
@@ -72,18 +72,18 @@ import { GetComputeAuthTokenCommand, } from "./commands/GetComputeAuthTokenComma
|
|
|
72
72
|
import { GetGameSessionLogUrlCommand, } from "./commands/GetGameSessionLogUrlCommand";
|
|
73
73
|
import { GetInstanceAccessCommand, } from "./commands/GetInstanceAccessCommand";
|
|
74
74
|
import { GetPlayerConnectionDetailsCommand, } from "./commands/GetPlayerConnectionDetailsCommand";
|
|
75
|
-
import { ListAliasesCommand } from "./commands/ListAliasesCommand";
|
|
76
|
-
import { ListBuildsCommand } from "./commands/ListBuildsCommand";
|
|
77
|
-
import { ListComputeCommand } from "./commands/ListComputeCommand";
|
|
75
|
+
import { ListAliasesCommand, } from "./commands/ListAliasesCommand";
|
|
76
|
+
import { ListBuildsCommand, } from "./commands/ListBuildsCommand";
|
|
77
|
+
import { ListComputeCommand, } from "./commands/ListComputeCommand";
|
|
78
78
|
import { ListContainerFleetsCommand, } from "./commands/ListContainerFleetsCommand";
|
|
79
79
|
import { ListContainerGroupDefinitionsCommand, } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
80
80
|
import { ListContainerGroupDefinitionVersionsCommand, } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
81
81
|
import { ListFleetDeploymentsCommand, } from "./commands/ListFleetDeploymentsCommand";
|
|
82
|
-
import { ListFleetsCommand } from "./commands/ListFleetsCommand";
|
|
82
|
+
import { ListFleetsCommand, } from "./commands/ListFleetsCommand";
|
|
83
83
|
import { ListGameServerGroupsCommand, } from "./commands/ListGameServerGroupsCommand";
|
|
84
84
|
import { ListGameServersCommand, } from "./commands/ListGameServersCommand";
|
|
85
85
|
import { ListLocationsCommand, } from "./commands/ListLocationsCommand";
|
|
86
|
-
import { ListScriptsCommand } from "./commands/ListScriptsCommand";
|
|
86
|
+
import { ListScriptsCommand, } from "./commands/ListScriptsCommand";
|
|
87
87
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
88
88
|
import { PutScalingPolicyCommand, } from "./commands/PutScalingPolicyCommand";
|
|
89
89
|
import { RegisterComputeCommand, } from "./commands/RegisterComputeCommand";
|
|
@@ -100,11 +100,11 @@ import { StopFleetActionsCommand, } from "./commands/StopFleetActionsCommand";
|
|
|
100
100
|
import { StopGameSessionPlacementCommand, } from "./commands/StopGameSessionPlacementCommand";
|
|
101
101
|
import { StopMatchmakingCommand, } from "./commands/StopMatchmakingCommand";
|
|
102
102
|
import { SuspendGameServerGroupCommand, } from "./commands/SuspendGameServerGroupCommand";
|
|
103
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
103
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
104
104
|
import { TerminateGameSessionCommand, } from "./commands/TerminateGameSessionCommand";
|
|
105
105
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
106
|
-
import { UpdateAliasCommand } from "./commands/UpdateAliasCommand";
|
|
107
|
-
import { UpdateBuildCommand } from "./commands/UpdateBuildCommand";
|
|
106
|
+
import { UpdateAliasCommand, } from "./commands/UpdateAliasCommand";
|
|
107
|
+
import { UpdateBuildCommand, } from "./commands/UpdateBuildCommand";
|
|
108
108
|
import { UpdateContainerFleetCommand, } from "./commands/UpdateContainerFleetCommand";
|
|
109
109
|
import { UpdateContainerGroupDefinitionCommand, } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
110
110
|
import { UpdateFleetAttributesCommand, } from "./commands/UpdateFleetAttributesCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultGameLiftHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
package/dist-types/GameLift.d.ts
CHANGED
|
@@ -1,123 +1,123 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand";
|
|
3
|
-
import { ClaimGameServerCommandInput, ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
4
|
-
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
5
|
-
import { CreateBuildCommandInput, CreateBuildCommandOutput } from "./commands/CreateBuildCommand";
|
|
6
|
-
import { CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput } from "./commands/CreateContainerFleetCommand";
|
|
7
|
-
import { CreateContainerGroupDefinitionCommandInput, CreateContainerGroupDefinitionCommandOutput } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
8
|
-
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
9
|
-
import { CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput } from "./commands/CreateFleetLocationsCommand";
|
|
10
|
-
import { CreateGameServerGroupCommandInput, CreateGameServerGroupCommandOutput } from "./commands/CreateGameServerGroupCommand";
|
|
11
|
-
import { CreateGameSessionCommandInput, CreateGameSessionCommandOutput } from "./commands/CreateGameSessionCommand";
|
|
12
|
-
import { CreateGameSessionQueueCommandInput, CreateGameSessionQueueCommandOutput } from "./commands/CreateGameSessionQueueCommand";
|
|
13
|
-
import { CreateLocationCommandInput, CreateLocationCommandOutput } from "./commands/CreateLocationCommand";
|
|
14
|
-
import { CreateMatchmakingConfigurationCommandInput, CreateMatchmakingConfigurationCommandOutput } from "./commands/CreateMatchmakingConfigurationCommand";
|
|
15
|
-
import { CreateMatchmakingRuleSetCommandInput, CreateMatchmakingRuleSetCommandOutput } from "./commands/CreateMatchmakingRuleSetCommand";
|
|
16
|
-
import { CreatePlayerSessionCommandInput, CreatePlayerSessionCommandOutput } from "./commands/CreatePlayerSessionCommand";
|
|
17
|
-
import { CreatePlayerSessionsCommandInput, CreatePlayerSessionsCommandOutput } from "./commands/CreatePlayerSessionsCommand";
|
|
18
|
-
import { CreateScriptCommandInput, CreateScriptCommandOutput } from "./commands/CreateScriptCommand";
|
|
19
|
-
import { CreateVpcPeeringAuthorizationCommandInput, CreateVpcPeeringAuthorizationCommandOutput } from "./commands/CreateVpcPeeringAuthorizationCommand";
|
|
20
|
-
import { CreateVpcPeeringConnectionCommandInput, CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
21
|
-
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
22
|
-
import { DeleteBuildCommandInput, DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand";
|
|
23
|
-
import { DeleteContainerFleetCommandInput, DeleteContainerFleetCommandOutput } from "./commands/DeleteContainerFleetCommand";
|
|
24
|
-
import { DeleteContainerGroupDefinitionCommandInput, DeleteContainerGroupDefinitionCommandOutput } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
25
|
-
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
26
|
-
import { DeleteFleetLocationsCommandInput, DeleteFleetLocationsCommandOutput } from "./commands/DeleteFleetLocationsCommand";
|
|
27
|
-
import { DeleteGameServerGroupCommandInput, DeleteGameServerGroupCommandOutput } from "./commands/DeleteGameServerGroupCommand";
|
|
28
|
-
import { DeleteGameSessionQueueCommandInput, DeleteGameSessionQueueCommandOutput } from "./commands/DeleteGameSessionQueueCommand";
|
|
29
|
-
import { DeleteLocationCommandInput, DeleteLocationCommandOutput } from "./commands/DeleteLocationCommand";
|
|
30
|
-
import { DeleteMatchmakingConfigurationCommandInput, DeleteMatchmakingConfigurationCommandOutput } from "./commands/DeleteMatchmakingConfigurationCommand";
|
|
31
|
-
import { DeleteMatchmakingRuleSetCommandInput, DeleteMatchmakingRuleSetCommandOutput } from "./commands/DeleteMatchmakingRuleSetCommand";
|
|
32
|
-
import { DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput } from "./commands/DeleteScalingPolicyCommand";
|
|
33
|
-
import { DeleteScriptCommandInput, DeleteScriptCommandOutput } from "./commands/DeleteScriptCommand";
|
|
34
|
-
import { DeleteVpcPeeringAuthorizationCommandInput, DeleteVpcPeeringAuthorizationCommandOutput } from "./commands/DeleteVpcPeeringAuthorizationCommand";
|
|
35
|
-
import { DeleteVpcPeeringConnectionCommandInput, DeleteVpcPeeringConnectionCommandOutput } from "./commands/DeleteVpcPeeringConnectionCommand";
|
|
36
|
-
import { DeregisterComputeCommandInput, DeregisterComputeCommandOutput } from "./commands/DeregisterComputeCommand";
|
|
37
|
-
import { DeregisterGameServerCommandInput, DeregisterGameServerCommandOutput } from "./commands/DeregisterGameServerCommand";
|
|
38
|
-
import { DescribeAliasCommandInput, DescribeAliasCommandOutput } from "./commands/DescribeAliasCommand";
|
|
39
|
-
import { DescribeBuildCommandInput, DescribeBuildCommandOutput } from "./commands/DescribeBuildCommand";
|
|
40
|
-
import { DescribeComputeCommandInput, DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
41
|
-
import { DescribeContainerFleetCommandInput, DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
42
|
-
import { DescribeContainerGroupDefinitionCommandInput, DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
43
|
-
import { DescribeEC2InstanceLimitsCommandInput, DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
44
|
-
import { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
45
|
-
import { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
46
|
-
import { DescribeFleetDeploymentCommandInput, DescribeFleetDeploymentCommandOutput } from "./commands/DescribeFleetDeploymentCommand";
|
|
47
|
-
import { DescribeFleetEventsCommandInput, DescribeFleetEventsCommandOutput } from "./commands/DescribeFleetEventsCommand";
|
|
48
|
-
import { DescribeFleetLocationAttributesCommandInput, DescribeFleetLocationAttributesCommandOutput } from "./commands/DescribeFleetLocationAttributesCommand";
|
|
49
|
-
import { DescribeFleetLocationCapacityCommandInput, DescribeFleetLocationCapacityCommandOutput } from "./commands/DescribeFleetLocationCapacityCommand";
|
|
50
|
-
import { DescribeFleetLocationUtilizationCommandInput, DescribeFleetLocationUtilizationCommandOutput } from "./commands/DescribeFleetLocationUtilizationCommand";
|
|
51
|
-
import { DescribeFleetPortSettingsCommandInput, DescribeFleetPortSettingsCommandOutput } from "./commands/DescribeFleetPortSettingsCommand";
|
|
52
|
-
import { DescribeFleetUtilizationCommandInput, DescribeFleetUtilizationCommandOutput } from "./commands/DescribeFleetUtilizationCommand";
|
|
53
|
-
import { DescribeGameServerCommandInput, DescribeGameServerCommandOutput } from "./commands/DescribeGameServerCommand";
|
|
54
|
-
import { DescribeGameServerGroupCommandInput, DescribeGameServerGroupCommandOutput } from "./commands/DescribeGameServerGroupCommand";
|
|
55
|
-
import { DescribeGameServerInstancesCommandInput, DescribeGameServerInstancesCommandOutput } from "./commands/DescribeGameServerInstancesCommand";
|
|
56
|
-
import { DescribeGameSessionDetailsCommandInput, DescribeGameSessionDetailsCommandOutput } from "./commands/DescribeGameSessionDetailsCommand";
|
|
57
|
-
import { DescribeGameSessionPlacementCommandInput, DescribeGameSessionPlacementCommandOutput } from "./commands/DescribeGameSessionPlacementCommand";
|
|
58
|
-
import { DescribeGameSessionQueuesCommandInput, DescribeGameSessionQueuesCommandOutput } from "./commands/DescribeGameSessionQueuesCommand";
|
|
59
|
-
import { DescribeGameSessionsCommandInput, DescribeGameSessionsCommandOutput } from "./commands/DescribeGameSessionsCommand";
|
|
60
|
-
import { DescribeInstancesCommandInput, DescribeInstancesCommandOutput } from "./commands/DescribeInstancesCommand";
|
|
61
|
-
import { DescribeMatchmakingCommandInput, DescribeMatchmakingCommandOutput } from "./commands/DescribeMatchmakingCommand";
|
|
62
|
-
import { DescribeMatchmakingConfigurationsCommandInput, DescribeMatchmakingConfigurationsCommandOutput } from "./commands/DescribeMatchmakingConfigurationsCommand";
|
|
63
|
-
import { DescribeMatchmakingRuleSetsCommandInput, DescribeMatchmakingRuleSetsCommandOutput } from "./commands/DescribeMatchmakingRuleSetsCommand";
|
|
64
|
-
import { DescribePlayerSessionsCommandInput, DescribePlayerSessionsCommandOutput } from "./commands/DescribePlayerSessionsCommand";
|
|
65
|
-
import { DescribeRuntimeConfigurationCommandInput, DescribeRuntimeConfigurationCommandOutput } from "./commands/DescribeRuntimeConfigurationCommand";
|
|
66
|
-
import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "./commands/DescribeScalingPoliciesCommand";
|
|
67
|
-
import { DescribeScriptCommandInput, DescribeScriptCommandOutput } from "./commands/DescribeScriptCommand";
|
|
68
|
-
import { DescribeVpcPeeringAuthorizationsCommandInput, DescribeVpcPeeringAuthorizationsCommandOutput } from "./commands/DescribeVpcPeeringAuthorizationsCommand";
|
|
69
|
-
import { DescribeVpcPeeringConnectionsCommandInput, DescribeVpcPeeringConnectionsCommandOutput } from "./commands/DescribeVpcPeeringConnectionsCommand";
|
|
70
|
-
import { GetComputeAccessCommandInput, GetComputeAccessCommandOutput } from "./commands/GetComputeAccessCommand";
|
|
71
|
-
import { GetComputeAuthTokenCommandInput, GetComputeAuthTokenCommandOutput } from "./commands/GetComputeAuthTokenCommand";
|
|
72
|
-
import { GetGameSessionLogUrlCommandInput, GetGameSessionLogUrlCommandOutput } from "./commands/GetGameSessionLogUrlCommand";
|
|
73
|
-
import { GetInstanceAccessCommandInput, GetInstanceAccessCommandOutput } from "./commands/GetInstanceAccessCommand";
|
|
74
|
-
import { GetPlayerConnectionDetailsCommandInput, GetPlayerConnectionDetailsCommandOutput } from "./commands/GetPlayerConnectionDetailsCommand";
|
|
75
|
-
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
76
|
-
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
77
|
-
import { ListComputeCommandInput, ListComputeCommandOutput } from "./commands/ListComputeCommand";
|
|
78
|
-
import { ListContainerFleetsCommandInput, ListContainerFleetsCommandOutput } from "./commands/ListContainerFleetsCommand";
|
|
79
|
-
import { ListContainerGroupDefinitionsCommandInput, ListContainerGroupDefinitionsCommandOutput } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
80
|
-
import { ListContainerGroupDefinitionVersionsCommandInput, ListContainerGroupDefinitionVersionsCommandOutput } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
81
|
-
import { ListFleetDeploymentsCommandInput, ListFleetDeploymentsCommandOutput } from "./commands/ListFleetDeploymentsCommand";
|
|
82
|
-
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
83
|
-
import { ListGameServerGroupsCommandInput, ListGameServerGroupsCommandOutput } from "./commands/ListGameServerGroupsCommand";
|
|
84
|
-
import { ListGameServersCommandInput, ListGameServersCommandOutput } from "./commands/ListGameServersCommand";
|
|
85
|
-
import { ListLocationsCommandInput, ListLocationsCommandOutput } from "./commands/ListLocationsCommand";
|
|
86
|
-
import { ListScriptsCommandInput, ListScriptsCommandOutput } from "./commands/ListScriptsCommand";
|
|
87
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
88
|
-
import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
89
|
-
import { RegisterComputeCommandInput, RegisterComputeCommandOutput } from "./commands/RegisterComputeCommand";
|
|
90
|
-
import { RegisterGameServerCommandInput, RegisterGameServerCommandOutput } from "./commands/RegisterGameServerCommand";
|
|
91
|
-
import { RequestUploadCredentialsCommandInput, RequestUploadCredentialsCommandOutput } from "./commands/RequestUploadCredentialsCommand";
|
|
92
|
-
import { ResolveAliasCommandInput, ResolveAliasCommandOutput } from "./commands/ResolveAliasCommand";
|
|
93
|
-
import { ResumeGameServerGroupCommandInput, ResumeGameServerGroupCommandOutput } from "./commands/ResumeGameServerGroupCommand";
|
|
94
|
-
import { SearchGameSessionsCommandInput, SearchGameSessionsCommandOutput } from "./commands/SearchGameSessionsCommand";
|
|
95
|
-
import { StartFleetActionsCommandInput, StartFleetActionsCommandOutput } from "./commands/StartFleetActionsCommand";
|
|
96
|
-
import { StartGameSessionPlacementCommandInput, StartGameSessionPlacementCommandOutput } from "./commands/StartGameSessionPlacementCommand";
|
|
97
|
-
import { StartMatchBackfillCommandInput, StartMatchBackfillCommandOutput } from "./commands/StartMatchBackfillCommand";
|
|
98
|
-
import { StartMatchmakingCommandInput, StartMatchmakingCommandOutput } from "./commands/StartMatchmakingCommand";
|
|
99
|
-
import { StopFleetActionsCommandInput, StopFleetActionsCommandOutput } from "./commands/StopFleetActionsCommand";
|
|
100
|
-
import { StopGameSessionPlacementCommandInput, StopGameSessionPlacementCommandOutput } from "./commands/StopGameSessionPlacementCommand";
|
|
101
|
-
import { StopMatchmakingCommandInput, StopMatchmakingCommandOutput } from "./commands/StopMatchmakingCommand";
|
|
102
|
-
import { SuspendGameServerGroupCommandInput, SuspendGameServerGroupCommandOutput } from "./commands/SuspendGameServerGroupCommand";
|
|
103
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
104
|
-
import { TerminateGameSessionCommandInput, TerminateGameSessionCommandOutput } from "./commands/TerminateGameSessionCommand";
|
|
105
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
106
|
-
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
107
|
-
import { UpdateBuildCommandInput, UpdateBuildCommandOutput } from "./commands/UpdateBuildCommand";
|
|
108
|
-
import { UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput } from "./commands/UpdateContainerFleetCommand";
|
|
109
|
-
import { UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
110
|
-
import { UpdateFleetAttributesCommandInput, UpdateFleetAttributesCommandOutput } from "./commands/UpdateFleetAttributesCommand";
|
|
111
|
-
import { UpdateFleetCapacityCommandInput, UpdateFleetCapacityCommandOutput } from "./commands/UpdateFleetCapacityCommand";
|
|
112
|
-
import { UpdateFleetPortSettingsCommandInput, UpdateFleetPortSettingsCommandOutput } from "./commands/UpdateFleetPortSettingsCommand";
|
|
113
|
-
import { UpdateGameServerCommandInput, UpdateGameServerCommandOutput } from "./commands/UpdateGameServerCommand";
|
|
114
|
-
import { UpdateGameServerGroupCommandInput, UpdateGameServerGroupCommandOutput } from "./commands/UpdateGameServerGroupCommand";
|
|
115
|
-
import { UpdateGameSessionCommandInput, UpdateGameSessionCommandOutput } from "./commands/UpdateGameSessionCommand";
|
|
116
|
-
import { UpdateGameSessionQueueCommandInput, UpdateGameSessionQueueCommandOutput } from "./commands/UpdateGameSessionQueueCommand";
|
|
117
|
-
import { UpdateMatchmakingConfigurationCommandInput, UpdateMatchmakingConfigurationCommandOutput } from "./commands/UpdateMatchmakingConfigurationCommand";
|
|
118
|
-
import { UpdateRuntimeConfigurationCommandInput, UpdateRuntimeConfigurationCommandOutput } from "./commands/UpdateRuntimeConfigurationCommand";
|
|
119
|
-
import { UpdateScriptCommandInput, UpdateScriptCommandOutput } from "./commands/UpdateScriptCommand";
|
|
120
|
-
import { ValidateMatchmakingRuleSetCommandInput, ValidateMatchmakingRuleSetCommandOutput } from "./commands/ValidateMatchmakingRuleSetCommand";
|
|
2
|
+
import { type AcceptMatchCommandInput, type AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand";
|
|
3
|
+
import { type ClaimGameServerCommandInput, type ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
4
|
+
import { type CreateAliasCommandInput, type CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
5
|
+
import { type CreateBuildCommandInput, type CreateBuildCommandOutput } from "./commands/CreateBuildCommand";
|
|
6
|
+
import { type CreateContainerFleetCommandInput, type CreateContainerFleetCommandOutput } from "./commands/CreateContainerFleetCommand";
|
|
7
|
+
import { type CreateContainerGroupDefinitionCommandInput, type CreateContainerGroupDefinitionCommandOutput } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
8
|
+
import { type CreateFleetCommandInput, type CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
9
|
+
import { type CreateFleetLocationsCommandInput, type CreateFleetLocationsCommandOutput } from "./commands/CreateFleetLocationsCommand";
|
|
10
|
+
import { type CreateGameServerGroupCommandInput, type CreateGameServerGroupCommandOutput } from "./commands/CreateGameServerGroupCommand";
|
|
11
|
+
import { type CreateGameSessionCommandInput, type CreateGameSessionCommandOutput } from "./commands/CreateGameSessionCommand";
|
|
12
|
+
import { type CreateGameSessionQueueCommandInput, type CreateGameSessionQueueCommandOutput } from "./commands/CreateGameSessionQueueCommand";
|
|
13
|
+
import { type CreateLocationCommandInput, type CreateLocationCommandOutput } from "./commands/CreateLocationCommand";
|
|
14
|
+
import { type CreateMatchmakingConfigurationCommandInput, type CreateMatchmakingConfigurationCommandOutput } from "./commands/CreateMatchmakingConfigurationCommand";
|
|
15
|
+
import { type CreateMatchmakingRuleSetCommandInput, type CreateMatchmakingRuleSetCommandOutput } from "./commands/CreateMatchmakingRuleSetCommand";
|
|
16
|
+
import { type CreatePlayerSessionCommandInput, type CreatePlayerSessionCommandOutput } from "./commands/CreatePlayerSessionCommand";
|
|
17
|
+
import { type CreatePlayerSessionsCommandInput, type CreatePlayerSessionsCommandOutput } from "./commands/CreatePlayerSessionsCommand";
|
|
18
|
+
import { type CreateScriptCommandInput, type CreateScriptCommandOutput } from "./commands/CreateScriptCommand";
|
|
19
|
+
import { type CreateVpcPeeringAuthorizationCommandInput, type CreateVpcPeeringAuthorizationCommandOutput } from "./commands/CreateVpcPeeringAuthorizationCommand";
|
|
20
|
+
import { type CreateVpcPeeringConnectionCommandInput, type CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
21
|
+
import { type DeleteAliasCommandInput, type DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
22
|
+
import { type DeleteBuildCommandInput, type DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand";
|
|
23
|
+
import { type DeleteContainerFleetCommandInput, type DeleteContainerFleetCommandOutput } from "./commands/DeleteContainerFleetCommand";
|
|
24
|
+
import { type DeleteContainerGroupDefinitionCommandInput, type DeleteContainerGroupDefinitionCommandOutput } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
25
|
+
import { type DeleteFleetCommandInput, type DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
26
|
+
import { type DeleteFleetLocationsCommandInput, type DeleteFleetLocationsCommandOutput } from "./commands/DeleteFleetLocationsCommand";
|
|
27
|
+
import { type DeleteGameServerGroupCommandInput, type DeleteGameServerGroupCommandOutput } from "./commands/DeleteGameServerGroupCommand";
|
|
28
|
+
import { type DeleteGameSessionQueueCommandInput, type DeleteGameSessionQueueCommandOutput } from "./commands/DeleteGameSessionQueueCommand";
|
|
29
|
+
import { type DeleteLocationCommandInput, type DeleteLocationCommandOutput } from "./commands/DeleteLocationCommand";
|
|
30
|
+
import { type DeleteMatchmakingConfigurationCommandInput, type DeleteMatchmakingConfigurationCommandOutput } from "./commands/DeleteMatchmakingConfigurationCommand";
|
|
31
|
+
import { type DeleteMatchmakingRuleSetCommandInput, type DeleteMatchmakingRuleSetCommandOutput } from "./commands/DeleteMatchmakingRuleSetCommand";
|
|
32
|
+
import { type DeleteScalingPolicyCommandInput, type DeleteScalingPolicyCommandOutput } from "./commands/DeleteScalingPolicyCommand";
|
|
33
|
+
import { type DeleteScriptCommandInput, type DeleteScriptCommandOutput } from "./commands/DeleteScriptCommand";
|
|
34
|
+
import { type DeleteVpcPeeringAuthorizationCommandInput, type DeleteVpcPeeringAuthorizationCommandOutput } from "./commands/DeleteVpcPeeringAuthorizationCommand";
|
|
35
|
+
import { type DeleteVpcPeeringConnectionCommandInput, type DeleteVpcPeeringConnectionCommandOutput } from "./commands/DeleteVpcPeeringConnectionCommand";
|
|
36
|
+
import { type DeregisterComputeCommandInput, type DeregisterComputeCommandOutput } from "./commands/DeregisterComputeCommand";
|
|
37
|
+
import { type DeregisterGameServerCommandInput, type DeregisterGameServerCommandOutput } from "./commands/DeregisterGameServerCommand";
|
|
38
|
+
import { type DescribeAliasCommandInput, type DescribeAliasCommandOutput } from "./commands/DescribeAliasCommand";
|
|
39
|
+
import { type DescribeBuildCommandInput, type DescribeBuildCommandOutput } from "./commands/DescribeBuildCommand";
|
|
40
|
+
import { type DescribeComputeCommandInput, type DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
41
|
+
import { type DescribeContainerFleetCommandInput, type DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
42
|
+
import { type DescribeContainerGroupDefinitionCommandInput, type DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
43
|
+
import { type DescribeEC2InstanceLimitsCommandInput, type DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
44
|
+
import { type DescribeFleetAttributesCommandInput, type DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
45
|
+
import { type DescribeFleetCapacityCommandInput, type DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
46
|
+
import { type DescribeFleetDeploymentCommandInput, type DescribeFleetDeploymentCommandOutput } from "./commands/DescribeFleetDeploymentCommand";
|
|
47
|
+
import { type DescribeFleetEventsCommandInput, type DescribeFleetEventsCommandOutput } from "./commands/DescribeFleetEventsCommand";
|
|
48
|
+
import { type DescribeFleetLocationAttributesCommandInput, type DescribeFleetLocationAttributesCommandOutput } from "./commands/DescribeFleetLocationAttributesCommand";
|
|
49
|
+
import { type DescribeFleetLocationCapacityCommandInput, type DescribeFleetLocationCapacityCommandOutput } from "./commands/DescribeFleetLocationCapacityCommand";
|
|
50
|
+
import { type DescribeFleetLocationUtilizationCommandInput, type DescribeFleetLocationUtilizationCommandOutput } from "./commands/DescribeFleetLocationUtilizationCommand";
|
|
51
|
+
import { type DescribeFleetPortSettingsCommandInput, type DescribeFleetPortSettingsCommandOutput } from "./commands/DescribeFleetPortSettingsCommand";
|
|
52
|
+
import { type DescribeFleetUtilizationCommandInput, type DescribeFleetUtilizationCommandOutput } from "./commands/DescribeFleetUtilizationCommand";
|
|
53
|
+
import { type DescribeGameServerCommandInput, type DescribeGameServerCommandOutput } from "./commands/DescribeGameServerCommand";
|
|
54
|
+
import { type DescribeGameServerGroupCommandInput, type DescribeGameServerGroupCommandOutput } from "./commands/DescribeGameServerGroupCommand";
|
|
55
|
+
import { type DescribeGameServerInstancesCommandInput, type DescribeGameServerInstancesCommandOutput } from "./commands/DescribeGameServerInstancesCommand";
|
|
56
|
+
import { type DescribeGameSessionDetailsCommandInput, type DescribeGameSessionDetailsCommandOutput } from "./commands/DescribeGameSessionDetailsCommand";
|
|
57
|
+
import { type DescribeGameSessionPlacementCommandInput, type DescribeGameSessionPlacementCommandOutput } from "./commands/DescribeGameSessionPlacementCommand";
|
|
58
|
+
import { type DescribeGameSessionQueuesCommandInput, type DescribeGameSessionQueuesCommandOutput } from "./commands/DescribeGameSessionQueuesCommand";
|
|
59
|
+
import { type DescribeGameSessionsCommandInput, type DescribeGameSessionsCommandOutput } from "./commands/DescribeGameSessionsCommand";
|
|
60
|
+
import { type DescribeInstancesCommandInput, type DescribeInstancesCommandOutput } from "./commands/DescribeInstancesCommand";
|
|
61
|
+
import { type DescribeMatchmakingCommandInput, type DescribeMatchmakingCommandOutput } from "./commands/DescribeMatchmakingCommand";
|
|
62
|
+
import { type DescribeMatchmakingConfigurationsCommandInput, type DescribeMatchmakingConfigurationsCommandOutput } from "./commands/DescribeMatchmakingConfigurationsCommand";
|
|
63
|
+
import { type DescribeMatchmakingRuleSetsCommandInput, type DescribeMatchmakingRuleSetsCommandOutput } from "./commands/DescribeMatchmakingRuleSetsCommand";
|
|
64
|
+
import { type DescribePlayerSessionsCommandInput, type DescribePlayerSessionsCommandOutput } from "./commands/DescribePlayerSessionsCommand";
|
|
65
|
+
import { type DescribeRuntimeConfigurationCommandInput, type DescribeRuntimeConfigurationCommandOutput } from "./commands/DescribeRuntimeConfigurationCommand";
|
|
66
|
+
import { type DescribeScalingPoliciesCommandInput, type DescribeScalingPoliciesCommandOutput } from "./commands/DescribeScalingPoliciesCommand";
|
|
67
|
+
import { type DescribeScriptCommandInput, type DescribeScriptCommandOutput } from "./commands/DescribeScriptCommand";
|
|
68
|
+
import { type DescribeVpcPeeringAuthorizationsCommandInput, type DescribeVpcPeeringAuthorizationsCommandOutput } from "./commands/DescribeVpcPeeringAuthorizationsCommand";
|
|
69
|
+
import { type DescribeVpcPeeringConnectionsCommandInput, type DescribeVpcPeeringConnectionsCommandOutput } from "./commands/DescribeVpcPeeringConnectionsCommand";
|
|
70
|
+
import { type GetComputeAccessCommandInput, type GetComputeAccessCommandOutput } from "./commands/GetComputeAccessCommand";
|
|
71
|
+
import { type GetComputeAuthTokenCommandInput, type GetComputeAuthTokenCommandOutput } from "./commands/GetComputeAuthTokenCommand";
|
|
72
|
+
import { type GetGameSessionLogUrlCommandInput, type GetGameSessionLogUrlCommandOutput } from "./commands/GetGameSessionLogUrlCommand";
|
|
73
|
+
import { type GetInstanceAccessCommandInput, type GetInstanceAccessCommandOutput } from "./commands/GetInstanceAccessCommand";
|
|
74
|
+
import { type GetPlayerConnectionDetailsCommandInput, type GetPlayerConnectionDetailsCommandOutput } from "./commands/GetPlayerConnectionDetailsCommand";
|
|
75
|
+
import { type ListAliasesCommandInput, type ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
76
|
+
import { type ListBuildsCommandInput, type ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
77
|
+
import { type ListComputeCommandInput, type ListComputeCommandOutput } from "./commands/ListComputeCommand";
|
|
78
|
+
import { type ListContainerFleetsCommandInput, type ListContainerFleetsCommandOutput } from "./commands/ListContainerFleetsCommand";
|
|
79
|
+
import { type ListContainerGroupDefinitionsCommandInput, type ListContainerGroupDefinitionsCommandOutput } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
80
|
+
import { type ListContainerGroupDefinitionVersionsCommandInput, type ListContainerGroupDefinitionVersionsCommandOutput } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
81
|
+
import { type ListFleetDeploymentsCommandInput, type ListFleetDeploymentsCommandOutput } from "./commands/ListFleetDeploymentsCommand";
|
|
82
|
+
import { type ListFleetsCommandInput, type ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
83
|
+
import { type ListGameServerGroupsCommandInput, type ListGameServerGroupsCommandOutput } from "./commands/ListGameServerGroupsCommand";
|
|
84
|
+
import { type ListGameServersCommandInput, type ListGameServersCommandOutput } from "./commands/ListGameServersCommand";
|
|
85
|
+
import { type ListLocationsCommandInput, type ListLocationsCommandOutput } from "./commands/ListLocationsCommand";
|
|
86
|
+
import { type ListScriptsCommandInput, type ListScriptsCommandOutput } from "./commands/ListScriptsCommand";
|
|
87
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
88
|
+
import { type PutScalingPolicyCommandInput, type PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
89
|
+
import { type RegisterComputeCommandInput, type RegisterComputeCommandOutput } from "./commands/RegisterComputeCommand";
|
|
90
|
+
import { type RegisterGameServerCommandInput, type RegisterGameServerCommandOutput } from "./commands/RegisterGameServerCommand";
|
|
91
|
+
import { type RequestUploadCredentialsCommandInput, type RequestUploadCredentialsCommandOutput } from "./commands/RequestUploadCredentialsCommand";
|
|
92
|
+
import { type ResolveAliasCommandInput, type ResolveAliasCommandOutput } from "./commands/ResolveAliasCommand";
|
|
93
|
+
import { type ResumeGameServerGroupCommandInput, type ResumeGameServerGroupCommandOutput } from "./commands/ResumeGameServerGroupCommand";
|
|
94
|
+
import { type SearchGameSessionsCommandInput, type SearchGameSessionsCommandOutput } from "./commands/SearchGameSessionsCommand";
|
|
95
|
+
import { type StartFleetActionsCommandInput, type StartFleetActionsCommandOutput } from "./commands/StartFleetActionsCommand";
|
|
96
|
+
import { type StartGameSessionPlacementCommandInput, type StartGameSessionPlacementCommandOutput } from "./commands/StartGameSessionPlacementCommand";
|
|
97
|
+
import { type StartMatchBackfillCommandInput, type StartMatchBackfillCommandOutput } from "./commands/StartMatchBackfillCommand";
|
|
98
|
+
import { type StartMatchmakingCommandInput, type StartMatchmakingCommandOutput } from "./commands/StartMatchmakingCommand";
|
|
99
|
+
import { type StopFleetActionsCommandInput, type StopFleetActionsCommandOutput } from "./commands/StopFleetActionsCommand";
|
|
100
|
+
import { type StopGameSessionPlacementCommandInput, type StopGameSessionPlacementCommandOutput } from "./commands/StopGameSessionPlacementCommand";
|
|
101
|
+
import { type StopMatchmakingCommandInput, type StopMatchmakingCommandOutput } from "./commands/StopMatchmakingCommand";
|
|
102
|
+
import { type SuspendGameServerGroupCommandInput, type SuspendGameServerGroupCommandOutput } from "./commands/SuspendGameServerGroupCommand";
|
|
103
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
104
|
+
import { type TerminateGameSessionCommandInput, type TerminateGameSessionCommandOutput } from "./commands/TerminateGameSessionCommand";
|
|
105
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
106
|
+
import { type UpdateAliasCommandInput, type UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
107
|
+
import { type UpdateBuildCommandInput, type UpdateBuildCommandOutput } from "./commands/UpdateBuildCommand";
|
|
108
|
+
import { type UpdateContainerFleetCommandInput, type UpdateContainerFleetCommandOutput } from "./commands/UpdateContainerFleetCommand";
|
|
109
|
+
import { type UpdateContainerGroupDefinitionCommandInput, type UpdateContainerGroupDefinitionCommandOutput } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
110
|
+
import { type UpdateFleetAttributesCommandInput, type UpdateFleetAttributesCommandOutput } from "./commands/UpdateFleetAttributesCommand";
|
|
111
|
+
import { type UpdateFleetCapacityCommandInput, type UpdateFleetCapacityCommandOutput } from "./commands/UpdateFleetCapacityCommand";
|
|
112
|
+
import { type UpdateFleetPortSettingsCommandInput, type UpdateFleetPortSettingsCommandOutput } from "./commands/UpdateFleetPortSettingsCommand";
|
|
113
|
+
import { type UpdateGameServerCommandInput, type UpdateGameServerCommandOutput } from "./commands/UpdateGameServerCommand";
|
|
114
|
+
import { type UpdateGameServerGroupCommandInput, type UpdateGameServerGroupCommandOutput } from "./commands/UpdateGameServerGroupCommand";
|
|
115
|
+
import { type UpdateGameSessionCommandInput, type UpdateGameSessionCommandOutput } from "./commands/UpdateGameSessionCommand";
|
|
116
|
+
import { type UpdateGameSessionQueueCommandInput, type UpdateGameSessionQueueCommandOutput } from "./commands/UpdateGameSessionQueueCommand";
|
|
117
|
+
import { type UpdateMatchmakingConfigurationCommandInput, type UpdateMatchmakingConfigurationCommandOutput } from "./commands/UpdateMatchmakingConfigurationCommand";
|
|
118
|
+
import { type UpdateRuntimeConfigurationCommandInput, type UpdateRuntimeConfigurationCommandOutput } from "./commands/UpdateRuntimeConfigurationCommand";
|
|
119
|
+
import { type UpdateScriptCommandInput, type UpdateScriptCommandOutput } from "./commands/UpdateScriptCommand";
|
|
120
|
+
import { type ValidateMatchmakingRuleSetCommandInput, type ValidateMatchmakingRuleSetCommandOutput } from "./commands/ValidateMatchmakingRuleSetCommand";
|
|
121
121
|
import { GameLiftClient } from "./GameLiftClient";
|
|
122
122
|
export interface GameLift {
|
|
123
123
|
/**
|