@aws-sdk/client-gamelift 3.1038.0 → 3.1040.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 +14 -0
- package/dist-cjs/schemas/schemas_0.js +52 -10
- package/dist-es/GameLift.js +2 -0
- package/dist-es/commands/DescribeContainerGroupPortMappingsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +42 -0
- package/dist-types/GameLift.d.ts +7 -0
- package/dist-types/GameLiftClient.d.ts +3 -2
- package/dist-types/commands/DescribeContainerGroupPortMappingsCommand.d.ts +160 -0
- package/dist-types/commands/DescribeEC2InstanceLimitsCommand.d.ts +15 -12
- package/dist-types/commands/SearchGameSessionsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateContainerFleetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContainerGroupDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +212 -213
- package/dist-types/models/models_1.d.ts +202 -3
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/GameLift.d.ts +23 -0
- package/dist-types/ts3.4/GameLiftClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeContainerGroupPortMappingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContainerFleetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateContainerGroupDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -35
- package/dist-types/ts3.4/models/models_1.d.ts +44 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -564,6 +564,13 @@ DescribeContainerGroupDefinition
|
|
|
564
564
|
</details>
|
|
565
565
|
<details>
|
|
566
566
|
<summary>
|
|
567
|
+
DescribeContainerGroupPortMappings
|
|
568
|
+
</summary>
|
|
569
|
+
|
|
570
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/gamelift/command/DescribeContainerGroupPortMappingsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gamelift/Interface/DescribeContainerGroupPortMappingsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-gamelift/Interface/DescribeContainerGroupPortMappingsCommandOutput/)
|
|
571
|
+
</details>
|
|
572
|
+
<details>
|
|
573
|
+
<summary>
|
|
567
574
|
DescribeEC2InstanceLimits
|
|
568
575
|
</summary>
|
|
569
576
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -605,6 +605,18 @@ class DescribeContainerGroupDefinitionCommand extends smithyClient.Command
|
|
|
605
605
|
.build() {
|
|
606
606
|
}
|
|
607
607
|
|
|
608
|
+
class DescribeContainerGroupPortMappingsCommand extends smithyClient.Command
|
|
609
|
+
.classBuilder()
|
|
610
|
+
.ep(commonParams)
|
|
611
|
+
.m(function (Command, cs, config, o) {
|
|
612
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
613
|
+
})
|
|
614
|
+
.s("GameLift", "DescribeContainerGroupPortMappings", {})
|
|
615
|
+
.n("GameLiftClient", "DescribeContainerGroupPortMappingsCommand")
|
|
616
|
+
.sc(schemas_0.DescribeContainerGroupPortMappings$)
|
|
617
|
+
.build() {
|
|
618
|
+
}
|
|
619
|
+
|
|
608
620
|
class DescribeEC2InstanceLimitsCommand extends smithyClient.Command
|
|
609
621
|
.classBuilder()
|
|
610
622
|
.ep(commonParams)
|
|
@@ -1637,6 +1649,7 @@ const commands = {
|
|
|
1637
1649
|
DescribeComputeCommand,
|
|
1638
1650
|
DescribeContainerFleetCommand,
|
|
1639
1651
|
DescribeContainerGroupDefinitionCommand,
|
|
1652
|
+
DescribeContainerGroupPortMappingsCommand,
|
|
1640
1653
|
DescribeEC2InstanceLimitsCommand,
|
|
1641
1654
|
DescribeFleetAttributesCommand,
|
|
1642
1655
|
DescribeFleetCapacityCommand,
|
|
@@ -2784,6 +2797,7 @@ exports.DescribeBuildCommand = DescribeBuildCommand;
|
|
|
2784
2797
|
exports.DescribeComputeCommand = DescribeComputeCommand;
|
|
2785
2798
|
exports.DescribeContainerFleetCommand = DescribeContainerFleetCommand;
|
|
2786
2799
|
exports.DescribeContainerGroupDefinitionCommand = DescribeContainerGroupDefinitionCommand;
|
|
2800
|
+
exports.DescribeContainerGroupPortMappingsCommand = DescribeContainerGroupPortMappingsCommand;
|
|
2787
2801
|
exports.DescribeEC2InstanceLimitsCommand = DescribeEC2InstanceLimitsCommand;
|
|
2788
2802
|
exports.DescribeFleetAttributesCommand = DescribeFleetAttributesCommand;
|
|
2789
2803
|
exports.DescribeFleetCapacityCommand = DescribeFleetCapacityCommand;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.ValidateMatchmakingRuleSet$ = exports.UpdateScript$ = exports.UpdateRuntimeConfiguration$ = exports.UpdateMatchmakingConfiguration$ = exports.UpdateGameSessionQueue$ = exports.UpdateGameSession$ = exports.UpdateGameServerGroup$ = exports.UpdateGameServer$ = exports.UpdateFleetPortSettings$ = void 0;
|
|
3
|
+
exports.CreateContainerFleetOutput$ = exports.CreateContainerFleetInput$ = exports.CreateBuildOutput$ = exports.CreateBuildInput$ = exports.CreateAliasOutput$ = exports.CreateAliasInput$ = exports.ContainerPortRange$ = exports.ContainerPortMapping$ = exports.ContainerPortConfiguration$ = exports.ContainerMountPoint$ = exports.ContainerIdentifier$ = exports.ContainerHealthCheck$ = exports.ContainerGroupPortMapping$ = exports.ContainerGroupDefinition$ = exports.ContainerFleetLocationAttributes$ = exports.ContainerFleet$ = exports.ContainerEnvironment$ = exports.ContainerDependency$ = exports.ContainerAttribute$ = exports.ConnectionPortRange$ = exports.Compute$ = exports.ClaimGameServerOutput$ = exports.ClaimGameServerInput$ = exports.ClaimFilterOption$ = exports.CertificateConfiguration$ = exports.Build$ = exports.AwsCredentials$ = exports.AttributeValue$ = exports.AnywhereConfiguration$ = exports.Alias$ = exports.AcceptMatchOutput$ = exports.AcceptMatchInput$ = exports.errorTypeRegistries = exports.UnsupportedRegionException$ = exports.UnauthorizedException$ = exports.TerminalRoutingStrategyException$ = exports.TaggingFailedException$ = exports.OutOfCapacityException$ = exports.NotReadyException$ = exports.NotFoundException$ = exports.LimitExceededException$ = exports.InvalidRequestException$ = exports.InvalidGameSessionStatusException$ = exports.InvalidFleetStatusException$ = exports.InternalServiceException$ = exports.IdempotentParameterMismatchException$ = exports.GameSessionFullException$ = exports.FleetCapacityExceededException$ = exports.ConflictException$ = exports.GameLiftServiceException$ = void 0;
|
|
4
|
+
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$ = exports.CreateContainerGroupDefinitionOutput$ = exports.CreateContainerGroupDefinitionInput$ = void 0;
|
|
5
|
+
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.DescribeContainerGroupPortMappingsOutput$ = exports.DescribeContainerGroupPortMappingsInput$ = 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$ = exports.DeleteVpcPeeringConnectionInput$ = exports.DeleteVpcPeeringAuthorizationOutput$ = void 0;
|
|
6
|
+
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$ = exports.DescribeGameSessionsOutput$ = exports.DescribeGameSessionsInput$ = exports.DescribeGameSessionQueuesOutput$ = exports.DescribeGameSessionQueuesInput$ = void 0;
|
|
7
|
+
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$ = exports.GetGameSessionLogUrlOutput$ = exports.GetGameSessionLogUrlInput$ = exports.GetComputeAuthTokenOutput$ = exports.GetComputeAuthTokenInput$ = void 0;
|
|
8
|
+
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$ = exports.Player$ = exports.PlacedPlayerSession$ = exports.PingBeacon$ = exports.MatchmakingTicket$ = void 0;
|
|
9
|
+
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$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SuspendGameServerGroupOutput$ = void 0;
|
|
10
|
+
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.DescribeContainerGroupPortMappings$ = 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$ = exports.CreateGameSession$ = exports.CreateGameServerGroup$ = exports.CreateFleetLocations$ = exports.CreateFleet$ = void 0;
|
|
11
|
+
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$ = exports.DescribeMatchmaking$ = exports.DescribeInstances$ = exports.DescribeGameSessions$ = exports.DescribeGameSessionQueues$ = exports.DescribeGameSessionPlacement$ = void 0;
|
|
12
|
+
exports.ValidateMatchmakingRuleSet$ = exports.UpdateScript$ = exports.UpdateRuntimeConfiguration$ = exports.UpdateMatchmakingConfiguration$ = exports.UpdateGameSessionQueue$ = exports.UpdateGameSession$ = exports.UpdateGameServerGroup$ = exports.UpdateGameServer$ = exports.UpdateFleetPortSettings$ = exports.UpdateFleetCapacity$ = exports.UpdateFleetAttributes$ = exports.UpdateContainerGroupDefinition$ = exports.UpdateContainerFleet$ = exports.UpdateBuild$ = void 0;
|
|
13
13
|
const _A = "Alias";
|
|
14
14
|
const _AA = "AliasArn";
|
|
15
15
|
const _AC = "AnywhereConfiguration";
|
|
@@ -86,6 +86,9 @@ const _CGDA = "ContainerGroupDefinitionArn";
|
|
|
86
86
|
const _CGDL = "ContainerGroupDefinitionList";
|
|
87
87
|
const _CGDN = "ContainerGroupDefinitionName";
|
|
88
88
|
const _CGDo = "ContainerGroupDefinitions";
|
|
89
|
+
const _CGPM = "ContainerGroupPortMapping";
|
|
90
|
+
const _CGPML = "ContainerGroupPortMappingList";
|
|
91
|
+
const _CGPMo = "ContainerGroupPortMappings";
|
|
89
92
|
const _CGS = "ClaimGameServer";
|
|
90
93
|
const _CGSG = "CreateGameServerGroup";
|
|
91
94
|
const _CGSGI = "CreateGameServerGroupInput";
|
|
@@ -124,6 +127,9 @@ const _CNon = "ConfigurationName";
|
|
|
124
127
|
const _CO = "ComparisonOperator";
|
|
125
128
|
const _CP = "ContainerPath";
|
|
126
129
|
const _CPC = "ContainerPortConfiguration";
|
|
130
|
+
const _CPM = "ContainerPortMappings";
|
|
131
|
+
const _CPML = "ContainerPortMappingList";
|
|
132
|
+
const _CPMo = "ContainerPortMapping";
|
|
127
133
|
const _CPR = "ConnectionPortRange";
|
|
128
134
|
const _CPRL = "ContainerPortRangeList";
|
|
129
135
|
const _CPRo = "ContainerPortRanges";
|
|
@@ -136,6 +142,8 @@ const _CPSO = "CreatePlayerSessionOutput";
|
|
|
136
142
|
const _CPSOr = "CreatePlayerSessionsOutput";
|
|
137
143
|
const _CPSr = "CreatePlayerSessions";
|
|
138
144
|
const _CPe = "CertificatePath";
|
|
145
|
+
const _CPo = "ContainerPort";
|
|
146
|
+
const _CPon = "ConnectionPort";
|
|
139
147
|
const _CRI = "ContainerRuntimeId";
|
|
140
148
|
const _CS = "ComputeStatus";
|
|
141
149
|
const _CSI = "CreateScriptInput";
|
|
@@ -184,6 +192,9 @@ const _DCGDIe = "DescribeContainerGroupDefinitionInput";
|
|
|
184
192
|
const _DCGDO = "DeleteContainerGroupDefinitionOutput";
|
|
185
193
|
const _DCGDOe = "DescribeContainerGroupDefinitionOutput";
|
|
186
194
|
const _DCGDe = "DescribeContainerGroupDefinition";
|
|
195
|
+
const _DCGPM = "DescribeContainerGroupPortMappings";
|
|
196
|
+
const _DCGPMI = "DescribeContainerGroupPortMappingsInput";
|
|
197
|
+
const _DCGPMO = "DescribeContainerGroupPortMappingsOutput";
|
|
187
198
|
const _DCI = "DeregisterComputeInput";
|
|
188
199
|
const _DCIe = "DescribeComputeInput";
|
|
189
200
|
const _DCO = "DeregisterComputeOutput";
|
|
@@ -1059,6 +1070,11 @@ exports.ContainerGroupDefinition$ = [3, n0, _CGD,
|
|
|
1059
1070
|
[_N, _CGDA, _CT, _OS, _CGT, _TMLM, _TVL, _GSCD, _SCD, _VN, _VD, _St, _SR],
|
|
1060
1071
|
[0, 0, 4, 0, 0, 1, 1, [() => exports.GameServerContainerDefinition$, 0], [() => SupportContainerDefinitionList, 0], 1, 0, 0, 0], 1
|
|
1061
1072
|
];
|
|
1073
|
+
exports.ContainerGroupPortMapping$ = [3, n0, _CGPM,
|
|
1074
|
+
0,
|
|
1075
|
+
[_CNo, _CRI, _CPM],
|
|
1076
|
+
[0, 0, [() => ContainerPortMappingList, 0]]
|
|
1077
|
+
];
|
|
1062
1078
|
exports.ContainerHealthCheck$ = [3, n0, _CHC,
|
|
1063
1079
|
0,
|
|
1064
1080
|
[_Com, _I, _R, _SP, _Ti],
|
|
@@ -1079,6 +1095,11 @@ exports.ContainerPortConfiguration$ = [3, n0, _CPC,
|
|
|
1079
1095
|
[_CPRo],
|
|
1080
1096
|
[[() => ContainerPortRangeList, 0]], 1
|
|
1081
1097
|
];
|
|
1098
|
+
exports.ContainerPortMapping$ = [3, n0, _CPMo,
|
|
1099
|
+
0,
|
|
1100
|
+
[_CPo, _CPon, _P],
|
|
1101
|
+
[[() => PortNumber, 0], [() => PortNumber, 0], 0]
|
|
1102
|
+
];
|
|
1082
1103
|
exports.ContainerPortRange$ = [3, n0, _CPRon,
|
|
1083
1104
|
0,
|
|
1084
1105
|
[_FP, _TP, _P],
|
|
@@ -1454,6 +1475,16 @@ exports.DescribeContainerGroupDefinitionOutput$ = [3, n0, _DCGDOe,
|
|
|
1454
1475
|
[_CGD],
|
|
1455
1476
|
[[() => exports.ContainerGroupDefinition$, 0]]
|
|
1456
1477
|
];
|
|
1478
|
+
exports.DescribeContainerGroupPortMappingsInput$ = [3, n0, _DCGPMI,
|
|
1479
|
+
0,
|
|
1480
|
+
[_FI, _CGT, _CN, _II, _CNo],
|
|
1481
|
+
[0, 0, 0, 0, 0], 2
|
|
1482
|
+
];
|
|
1483
|
+
exports.DescribeContainerGroupPortMappingsOutput$ = [3, n0, _DCGPMO,
|
|
1484
|
+
0,
|
|
1485
|
+
[_FI, _L, _CGDA, _CGT, _CN, _II, _CGPMo],
|
|
1486
|
+
[0, 0, 0, 0, 0, 0, [() => ContainerGroupPortMappingList, 0]]
|
|
1487
|
+
];
|
|
1457
1488
|
exports.DescribeEC2InstanceLimitsInput$ = [3, n0, _DECILI,
|
|
1458
1489
|
0,
|
|
1459
1490
|
[_ECIT, _L],
|
|
@@ -2607,12 +2638,20 @@ var ContainerGroupDefinitionList = [1, n0, _CGDL,
|
|
|
2607
2638
|
0, [() => exports.ContainerGroupDefinition$,
|
|
2608
2639
|
0]
|
|
2609
2640
|
];
|
|
2641
|
+
var ContainerGroupPortMappingList = [1, n0, _CGPML,
|
|
2642
|
+
0, [() => exports.ContainerGroupPortMapping$,
|
|
2643
|
+
0]
|
|
2644
|
+
];
|
|
2610
2645
|
var ContainerIdentifierList = [1, n0, _CIL,
|
|
2611
2646
|
0, () => exports.ContainerIdentifier$
|
|
2612
2647
|
];
|
|
2613
2648
|
var ContainerMountPointList = [1, n0, _CMPL,
|
|
2614
2649
|
0, () => exports.ContainerMountPoint$
|
|
2615
2650
|
];
|
|
2651
|
+
var ContainerPortMappingList = [1, n0, _CPML,
|
|
2652
|
+
0, [() => exports.ContainerPortMapping$,
|
|
2653
|
+
0]
|
|
2654
|
+
];
|
|
2616
2655
|
var ContainerPortRangeList = [1, n0, _CPRL,
|
|
2617
2656
|
0, [() => exports.ContainerPortRange$,
|
|
2618
2657
|
0]
|
|
@@ -2915,6 +2954,9 @@ exports.DescribeContainerFleet$ = [9, n0, _DCFe,
|
|
|
2915
2954
|
exports.DescribeContainerGroupDefinition$ = [9, n0, _DCGDe,
|
|
2916
2955
|
0, () => exports.DescribeContainerGroupDefinitionInput$, () => exports.DescribeContainerGroupDefinitionOutput$
|
|
2917
2956
|
];
|
|
2957
|
+
exports.DescribeContainerGroupPortMappings$ = [9, n0, _DCGPM,
|
|
2958
|
+
0, () => exports.DescribeContainerGroupPortMappingsInput$, () => exports.DescribeContainerGroupPortMappingsOutput$
|
|
2959
|
+
];
|
|
2918
2960
|
exports.DescribeEC2InstanceLimits$ = [9, n0, _DECIL,
|
|
2919
2961
|
0, () => exports.DescribeEC2InstanceLimitsInput$, () => exports.DescribeEC2InstanceLimitsOutput$
|
|
2920
2962
|
];
|
package/dist-es/GameLift.js
CHANGED
|
@@ -40,6 +40,7 @@ import { DescribeBuildCommand, } from "./commands/DescribeBuildCommand";
|
|
|
40
40
|
import { DescribeComputeCommand, } from "./commands/DescribeComputeCommand";
|
|
41
41
|
import { DescribeContainerFleetCommand, } from "./commands/DescribeContainerFleetCommand";
|
|
42
42
|
import { DescribeContainerGroupDefinitionCommand, } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
43
|
+
import { DescribeContainerGroupPortMappingsCommand, } from "./commands/DescribeContainerGroupPortMappingsCommand";
|
|
43
44
|
import { DescribeEC2InstanceLimitsCommand, } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
44
45
|
import { DescribeFleetAttributesCommand, } from "./commands/DescribeFleetAttributesCommand";
|
|
45
46
|
import { DescribeFleetCapacityCommand, } from "./commands/DescribeFleetCapacityCommand";
|
|
@@ -188,6 +189,7 @@ const commands = {
|
|
|
188
189
|
DescribeComputeCommand,
|
|
189
190
|
DescribeContainerFleetCommand,
|
|
190
191
|
DescribeContainerGroupDefinitionCommand,
|
|
192
|
+
DescribeContainerGroupPortMappingsCommand,
|
|
191
193
|
DescribeEC2InstanceLimitsCommand,
|
|
192
194
|
DescribeFleetAttributesCommand,
|
|
193
195
|
DescribeFleetCapacityCommand,
|
|
@@ -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 { DescribeContainerGroupPortMappings$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeContainerGroupPortMappingsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("GameLift", "DescribeContainerGroupPortMappings", {})
|
|
13
|
+
.n("GameLiftClient", "DescribeContainerGroupPortMappingsCommand")
|
|
14
|
+
.sc(DescribeContainerGroupPortMappings$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -39,6 +39,7 @@ export * from "./DescribeBuildCommand";
|
|
|
39
39
|
export * from "./DescribeComputeCommand";
|
|
40
40
|
export * from "./DescribeContainerFleetCommand";
|
|
41
41
|
export * from "./DescribeContainerGroupDefinitionCommand";
|
|
42
|
+
export * from "./DescribeContainerGroupPortMappingsCommand";
|
|
42
43
|
export * from "./DescribeEC2InstanceLimitsCommand";
|
|
43
44
|
export * from "./DescribeFleetAttributesCommand";
|
|
44
45
|
export * from "./DescribeFleetCapacityCommand";
|
|
@@ -74,6 +74,9 @@ const _CGDA = "ContainerGroupDefinitionArn";
|
|
|
74
74
|
const _CGDL = "ContainerGroupDefinitionList";
|
|
75
75
|
const _CGDN = "ContainerGroupDefinitionName";
|
|
76
76
|
const _CGDo = "ContainerGroupDefinitions";
|
|
77
|
+
const _CGPM = "ContainerGroupPortMapping";
|
|
78
|
+
const _CGPML = "ContainerGroupPortMappingList";
|
|
79
|
+
const _CGPMo = "ContainerGroupPortMappings";
|
|
77
80
|
const _CGS = "ClaimGameServer";
|
|
78
81
|
const _CGSG = "CreateGameServerGroup";
|
|
79
82
|
const _CGSGI = "CreateGameServerGroupInput";
|
|
@@ -112,6 +115,9 @@ const _CNon = "ConfigurationName";
|
|
|
112
115
|
const _CO = "ComparisonOperator";
|
|
113
116
|
const _CP = "ContainerPath";
|
|
114
117
|
const _CPC = "ContainerPortConfiguration";
|
|
118
|
+
const _CPM = "ContainerPortMappings";
|
|
119
|
+
const _CPML = "ContainerPortMappingList";
|
|
120
|
+
const _CPMo = "ContainerPortMapping";
|
|
115
121
|
const _CPR = "ConnectionPortRange";
|
|
116
122
|
const _CPRL = "ContainerPortRangeList";
|
|
117
123
|
const _CPRo = "ContainerPortRanges";
|
|
@@ -124,6 +130,8 @@ const _CPSO = "CreatePlayerSessionOutput";
|
|
|
124
130
|
const _CPSOr = "CreatePlayerSessionsOutput";
|
|
125
131
|
const _CPSr = "CreatePlayerSessions";
|
|
126
132
|
const _CPe = "CertificatePath";
|
|
133
|
+
const _CPo = "ContainerPort";
|
|
134
|
+
const _CPon = "ConnectionPort";
|
|
127
135
|
const _CRI = "ContainerRuntimeId";
|
|
128
136
|
const _CS = "ComputeStatus";
|
|
129
137
|
const _CSI = "CreateScriptInput";
|
|
@@ -172,6 +180,9 @@ const _DCGDIe = "DescribeContainerGroupDefinitionInput";
|
|
|
172
180
|
const _DCGDO = "DeleteContainerGroupDefinitionOutput";
|
|
173
181
|
const _DCGDOe = "DescribeContainerGroupDefinitionOutput";
|
|
174
182
|
const _DCGDe = "DescribeContainerGroupDefinition";
|
|
183
|
+
const _DCGPM = "DescribeContainerGroupPortMappings";
|
|
184
|
+
const _DCGPMI = "DescribeContainerGroupPortMappingsInput";
|
|
185
|
+
const _DCGPMO = "DescribeContainerGroupPortMappingsOutput";
|
|
175
186
|
const _DCI = "DeregisterComputeInput";
|
|
176
187
|
const _DCIe = "DescribeComputeInput";
|
|
177
188
|
const _DCO = "DeregisterComputeOutput";
|
|
@@ -1047,6 +1058,11 @@ export var ContainerGroupDefinition$ = [3, n0, _CGD,
|
|
|
1047
1058
|
[_N, _CGDA, _CT, _OS, _CGT, _TMLM, _TVL, _GSCD, _SCD, _VN, _VD, _St, _SR],
|
|
1048
1059
|
[0, 0, 4, 0, 0, 1, 1, [() => GameServerContainerDefinition$, 0], [() => SupportContainerDefinitionList, 0], 1, 0, 0, 0], 1
|
|
1049
1060
|
];
|
|
1061
|
+
export var ContainerGroupPortMapping$ = [3, n0, _CGPM,
|
|
1062
|
+
0,
|
|
1063
|
+
[_CNo, _CRI, _CPM],
|
|
1064
|
+
[0, 0, [() => ContainerPortMappingList, 0]]
|
|
1065
|
+
];
|
|
1050
1066
|
export var ContainerHealthCheck$ = [3, n0, _CHC,
|
|
1051
1067
|
0,
|
|
1052
1068
|
[_Com, _I, _R, _SP, _Ti],
|
|
@@ -1067,6 +1083,11 @@ export var ContainerPortConfiguration$ = [3, n0, _CPC,
|
|
|
1067
1083
|
[_CPRo],
|
|
1068
1084
|
[[() => ContainerPortRangeList, 0]], 1
|
|
1069
1085
|
];
|
|
1086
|
+
export var ContainerPortMapping$ = [3, n0, _CPMo,
|
|
1087
|
+
0,
|
|
1088
|
+
[_CPo, _CPon, _P],
|
|
1089
|
+
[[() => PortNumber, 0], [() => PortNumber, 0], 0]
|
|
1090
|
+
];
|
|
1070
1091
|
export var ContainerPortRange$ = [3, n0, _CPRon,
|
|
1071
1092
|
0,
|
|
1072
1093
|
[_FP, _TP, _P],
|
|
@@ -1442,6 +1463,16 @@ export var DescribeContainerGroupDefinitionOutput$ = [3, n0, _DCGDOe,
|
|
|
1442
1463
|
[_CGD],
|
|
1443
1464
|
[[() => ContainerGroupDefinition$, 0]]
|
|
1444
1465
|
];
|
|
1466
|
+
export var DescribeContainerGroupPortMappingsInput$ = [3, n0, _DCGPMI,
|
|
1467
|
+
0,
|
|
1468
|
+
[_FI, _CGT, _CN, _II, _CNo],
|
|
1469
|
+
[0, 0, 0, 0, 0], 2
|
|
1470
|
+
];
|
|
1471
|
+
export var DescribeContainerGroupPortMappingsOutput$ = [3, n0, _DCGPMO,
|
|
1472
|
+
0,
|
|
1473
|
+
[_FI, _L, _CGDA, _CGT, _CN, _II, _CGPMo],
|
|
1474
|
+
[0, 0, 0, 0, 0, 0, [() => ContainerGroupPortMappingList, 0]]
|
|
1475
|
+
];
|
|
1445
1476
|
export var DescribeEC2InstanceLimitsInput$ = [3, n0, _DECILI,
|
|
1446
1477
|
0,
|
|
1447
1478
|
[_ECIT, _L],
|
|
@@ -2595,12 +2626,20 @@ var ContainerGroupDefinitionList = [1, n0, _CGDL,
|
|
|
2595
2626
|
0, [() => ContainerGroupDefinition$,
|
|
2596
2627
|
0]
|
|
2597
2628
|
];
|
|
2629
|
+
var ContainerGroupPortMappingList = [1, n0, _CGPML,
|
|
2630
|
+
0, [() => ContainerGroupPortMapping$,
|
|
2631
|
+
0]
|
|
2632
|
+
];
|
|
2598
2633
|
var ContainerIdentifierList = [1, n0, _CIL,
|
|
2599
2634
|
0, () => ContainerIdentifier$
|
|
2600
2635
|
];
|
|
2601
2636
|
var ContainerMountPointList = [1, n0, _CMPL,
|
|
2602
2637
|
0, () => ContainerMountPoint$
|
|
2603
2638
|
];
|
|
2639
|
+
var ContainerPortMappingList = [1, n0, _CPML,
|
|
2640
|
+
0, [() => ContainerPortMapping$,
|
|
2641
|
+
0]
|
|
2642
|
+
];
|
|
2604
2643
|
var ContainerPortRangeList = [1, n0, _CPRL,
|
|
2605
2644
|
0, [() => ContainerPortRange$,
|
|
2606
2645
|
0]
|
|
@@ -2903,6 +2942,9 @@ export var DescribeContainerFleet$ = [9, n0, _DCFe,
|
|
|
2903
2942
|
export var DescribeContainerGroupDefinition$ = [9, n0, _DCGDe,
|
|
2904
2943
|
0, () => DescribeContainerGroupDefinitionInput$, () => DescribeContainerGroupDefinitionOutput$
|
|
2905
2944
|
];
|
|
2945
|
+
export var DescribeContainerGroupPortMappings$ = [9, n0, _DCGPM,
|
|
2946
|
+
0, () => DescribeContainerGroupPortMappingsInput$, () => DescribeContainerGroupPortMappingsOutput$
|
|
2947
|
+
];
|
|
2906
2948
|
export var DescribeEC2InstanceLimits$ = [9, n0, _DECIL,
|
|
2907
2949
|
0, () => DescribeEC2InstanceLimitsInput$, () => DescribeEC2InstanceLimitsOutput$
|
|
2908
2950
|
];
|
package/dist-types/GameLift.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ import { type DescribeBuildCommandInput, type DescribeBuildCommandOutput } from
|
|
|
40
40
|
import { type DescribeComputeCommandInput, type DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
41
41
|
import { type DescribeContainerFleetCommandInput, type DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
42
42
|
import { type DescribeContainerGroupDefinitionCommandInput, type DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
43
|
+
import { type DescribeContainerGroupPortMappingsCommandInput, type DescribeContainerGroupPortMappingsCommandOutput } from "./commands/DescribeContainerGroupPortMappingsCommand";
|
|
43
44
|
import { type DescribeEC2InstanceLimitsCommandInput, type DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
44
45
|
import { type DescribeFleetAttributesCommandInput, type DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
45
46
|
import { type DescribeFleetCapacityCommandInput, type DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
@@ -368,6 +369,12 @@ export interface GameLift {
|
|
|
368
369
|
describeContainerGroupDefinition(args: DescribeContainerGroupDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContainerGroupDefinitionCommandOutput>;
|
|
369
370
|
describeContainerGroupDefinition(args: DescribeContainerGroupDefinitionCommandInput, cb: (err: any, data?: DescribeContainerGroupDefinitionCommandOutput) => void): void;
|
|
370
371
|
describeContainerGroupDefinition(args: DescribeContainerGroupDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContainerGroupDefinitionCommandOutput) => void): void;
|
|
372
|
+
/**
|
|
373
|
+
* @see {@link DescribeContainerGroupPortMappingsCommand}
|
|
374
|
+
*/
|
|
375
|
+
describeContainerGroupPortMappings(args: DescribeContainerGroupPortMappingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContainerGroupPortMappingsCommandOutput>;
|
|
376
|
+
describeContainerGroupPortMappings(args: DescribeContainerGroupPortMappingsCommandInput, cb: (err: any, data?: DescribeContainerGroupPortMappingsCommandOutput) => void): void;
|
|
377
|
+
describeContainerGroupPortMappings(args: DescribeContainerGroupPortMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContainerGroupPortMappingsCommandOutput) => void): void;
|
|
371
378
|
/**
|
|
372
379
|
* @see {@link DescribeEC2InstanceLimitsCommand}
|
|
373
380
|
*/
|
|
@@ -48,6 +48,7 @@ import type { DescribeBuildCommandInput, DescribeBuildCommandOutput } from "./co
|
|
|
48
48
|
import type { DescribeComputeCommandInput, DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
49
49
|
import type { DescribeContainerFleetCommandInput, DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
50
50
|
import type { DescribeContainerGroupDefinitionCommandInput, DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
51
|
+
import type { DescribeContainerGroupPortMappingsCommandInput, DescribeContainerGroupPortMappingsCommandOutput } from "./commands/DescribeContainerGroupPortMappingsCommand";
|
|
51
52
|
import type { DescribeEC2InstanceLimitsCommandInput, DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
52
53
|
import type { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
53
54
|
import type { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
@@ -132,11 +133,11 @@ export { __Client };
|
|
|
132
133
|
/**
|
|
133
134
|
* @public
|
|
134
135
|
*/
|
|
135
|
-
export type ServiceInputTypes = AcceptMatchCommandInput | ClaimGameServerCommandInput | CreateAliasCommandInput | CreateBuildCommandInput | CreateContainerFleetCommandInput | CreateContainerGroupDefinitionCommandInput | CreateFleetCommandInput | CreateFleetLocationsCommandInput | CreateGameServerGroupCommandInput | CreateGameSessionCommandInput | CreateGameSessionQueueCommandInput | CreateLocationCommandInput | CreateMatchmakingConfigurationCommandInput | CreateMatchmakingRuleSetCommandInput | CreatePlayerSessionCommandInput | CreatePlayerSessionsCommandInput | CreateScriptCommandInput | CreateVpcPeeringAuthorizationCommandInput | CreateVpcPeeringConnectionCommandInput | DeleteAliasCommandInput | DeleteBuildCommandInput | DeleteContainerFleetCommandInput | DeleteContainerGroupDefinitionCommandInput | DeleteFleetCommandInput | DeleteFleetLocationsCommandInput | DeleteGameServerGroupCommandInput | DeleteGameSessionQueueCommandInput | DeleteLocationCommandInput | DeleteMatchmakingConfigurationCommandInput | DeleteMatchmakingRuleSetCommandInput | DeleteScalingPolicyCommandInput | DeleteScriptCommandInput | DeleteVpcPeeringAuthorizationCommandInput | DeleteVpcPeeringConnectionCommandInput | DeregisterComputeCommandInput | DeregisterGameServerCommandInput | DescribeAliasCommandInput | DescribeBuildCommandInput | DescribeComputeCommandInput | DescribeContainerFleetCommandInput | DescribeContainerGroupDefinitionCommandInput | DescribeEC2InstanceLimitsCommandInput | DescribeFleetAttributesCommandInput | DescribeFleetCapacityCommandInput | DescribeFleetDeploymentCommandInput | DescribeFleetEventsCommandInput | DescribeFleetLocationAttributesCommandInput | DescribeFleetLocationCapacityCommandInput | DescribeFleetLocationUtilizationCommandInput | DescribeFleetPortSettingsCommandInput | DescribeFleetUtilizationCommandInput | DescribeGameServerCommandInput | DescribeGameServerGroupCommandInput | DescribeGameServerInstancesCommandInput | DescribeGameSessionDetailsCommandInput | DescribeGameSessionPlacementCommandInput | DescribeGameSessionQueuesCommandInput | DescribeGameSessionsCommandInput | DescribeInstancesCommandInput | DescribeMatchmakingCommandInput | DescribeMatchmakingConfigurationsCommandInput | DescribeMatchmakingRuleSetsCommandInput | DescribePlayerSessionsCommandInput | DescribeRuntimeConfigurationCommandInput | DescribeScalingPoliciesCommandInput | DescribeScriptCommandInput | DescribeVpcPeeringAuthorizationsCommandInput | DescribeVpcPeeringConnectionsCommandInput | GetComputeAccessCommandInput | GetComputeAuthTokenCommandInput | GetGameSessionLogUrlCommandInput | GetInstanceAccessCommandInput | GetPlayerConnectionDetailsCommandInput | ListAliasesCommandInput | ListBuildsCommandInput | ListComputeCommandInput | ListContainerFleetsCommandInput | ListContainerGroupDefinitionVersionsCommandInput | ListContainerGroupDefinitionsCommandInput | ListFleetDeploymentsCommandInput | ListFleetsCommandInput | ListGameServerGroupsCommandInput | ListGameServersCommandInput | ListLocationsCommandInput | ListScriptsCommandInput | ListTagsForResourceCommandInput | PutScalingPolicyCommandInput | RegisterComputeCommandInput | RegisterGameServerCommandInput | RequestUploadCredentialsCommandInput | ResolveAliasCommandInput | ResumeGameServerGroupCommandInput | SearchGameSessionsCommandInput | StartFleetActionsCommandInput | StartGameSessionPlacementCommandInput | StartMatchBackfillCommandInput | StartMatchmakingCommandInput | StopFleetActionsCommandInput | StopGameSessionPlacementCommandInput | StopMatchmakingCommandInput | SuspendGameServerGroupCommandInput | TagResourceCommandInput | TerminateGameSessionCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateBuildCommandInput | UpdateContainerFleetCommandInput | UpdateContainerGroupDefinitionCommandInput | UpdateFleetAttributesCommandInput | UpdateFleetCapacityCommandInput | UpdateFleetPortSettingsCommandInput | UpdateGameServerCommandInput | UpdateGameServerGroupCommandInput | UpdateGameSessionCommandInput | UpdateGameSessionQueueCommandInput | UpdateMatchmakingConfigurationCommandInput | UpdateRuntimeConfigurationCommandInput | UpdateScriptCommandInput | ValidateMatchmakingRuleSetCommandInput;
|
|
136
|
+
export type ServiceInputTypes = AcceptMatchCommandInput | ClaimGameServerCommandInput | CreateAliasCommandInput | CreateBuildCommandInput | CreateContainerFleetCommandInput | CreateContainerGroupDefinitionCommandInput | CreateFleetCommandInput | CreateFleetLocationsCommandInput | CreateGameServerGroupCommandInput | CreateGameSessionCommandInput | CreateGameSessionQueueCommandInput | CreateLocationCommandInput | CreateMatchmakingConfigurationCommandInput | CreateMatchmakingRuleSetCommandInput | CreatePlayerSessionCommandInput | CreatePlayerSessionsCommandInput | CreateScriptCommandInput | CreateVpcPeeringAuthorizationCommandInput | CreateVpcPeeringConnectionCommandInput | DeleteAliasCommandInput | DeleteBuildCommandInput | DeleteContainerFleetCommandInput | DeleteContainerGroupDefinitionCommandInput | DeleteFleetCommandInput | DeleteFleetLocationsCommandInput | DeleteGameServerGroupCommandInput | DeleteGameSessionQueueCommandInput | DeleteLocationCommandInput | DeleteMatchmakingConfigurationCommandInput | DeleteMatchmakingRuleSetCommandInput | DeleteScalingPolicyCommandInput | DeleteScriptCommandInput | DeleteVpcPeeringAuthorizationCommandInput | DeleteVpcPeeringConnectionCommandInput | DeregisterComputeCommandInput | DeregisterGameServerCommandInput | DescribeAliasCommandInput | DescribeBuildCommandInput | DescribeComputeCommandInput | DescribeContainerFleetCommandInput | DescribeContainerGroupDefinitionCommandInput | DescribeContainerGroupPortMappingsCommandInput | DescribeEC2InstanceLimitsCommandInput | DescribeFleetAttributesCommandInput | DescribeFleetCapacityCommandInput | DescribeFleetDeploymentCommandInput | DescribeFleetEventsCommandInput | DescribeFleetLocationAttributesCommandInput | DescribeFleetLocationCapacityCommandInput | DescribeFleetLocationUtilizationCommandInput | DescribeFleetPortSettingsCommandInput | DescribeFleetUtilizationCommandInput | DescribeGameServerCommandInput | DescribeGameServerGroupCommandInput | DescribeGameServerInstancesCommandInput | DescribeGameSessionDetailsCommandInput | DescribeGameSessionPlacementCommandInput | DescribeGameSessionQueuesCommandInput | DescribeGameSessionsCommandInput | DescribeInstancesCommandInput | DescribeMatchmakingCommandInput | DescribeMatchmakingConfigurationsCommandInput | DescribeMatchmakingRuleSetsCommandInput | DescribePlayerSessionsCommandInput | DescribeRuntimeConfigurationCommandInput | DescribeScalingPoliciesCommandInput | DescribeScriptCommandInput | DescribeVpcPeeringAuthorizationsCommandInput | DescribeVpcPeeringConnectionsCommandInput | GetComputeAccessCommandInput | GetComputeAuthTokenCommandInput | GetGameSessionLogUrlCommandInput | GetInstanceAccessCommandInput | GetPlayerConnectionDetailsCommandInput | ListAliasesCommandInput | ListBuildsCommandInput | ListComputeCommandInput | ListContainerFleetsCommandInput | ListContainerGroupDefinitionVersionsCommandInput | ListContainerGroupDefinitionsCommandInput | ListFleetDeploymentsCommandInput | ListFleetsCommandInput | ListGameServerGroupsCommandInput | ListGameServersCommandInput | ListLocationsCommandInput | ListScriptsCommandInput | ListTagsForResourceCommandInput | PutScalingPolicyCommandInput | RegisterComputeCommandInput | RegisterGameServerCommandInput | RequestUploadCredentialsCommandInput | ResolveAliasCommandInput | ResumeGameServerGroupCommandInput | SearchGameSessionsCommandInput | StartFleetActionsCommandInput | StartGameSessionPlacementCommandInput | StartMatchBackfillCommandInput | StartMatchmakingCommandInput | StopFleetActionsCommandInput | StopGameSessionPlacementCommandInput | StopMatchmakingCommandInput | SuspendGameServerGroupCommandInput | TagResourceCommandInput | TerminateGameSessionCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateBuildCommandInput | UpdateContainerFleetCommandInput | UpdateContainerGroupDefinitionCommandInput | UpdateFleetAttributesCommandInput | UpdateFleetCapacityCommandInput | UpdateFleetPortSettingsCommandInput | UpdateGameServerCommandInput | UpdateGameServerGroupCommandInput | UpdateGameSessionCommandInput | UpdateGameSessionQueueCommandInput | UpdateMatchmakingConfigurationCommandInput | UpdateRuntimeConfigurationCommandInput | UpdateScriptCommandInput | ValidateMatchmakingRuleSetCommandInput;
|
|
136
137
|
/**
|
|
137
138
|
* @public
|
|
138
139
|
*/
|
|
139
|
-
export type ServiceOutputTypes = AcceptMatchCommandOutput | ClaimGameServerCommandOutput | CreateAliasCommandOutput | CreateBuildCommandOutput | CreateContainerFleetCommandOutput | CreateContainerGroupDefinitionCommandOutput | CreateFleetCommandOutput | CreateFleetLocationsCommandOutput | CreateGameServerGroupCommandOutput | CreateGameSessionCommandOutput | CreateGameSessionQueueCommandOutput | CreateLocationCommandOutput | CreateMatchmakingConfigurationCommandOutput | CreateMatchmakingRuleSetCommandOutput | CreatePlayerSessionCommandOutput | CreatePlayerSessionsCommandOutput | CreateScriptCommandOutput | CreateVpcPeeringAuthorizationCommandOutput | CreateVpcPeeringConnectionCommandOutput | DeleteAliasCommandOutput | DeleteBuildCommandOutput | DeleteContainerFleetCommandOutput | DeleteContainerGroupDefinitionCommandOutput | DeleteFleetCommandOutput | DeleteFleetLocationsCommandOutput | DeleteGameServerGroupCommandOutput | DeleteGameSessionQueueCommandOutput | DeleteLocationCommandOutput | DeleteMatchmakingConfigurationCommandOutput | DeleteMatchmakingRuleSetCommandOutput | DeleteScalingPolicyCommandOutput | DeleteScriptCommandOutput | DeleteVpcPeeringAuthorizationCommandOutput | DeleteVpcPeeringConnectionCommandOutput | DeregisterComputeCommandOutput | DeregisterGameServerCommandOutput | DescribeAliasCommandOutput | DescribeBuildCommandOutput | DescribeComputeCommandOutput | DescribeContainerFleetCommandOutput | DescribeContainerGroupDefinitionCommandOutput | DescribeEC2InstanceLimitsCommandOutput | DescribeFleetAttributesCommandOutput | DescribeFleetCapacityCommandOutput | DescribeFleetDeploymentCommandOutput | DescribeFleetEventsCommandOutput | DescribeFleetLocationAttributesCommandOutput | DescribeFleetLocationCapacityCommandOutput | DescribeFleetLocationUtilizationCommandOutput | DescribeFleetPortSettingsCommandOutput | DescribeFleetUtilizationCommandOutput | DescribeGameServerCommandOutput | DescribeGameServerGroupCommandOutput | DescribeGameServerInstancesCommandOutput | DescribeGameSessionDetailsCommandOutput | DescribeGameSessionPlacementCommandOutput | DescribeGameSessionQueuesCommandOutput | DescribeGameSessionsCommandOutput | DescribeInstancesCommandOutput | DescribeMatchmakingCommandOutput | DescribeMatchmakingConfigurationsCommandOutput | DescribeMatchmakingRuleSetsCommandOutput | DescribePlayerSessionsCommandOutput | DescribeRuntimeConfigurationCommandOutput | DescribeScalingPoliciesCommandOutput | DescribeScriptCommandOutput | DescribeVpcPeeringAuthorizationsCommandOutput | DescribeVpcPeeringConnectionsCommandOutput | GetComputeAccessCommandOutput | GetComputeAuthTokenCommandOutput | GetGameSessionLogUrlCommandOutput | GetInstanceAccessCommandOutput | GetPlayerConnectionDetailsCommandOutput | ListAliasesCommandOutput | ListBuildsCommandOutput | ListComputeCommandOutput | ListContainerFleetsCommandOutput | ListContainerGroupDefinitionVersionsCommandOutput | ListContainerGroupDefinitionsCommandOutput | ListFleetDeploymentsCommandOutput | ListFleetsCommandOutput | ListGameServerGroupsCommandOutput | ListGameServersCommandOutput | ListLocationsCommandOutput | ListScriptsCommandOutput | ListTagsForResourceCommandOutput | PutScalingPolicyCommandOutput | RegisterComputeCommandOutput | RegisterGameServerCommandOutput | RequestUploadCredentialsCommandOutput | ResolveAliasCommandOutput | ResumeGameServerGroupCommandOutput | SearchGameSessionsCommandOutput | StartFleetActionsCommandOutput | StartGameSessionPlacementCommandOutput | StartMatchBackfillCommandOutput | StartMatchmakingCommandOutput | StopFleetActionsCommandOutput | StopGameSessionPlacementCommandOutput | StopMatchmakingCommandOutput | SuspendGameServerGroupCommandOutput | TagResourceCommandOutput | TerminateGameSessionCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateBuildCommandOutput | UpdateContainerFleetCommandOutput | UpdateContainerGroupDefinitionCommandOutput | UpdateFleetAttributesCommandOutput | UpdateFleetCapacityCommandOutput | UpdateFleetPortSettingsCommandOutput | UpdateGameServerCommandOutput | UpdateGameServerGroupCommandOutput | UpdateGameSessionCommandOutput | UpdateGameSessionQueueCommandOutput | UpdateMatchmakingConfigurationCommandOutput | UpdateRuntimeConfigurationCommandOutput | UpdateScriptCommandOutput | ValidateMatchmakingRuleSetCommandOutput;
|
|
140
|
+
export type ServiceOutputTypes = AcceptMatchCommandOutput | ClaimGameServerCommandOutput | CreateAliasCommandOutput | CreateBuildCommandOutput | CreateContainerFleetCommandOutput | CreateContainerGroupDefinitionCommandOutput | CreateFleetCommandOutput | CreateFleetLocationsCommandOutput | CreateGameServerGroupCommandOutput | CreateGameSessionCommandOutput | CreateGameSessionQueueCommandOutput | CreateLocationCommandOutput | CreateMatchmakingConfigurationCommandOutput | CreateMatchmakingRuleSetCommandOutput | CreatePlayerSessionCommandOutput | CreatePlayerSessionsCommandOutput | CreateScriptCommandOutput | CreateVpcPeeringAuthorizationCommandOutput | CreateVpcPeeringConnectionCommandOutput | DeleteAliasCommandOutput | DeleteBuildCommandOutput | DeleteContainerFleetCommandOutput | DeleteContainerGroupDefinitionCommandOutput | DeleteFleetCommandOutput | DeleteFleetLocationsCommandOutput | DeleteGameServerGroupCommandOutput | DeleteGameSessionQueueCommandOutput | DeleteLocationCommandOutput | DeleteMatchmakingConfigurationCommandOutput | DeleteMatchmakingRuleSetCommandOutput | DeleteScalingPolicyCommandOutput | DeleteScriptCommandOutput | DeleteVpcPeeringAuthorizationCommandOutput | DeleteVpcPeeringConnectionCommandOutput | DeregisterComputeCommandOutput | DeregisterGameServerCommandOutput | DescribeAliasCommandOutput | DescribeBuildCommandOutput | DescribeComputeCommandOutput | DescribeContainerFleetCommandOutput | DescribeContainerGroupDefinitionCommandOutput | DescribeContainerGroupPortMappingsCommandOutput | DescribeEC2InstanceLimitsCommandOutput | DescribeFleetAttributesCommandOutput | DescribeFleetCapacityCommandOutput | DescribeFleetDeploymentCommandOutput | DescribeFleetEventsCommandOutput | DescribeFleetLocationAttributesCommandOutput | DescribeFleetLocationCapacityCommandOutput | DescribeFleetLocationUtilizationCommandOutput | DescribeFleetPortSettingsCommandOutput | DescribeFleetUtilizationCommandOutput | DescribeGameServerCommandOutput | DescribeGameServerGroupCommandOutput | DescribeGameServerInstancesCommandOutput | DescribeGameSessionDetailsCommandOutput | DescribeGameSessionPlacementCommandOutput | DescribeGameSessionQueuesCommandOutput | DescribeGameSessionsCommandOutput | DescribeInstancesCommandOutput | DescribeMatchmakingCommandOutput | DescribeMatchmakingConfigurationsCommandOutput | DescribeMatchmakingRuleSetsCommandOutput | DescribePlayerSessionsCommandOutput | DescribeRuntimeConfigurationCommandOutput | DescribeScalingPoliciesCommandOutput | DescribeScriptCommandOutput | DescribeVpcPeeringAuthorizationsCommandOutput | DescribeVpcPeeringConnectionsCommandOutput | GetComputeAccessCommandOutput | GetComputeAuthTokenCommandOutput | GetGameSessionLogUrlCommandOutput | GetInstanceAccessCommandOutput | GetPlayerConnectionDetailsCommandOutput | ListAliasesCommandOutput | ListBuildsCommandOutput | ListComputeCommandOutput | ListContainerFleetsCommandOutput | ListContainerGroupDefinitionVersionsCommandOutput | ListContainerGroupDefinitionsCommandOutput | ListFleetDeploymentsCommandOutput | ListFleetsCommandOutput | ListGameServerGroupsCommandOutput | ListGameServersCommandOutput | ListLocationsCommandOutput | ListScriptsCommandOutput | ListTagsForResourceCommandOutput | PutScalingPolicyCommandOutput | RegisterComputeCommandOutput | RegisterGameServerCommandOutput | RequestUploadCredentialsCommandOutput | ResolveAliasCommandOutput | ResumeGameServerGroupCommandOutput | SearchGameSessionsCommandOutput | StartFleetActionsCommandOutput | StartGameSessionPlacementCommandOutput | StartMatchBackfillCommandOutput | StartMatchmakingCommandOutput | StopFleetActionsCommandOutput | StopGameSessionPlacementCommandOutput | StopMatchmakingCommandOutput | SuspendGameServerGroupCommandOutput | TagResourceCommandOutput | TerminateGameSessionCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateBuildCommandOutput | UpdateContainerFleetCommandOutput | UpdateContainerGroupDefinitionCommandOutput | UpdateFleetAttributesCommandOutput | UpdateFleetCapacityCommandOutput | UpdateFleetPortSettingsCommandOutput | UpdateGameServerCommandOutput | UpdateGameServerGroupCommandOutput | UpdateGameSessionCommandOutput | UpdateGameSessionQueueCommandOutput | UpdateMatchmakingConfigurationCommandOutput | UpdateRuntimeConfigurationCommandOutput | UpdateScriptCommandOutput | ValidateMatchmakingRuleSetCommandOutput;
|
|
140
141
|
/**
|
|
141
142
|
* @public
|
|
142
143
|
*/
|