@aws-sdk/client-gamelift 3.1001.0 → 3.1002.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/README.md +7 -0
- package/dist-cjs/index.js +30 -0
- package/dist-cjs/schemas/schemas_0.js +75 -24
- package/dist-es/GameLift.js +2 -0
- package/dist-es/commands/GetPlayerConnectionDetailsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +13 -0
- package/dist-es/schemas/schemas_0.js +69 -18
- package/dist-types/GameLift.d.ts +7 -0
- package/dist-types/GameLiftClient.d.ts +3 -2
- package/dist-types/commands/CreateContainerFleetCommand.d.ts +3 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +9 -0
- package/dist-types/commands/CreateFleetLocationsCommand.d.ts +1 -0
- package/dist-types/commands/CreateGameSessionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteFleetLocationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContainerFleetCommand.d.ts +2 -0
- package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +5 -1
- package/dist-types/commands/DescribeFleetLocationAttributesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGameSessionDetailsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGameSessionPlacementCommand.d.ts +4 -1
- package/dist-types/commands/DescribeGameSessionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMatchmakingCommand.d.ts +1 -0
- package/dist-types/commands/GetPlayerConnectionDetailsCommand.d.ts +126 -0
- package/dist-types/commands/ListContainerFleetsCommand.d.ts +2 -0
- package/dist-types/commands/SearchGameSessionsCommand.d.ts +9 -1
- package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +1 -0
- package/dist-types/commands/StartMatchBackfillCommand.d.ts +1 -0
- package/dist-types/commands/StartMatchmakingCommand.d.ts +1 -0
- package/dist-types/commands/StopGameSessionPlacementCommand.d.ts +1 -0
- package/dist-types/commands/TerminateGameSessionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateContainerFleetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFleetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetPortSettingsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateGameSessionCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +37 -0
- package/dist-types/models/models_0.d.ts +293 -173
- package/dist-types/models/models_1.d.ts +182 -3
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/GameLift.d.ts +17 -0
- package/dist-types/ts3.4/GameLiftClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetPlayerConnectionDetailsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFleetAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFleetCapacityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFleetPortSettingsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -32
- package/dist-types/ts3.4/models/models_1.d.ts +36 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -762,6 +762,13 @@ GetInstanceAccess
|
|
|
762
762
|
</details>
|
|
763
763
|
<details>
|
|
764
764
|
<summary>
|
|
765
|
+
GetPlayerConnectionDetails
|
|
766
|
+
</summary>
|
|
767
|
+
|
|
768
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gamelift/command/GetPlayerConnectionDetailsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gamelift/Interface/GetPlayerConnectionDetailsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gamelift/Interface/GetPlayerConnectionDetailsCommandOutput/)
|
|
769
|
+
</details>
|
|
770
|
+
<details>
|
|
771
|
+
<summary>
|
|
765
772
|
ListAliases
|
|
766
773
|
</summary>
|
|
767
774
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -977,6 +977,18 @@ class GetInstanceAccessCommand extends smithyClient.Command
|
|
|
977
977
|
.build() {
|
|
978
978
|
}
|
|
979
979
|
|
|
980
|
+
class GetPlayerConnectionDetailsCommand extends smithyClient.Command
|
|
981
|
+
.classBuilder()
|
|
982
|
+
.ep(commonParams)
|
|
983
|
+
.m(function (Command, cs, config, o) {
|
|
984
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
985
|
+
})
|
|
986
|
+
.s("GameLift", "GetPlayerConnectionDetails", {})
|
|
987
|
+
.n("GameLiftClient", "GetPlayerConnectionDetailsCommand")
|
|
988
|
+
.sc(schemas_0.GetPlayerConnectionDetails$)
|
|
989
|
+
.build() {
|
|
990
|
+
}
|
|
991
|
+
|
|
980
992
|
class ListAliasesCommand extends smithyClient.Command
|
|
981
993
|
.classBuilder()
|
|
982
994
|
.ep(commonParams)
|
|
@@ -1656,6 +1668,7 @@ const commands = {
|
|
|
1656
1668
|
GetComputeAuthTokenCommand,
|
|
1657
1669
|
GetGameSessionLogUrlCommand,
|
|
1658
1670
|
GetInstanceAccessCommand,
|
|
1671
|
+
GetPlayerConnectionDetailsCommand,
|
|
1659
1672
|
ListAliasesCommand,
|
|
1660
1673
|
ListBuildsCommand,
|
|
1661
1674
|
ListComputeCommand,
|
|
@@ -2318,6 +2331,10 @@ const IpProtocol = {
|
|
|
2318
2331
|
TCP: "TCP",
|
|
2319
2332
|
UDP: "UDP",
|
|
2320
2333
|
};
|
|
2334
|
+
const PlayerGatewayStatus = {
|
|
2335
|
+
DISABLED: "DISABLED",
|
|
2336
|
+
ENABLED: "ENABLED",
|
|
2337
|
+
};
|
|
2321
2338
|
const ContainerFleetLocationStatus = {
|
|
2322
2339
|
ACTIVATING: "ACTIVATING",
|
|
2323
2340
|
ACTIVE: "ACTIVE",
|
|
@@ -2336,6 +2353,11 @@ const ProtectionPolicy = {
|
|
|
2336
2353
|
FullProtection: "FullProtection",
|
|
2337
2354
|
NoProtection: "NoProtection",
|
|
2338
2355
|
};
|
|
2356
|
+
const PlayerGatewayMode = {
|
|
2357
|
+
DISABLED: "DISABLED",
|
|
2358
|
+
ENABLED: "ENABLED",
|
|
2359
|
+
REQUIRED: "REQUIRED",
|
|
2360
|
+
};
|
|
2339
2361
|
const ContainerFleetStatus = {
|
|
2340
2362
|
ACTIVATING: "ACTIVATING",
|
|
2341
2363
|
ACTIVE: "ACTIVE",
|
|
@@ -2371,6 +2393,10 @@ const FleetType = {
|
|
|
2371
2393
|
const InstanceRoleCredentialsProvider = {
|
|
2372
2394
|
SHARED_CREDENTIAL_FILE: "SHARED_CREDENTIAL_FILE",
|
|
2373
2395
|
};
|
|
2396
|
+
const GameServerIpProtocolSupported = {
|
|
2397
|
+
DUAL_STACK: "DUAL_STACK",
|
|
2398
|
+
IPv4: "IPv4",
|
|
2399
|
+
};
|
|
2374
2400
|
const FleetStatus = {
|
|
2375
2401
|
ACTIVATING: "ACTIVATING",
|
|
2376
2402
|
ACTIVE: "ACTIVE",
|
|
@@ -2801,6 +2827,7 @@ exports.GameServerGroupInstanceType = GameServerGroupInstanceType;
|
|
|
2801
2827
|
exports.GameServerGroupStatus = GameServerGroupStatus;
|
|
2802
2828
|
exports.GameServerHealthCheck = GameServerHealthCheck;
|
|
2803
2829
|
exports.GameServerInstanceStatus = GameServerInstanceStatus;
|
|
2830
|
+
exports.GameServerIpProtocolSupported = GameServerIpProtocolSupported;
|
|
2804
2831
|
exports.GameServerProtectionPolicy = GameServerProtectionPolicy;
|
|
2805
2832
|
exports.GameServerUtilizationStatus = GameServerUtilizationStatus;
|
|
2806
2833
|
exports.GameSessionPlacementState = GameSessionPlacementState;
|
|
@@ -2810,6 +2837,7 @@ exports.GetComputeAccessCommand = GetComputeAccessCommand;
|
|
|
2810
2837
|
exports.GetComputeAuthTokenCommand = GetComputeAuthTokenCommand;
|
|
2811
2838
|
exports.GetGameSessionLogUrlCommand = GetGameSessionLogUrlCommand;
|
|
2812
2839
|
exports.GetInstanceAccessCommand = GetInstanceAccessCommand;
|
|
2840
|
+
exports.GetPlayerConnectionDetailsCommand = GetPlayerConnectionDetailsCommand;
|
|
2813
2841
|
exports.InstanceRoleCredentialsProvider = InstanceRoleCredentialsProvider;
|
|
2814
2842
|
exports.InstanceStatus = InstanceStatus;
|
|
2815
2843
|
exports.IpProtocol = IpProtocol;
|
|
@@ -2834,6 +2862,8 @@ exports.MatchmakingConfigurationStatus = MatchmakingConfigurationStatus;
|
|
|
2834
2862
|
exports.MetricName = MetricName;
|
|
2835
2863
|
exports.OperatingSystem = OperatingSystem;
|
|
2836
2864
|
exports.PlacementFallbackStrategy = PlacementFallbackStrategy;
|
|
2865
|
+
exports.PlayerGatewayMode = PlayerGatewayMode;
|
|
2866
|
+
exports.PlayerGatewayStatus = PlayerGatewayStatus;
|
|
2837
2867
|
exports.PlayerSessionCreationPolicy = PlayerSessionCreationPolicy;
|
|
2838
2868
|
exports.PlayerSessionStatus = PlayerSessionStatus;
|
|
2839
2869
|
exports.PolicyType = PolicyType;
|
|
@@ -4,12 +4,12 @@ exports.CreateContainerGroupDefinitionOutput$ = exports.CreateContainerGroupDefi
|
|
|
4
4
|
exports.DeleteVpcPeeringConnectionInput$ = exports.DeleteVpcPeeringAuthorizationOutput$ = exports.DeleteVpcPeeringAuthorizationInput$ = exports.DeleteScriptInput$ = exports.DeleteScalingPolicyInput$ = exports.DeleteMatchmakingRuleSetOutput$ = exports.DeleteMatchmakingRuleSetInput$ = exports.DeleteMatchmakingConfigurationOutput$ = exports.DeleteMatchmakingConfigurationInput$ = exports.DeleteLocationOutput$ = exports.DeleteLocationInput$ = exports.DeleteGameSessionQueueOutput$ = exports.DeleteGameSessionQueueInput$ = exports.DeleteGameServerGroupOutput$ = exports.DeleteGameServerGroupInput$ = exports.DeleteFleetLocationsOutput$ = exports.DeleteFleetLocationsInput$ = exports.DeleteFleetInput$ = exports.DeleteContainerGroupDefinitionOutput$ = exports.DeleteContainerGroupDefinitionInput$ = exports.DeleteContainerFleetOutput$ = exports.DeleteContainerFleetInput$ = exports.DeleteBuildInput$ = exports.DeleteAliasInput$ = exports.CreateVpcPeeringConnectionOutput$ = exports.CreateVpcPeeringConnectionInput$ = exports.CreateVpcPeeringAuthorizationOutput$ = exports.CreateVpcPeeringAuthorizationInput$ = exports.CreateScriptOutput$ = exports.CreateScriptInput$ = exports.CreatePlayerSessionsOutput$ = exports.CreatePlayerSessionsInput$ = exports.CreatePlayerSessionOutput$ = exports.CreatePlayerSessionInput$ = exports.CreateMatchmakingRuleSetOutput$ = exports.CreateMatchmakingRuleSetInput$ = exports.CreateMatchmakingConfigurationOutput$ = exports.CreateMatchmakingConfigurationInput$ = exports.CreateLocationOutput$ = exports.CreateLocationInput$ = exports.CreateGameSessionQueueOutput$ = exports.CreateGameSessionQueueInput$ = exports.CreateGameSessionOutput$ = exports.CreateGameSessionInput$ = exports.CreateGameServerGroupOutput$ = exports.CreateGameServerGroupInput$ = exports.CreateFleetOutput$ = exports.CreateFleetLocationsOutput$ = exports.CreateFleetLocationsInput$ = exports.CreateFleetInput$ = void 0;
|
|
5
5
|
exports.DescribeGameSessionsOutput$ = exports.DescribeGameSessionsInput$ = exports.DescribeGameSessionQueuesOutput$ = exports.DescribeGameSessionQueuesInput$ = exports.DescribeGameSessionPlacementOutput$ = exports.DescribeGameSessionPlacementInput$ = exports.DescribeGameSessionDetailsOutput$ = exports.DescribeGameSessionDetailsInput$ = exports.DescribeGameServerOutput$ = exports.DescribeGameServerInstancesOutput$ = exports.DescribeGameServerInstancesInput$ = exports.DescribeGameServerInput$ = exports.DescribeGameServerGroupOutput$ = exports.DescribeGameServerGroupInput$ = exports.DescribeFleetUtilizationOutput$ = exports.DescribeFleetUtilizationInput$ = exports.DescribeFleetPortSettingsOutput$ = exports.DescribeFleetPortSettingsInput$ = exports.DescribeFleetLocationUtilizationOutput$ = exports.DescribeFleetLocationUtilizationInput$ = exports.DescribeFleetLocationCapacityOutput$ = exports.DescribeFleetLocationCapacityInput$ = exports.DescribeFleetLocationAttributesOutput$ = exports.DescribeFleetLocationAttributesInput$ = exports.DescribeFleetEventsOutput$ = exports.DescribeFleetEventsInput$ = exports.DescribeFleetDeploymentOutput$ = exports.DescribeFleetDeploymentInput$ = exports.DescribeFleetCapacityOutput$ = exports.DescribeFleetCapacityInput$ = exports.DescribeFleetAttributesOutput$ = exports.DescribeFleetAttributesInput$ = exports.DescribeEC2InstanceLimitsOutput$ = exports.DescribeEC2InstanceLimitsInput$ = exports.DescribeContainerGroupDefinitionOutput$ = exports.DescribeContainerGroupDefinitionInput$ = exports.DescribeContainerFleetOutput$ = exports.DescribeContainerFleetInput$ = exports.DescribeComputeOutput$ = exports.DescribeComputeInput$ = exports.DescribeBuildOutput$ = exports.DescribeBuildInput$ = exports.DescribeAliasOutput$ = exports.DescribeAliasInput$ = exports.DeregisterGameServerInput$ = exports.DeregisterComputeOutput$ = exports.DeregisterComputeInput$ = exports.DeploymentDetails$ = exports.DeploymentConfiguration$ = exports.DeleteVpcPeeringConnectionOutput$ = void 0;
|
|
6
6
|
exports.GetGameSessionLogUrlOutput$ = exports.GetGameSessionLogUrlInput$ = exports.GetComputeAuthTokenOutput$ = exports.GetComputeAuthTokenInput$ = exports.GetComputeAccessOutput$ = exports.GetComputeAccessInput$ = exports.GameSessionQueueDestination$ = exports.GameSessionQueue$ = exports.GameSessionPlacement$ = exports.GameSessionDetail$ = exports.GameSessionCreationLimitPolicy$ = exports.GameSessionConnectionInfo$ = exports.GameSession$ = exports.GameServerInstance$ = exports.GameServerGroupAutoScalingPolicy$ = exports.GameServerGroup$ = exports.GameServerContainerGroupCounts$ = exports.GameServerContainerDefinitionInput$ = exports.GameServerContainerDefinition$ = exports.GameServer$ = exports.GameProperty$ = exports.FleetUtilization$ = exports.FleetDeployment$ = exports.FleetCapacity$ = exports.FleetAttributes$ = exports.FilterConfiguration$ = exports.Event$ = exports.EC2InstanceLimit$ = exports.EC2InstanceCounts$ = exports.DesiredPlayerSession$ = exports.DescribeVpcPeeringConnectionsOutput$ = exports.DescribeVpcPeeringConnectionsInput$ = exports.DescribeVpcPeeringAuthorizationsOutput$ = exports.DescribeVpcPeeringAuthorizationsInput$ = exports.DescribeScriptOutput$ = exports.DescribeScriptInput$ = exports.DescribeScalingPoliciesOutput$ = exports.DescribeScalingPoliciesInput$ = exports.DescribeRuntimeConfigurationOutput$ = exports.DescribeRuntimeConfigurationInput$ = exports.DescribePlayerSessionsOutput$ = exports.DescribePlayerSessionsInput$ = exports.DescribeMatchmakingRuleSetsOutput$ = exports.DescribeMatchmakingRuleSetsInput$ = exports.DescribeMatchmakingOutput$ = exports.DescribeMatchmakingInput$ = exports.DescribeMatchmakingConfigurationsOutput$ = exports.DescribeMatchmakingConfigurationsInput$ = exports.DescribeInstancesOutput$ = exports.DescribeInstancesInput$ = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.ValidateMatchmakingRuleSet$ = exports.UpdateScript$ = exports.UpdateRuntimeConfiguration$ = void 0;
|
|
7
|
+
exports.Player$ = exports.PlacedPlayerSession$ = exports.PingBeacon$ = exports.MatchmakingTicket$ = exports.MatchmakingRuleSet$ = exports.MatchmakingConfiguration$ = exports.MatchedPlayerSession$ = exports.ManagedCapacityConfiguration$ = exports.LogConfiguration$ = exports.LocationState$ = exports.LocationModel$ = exports.LocationConfiguration$ = exports.LocationAttributes$ = exports.LocationalDeployment$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListScriptsOutput$ = exports.ListScriptsInput$ = exports.ListLocationsOutput$ = exports.ListLocationsInput$ = exports.ListGameServersOutput$ = exports.ListGameServersInput$ = exports.ListGameServerGroupsOutput$ = exports.ListGameServerGroupsInput$ = exports.ListFleetsOutput$ = exports.ListFleetsInput$ = exports.ListFleetDeploymentsOutput$ = exports.ListFleetDeploymentsInput$ = exports.ListContainerGroupDefinitionVersionsOutput$ = exports.ListContainerGroupDefinitionVersionsInput$ = exports.ListContainerGroupDefinitionsOutput$ = exports.ListContainerGroupDefinitionsInput$ = exports.ListContainerFleetsOutput$ = exports.ListContainerFleetsInput$ = exports.ListComputeOutput$ = exports.ListComputeInput$ = exports.ListBuildsOutput$ = exports.ListBuildsInput$ = exports.ListAliasesOutput$ = exports.ListAliasesInput$ = exports.LaunchTemplateSpecification$ = exports.IpPermission$ = exports.InstanceDefinition$ = exports.InstanceCredentials$ = exports.InstanceAccess$ = exports.Instance$ = exports.GetPlayerConnectionDetailsOutput$ = exports.GetPlayerConnectionDetailsInput$ = exports.GetInstanceAccessOutput$ = exports.GetInstanceAccessInput$ = void 0;
|
|
8
|
+
exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SuspendGameServerGroupOutput$ = exports.SuspendGameServerGroupInput$ = exports.SupportContainerDefinitionInput$ = exports.SupportContainerDefinition$ = exports.StopMatchmakingOutput$ = exports.StopMatchmakingInput$ = exports.StopGameSessionPlacementOutput$ = exports.StopGameSessionPlacementInput$ = exports.StopFleetActionsOutput$ = exports.StopFleetActionsInput$ = exports.StartMatchmakingOutput$ = exports.StartMatchmakingInput$ = exports.StartMatchBackfillOutput$ = exports.StartMatchBackfillInput$ = exports.StartGameSessionPlacementOutput$ = exports.StartGameSessionPlacementInput$ = exports.StartFleetActionsOutput$ = exports.StartFleetActionsInput$ = exports.ServerProcess$ = exports.SearchGameSessionsOutput$ = exports.SearchGameSessionsInput$ = exports.Script$ = exports.ScalingPolicy$ = exports.S3Location$ = exports.RuntimeConfiguration$ = exports.RoutingStrategy$ = exports.ResumeGameServerGroupOutput$ = exports.ResumeGameServerGroupInput$ = exports.ResourceCreationLimitPolicy$ = exports.ResolveAliasOutput$ = exports.ResolveAliasInput$ = exports.RequestUploadCredentialsOutput$ = exports.RequestUploadCredentialsInput$ = exports.RegisterGameServerOutput$ = exports.RegisterGameServerInput$ = exports.RegisterComputeOutput$ = exports.RegisterComputeInput$ = exports.PutScalingPolicyOutput$ = exports.PutScalingPolicyInput$ = exports.PriorityConfigurationOverride$ = exports.PriorityConfiguration$ = exports.PlayerSession$ = exports.PlayerLatencyPolicy$ = exports.PlayerLatency$ = exports.PlayerGatewayConfiguration$ = exports.PlayerConnectionEndpoint$ = exports.PlayerConnectionDetail$ = void 0;
|
|
9
|
+
exports.CreateGameSession$ = exports.CreateGameServerGroup$ = exports.CreateFleetLocations$ = exports.CreateFleet$ = exports.CreateContainerGroupDefinition$ = exports.CreateContainerFleet$ = exports.CreateBuild$ = exports.CreateAlias$ = exports.ClaimGameServer$ = exports.AcceptMatch$ = exports.VpcPeeringConnectionStatus$ = exports.VpcPeeringConnection$ = exports.VpcPeeringAuthorization$ = exports.ValidateMatchmakingRuleSetOutput$ = exports.ValidateMatchmakingRuleSetInput$ = exports.UpdateScriptOutput$ = exports.UpdateScriptInput$ = exports.UpdateRuntimeConfigurationOutput$ = exports.UpdateRuntimeConfigurationInput$ = exports.UpdateMatchmakingConfigurationOutput$ = exports.UpdateMatchmakingConfigurationInput$ = exports.UpdateGameSessionQueueOutput$ = exports.UpdateGameSessionQueueInput$ = exports.UpdateGameSessionOutput$ = exports.UpdateGameSessionInput$ = exports.UpdateGameServerOutput$ = exports.UpdateGameServerInput$ = exports.UpdateGameServerGroupOutput$ = exports.UpdateGameServerGroupInput$ = exports.UpdateFleetPortSettingsOutput$ = exports.UpdateFleetPortSettingsInput$ = exports.UpdateFleetCapacityOutput$ = exports.UpdateFleetCapacityInput$ = exports.UpdateFleetAttributesOutput$ = exports.UpdateFleetAttributesInput$ = exports.UpdateContainerGroupDefinitionOutput$ = exports.UpdateContainerGroupDefinitionInput$ = exports.UpdateContainerFleetOutput$ = exports.UpdateContainerFleetInput$ = exports.UpdateBuildOutput$ = exports.UpdateBuildInput$ = exports.UpdateAliasOutput$ = exports.UpdateAliasInput$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.UDPEndpoint$ = exports.TerminateGameSessionOutput$ = exports.TerminateGameSessionInput$ = exports.TargetTrackingConfiguration$ = exports.TargetConfiguration$ = void 0;
|
|
10
|
+
exports.DescribeMatchmaking$ = exports.DescribeInstances$ = exports.DescribeGameSessions$ = exports.DescribeGameSessionQueues$ = exports.DescribeGameSessionPlacement$ = exports.DescribeGameSessionDetails$ = exports.DescribeGameServerInstances$ = exports.DescribeGameServerGroup$ = exports.DescribeGameServer$ = exports.DescribeFleetUtilization$ = exports.DescribeFleetPortSettings$ = exports.DescribeFleetLocationUtilization$ = exports.DescribeFleetLocationCapacity$ = exports.DescribeFleetLocationAttributes$ = exports.DescribeFleetEvents$ = exports.DescribeFleetDeployment$ = exports.DescribeFleetCapacity$ = exports.DescribeFleetAttributes$ = exports.DescribeEC2InstanceLimits$ = exports.DescribeContainerGroupDefinition$ = exports.DescribeContainerFleet$ = exports.DescribeCompute$ = exports.DescribeBuild$ = exports.DescribeAlias$ = exports.DeregisterGameServer$ = exports.DeregisterCompute$ = exports.DeleteVpcPeeringConnection$ = exports.DeleteVpcPeeringAuthorization$ = exports.DeleteScript$ = exports.DeleteScalingPolicy$ = exports.DeleteMatchmakingRuleSet$ = exports.DeleteMatchmakingConfiguration$ = exports.DeleteLocation$ = exports.DeleteGameSessionQueue$ = exports.DeleteGameServerGroup$ = exports.DeleteFleetLocations$ = exports.DeleteFleet$ = exports.DeleteContainerGroupDefinition$ = exports.DeleteContainerFleet$ = exports.DeleteBuild$ = exports.DeleteAlias$ = exports.CreateVpcPeeringConnection$ = exports.CreateVpcPeeringAuthorization$ = exports.CreateScript$ = exports.CreatePlayerSessions$ = exports.CreatePlayerSession$ = exports.CreateMatchmakingRuleSet$ = exports.CreateMatchmakingConfiguration$ = exports.CreateLocation$ = exports.CreateGameSessionQueue$ = void 0;
|
|
11
|
+
exports.UpdateFleetCapacity$ = exports.UpdateFleetAttributes$ = exports.UpdateContainerGroupDefinition$ = exports.UpdateContainerFleet$ = exports.UpdateBuild$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TerminateGameSession$ = exports.TagResource$ = exports.SuspendGameServerGroup$ = exports.StopMatchmaking$ = exports.StopGameSessionPlacement$ = exports.StopFleetActions$ = exports.StartMatchmaking$ = exports.StartMatchBackfill$ = exports.StartGameSessionPlacement$ = exports.StartFleetActions$ = exports.SearchGameSessions$ = exports.ResumeGameServerGroup$ = exports.ResolveAlias$ = exports.RequestUploadCredentials$ = exports.RegisterGameServer$ = exports.RegisterCompute$ = exports.PutScalingPolicy$ = exports.ListTagsForResource$ = exports.ListScripts$ = exports.ListLocations$ = exports.ListGameServers$ = exports.ListGameServerGroups$ = exports.ListFleets$ = exports.ListFleetDeployments$ = exports.ListContainerGroupDefinitionVersions$ = exports.ListContainerGroupDefinitions$ = exports.ListContainerFleets$ = exports.ListCompute$ = exports.ListBuilds$ = exports.ListAliases$ = exports.GetPlayerConnectionDetails$ = exports.GetInstanceAccess$ = exports.GetGameSessionLogUrl$ = exports.GetComputeAuthToken$ = exports.GetComputeAccess$ = exports.DescribeVpcPeeringConnections$ = exports.DescribeVpcPeeringAuthorizations$ = exports.DescribeScript$ = exports.DescribeScalingPolicies$ = exports.DescribeRuntimeConfiguration$ = exports.DescribePlayerSessions$ = exports.DescribeMatchmakingRuleSets$ = exports.DescribeMatchmakingConfigurations$ = void 0;
|
|
12
|
+
exports.ValidateMatchmakingRuleSet$ = exports.UpdateScript$ = exports.UpdateRuntimeConfiguration$ = exports.UpdateMatchmakingConfiguration$ = exports.UpdateGameSessionQueue$ = exports.UpdateGameSession$ = exports.UpdateGameServerGroup$ = exports.UpdateGameServer$ = exports.UpdateFleetPortSettings$ = void 0;
|
|
13
13
|
const _A = "Alias";
|
|
14
14
|
const _AA = "AliasArn";
|
|
15
15
|
const _AC = "AnywhereConfiguration";
|
|
@@ -334,8 +334,10 @@ const _ETv = "EventTime";
|
|
|
334
334
|
const _ETx = "ExpirationTimestamp";
|
|
335
335
|
const _ETxp = "ExpirationTime";
|
|
336
336
|
const _EWT = "EstimatedWaitTime";
|
|
337
|
+
const _En = "Endpoints";
|
|
337
338
|
const _Es = "Essential";
|
|
338
339
|
const _Ev = "Event";
|
|
340
|
+
const _Ex = "Expiration";
|
|
339
341
|
const _F = "Filters";
|
|
340
342
|
const _FA = "FleetArn";
|
|
341
343
|
const _FAL = "FleetAttributesList";
|
|
@@ -373,6 +375,9 @@ const _GLAE = "GameLiftAgentEndpoint";
|
|
|
373
375
|
const _GLSSE = "GameLiftServiceSdkEndpoint";
|
|
374
376
|
const _GLVI = "GameLiftVpcId";
|
|
375
377
|
const _GP = "GameProperties";
|
|
378
|
+
const _GPCD = "GetPlayerConnectionDetails";
|
|
379
|
+
const _GPCDI = "GetPlayerConnectionDetailsInput";
|
|
380
|
+
const _GPCDO = "GetPlayerConnectionDetailsOutput";
|
|
376
381
|
const _GPL = "GamePropertyList";
|
|
377
382
|
const _GPa = "GameProperty";
|
|
378
383
|
const _GS = "GameServer";
|
|
@@ -399,6 +404,7 @@ const _GSGASP = "GameServerGroupAutoScalingPolicy";
|
|
|
399
404
|
const _GSGN = "GameServerGroupName";
|
|
400
405
|
const _GSGa = "GameServerGroups";
|
|
401
406
|
const _GSI = "GameServerId";
|
|
407
|
+
const _GSIPS = "GameServerIpProtocolSupported";
|
|
402
408
|
const _GSIa = "GameSessionId";
|
|
403
409
|
const _GSIam = "GameServerInstances";
|
|
404
410
|
const _GSIame = "GameServerInstance";
|
|
@@ -574,6 +580,11 @@ const _PA = "PlayerAttributes";
|
|
|
574
580
|
const _PAM = "PlayerAttributeMap";
|
|
575
581
|
const _PB = "PingBeacon";
|
|
576
582
|
const _PC = "PriorityConfiguration";
|
|
583
|
+
const _PCD = "PlayerConnectionDetails";
|
|
584
|
+
const _PCDL = "PlayerConnectionDetailList";
|
|
585
|
+
const _PCDl = "PlayerConnectionDetail";
|
|
586
|
+
const _PCE = "PlayerConnectionEndpoint";
|
|
587
|
+
const _PCEL = "PlayerConnectionEndpointList";
|
|
577
588
|
const _PCO = "PriorityConfigurationOverride";
|
|
578
589
|
const _PCo = "PortConfiguration";
|
|
579
590
|
const _PD = "PlayerData";
|
|
@@ -581,6 +592,10 @@ const _PDM = "PlayerDataMap";
|
|
|
581
592
|
const _PDS = "PolicyDurationSeconds";
|
|
582
593
|
const _PENDING = "PENDING";
|
|
583
594
|
const _PFS = "PlacementFallbackStrategy";
|
|
595
|
+
const _PGC = "PlayerGatewayConfiguration";
|
|
596
|
+
const _PGM = "PlayerGatewayMode";
|
|
597
|
+
const _PGS = "PlayerGatewayStatus";
|
|
598
|
+
const _PGT = "PlayerGatewayToken";
|
|
584
599
|
const _PI = "PlayerId";
|
|
585
600
|
const _PIBA = "PerInstanceBinaryArn";
|
|
586
601
|
const _PICGDA = "PerInstanceContainerGroupDefinitionArn";
|
|
@@ -1031,13 +1046,13 @@ exports.ContainerEnvironment$ = [3, n0, _CEo,
|
|
|
1031
1046
|
];
|
|
1032
1047
|
exports.ContainerFleet$ = [3, n0, _CF,
|
|
1033
1048
|
0,
|
|
1034
|
-
[_FI, _FA, _FRA, _GSCGDN, _GSCGDA, _PICGDN, _PICGDA, _ICPR, _IIP, _GSCGPI, _MGSCGPI, _IT, _BT, _D, _CT, _MG, _NGSPP, _GSCLP, _St, _DD, _LC, _LA],
|
|
1035
|
-
[0, 0, 0, 0, 0, 0, 0, [() => exports.ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 1, 0, 0, 0, 4, 64 | 0, 0, () => exports.GameSessionCreationLimitPolicy$, 0, () => exports.DeploymentDetails$, () => exports.LogConfiguration$, () => ContainerFleetLocationAttributesList]
|
|
1049
|
+
[_FI, _FA, _FRA, _GSCGDN, _GSCGDA, _PICGDN, _PICGDA, _ICPR, _IIP, _GSCGPI, _MGSCGPI, _IT, _BT, _D, _CT, _MG, _NGSPP, _GSCLP, _St, _DD, _LC, _LA, _PGM],
|
|
1050
|
+
[0, 0, 0, 0, 0, 0, 0, [() => exports.ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 1, 0, 0, 0, 4, 64 | 0, 0, () => exports.GameSessionCreationLimitPolicy$, 0, () => exports.DeploymentDetails$, () => exports.LogConfiguration$, () => ContainerFleetLocationAttributesList, 0]
|
|
1036
1051
|
];
|
|
1037
1052
|
exports.ContainerFleetLocationAttributes$ = [3, n0, _CFLA,
|
|
1038
1053
|
0,
|
|
1039
|
-
[_L, _St],
|
|
1040
|
-
[0, 0]
|
|
1054
|
+
[_L, _St, _PGS],
|
|
1055
|
+
[0, 0, 0]
|
|
1041
1056
|
];
|
|
1042
1057
|
exports.ContainerGroupDefinition$ = [3, n0, _CGD,
|
|
1043
1058
|
0,
|
|
@@ -1091,8 +1106,8 @@ exports.CreateBuildOutput$ = [3, n0, _CBO,
|
|
|
1091
1106
|
];
|
|
1092
1107
|
exports.CreateContainerFleetInput$ = [3, n0, _CCFI,
|
|
1093
1108
|
0,
|
|
1094
|
-
[_FRA, _D, _GSCGDN, _PICGDN, _ICPR, _IIP, _GSCGPI, _IT, _BT, _Lo, _MG, _NGSPP, _GSCLP, _LC, _Ta],
|
|
1095
|
-
[0, 0, 0, 0, [() => exports.ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 0, 0, () => LocationConfigurationList, 64 | 0, 0, () => exports.GameSessionCreationLimitPolicy$, () => exports.LogConfiguration$, () => TagList], 1
|
|
1109
|
+
[_FRA, _D, _GSCGDN, _PICGDN, _ICPR, _IIP, _GSCGPI, _IT, _BT, _Lo, _MG, _NGSPP, _GSCLP, _LC, _Ta, _PGM],
|
|
1110
|
+
[0, 0, 0, 0, [() => exports.ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 0, 0, () => LocationConfigurationList, 64 | 0, 0, () => exports.GameSessionCreationLimitPolicy$, () => exports.LogConfiguration$, () => TagList, 0], 1
|
|
1096
1111
|
];
|
|
1097
1112
|
exports.CreateContainerFleetOutput$ = [3, n0, _CCFO,
|
|
1098
1113
|
0,
|
|
@@ -1111,8 +1126,8 @@ exports.CreateContainerGroupDefinitionOutput$ = [3, n0, _CCGDO,
|
|
|
1111
1126
|
];
|
|
1112
1127
|
exports.CreateFleetInput$ = [3, n0, _CFI,
|
|
1113
1128
|
0,
|
|
1114
|
-
[_N, _D, _BI, _SI, _SLP, _SLPe, _LP, _ECIT, _ECIP, _NGSPP, _RC, _RCLP, _MG, _PVAAI, _PVI, _FT, _IRA, _CC, _Lo, _Ta, _CTo, _AC, _IRCP],
|
|
1115
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 0, [() => IpPermissionsList, 0], 0, () => exports.RuntimeConfiguration$, () => exports.ResourceCreationLimitPolicy$, 64 | 0, 0, 0, 0, 0, () => exports.CertificateConfiguration$, () => LocationConfigurationList, () => TagList, 0, () => exports.AnywhereConfiguration$, 0], 1
|
|
1129
|
+
[_N, _D, _BI, _SI, _SLP, _SLPe, _LP, _ECIT, _ECIP, _NGSPP, _RC, _RCLP, _MG, _PVAAI, _PVI, _FT, _IRA, _CC, _Lo, _Ta, _CTo, _AC, _IRCP, _PGM, _PGC],
|
|
1130
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0, [() => IpPermissionsList, 0], 0, () => exports.RuntimeConfiguration$, () => exports.ResourceCreationLimitPolicy$, 64 | 0, 0, 0, 0, 0, () => exports.CertificateConfiguration$, () => LocationConfigurationList, () => TagList, 0, () => exports.AnywhereConfiguration$, 0, 0, () => exports.PlayerGatewayConfiguration$], 1
|
|
1116
1131
|
];
|
|
1117
1132
|
exports.CreateFleetLocationsInput$ = [3, n0, _CFLI,
|
|
1118
1133
|
0,
|
|
@@ -1736,8 +1751,8 @@ exports.FilterConfiguration$ = [3, n0, _FC,
|
|
|
1736
1751
|
];
|
|
1737
1752
|
exports.FleetAttributes$ = [3, n0, _FAl,
|
|
1738
1753
|
0,
|
|
1739
|
-
[_FI, _FA, _FT, _IT, _D, _N, _CT, _TT, _St, _BI, _BA, _SI, _SA, _SLP, _SLPe, _LP, _NGSPP, _OS, _RCLP, _MG, _SAt, _IRA, _CC, _CTo, _AC, _IRCP],
|
|
1740
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, () => exports.ResourceCreationLimitPolicy$, 64 | 0, 64 | 0, 0, () => exports.CertificateConfiguration$, 0, () => exports.AnywhereConfiguration$, 0]
|
|
1754
|
+
[_FI, _FA, _FT, _IT, _D, _N, _CT, _TT, _St, _BI, _BA, _SI, _SA, _SLP, _SLPe, _LP, _NGSPP, _OS, _RCLP, _MG, _SAt, _IRA, _CC, _CTo, _AC, _IRCP, _PGM, _PGC],
|
|
1755
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, () => exports.ResourceCreationLimitPolicy$, 64 | 0, 64 | 0, 0, () => exports.CertificateConfiguration$, 0, () => exports.AnywhereConfiguration$, 0, 0, () => exports.PlayerGatewayConfiguration$]
|
|
1741
1756
|
];
|
|
1742
1757
|
exports.FleetCapacity$ = [3, n0, _FCl,
|
|
1743
1758
|
0,
|
|
@@ -1796,13 +1811,13 @@ exports.GameServerInstance$ = [3, n0, _GSIame,
|
|
|
1796
1811
|
];
|
|
1797
1812
|
exports.GameSession$ = [3, n0, _GSa,
|
|
1798
1813
|
0,
|
|
1799
|
-
[_GSIa, _N, _FI, _FA, _CT, _TT, _CPSC, _MPSC, _St, _SR, _GP, _IA, _DN, _Po, _PSCP, _CIr, _GSDa, _MD, _L],
|
|
1800
|
-
[0, 0, 0, 0, 4, 4, 1, 1, 0, 0, () => GamePropertyList, [() => IpAddress, 0], 0, [() => PortNumber, 0], 0, 0, 0, 0, 0]
|
|
1814
|
+
[_GSIa, _N, _FI, _FA, _CT, _TT, _CPSC, _MPSC, _St, _SR, _GP, _IA, _DN, _Po, _PSCP, _CIr, _GSDa, _MD, _L, _PGS],
|
|
1815
|
+
[0, 0, 0, 0, 4, 4, 1, 1, 0, 0, () => GamePropertyList, [() => IpAddress, 0], 0, [() => PortNumber, 0], 0, 0, 0, 0, 0, 0]
|
|
1801
1816
|
];
|
|
1802
1817
|
exports.GameSessionConnectionInfo$ = [3, n0, _GSCI,
|
|
1803
1818
|
0,
|
|
1804
|
-
[_GSA, _IA, _DN, _Po, _MPS],
|
|
1805
|
-
[0, [() => IpAddress, 0], 0, 1, [() => MatchedPlayerSessionList, 0]]
|
|
1819
|
+
[_GSA, _IA, _DN, _Po, _MPS, _PGS],
|
|
1820
|
+
[0, [() => IpAddress, 0], 0, 1, [() => MatchedPlayerSessionList, 0], 0]
|
|
1806
1821
|
];
|
|
1807
1822
|
exports.GameSessionCreationLimitPolicy$ = [3, n0, _GSCLP,
|
|
1808
1823
|
0,
|
|
@@ -1816,8 +1831,8 @@ exports.GameSessionDetail$ = [3, n0, _GSDame,
|
|
|
1816
1831
|
];
|
|
1817
1832
|
exports.GameSessionPlacement$ = [3, n0, _GSP,
|
|
1818
1833
|
0,
|
|
1819
|
-
[_PIla, _GSQN, _St, _GP, _MPSC, _GSN, _GSIa, _GSA, _GSR, _PL, _STt, _ET, _IA, _DN, _Po, _PPS, _GSDa, _MD, _PCO],
|
|
1820
|
-
[0, 0, 0, () => GamePropertyList, 1, 0, 0, 0, 0, [() => PlayerLatencyList, 0], 4, 4, [() => IpAddress, 0], 0, [() => PortNumber, 0], [() => PlacedPlayerSessionList, 0], 0, 0, () => exports.PriorityConfigurationOverride
|
|
1834
|
+
[_PIla, _GSQN, _St, _GP, _MPSC, _GSN, _GSIa, _GSA, _GSR, _PL, _STt, _ET, _IA, _DN, _Po, _PPS, _GSDa, _MD, _PCO, _PGS],
|
|
1835
|
+
[0, 0, 0, () => GamePropertyList, 1, 0, 0, 0, 0, [() => PlayerLatencyList, 0], 4, 4, [() => IpAddress, 0], 0, [() => PortNumber, 0], [() => PlacedPlayerSessionList, 0], 0, 0, () => exports.PriorityConfigurationOverride$, 0]
|
|
1821
1836
|
];
|
|
1822
1837
|
exports.GameSessionQueue$ = [3, n0, _GSQ,
|
|
1823
1838
|
0,
|
|
@@ -1869,6 +1884,16 @@ exports.GetInstanceAccessOutput$ = [3, n0, _GIAO,
|
|
|
1869
1884
|
[_IAn],
|
|
1870
1885
|
[[() => exports.InstanceAccess$, 0]]
|
|
1871
1886
|
];
|
|
1887
|
+
exports.GetPlayerConnectionDetailsInput$ = [3, n0, _GPCDI,
|
|
1888
|
+
0,
|
|
1889
|
+
[_GSIa, _PIl],
|
|
1890
|
+
[0, [() => PlayerIdList, 0]], 2
|
|
1891
|
+
];
|
|
1892
|
+
exports.GetPlayerConnectionDetailsOutput$ = [3, n0, _GPCDO,
|
|
1893
|
+
0,
|
|
1894
|
+
[_GSIa, _PCD],
|
|
1895
|
+
[0, [() => PlayerConnectionDetailList, 0]]
|
|
1896
|
+
];
|
|
1872
1897
|
exports.Instance$ = [3, n0, _Ins,
|
|
1873
1898
|
0,
|
|
1874
1899
|
[_FI, _FA, _II, _IA, _DN, _OS, _T, _St, _CT, _L],
|
|
@@ -2051,8 +2076,8 @@ exports.LocationModel$ = [3, n0, _LM,
|
|
|
2051
2076
|
];
|
|
2052
2077
|
exports.LocationState$ = [3, n0, _LSo,
|
|
2053
2078
|
0,
|
|
2054
|
-
[_L, _St],
|
|
2055
|
-
[0, 0]
|
|
2079
|
+
[_L, _St, _PGS],
|
|
2080
|
+
[0, 0, 0]
|
|
2056
2081
|
];
|
|
2057
2082
|
exports.LogConfiguration$ = [3, n0, _LC,
|
|
2058
2083
|
0,
|
|
@@ -2099,6 +2124,21 @@ exports.Player$ = [3, n0, _Pla,
|
|
|
2099
2124
|
[_PI, _PA, _Te, _LIM],
|
|
2100
2125
|
[[() => PlayerId, 0], () => PlayerAttributeMap, 0, 128 | 1]
|
|
2101
2126
|
];
|
|
2127
|
+
exports.PlayerConnectionDetail$ = [3, n0, _PCDl,
|
|
2128
|
+
0,
|
|
2129
|
+
[_PI, _En, _PGT, _Ex],
|
|
2130
|
+
[[() => PlayerId, 0], [() => PlayerConnectionEndpointList, 0], 0, 4]
|
|
2131
|
+
];
|
|
2132
|
+
exports.PlayerConnectionEndpoint$ = [3, n0, _PCE,
|
|
2133
|
+
0,
|
|
2134
|
+
[_IA, _Po],
|
|
2135
|
+
[[() => IpAddress, 0], [() => PortNumber, 0]]
|
|
2136
|
+
];
|
|
2137
|
+
exports.PlayerGatewayConfiguration$ = [3, n0, _PGC,
|
|
2138
|
+
0,
|
|
2139
|
+
[_GSIPS],
|
|
2140
|
+
[0]
|
|
2141
|
+
];
|
|
2102
2142
|
exports.PlayerLatency$ = [3, n0, _PLl,
|
|
2103
2143
|
0,
|
|
2104
2144
|
[_PI, _RIe, _LIMa],
|
|
@@ -2681,6 +2721,14 @@ var PlacedPlayerSessionList = [1, n0, _PPSL,
|
|
|
2681
2721
|
0]
|
|
2682
2722
|
];
|
|
2683
2723
|
var PlayerAttributeStringList = 64 | 0;
|
|
2724
|
+
var PlayerConnectionDetailList = [1, n0, _PCDL,
|
|
2725
|
+
0, [() => exports.PlayerConnectionDetail$,
|
|
2726
|
+
0]
|
|
2727
|
+
];
|
|
2728
|
+
var PlayerConnectionEndpointList = [1, n0, _PCEL,
|
|
2729
|
+
0, [() => exports.PlayerConnectionEndpoint$,
|
|
2730
|
+
0]
|
|
2731
|
+
];
|
|
2684
2732
|
var PlayerIdList = [1, n0, _PIL,
|
|
2685
2733
|
8, [() => PlayerId,
|
|
2686
2734
|
0]
|
|
@@ -2960,6 +3008,9 @@ exports.GetGameSessionLogUrl$ = [9, n0, _GGSLU,
|
|
|
2960
3008
|
exports.GetInstanceAccess$ = [9, n0, _GIA,
|
|
2961
3009
|
0, () => exports.GetInstanceAccessInput$, () => exports.GetInstanceAccessOutput$
|
|
2962
3010
|
];
|
|
3011
|
+
exports.GetPlayerConnectionDetails$ = [9, n0, _GPCD,
|
|
3012
|
+
0, () => exports.GetPlayerConnectionDetailsInput$, () => exports.GetPlayerConnectionDetailsOutput$
|
|
3013
|
+
];
|
|
2963
3014
|
exports.ListAliases$ = [9, n0, _LAi,
|
|
2964
3015
|
0, () => exports.ListAliasesInput$, () => exports.ListAliasesOutput$
|
|
2965
3016
|
];
|
package/dist-es/GameLift.js
CHANGED
|
@@ -71,6 +71,7 @@ import { GetComputeAccessCommand, } from "./commands/GetComputeAccessCommand";
|
|
|
71
71
|
import { GetComputeAuthTokenCommand, } from "./commands/GetComputeAuthTokenCommand";
|
|
72
72
|
import { GetGameSessionLogUrlCommand, } from "./commands/GetGameSessionLogUrlCommand";
|
|
73
73
|
import { GetInstanceAccessCommand, } from "./commands/GetInstanceAccessCommand";
|
|
74
|
+
import { GetPlayerConnectionDetailsCommand, } from "./commands/GetPlayerConnectionDetailsCommand";
|
|
74
75
|
import { ListAliasesCommand } from "./commands/ListAliasesCommand";
|
|
75
76
|
import { ListBuildsCommand } from "./commands/ListBuildsCommand";
|
|
76
77
|
import { ListComputeCommand } from "./commands/ListComputeCommand";
|
|
@@ -218,6 +219,7 @@ const commands = {
|
|
|
218
219
|
GetComputeAuthTokenCommand,
|
|
219
220
|
GetGameSessionLogUrlCommand,
|
|
220
221
|
GetInstanceAccessCommand,
|
|
222
|
+
GetPlayerConnectionDetailsCommand,
|
|
221
223
|
ListAliasesCommand,
|
|
222
224
|
ListBuildsCommand,
|
|
223
225
|
ListComputeCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetPlayerConnectionDetails$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetPlayerConnectionDetailsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("GameLift", "GetPlayerConnectionDetails", {})
|
|
13
|
+
.n("GameLiftClient", "GetPlayerConnectionDetailsCommand")
|
|
14
|
+
.sc(GetPlayerConnectionDetails$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -70,6 +70,7 @@ export * from "./GetComputeAccessCommand";
|
|
|
70
70
|
export * from "./GetComputeAuthTokenCommand";
|
|
71
71
|
export * from "./GetGameSessionLogUrlCommand";
|
|
72
72
|
export * from "./GetInstanceAccessCommand";
|
|
73
|
+
export * from "./GetPlayerConnectionDetailsCommand";
|
|
73
74
|
export * from "./ListAliasesCommand";
|
|
74
75
|
export * from "./ListBuildsCommand";
|
|
75
76
|
export * from "./ListComputeCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -580,6 +580,10 @@ export const IpProtocol = {
|
|
|
580
580
|
TCP: "TCP",
|
|
581
581
|
UDP: "UDP",
|
|
582
582
|
};
|
|
583
|
+
export const PlayerGatewayStatus = {
|
|
584
|
+
DISABLED: "DISABLED",
|
|
585
|
+
ENABLED: "ENABLED",
|
|
586
|
+
};
|
|
583
587
|
export const ContainerFleetLocationStatus = {
|
|
584
588
|
ACTIVATING: "ACTIVATING",
|
|
585
589
|
ACTIVE: "ACTIVE",
|
|
@@ -598,6 +602,11 @@ export const ProtectionPolicy = {
|
|
|
598
602
|
FullProtection: "FullProtection",
|
|
599
603
|
NoProtection: "NoProtection",
|
|
600
604
|
};
|
|
605
|
+
export const PlayerGatewayMode = {
|
|
606
|
+
DISABLED: "DISABLED",
|
|
607
|
+
ENABLED: "ENABLED",
|
|
608
|
+
REQUIRED: "REQUIRED",
|
|
609
|
+
};
|
|
601
610
|
export const ContainerFleetStatus = {
|
|
602
611
|
ACTIVATING: "ACTIVATING",
|
|
603
612
|
ACTIVE: "ACTIVE",
|
|
@@ -633,6 +642,10 @@ export const FleetType = {
|
|
|
633
642
|
export const InstanceRoleCredentialsProvider = {
|
|
634
643
|
SHARED_CREDENTIAL_FILE: "SHARED_CREDENTIAL_FILE",
|
|
635
644
|
};
|
|
645
|
+
export const GameServerIpProtocolSupported = {
|
|
646
|
+
DUAL_STACK: "DUAL_STACK",
|
|
647
|
+
IPv4: "IPv4",
|
|
648
|
+
};
|
|
636
649
|
export const FleetStatus = {
|
|
637
650
|
ACTIVATING: "ACTIVATING",
|
|
638
651
|
ACTIVE: "ACTIVE",
|
|
@@ -322,8 +322,10 @@ const _ETv = "EventTime";
|
|
|
322
322
|
const _ETx = "ExpirationTimestamp";
|
|
323
323
|
const _ETxp = "ExpirationTime";
|
|
324
324
|
const _EWT = "EstimatedWaitTime";
|
|
325
|
+
const _En = "Endpoints";
|
|
325
326
|
const _Es = "Essential";
|
|
326
327
|
const _Ev = "Event";
|
|
328
|
+
const _Ex = "Expiration";
|
|
327
329
|
const _F = "Filters";
|
|
328
330
|
const _FA = "FleetArn";
|
|
329
331
|
const _FAL = "FleetAttributesList";
|
|
@@ -361,6 +363,9 @@ const _GLAE = "GameLiftAgentEndpoint";
|
|
|
361
363
|
const _GLSSE = "GameLiftServiceSdkEndpoint";
|
|
362
364
|
const _GLVI = "GameLiftVpcId";
|
|
363
365
|
const _GP = "GameProperties";
|
|
366
|
+
const _GPCD = "GetPlayerConnectionDetails";
|
|
367
|
+
const _GPCDI = "GetPlayerConnectionDetailsInput";
|
|
368
|
+
const _GPCDO = "GetPlayerConnectionDetailsOutput";
|
|
364
369
|
const _GPL = "GamePropertyList";
|
|
365
370
|
const _GPa = "GameProperty";
|
|
366
371
|
const _GS = "GameServer";
|
|
@@ -387,6 +392,7 @@ const _GSGASP = "GameServerGroupAutoScalingPolicy";
|
|
|
387
392
|
const _GSGN = "GameServerGroupName";
|
|
388
393
|
const _GSGa = "GameServerGroups";
|
|
389
394
|
const _GSI = "GameServerId";
|
|
395
|
+
const _GSIPS = "GameServerIpProtocolSupported";
|
|
390
396
|
const _GSIa = "GameSessionId";
|
|
391
397
|
const _GSIam = "GameServerInstances";
|
|
392
398
|
const _GSIame = "GameServerInstance";
|
|
@@ -562,6 +568,11 @@ const _PA = "PlayerAttributes";
|
|
|
562
568
|
const _PAM = "PlayerAttributeMap";
|
|
563
569
|
const _PB = "PingBeacon";
|
|
564
570
|
const _PC = "PriorityConfiguration";
|
|
571
|
+
const _PCD = "PlayerConnectionDetails";
|
|
572
|
+
const _PCDL = "PlayerConnectionDetailList";
|
|
573
|
+
const _PCDl = "PlayerConnectionDetail";
|
|
574
|
+
const _PCE = "PlayerConnectionEndpoint";
|
|
575
|
+
const _PCEL = "PlayerConnectionEndpointList";
|
|
565
576
|
const _PCO = "PriorityConfigurationOverride";
|
|
566
577
|
const _PCo = "PortConfiguration";
|
|
567
578
|
const _PD = "PlayerData";
|
|
@@ -569,6 +580,10 @@ const _PDM = "PlayerDataMap";
|
|
|
569
580
|
const _PDS = "PolicyDurationSeconds";
|
|
570
581
|
const _PENDING = "PENDING";
|
|
571
582
|
const _PFS = "PlacementFallbackStrategy";
|
|
583
|
+
const _PGC = "PlayerGatewayConfiguration";
|
|
584
|
+
const _PGM = "PlayerGatewayMode";
|
|
585
|
+
const _PGS = "PlayerGatewayStatus";
|
|
586
|
+
const _PGT = "PlayerGatewayToken";
|
|
572
587
|
const _PI = "PlayerId";
|
|
573
588
|
const _PIBA = "PerInstanceBinaryArn";
|
|
574
589
|
const _PICGDA = "PerInstanceContainerGroupDefinitionArn";
|
|
@@ -1019,13 +1034,13 @@ export var ContainerEnvironment$ = [3, n0, _CEo,
|
|
|
1019
1034
|
];
|
|
1020
1035
|
export var ContainerFleet$ = [3, n0, _CF,
|
|
1021
1036
|
0,
|
|
1022
|
-
[_FI, _FA, _FRA, _GSCGDN, _GSCGDA, _PICGDN, _PICGDA, _ICPR, _IIP, _GSCGPI, _MGSCGPI, _IT, _BT, _D, _CT, _MG, _NGSPP, _GSCLP, _St, _DD, _LC, _LA],
|
|
1023
|
-
[0, 0, 0, 0, 0, 0, 0, [() => ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 1, 0, 0, 0, 4, 64 | 0, 0, () => GameSessionCreationLimitPolicy$, 0, () => DeploymentDetails$, () => LogConfiguration$, () => ContainerFleetLocationAttributesList]
|
|
1037
|
+
[_FI, _FA, _FRA, _GSCGDN, _GSCGDA, _PICGDN, _PICGDA, _ICPR, _IIP, _GSCGPI, _MGSCGPI, _IT, _BT, _D, _CT, _MG, _NGSPP, _GSCLP, _St, _DD, _LC, _LA, _PGM],
|
|
1038
|
+
[0, 0, 0, 0, 0, 0, 0, [() => ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 1, 0, 0, 0, 4, 64 | 0, 0, () => GameSessionCreationLimitPolicy$, 0, () => DeploymentDetails$, () => LogConfiguration$, () => ContainerFleetLocationAttributesList, 0]
|
|
1024
1039
|
];
|
|
1025
1040
|
export var ContainerFleetLocationAttributes$ = [3, n0, _CFLA,
|
|
1026
1041
|
0,
|
|
1027
|
-
[_L, _St],
|
|
1028
|
-
[0, 0]
|
|
1042
|
+
[_L, _St, _PGS],
|
|
1043
|
+
[0, 0, 0]
|
|
1029
1044
|
];
|
|
1030
1045
|
export var ContainerGroupDefinition$ = [3, n0, _CGD,
|
|
1031
1046
|
0,
|
|
@@ -1079,8 +1094,8 @@ export var CreateBuildOutput$ = [3, n0, _CBO,
|
|
|
1079
1094
|
];
|
|
1080
1095
|
export var CreateContainerFleetInput$ = [3, n0, _CCFI,
|
|
1081
1096
|
0,
|
|
1082
|
-
[_FRA, _D, _GSCGDN, _PICGDN, _ICPR, _IIP, _GSCGPI, _IT, _BT, _Lo, _MG, _NGSPP, _GSCLP, _LC, _Ta],
|
|
1083
|
-
[0, 0, 0, 0, [() => ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 0, 0, () => LocationConfigurationList, 64 | 0, 0, () => GameSessionCreationLimitPolicy$, () => LogConfiguration$, () => TagList], 1
|
|
1097
|
+
[_FRA, _D, _GSCGDN, _PICGDN, _ICPR, _IIP, _GSCGPI, _IT, _BT, _Lo, _MG, _NGSPP, _GSCLP, _LC, _Ta, _PGM],
|
|
1098
|
+
[0, 0, 0, 0, [() => ConnectionPortRange$, 0], [() => IpPermissionsList, 0], 1, 0, 0, () => LocationConfigurationList, 64 | 0, 0, () => GameSessionCreationLimitPolicy$, () => LogConfiguration$, () => TagList, 0], 1
|
|
1084
1099
|
];
|
|
1085
1100
|
export var CreateContainerFleetOutput$ = [3, n0, _CCFO,
|
|
1086
1101
|
0,
|
|
@@ -1099,8 +1114,8 @@ export var CreateContainerGroupDefinitionOutput$ = [3, n0, _CCGDO,
|
|
|
1099
1114
|
];
|
|
1100
1115
|
export var CreateFleetInput$ = [3, n0, _CFI,
|
|
1101
1116
|
0,
|
|
1102
|
-
[_N, _D, _BI, _SI, _SLP, _SLPe, _LP, _ECIT, _ECIP, _NGSPP, _RC, _RCLP, _MG, _PVAAI, _PVI, _FT, _IRA, _CC, _Lo, _Ta, _CTo, _AC, _IRCP],
|
|
1103
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 0, [() => IpPermissionsList, 0], 0, () => RuntimeConfiguration$, () => ResourceCreationLimitPolicy$, 64 | 0, 0, 0, 0, 0, () => CertificateConfiguration$, () => LocationConfigurationList, () => TagList, 0, () => AnywhereConfiguration$, 0], 1
|
|
1117
|
+
[_N, _D, _BI, _SI, _SLP, _SLPe, _LP, _ECIT, _ECIP, _NGSPP, _RC, _RCLP, _MG, _PVAAI, _PVI, _FT, _IRA, _CC, _Lo, _Ta, _CTo, _AC, _IRCP, _PGM, _PGC],
|
|
1118
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0, [() => IpPermissionsList, 0], 0, () => RuntimeConfiguration$, () => ResourceCreationLimitPolicy$, 64 | 0, 0, 0, 0, 0, () => CertificateConfiguration$, () => LocationConfigurationList, () => TagList, 0, () => AnywhereConfiguration$, 0, 0, () => PlayerGatewayConfiguration$], 1
|
|
1104
1119
|
];
|
|
1105
1120
|
export var CreateFleetLocationsInput$ = [3, n0, _CFLI,
|
|
1106
1121
|
0,
|
|
@@ -1724,8 +1739,8 @@ export var FilterConfiguration$ = [3, n0, _FC,
|
|
|
1724
1739
|
];
|
|
1725
1740
|
export var FleetAttributes$ = [3, n0, _FAl,
|
|
1726
1741
|
0,
|
|
1727
|
-
[_FI, _FA, _FT, _IT, _D, _N, _CT, _TT, _St, _BI, _BA, _SI, _SA, _SLP, _SLPe, _LP, _NGSPP, _OS, _RCLP, _MG, _SAt, _IRA, _CC, _CTo, _AC, _IRCP],
|
|
1728
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, () => ResourceCreationLimitPolicy$, 64 | 0, 64 | 0, 0, () => CertificateConfiguration$, 0, () => AnywhereConfiguration$, 0]
|
|
1742
|
+
[_FI, _FA, _FT, _IT, _D, _N, _CT, _TT, _St, _BI, _BA, _SI, _SA, _SLP, _SLPe, _LP, _NGSPP, _OS, _RCLP, _MG, _SAt, _IRA, _CC, _CTo, _AC, _IRCP, _PGM, _PGC],
|
|
1743
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, () => ResourceCreationLimitPolicy$, 64 | 0, 64 | 0, 0, () => CertificateConfiguration$, 0, () => AnywhereConfiguration$, 0, 0, () => PlayerGatewayConfiguration$]
|
|
1729
1744
|
];
|
|
1730
1745
|
export var FleetCapacity$ = [3, n0, _FCl,
|
|
1731
1746
|
0,
|
|
@@ -1784,13 +1799,13 @@ export var GameServerInstance$ = [3, n0, _GSIame,
|
|
|
1784
1799
|
];
|
|
1785
1800
|
export var GameSession$ = [3, n0, _GSa,
|
|
1786
1801
|
0,
|
|
1787
|
-
[_GSIa, _N, _FI, _FA, _CT, _TT, _CPSC, _MPSC, _St, _SR, _GP, _IA, _DN, _Po, _PSCP, _CIr, _GSDa, _MD, _L],
|
|
1788
|
-
[0, 0, 0, 0, 4, 4, 1, 1, 0, 0, () => GamePropertyList, [() => IpAddress, 0], 0, [() => PortNumber, 0], 0, 0, 0, 0, 0]
|
|
1802
|
+
[_GSIa, _N, _FI, _FA, _CT, _TT, _CPSC, _MPSC, _St, _SR, _GP, _IA, _DN, _Po, _PSCP, _CIr, _GSDa, _MD, _L, _PGS],
|
|
1803
|
+
[0, 0, 0, 0, 4, 4, 1, 1, 0, 0, () => GamePropertyList, [() => IpAddress, 0], 0, [() => PortNumber, 0], 0, 0, 0, 0, 0, 0]
|
|
1789
1804
|
];
|
|
1790
1805
|
export var GameSessionConnectionInfo$ = [3, n0, _GSCI,
|
|
1791
1806
|
0,
|
|
1792
|
-
[_GSA, _IA, _DN, _Po, _MPS],
|
|
1793
|
-
[0, [() => IpAddress, 0], 0, 1, [() => MatchedPlayerSessionList, 0]]
|
|
1807
|
+
[_GSA, _IA, _DN, _Po, _MPS, _PGS],
|
|
1808
|
+
[0, [() => IpAddress, 0], 0, 1, [() => MatchedPlayerSessionList, 0], 0]
|
|
1794
1809
|
];
|
|
1795
1810
|
export var GameSessionCreationLimitPolicy$ = [3, n0, _GSCLP,
|
|
1796
1811
|
0,
|
|
@@ -1804,8 +1819,8 @@ export var GameSessionDetail$ = [3, n0, _GSDame,
|
|
|
1804
1819
|
];
|
|
1805
1820
|
export var GameSessionPlacement$ = [3, n0, _GSP,
|
|
1806
1821
|
0,
|
|
1807
|
-
[_PIla, _GSQN, _St, _GP, _MPSC, _GSN, _GSIa, _GSA, _GSR, _PL, _STt, _ET, _IA, _DN, _Po, _PPS, _GSDa, _MD, _PCO],
|
|
1808
|
-
[0, 0, 0, () => GamePropertyList, 1, 0, 0, 0, 0, [() => PlayerLatencyList, 0], 4, 4, [() => IpAddress, 0], 0, [() => PortNumber, 0], [() => PlacedPlayerSessionList, 0], 0, 0, () => PriorityConfigurationOverride
|
|
1822
|
+
[_PIla, _GSQN, _St, _GP, _MPSC, _GSN, _GSIa, _GSA, _GSR, _PL, _STt, _ET, _IA, _DN, _Po, _PPS, _GSDa, _MD, _PCO, _PGS],
|
|
1823
|
+
[0, 0, 0, () => GamePropertyList, 1, 0, 0, 0, 0, [() => PlayerLatencyList, 0], 4, 4, [() => IpAddress, 0], 0, [() => PortNumber, 0], [() => PlacedPlayerSessionList, 0], 0, 0, () => PriorityConfigurationOverride$, 0]
|
|
1809
1824
|
];
|
|
1810
1825
|
export var GameSessionQueue$ = [3, n0, _GSQ,
|
|
1811
1826
|
0,
|
|
@@ -1857,6 +1872,16 @@ export var GetInstanceAccessOutput$ = [3, n0, _GIAO,
|
|
|
1857
1872
|
[_IAn],
|
|
1858
1873
|
[[() => InstanceAccess$, 0]]
|
|
1859
1874
|
];
|
|
1875
|
+
export var GetPlayerConnectionDetailsInput$ = [3, n0, _GPCDI,
|
|
1876
|
+
0,
|
|
1877
|
+
[_GSIa, _PIl],
|
|
1878
|
+
[0, [() => PlayerIdList, 0]], 2
|
|
1879
|
+
];
|
|
1880
|
+
export var GetPlayerConnectionDetailsOutput$ = [3, n0, _GPCDO,
|
|
1881
|
+
0,
|
|
1882
|
+
[_GSIa, _PCD],
|
|
1883
|
+
[0, [() => PlayerConnectionDetailList, 0]]
|
|
1884
|
+
];
|
|
1860
1885
|
export var Instance$ = [3, n0, _Ins,
|
|
1861
1886
|
0,
|
|
1862
1887
|
[_FI, _FA, _II, _IA, _DN, _OS, _T, _St, _CT, _L],
|
|
@@ -2039,8 +2064,8 @@ export var LocationModel$ = [3, n0, _LM,
|
|
|
2039
2064
|
];
|
|
2040
2065
|
export var LocationState$ = [3, n0, _LSo,
|
|
2041
2066
|
0,
|
|
2042
|
-
[_L, _St],
|
|
2043
|
-
[0, 0]
|
|
2067
|
+
[_L, _St, _PGS],
|
|
2068
|
+
[0, 0, 0]
|
|
2044
2069
|
];
|
|
2045
2070
|
export var LogConfiguration$ = [3, n0, _LC,
|
|
2046
2071
|
0,
|
|
@@ -2087,6 +2112,21 @@ export var Player$ = [3, n0, _Pla,
|
|
|
2087
2112
|
[_PI, _PA, _Te, _LIM],
|
|
2088
2113
|
[[() => PlayerId, 0], () => PlayerAttributeMap, 0, 128 | 1]
|
|
2089
2114
|
];
|
|
2115
|
+
export var PlayerConnectionDetail$ = [3, n0, _PCDl,
|
|
2116
|
+
0,
|
|
2117
|
+
[_PI, _En, _PGT, _Ex],
|
|
2118
|
+
[[() => PlayerId, 0], [() => PlayerConnectionEndpointList, 0], 0, 4]
|
|
2119
|
+
];
|
|
2120
|
+
export var PlayerConnectionEndpoint$ = [3, n0, _PCE,
|
|
2121
|
+
0,
|
|
2122
|
+
[_IA, _Po],
|
|
2123
|
+
[[() => IpAddress, 0], [() => PortNumber, 0]]
|
|
2124
|
+
];
|
|
2125
|
+
export var PlayerGatewayConfiguration$ = [3, n0, _PGC,
|
|
2126
|
+
0,
|
|
2127
|
+
[_GSIPS],
|
|
2128
|
+
[0]
|
|
2129
|
+
];
|
|
2090
2130
|
export var PlayerLatency$ = [3, n0, _PLl,
|
|
2091
2131
|
0,
|
|
2092
2132
|
[_PI, _RIe, _LIMa],
|
|
@@ -2669,6 +2709,14 @@ var PlacedPlayerSessionList = [1, n0, _PPSL,
|
|
|
2669
2709
|
0]
|
|
2670
2710
|
];
|
|
2671
2711
|
var PlayerAttributeStringList = 64 | 0;
|
|
2712
|
+
var PlayerConnectionDetailList = [1, n0, _PCDL,
|
|
2713
|
+
0, [() => PlayerConnectionDetail$,
|
|
2714
|
+
0]
|
|
2715
|
+
];
|
|
2716
|
+
var PlayerConnectionEndpointList = [1, n0, _PCEL,
|
|
2717
|
+
0, [() => PlayerConnectionEndpoint$,
|
|
2718
|
+
0]
|
|
2719
|
+
];
|
|
2672
2720
|
var PlayerIdList = [1, n0, _PIL,
|
|
2673
2721
|
8, [() => PlayerId,
|
|
2674
2722
|
0]
|
|
@@ -2948,6 +2996,9 @@ export var GetGameSessionLogUrl$ = [9, n0, _GGSLU,
|
|
|
2948
2996
|
export var GetInstanceAccess$ = [9, n0, _GIA,
|
|
2949
2997
|
0, () => GetInstanceAccessInput$, () => GetInstanceAccessOutput$
|
|
2950
2998
|
];
|
|
2999
|
+
export var GetPlayerConnectionDetails$ = [9, n0, _GPCD,
|
|
3000
|
+
0, () => GetPlayerConnectionDetailsInput$, () => GetPlayerConnectionDetailsOutput$
|
|
3001
|
+
];
|
|
2951
3002
|
export var ListAliases$ = [9, n0, _LAi,
|
|
2952
3003
|
0, () => ListAliasesInput$, () => ListAliasesOutput$
|
|
2953
3004
|
];
|