@aws-sdk/client-gamelift 3.686.0 → 3.690.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 +72 -0
- package/dist-cjs/index.js +830 -188
- package/dist-es/GameLift.js +18 -0
- package/dist-es/commands/CreateContainerFleetCommand.js +23 -0
- package/dist-es/commands/CreateFleetCommand.js +2 -2
- package/dist-es/commands/DeleteContainerFleetCommand.js +22 -0
- package/dist-es/commands/DescribeContainerFleetCommand.js +23 -0
- package/dist-es/commands/DescribeFleetAttributesCommand.js +1 -2
- package/dist-es/commands/DescribeFleetDeploymentCommand.js +22 -0
- package/dist-es/commands/ListContainerFleetsCommand.js +23 -0
- package/dist-es/commands/ListContainerGroupDefinitionVersionsCommand.js +23 -0
- package/dist-es/commands/ListContainerGroupDefinitionsCommand.js +1 -1
- package/dist-es/commands/ListFleetDeploymentsCommand.js +22 -0
- package/dist-es/commands/RegisterComputeCommand.js +1 -1
- package/dist-es/commands/RequestUploadCredentialsCommand.js +1 -1
- package/dist-es/commands/UpdateContainerFleetCommand.js +23 -0
- package/dist-es/commands/UpdateContainerGroupDefinitionCommand.js +23 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +132 -81
- package/dist-es/models/models_1.js +50 -1
- package/dist-es/pagination/ListContainerFleetsPaginator.js +4 -0
- package/dist-es/pagination/ListContainerGroupDefinitionVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListFleetDeploymentsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +352 -7
- package/dist-types/GameLift.d.ts +65 -0
- package/dist-types/GameLiftClient.d.ts +11 -2
- package/dist-types/commands/CreateBuildCommand.d.ts +27 -21
- package/dist-types/commands/CreateContainerFleetCommand.d.ts +283 -0
- package/dist-types/commands/CreateContainerGroupDefinitionCommand.d.ts +278 -119
- package/dist-types/commands/CreateFleetCommand.d.ts +5 -88
- package/dist-types/commands/CreateFleetLocationsCommand.d.ts +3 -6
- package/dist-types/commands/CreateScriptCommand.d.ts +9 -12
- package/dist-types/commands/DeleteContainerFleetCommand.d.ts +102 -0
- package/dist-types/commands/DeleteContainerGroupDefinitionCommand.d.ts +24 -7
- package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeregisterComputeCommand.d.ts +2 -5
- package/dist-types/commands/DescribeComputeCommand.d.ts +14 -21
- package/dist-types/commands/DescribeContainerFleetCommand.d.ts +157 -0
- package/dist-types/commands/DescribeContainerGroupDefinitionCommand.d.ts +95 -48
- package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +2 -21
- package/dist-types/commands/DescribeFleetCapacityCommand.d.ts +8 -8
- package/dist-types/commands/DescribeFleetDeploymentCommand.d.ts +125 -0
- package/dist-types/commands/DescribeFleetEventsCommand.d.ts +4 -1
- package/dist-types/commands/DescribeFleetLocationCapacityCommand.d.ts +4 -4
- package/dist-types/commands/DescribeFleetPortSettingsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeRuntimeConfigurationCommand.d.ts +2 -4
- package/dist-types/commands/GetComputeAccessCommand.d.ts +20 -30
- package/dist-types/commands/GetComputeAuthTokenCommand.d.ts +18 -13
- package/dist-types/commands/ListComputeCommand.d.ts +36 -28
- package/dist-types/commands/ListContainerFleetsCommand.d.ts +165 -0
- package/dist-types/commands/ListContainerGroupDefinitionVersionsCommand.d.ts +216 -0
- package/dist-types/commands/ListContainerGroupDefinitionsCommand.d.ts +97 -49
- package/dist-types/commands/ListFleetDeploymentsCommand.d.ts +132 -0
- package/dist-types/commands/ListFleetsCommand.d.ts +2 -10
- package/dist-types/commands/ListGameServerGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListGameServersCommand.d.ts +1 -1
- package/dist-types/commands/ListLocationsCommand.d.ts +1 -1
- package/dist-types/commands/ListScriptsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -1
- package/dist-types/commands/PutScalingPolicyCommand.d.ts +4 -1
- package/dist-types/commands/RegisterComputeCommand.d.ts +13 -19
- package/dist-types/commands/RegisterGameServerCommand.d.ts +1 -1
- package/dist-types/commands/RequestUploadCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/ResolveAliasCommand.d.ts +1 -1
- package/dist-types/commands/ResumeGameServerGroupCommand.d.ts +1 -2
- package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +2 -2
- package/dist-types/commands/StopFleetActionsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateContainerFleetCommand.d.ts +253 -0
- package/dist-types/commands/UpdateContainerGroupDefinitionCommand.d.ts +310 -0
- package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +6 -9
- package/dist-types/commands/UpdateRuntimeConfigurationCommand.d.ts +1 -3
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +5518 -5258
- package/dist-types/models/models_1.d.ts +897 -18
- package/dist-types/pagination/ListContainerFleetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContainerGroupDefinitionVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFleetDeploymentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
- package/dist-types/ts3.4/GameLift.d.ts +161 -0
- package/dist-types/ts3.4/GameLiftClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteContainerGroupDefinitionCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeFleetDeploymentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContainerFleetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContainerGroupDefinitionVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListContainerGroupDefinitionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListFleetDeploymentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFleetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGameServerGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListGameServersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListScriptsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RegisterComputeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RegisterGameServerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RequestUploadCredentialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResolveAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResumeGameServerGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateContainerFleetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContainerGroupDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +333 -261
- package/dist-types/ts3.4/models/models_1.d.ts +222 -0
- package/dist-types/ts3.4/pagination/ListContainerFleetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContainerGroupDefinitionVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFleetDeploymentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
- package/package.json +6 -6
package/dist-types/GameLift.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/Ac
|
|
|
3
3
|
import { ClaimGameServerCommandInput, ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
4
4
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
5
5
|
import { CreateBuildCommandInput, CreateBuildCommandOutput } from "./commands/CreateBuildCommand";
|
|
6
|
+
import { CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput } from "./commands/CreateContainerFleetCommand";
|
|
6
7
|
import { CreateContainerGroupDefinitionCommandInput, CreateContainerGroupDefinitionCommandOutput } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
7
8
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
8
9
|
import { CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput } from "./commands/CreateFleetLocationsCommand";
|
|
@@ -19,6 +20,7 @@ import { CreateVpcPeeringAuthorizationCommandInput, CreateVpcPeeringAuthorizatio
|
|
|
19
20
|
import { CreateVpcPeeringConnectionCommandInput, CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
20
21
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
21
22
|
import { DeleteBuildCommandInput, DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand";
|
|
23
|
+
import { DeleteContainerFleetCommandInput, DeleteContainerFleetCommandOutput } from "./commands/DeleteContainerFleetCommand";
|
|
22
24
|
import { DeleteContainerGroupDefinitionCommandInput, DeleteContainerGroupDefinitionCommandOutput } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
23
25
|
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
24
26
|
import { DeleteFleetLocationsCommandInput, DeleteFleetLocationsCommandOutput } from "./commands/DeleteFleetLocationsCommand";
|
|
@@ -36,10 +38,12 @@ import { DeregisterGameServerCommandInput, DeregisterGameServerCommandOutput } f
|
|
|
36
38
|
import { DescribeAliasCommandInput, DescribeAliasCommandOutput } from "./commands/DescribeAliasCommand";
|
|
37
39
|
import { DescribeBuildCommandInput, DescribeBuildCommandOutput } from "./commands/DescribeBuildCommand";
|
|
38
40
|
import { DescribeComputeCommandInput, DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
41
|
+
import { DescribeContainerFleetCommandInput, DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
39
42
|
import { DescribeContainerGroupDefinitionCommandInput, DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
40
43
|
import { DescribeEC2InstanceLimitsCommandInput, DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
41
44
|
import { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
42
45
|
import { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
46
|
+
import { DescribeFleetDeploymentCommandInput, DescribeFleetDeploymentCommandOutput } from "./commands/DescribeFleetDeploymentCommand";
|
|
43
47
|
import { DescribeFleetEventsCommandInput, DescribeFleetEventsCommandOutput } from "./commands/DescribeFleetEventsCommand";
|
|
44
48
|
import { DescribeFleetLocationAttributesCommandInput, DescribeFleetLocationAttributesCommandOutput } from "./commands/DescribeFleetLocationAttributesCommand";
|
|
45
49
|
import { DescribeFleetLocationCapacityCommandInput, DescribeFleetLocationCapacityCommandOutput } from "./commands/DescribeFleetLocationCapacityCommand";
|
|
@@ -70,7 +74,10 @@ import { GetInstanceAccessCommandInput, GetInstanceAccessCommandOutput } from ".
|
|
|
70
74
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
71
75
|
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
72
76
|
import { ListComputeCommandInput, ListComputeCommandOutput } from "./commands/ListComputeCommand";
|
|
77
|
+
import { ListContainerFleetsCommandInput, ListContainerFleetsCommandOutput } from "./commands/ListContainerFleetsCommand";
|
|
73
78
|
import { ListContainerGroupDefinitionsCommandInput, ListContainerGroupDefinitionsCommandOutput } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
79
|
+
import { ListContainerGroupDefinitionVersionsCommandInput, ListContainerGroupDefinitionVersionsCommandOutput } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
80
|
+
import { ListFleetDeploymentsCommandInput, ListFleetDeploymentsCommandOutput } from "./commands/ListFleetDeploymentsCommand";
|
|
74
81
|
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
75
82
|
import { ListGameServerGroupsCommandInput, ListGameServerGroupsCommandOutput } from "./commands/ListGameServerGroupsCommand";
|
|
76
83
|
import { ListGameServersCommandInput, ListGameServersCommandOutput } from "./commands/ListGameServersCommand";
|
|
@@ -96,6 +103,8 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
96
103
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
97
104
|
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
98
105
|
import { UpdateBuildCommandInput, UpdateBuildCommandOutput } from "./commands/UpdateBuildCommand";
|
|
106
|
+
import { UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput } from "./commands/UpdateContainerFleetCommand";
|
|
107
|
+
import { UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
99
108
|
import { UpdateFleetAttributesCommandInput, UpdateFleetAttributesCommandOutput } from "./commands/UpdateFleetAttributesCommand";
|
|
100
109
|
import { UpdateFleetCapacityCommandInput, UpdateFleetCapacityCommandOutput } from "./commands/UpdateFleetCapacityCommand";
|
|
101
110
|
import { UpdateFleetPortSettingsCommandInput, UpdateFleetPortSettingsCommandOutput } from "./commands/UpdateFleetPortSettingsCommand";
|
|
@@ -134,6 +143,12 @@ export interface GameLift {
|
|
|
134
143
|
createBuild(args: CreateBuildCommandInput, options?: __HttpHandlerOptions): Promise<CreateBuildCommandOutput>;
|
|
135
144
|
createBuild(args: CreateBuildCommandInput, cb: (err: any, data?: CreateBuildCommandOutput) => void): void;
|
|
136
145
|
createBuild(args: CreateBuildCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBuildCommandOutput) => void): void;
|
|
146
|
+
/**
|
|
147
|
+
* @see {@link CreateContainerFleetCommand}
|
|
148
|
+
*/
|
|
149
|
+
createContainerFleet(args: CreateContainerFleetCommandInput, options?: __HttpHandlerOptions): Promise<CreateContainerFleetCommandOutput>;
|
|
150
|
+
createContainerFleet(args: CreateContainerFleetCommandInput, cb: (err: any, data?: CreateContainerFleetCommandOutput) => void): void;
|
|
151
|
+
createContainerFleet(args: CreateContainerFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContainerFleetCommandOutput) => void): void;
|
|
137
152
|
/**
|
|
138
153
|
* @see {@link CreateContainerGroupDefinitionCommand}
|
|
139
154
|
*/
|
|
@@ -231,6 +246,12 @@ export interface GameLift {
|
|
|
231
246
|
deleteBuild(args: DeleteBuildCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBuildCommandOutput>;
|
|
232
247
|
deleteBuild(args: DeleteBuildCommandInput, cb: (err: any, data?: DeleteBuildCommandOutput) => void): void;
|
|
233
248
|
deleteBuild(args: DeleteBuildCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBuildCommandOutput) => void): void;
|
|
249
|
+
/**
|
|
250
|
+
* @see {@link DeleteContainerFleetCommand}
|
|
251
|
+
*/
|
|
252
|
+
deleteContainerFleet(args: DeleteContainerFleetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContainerFleetCommandOutput>;
|
|
253
|
+
deleteContainerFleet(args: DeleteContainerFleetCommandInput, cb: (err: any, data?: DeleteContainerFleetCommandOutput) => void): void;
|
|
254
|
+
deleteContainerFleet(args: DeleteContainerFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContainerFleetCommandOutput) => void): void;
|
|
234
255
|
/**
|
|
235
256
|
* @see {@link DeleteContainerGroupDefinitionCommand}
|
|
236
257
|
*/
|
|
@@ -333,6 +354,12 @@ export interface GameLift {
|
|
|
333
354
|
describeCompute(args: DescribeComputeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComputeCommandOutput>;
|
|
334
355
|
describeCompute(args: DescribeComputeCommandInput, cb: (err: any, data?: DescribeComputeCommandOutput) => void): void;
|
|
335
356
|
describeCompute(args: DescribeComputeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComputeCommandOutput) => void): void;
|
|
357
|
+
/**
|
|
358
|
+
* @see {@link DescribeContainerFleetCommand}
|
|
359
|
+
*/
|
|
360
|
+
describeContainerFleet(args: DescribeContainerFleetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContainerFleetCommandOutput>;
|
|
361
|
+
describeContainerFleet(args: DescribeContainerFleetCommandInput, cb: (err: any, data?: DescribeContainerFleetCommandOutput) => void): void;
|
|
362
|
+
describeContainerFleet(args: DescribeContainerFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContainerFleetCommandOutput) => void): void;
|
|
336
363
|
/**
|
|
337
364
|
* @see {@link DescribeContainerGroupDefinitionCommand}
|
|
338
365
|
*/
|
|
@@ -360,6 +387,12 @@ export interface GameLift {
|
|
|
360
387
|
describeFleetCapacity(args: DescribeFleetCapacityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetCapacityCommandOutput>;
|
|
361
388
|
describeFleetCapacity(args: DescribeFleetCapacityCommandInput, cb: (err: any, data?: DescribeFleetCapacityCommandOutput) => void): void;
|
|
362
389
|
describeFleetCapacity(args: DescribeFleetCapacityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetCapacityCommandOutput) => void): void;
|
|
390
|
+
/**
|
|
391
|
+
* @see {@link DescribeFleetDeploymentCommand}
|
|
392
|
+
*/
|
|
393
|
+
describeFleetDeployment(args: DescribeFleetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetDeploymentCommandOutput>;
|
|
394
|
+
describeFleetDeployment(args: DescribeFleetDeploymentCommandInput, cb: (err: any, data?: DescribeFleetDeploymentCommandOutput) => void): void;
|
|
395
|
+
describeFleetDeployment(args: DescribeFleetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetDeploymentCommandOutput) => void): void;
|
|
363
396
|
/**
|
|
364
397
|
* @see {@link DescribeFleetEventsCommand}
|
|
365
398
|
*/
|
|
@@ -551,6 +584,13 @@ export interface GameLift {
|
|
|
551
584
|
listCompute(args: ListComputeCommandInput, options?: __HttpHandlerOptions): Promise<ListComputeCommandOutput>;
|
|
552
585
|
listCompute(args: ListComputeCommandInput, cb: (err: any, data?: ListComputeCommandOutput) => void): void;
|
|
553
586
|
listCompute(args: ListComputeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComputeCommandOutput) => void): void;
|
|
587
|
+
/**
|
|
588
|
+
* @see {@link ListContainerFleetsCommand}
|
|
589
|
+
*/
|
|
590
|
+
listContainerFleets(): Promise<ListContainerFleetsCommandOutput>;
|
|
591
|
+
listContainerFleets(args: ListContainerFleetsCommandInput, options?: __HttpHandlerOptions): Promise<ListContainerFleetsCommandOutput>;
|
|
592
|
+
listContainerFleets(args: ListContainerFleetsCommandInput, cb: (err: any, data?: ListContainerFleetsCommandOutput) => void): void;
|
|
593
|
+
listContainerFleets(args: ListContainerFleetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContainerFleetsCommandOutput) => void): void;
|
|
554
594
|
/**
|
|
555
595
|
* @see {@link ListContainerGroupDefinitionsCommand}
|
|
556
596
|
*/
|
|
@@ -558,6 +598,19 @@ export interface GameLift {
|
|
|
558
598
|
listContainerGroupDefinitions(args: ListContainerGroupDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListContainerGroupDefinitionsCommandOutput>;
|
|
559
599
|
listContainerGroupDefinitions(args: ListContainerGroupDefinitionsCommandInput, cb: (err: any, data?: ListContainerGroupDefinitionsCommandOutput) => void): void;
|
|
560
600
|
listContainerGroupDefinitions(args: ListContainerGroupDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContainerGroupDefinitionsCommandOutput) => void): void;
|
|
601
|
+
/**
|
|
602
|
+
* @see {@link ListContainerGroupDefinitionVersionsCommand}
|
|
603
|
+
*/
|
|
604
|
+
listContainerGroupDefinitionVersions(args: ListContainerGroupDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListContainerGroupDefinitionVersionsCommandOutput>;
|
|
605
|
+
listContainerGroupDefinitionVersions(args: ListContainerGroupDefinitionVersionsCommandInput, cb: (err: any, data?: ListContainerGroupDefinitionVersionsCommandOutput) => void): void;
|
|
606
|
+
listContainerGroupDefinitionVersions(args: ListContainerGroupDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContainerGroupDefinitionVersionsCommandOutput) => void): void;
|
|
607
|
+
/**
|
|
608
|
+
* @see {@link ListFleetDeploymentsCommand}
|
|
609
|
+
*/
|
|
610
|
+
listFleetDeployments(): Promise<ListFleetDeploymentsCommandOutput>;
|
|
611
|
+
listFleetDeployments(args: ListFleetDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListFleetDeploymentsCommandOutput>;
|
|
612
|
+
listFleetDeployments(args: ListFleetDeploymentsCommandInput, cb: (err: any, data?: ListFleetDeploymentsCommandOutput) => void): void;
|
|
613
|
+
listFleetDeployments(args: ListFleetDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFleetDeploymentsCommandOutput) => void): void;
|
|
561
614
|
/**
|
|
562
615
|
* @see {@link ListFleetsCommand}
|
|
563
616
|
*/
|
|
@@ -713,6 +766,18 @@ export interface GameLift {
|
|
|
713
766
|
updateBuild(args: UpdateBuildCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBuildCommandOutput>;
|
|
714
767
|
updateBuild(args: UpdateBuildCommandInput, cb: (err: any, data?: UpdateBuildCommandOutput) => void): void;
|
|
715
768
|
updateBuild(args: UpdateBuildCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBuildCommandOutput) => void): void;
|
|
769
|
+
/**
|
|
770
|
+
* @see {@link UpdateContainerFleetCommand}
|
|
771
|
+
*/
|
|
772
|
+
updateContainerFleet(args: UpdateContainerFleetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContainerFleetCommandOutput>;
|
|
773
|
+
updateContainerFleet(args: UpdateContainerFleetCommandInput, cb: (err: any, data?: UpdateContainerFleetCommandOutput) => void): void;
|
|
774
|
+
updateContainerFleet(args: UpdateContainerFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContainerFleetCommandOutput) => void): void;
|
|
775
|
+
/**
|
|
776
|
+
* @see {@link UpdateContainerGroupDefinitionCommand}
|
|
777
|
+
*/
|
|
778
|
+
updateContainerGroupDefinition(args: UpdateContainerGroupDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContainerGroupDefinitionCommandOutput>;
|
|
779
|
+
updateContainerGroupDefinition(args: UpdateContainerGroupDefinitionCommandInput, cb: (err: any, data?: UpdateContainerGroupDefinitionCommandOutput) => void): void;
|
|
780
|
+
updateContainerGroupDefinition(args: UpdateContainerGroupDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContainerGroupDefinitionCommandOutput) => void): void;
|
|
716
781
|
/**
|
|
717
782
|
* @see {@link UpdateFleetAttributesCommand}
|
|
718
783
|
*/
|
|
@@ -11,6 +11,7 @@ import { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/Ac
|
|
|
11
11
|
import { ClaimGameServerCommandInput, ClaimGameServerCommandOutput } from "./commands/ClaimGameServerCommand";
|
|
12
12
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
13
13
|
import { CreateBuildCommandInput, CreateBuildCommandOutput } from "./commands/CreateBuildCommand";
|
|
14
|
+
import { CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput } from "./commands/CreateContainerFleetCommand";
|
|
14
15
|
import { CreateContainerGroupDefinitionCommandInput, CreateContainerGroupDefinitionCommandOutput } from "./commands/CreateContainerGroupDefinitionCommand";
|
|
15
16
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
16
17
|
import { CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput } from "./commands/CreateFleetLocationsCommand";
|
|
@@ -27,6 +28,7 @@ import { CreateVpcPeeringAuthorizationCommandInput, CreateVpcPeeringAuthorizatio
|
|
|
27
28
|
import { CreateVpcPeeringConnectionCommandInput, CreateVpcPeeringConnectionCommandOutput } from "./commands/CreateVpcPeeringConnectionCommand";
|
|
28
29
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
29
30
|
import { DeleteBuildCommandInput, DeleteBuildCommandOutput } from "./commands/DeleteBuildCommand";
|
|
31
|
+
import { DeleteContainerFleetCommandInput, DeleteContainerFleetCommandOutput } from "./commands/DeleteContainerFleetCommand";
|
|
30
32
|
import { DeleteContainerGroupDefinitionCommandInput, DeleteContainerGroupDefinitionCommandOutput } from "./commands/DeleteContainerGroupDefinitionCommand";
|
|
31
33
|
import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
|
|
32
34
|
import { DeleteFleetLocationsCommandInput, DeleteFleetLocationsCommandOutput } from "./commands/DeleteFleetLocationsCommand";
|
|
@@ -44,10 +46,12 @@ import { DeregisterGameServerCommandInput, DeregisterGameServerCommandOutput } f
|
|
|
44
46
|
import { DescribeAliasCommandInput, DescribeAliasCommandOutput } from "./commands/DescribeAliasCommand";
|
|
45
47
|
import { DescribeBuildCommandInput, DescribeBuildCommandOutput } from "./commands/DescribeBuildCommand";
|
|
46
48
|
import { DescribeComputeCommandInput, DescribeComputeCommandOutput } from "./commands/DescribeComputeCommand";
|
|
49
|
+
import { DescribeContainerFleetCommandInput, DescribeContainerFleetCommandOutput } from "./commands/DescribeContainerFleetCommand";
|
|
47
50
|
import { DescribeContainerGroupDefinitionCommandInput, DescribeContainerGroupDefinitionCommandOutput } from "./commands/DescribeContainerGroupDefinitionCommand";
|
|
48
51
|
import { DescribeEC2InstanceLimitsCommandInput, DescribeEC2InstanceLimitsCommandOutput } from "./commands/DescribeEC2InstanceLimitsCommand";
|
|
49
52
|
import { DescribeFleetAttributesCommandInput, DescribeFleetAttributesCommandOutput } from "./commands/DescribeFleetAttributesCommand";
|
|
50
53
|
import { DescribeFleetCapacityCommandInput, DescribeFleetCapacityCommandOutput } from "./commands/DescribeFleetCapacityCommand";
|
|
54
|
+
import { DescribeFleetDeploymentCommandInput, DescribeFleetDeploymentCommandOutput } from "./commands/DescribeFleetDeploymentCommand";
|
|
51
55
|
import { DescribeFleetEventsCommandInput, DescribeFleetEventsCommandOutput } from "./commands/DescribeFleetEventsCommand";
|
|
52
56
|
import { DescribeFleetLocationAttributesCommandInput, DescribeFleetLocationAttributesCommandOutput } from "./commands/DescribeFleetLocationAttributesCommand";
|
|
53
57
|
import { DescribeFleetLocationCapacityCommandInput, DescribeFleetLocationCapacityCommandOutput } from "./commands/DescribeFleetLocationCapacityCommand";
|
|
@@ -78,7 +82,10 @@ import { GetInstanceAccessCommandInput, GetInstanceAccessCommandOutput } from ".
|
|
|
78
82
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
79
83
|
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
80
84
|
import { ListComputeCommandInput, ListComputeCommandOutput } from "./commands/ListComputeCommand";
|
|
85
|
+
import { ListContainerFleetsCommandInput, ListContainerFleetsCommandOutput } from "./commands/ListContainerFleetsCommand";
|
|
81
86
|
import { ListContainerGroupDefinitionsCommandInput, ListContainerGroupDefinitionsCommandOutput } from "./commands/ListContainerGroupDefinitionsCommand";
|
|
87
|
+
import { ListContainerGroupDefinitionVersionsCommandInput, ListContainerGroupDefinitionVersionsCommandOutput } from "./commands/ListContainerGroupDefinitionVersionsCommand";
|
|
88
|
+
import { ListFleetDeploymentsCommandInput, ListFleetDeploymentsCommandOutput } from "./commands/ListFleetDeploymentsCommand";
|
|
82
89
|
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
83
90
|
import { ListGameServerGroupsCommandInput, ListGameServerGroupsCommandOutput } from "./commands/ListGameServerGroupsCommand";
|
|
84
91
|
import { ListGameServersCommandInput, ListGameServersCommandOutput } from "./commands/ListGameServersCommand";
|
|
@@ -104,6 +111,8 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
104
111
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
105
112
|
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
106
113
|
import { UpdateBuildCommandInput, UpdateBuildCommandOutput } from "./commands/UpdateBuildCommand";
|
|
114
|
+
import { UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput } from "./commands/UpdateContainerFleetCommand";
|
|
115
|
+
import { UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput } from "./commands/UpdateContainerGroupDefinitionCommand";
|
|
107
116
|
import { UpdateFleetAttributesCommandInput, UpdateFleetAttributesCommandOutput } from "./commands/UpdateFleetAttributesCommand";
|
|
108
117
|
import { UpdateFleetCapacityCommandInput, UpdateFleetCapacityCommandOutput } from "./commands/UpdateFleetCapacityCommand";
|
|
109
118
|
import { UpdateFleetPortSettingsCommandInput, UpdateFleetPortSettingsCommandOutput } from "./commands/UpdateFleetPortSettingsCommand";
|
|
@@ -121,11 +130,11 @@ export { __Client };
|
|
|
121
130
|
/**
|
|
122
131
|
* @public
|
|
123
132
|
*/
|
|
124
|
-
export type ServiceInputTypes = AcceptMatchCommandInput | ClaimGameServerCommandInput | CreateAliasCommandInput | CreateBuildCommandInput | CreateContainerGroupDefinitionCommandInput | CreateFleetCommandInput | CreateFleetLocationsCommandInput | CreateGameServerGroupCommandInput | CreateGameSessionCommandInput | CreateGameSessionQueueCommandInput | CreateLocationCommandInput | CreateMatchmakingConfigurationCommandInput | CreateMatchmakingRuleSetCommandInput | CreatePlayerSessionCommandInput | CreatePlayerSessionsCommandInput | CreateScriptCommandInput | CreateVpcPeeringAuthorizationCommandInput | CreateVpcPeeringConnectionCommandInput | DeleteAliasCommandInput | DeleteBuildCommandInput | DeleteContainerGroupDefinitionCommandInput | DeleteFleetCommandInput | DeleteFleetLocationsCommandInput | DeleteGameServerGroupCommandInput | DeleteGameSessionQueueCommandInput | DeleteLocationCommandInput | DeleteMatchmakingConfigurationCommandInput | DeleteMatchmakingRuleSetCommandInput | DeleteScalingPolicyCommandInput | DeleteScriptCommandInput | DeleteVpcPeeringAuthorizationCommandInput | DeleteVpcPeeringConnectionCommandInput | DeregisterComputeCommandInput | DeregisterGameServerCommandInput | DescribeAliasCommandInput | DescribeBuildCommandInput | DescribeComputeCommandInput | DescribeContainerGroupDefinitionCommandInput | DescribeEC2InstanceLimitsCommandInput | DescribeFleetAttributesCommandInput | DescribeFleetCapacityCommandInput | 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 | ListAliasesCommandInput | ListBuildsCommandInput | ListComputeCommandInput | ListContainerGroupDefinitionsCommandInput | ListFleetsCommandInput | ListGameServerGroupsCommandInput | ListGameServersCommandInput | ListLocationsCommandInput | ListScriptsCommandInput | ListTagsForResourceCommandInput | PutScalingPolicyCommandInput | RegisterComputeCommandInput | RegisterGameServerCommandInput | RequestUploadCredentialsCommandInput | ResolveAliasCommandInput | ResumeGameServerGroupCommandInput | SearchGameSessionsCommandInput | StartFleetActionsCommandInput | StartGameSessionPlacementCommandInput | StartMatchBackfillCommandInput | StartMatchmakingCommandInput | StopFleetActionsCommandInput | StopGameSessionPlacementCommandInput | StopMatchmakingCommandInput | SuspendGameServerGroupCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateBuildCommandInput | UpdateFleetAttributesCommandInput | UpdateFleetCapacityCommandInput | UpdateFleetPortSettingsCommandInput | UpdateGameServerCommandInput | UpdateGameServerGroupCommandInput | UpdateGameSessionCommandInput | UpdateGameSessionQueueCommandInput | UpdateMatchmakingConfigurationCommandInput | UpdateRuntimeConfigurationCommandInput | UpdateScriptCommandInput | ValidateMatchmakingRuleSetCommandInput;
|
|
133
|
+
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 | 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 | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateBuildCommandInput | UpdateContainerFleetCommandInput | UpdateContainerGroupDefinitionCommandInput | UpdateFleetAttributesCommandInput | UpdateFleetCapacityCommandInput | UpdateFleetPortSettingsCommandInput | UpdateGameServerCommandInput | UpdateGameServerGroupCommandInput | UpdateGameSessionCommandInput | UpdateGameSessionQueueCommandInput | UpdateMatchmakingConfigurationCommandInput | UpdateRuntimeConfigurationCommandInput | UpdateScriptCommandInput | ValidateMatchmakingRuleSetCommandInput;
|
|
125
134
|
/**
|
|
126
135
|
* @public
|
|
127
136
|
*/
|
|
128
|
-
export type ServiceOutputTypes = AcceptMatchCommandOutput | ClaimGameServerCommandOutput | CreateAliasCommandOutput | CreateBuildCommandOutput | CreateContainerGroupDefinitionCommandOutput | CreateFleetCommandOutput | CreateFleetLocationsCommandOutput | CreateGameServerGroupCommandOutput | CreateGameSessionCommandOutput | CreateGameSessionQueueCommandOutput | CreateLocationCommandOutput | CreateMatchmakingConfigurationCommandOutput | CreateMatchmakingRuleSetCommandOutput | CreatePlayerSessionCommandOutput | CreatePlayerSessionsCommandOutput | CreateScriptCommandOutput | CreateVpcPeeringAuthorizationCommandOutput | CreateVpcPeeringConnectionCommandOutput | DeleteAliasCommandOutput | DeleteBuildCommandOutput | DeleteContainerGroupDefinitionCommandOutput | DeleteFleetCommandOutput | DeleteFleetLocationsCommandOutput | DeleteGameServerGroupCommandOutput | DeleteGameSessionQueueCommandOutput | DeleteLocationCommandOutput | DeleteMatchmakingConfigurationCommandOutput | DeleteMatchmakingRuleSetCommandOutput | DeleteScalingPolicyCommandOutput | DeleteScriptCommandOutput | DeleteVpcPeeringAuthorizationCommandOutput | DeleteVpcPeeringConnectionCommandOutput | DeregisterComputeCommandOutput | DeregisterGameServerCommandOutput | DescribeAliasCommandOutput | DescribeBuildCommandOutput | DescribeComputeCommandOutput | DescribeContainerGroupDefinitionCommandOutput | DescribeEC2InstanceLimitsCommandOutput | DescribeFleetAttributesCommandOutput | DescribeFleetCapacityCommandOutput | 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 | ListAliasesCommandOutput | ListBuildsCommandOutput | ListComputeCommandOutput | ListContainerGroupDefinitionsCommandOutput | ListFleetsCommandOutput | ListGameServerGroupsCommandOutput | ListGameServersCommandOutput | ListLocationsCommandOutput | ListScriptsCommandOutput | ListTagsForResourceCommandOutput | PutScalingPolicyCommandOutput | RegisterComputeCommandOutput | RegisterGameServerCommandOutput | RequestUploadCredentialsCommandOutput | ResolveAliasCommandOutput | ResumeGameServerGroupCommandOutput | SearchGameSessionsCommandOutput | StartFleetActionsCommandOutput | StartGameSessionPlacementCommandOutput | StartMatchBackfillCommandOutput | StartMatchmakingCommandOutput | StopFleetActionsCommandOutput | StopGameSessionPlacementCommandOutput | StopMatchmakingCommandOutput | SuspendGameServerGroupCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateBuildCommandOutput | UpdateFleetAttributesCommandOutput | UpdateFleetCapacityCommandOutput | UpdateFleetPortSettingsCommandOutput | UpdateGameServerCommandOutput | UpdateGameServerGroupCommandOutput | UpdateGameSessionCommandOutput | UpdateGameSessionQueueCommandOutput | UpdateMatchmakingConfigurationCommandOutput | UpdateRuntimeConfigurationCommandOutput | UpdateScriptCommandOutput | ValidateMatchmakingRuleSetCommandOutput;
|
|
137
|
+
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 | 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 | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateBuildCommandOutput | UpdateContainerFleetCommandOutput | UpdateContainerGroupDefinitionCommandOutput | UpdateFleetAttributesCommandOutput | UpdateFleetCapacityCommandOutput | UpdateFleetPortSettingsCommandOutput | UpdateGameServerCommandOutput | UpdateGameServerGroupCommandOutput | UpdateGameSessionCommandOutput | UpdateGameSessionQueueCommandOutput | UpdateMatchmakingConfigurationCommandOutput | UpdateRuntimeConfigurationCommandOutput | UpdateScriptCommandOutput | ValidateMatchmakingRuleSetCommandOutput;
|
|
129
138
|
/**
|
|
130
139
|
* @public
|
|
131
140
|
*/
|
|
@@ -27,36 +27,42 @@ declare const CreateBuildCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates
|
|
31
|
-
*
|
|
30
|
+
* <p>Creates an Amazon GameLift build resource for your game server software and stores the software
|
|
31
|
+
* for deployment to hosting resources. Combine game server binaries and dependencies into
|
|
32
|
+
* a single .zip file </p>
|
|
32
33
|
* <important>
|
|
33
|
-
* <p>
|
|
34
|
+
* <p>Use the CLI command <b>
|
|
34
35
|
* <a href="https://docs.aws.amazon.com/cli/latest/reference/gamelift/upload-build.html">upload-build</a>
|
|
35
|
-
* </b
|
|
36
|
-
*
|
|
37
|
-
*
|
|
36
|
+
* </b> to quickly and simply create a new build
|
|
37
|
+
* and upload your game build .zip file to Amazon GameLift Amazon S3. This helper command eliminates
|
|
38
|
+
* the need to explicitly manage access permissions.</p>
|
|
38
39
|
* </important>
|
|
39
|
-
* <p>
|
|
40
|
+
* <p>Alternatively, use the <code>CreateBuild</code> action for the following
|
|
41
|
+
* scenarios:</p>
|
|
40
42
|
* <ul>
|
|
41
43
|
* <li>
|
|
42
|
-
* <p>
|
|
43
|
-
*
|
|
44
|
-
* the Amazon S3 bucket. With
|
|
45
|
-
*
|
|
44
|
+
* <p>You want to create a build and upload a game build zip file from in an Amazon S3
|
|
45
|
+
* location that you control. In this scenario, you need to give Amazon GameLift permission
|
|
46
|
+
* to access to the Amazon S3 bucket. With permission in place, call
|
|
47
|
+
* <code>CreateBuild</code> and specify a build name, the build's runtime
|
|
48
|
+
* operating system, and the Amazon S3 storage location where the build file is
|
|
49
|
+
* stored.</p>
|
|
46
50
|
* </li>
|
|
47
51
|
* <li>
|
|
48
|
-
* <p>
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* the
|
|
52
|
+
* <p>You want to create a build and upload a local game build zip file to an Amazon S3
|
|
53
|
+
* location that's controlled by Amazon GameLift. (See the <code>upload-build</code> CLI
|
|
54
|
+
* command for this scenario.) In this scenario, you need to request temporary
|
|
55
|
+
* access credentials to the Amazon GameLift Amazon S3 location. Specify a build name and the
|
|
56
|
+
* build's runtime operating system. The response provides an Amazon S3 location and a
|
|
57
|
+
* set of temporary access credentials. Use the credentials to upload your build
|
|
58
|
+
* files to the specified Amazon S3 location (see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UploadingObjects.html">Uploading Objects</a> in
|
|
59
|
+
* the <i>Amazon S3 Developer Guide</i>). You can't update build files
|
|
60
|
+
* after uploading them to Amazon GameLift Amazon S3.</p>
|
|
55
61
|
* </li>
|
|
56
62
|
* </ul>
|
|
57
|
-
* <p>If successful, this
|
|
58
|
-
* places it in <code>INITIALIZED</code> status.
|
|
59
|
-
* status
|
|
63
|
+
* <p>If successful, this action creates a new build resource with a unique build ID and
|
|
64
|
+
* places it in <code>INITIALIZED</code> status. When the build reaches <code>READY</code>
|
|
65
|
+
* status, you can create fleets with it.</p>
|
|
60
66
|
* <p>
|
|
61
67
|
* <b>Learn more</b>
|
|
62
68
|
* </p>
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
|
|
4
|
+
import { CreateContainerFleetInput, CreateContainerFleetOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateContainerFleetCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateContainerFleetCommandInput extends CreateContainerFleetInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateContainerFleetCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateContainerFleetCommandOutput extends CreateContainerFleetOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateContainerFleetCommand_base: {
|
|
25
|
+
new (input: CreateContainerFleetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput, GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateContainerFleetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateContainerFleetCommandInput, CreateContainerFleetCommandOutput, GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a managed fleet of Amazon Elastic Compute Cloud (Amazon EC2) instances to host your containerized game
|
|
31
|
+
* servers. Use this operation to define how to deploy a container architecture onto each
|
|
32
|
+
* fleet instance and configure fleet settings. You can create a container fleet in any
|
|
33
|
+
* Amazon Web Services Regions that Amazon GameLift supports for multi-location fleets. A container fleet can be
|
|
34
|
+
* deployed to a single location or multiple locations. Container fleets are deployed with
|
|
35
|
+
* Amazon Linux 2023 as the instance operating system.</p>
|
|
36
|
+
* <p>Define the fleet's container architecture using container group definitions. Each
|
|
37
|
+
* fleet can have one of the following container group types:</p>
|
|
38
|
+
* <ul>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>The game server container group runs your game server build and dependent software. Amazon GameLift
|
|
41
|
+
* deploys one or more replicas of this container group to each fleet instance. The
|
|
42
|
+
* number of replicas depends on the computing capabilities of the fleet instance
|
|
43
|
+
* in use. </p>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>An optional per-instance container group might be used to run other software that only needs
|
|
47
|
+
* to run once per instance, such as background services, logging, or test
|
|
48
|
+
* processes. One per-instance container group is deployed to each fleet instance. </p>
|
|
49
|
+
* </li>
|
|
50
|
+
* </ul>
|
|
51
|
+
* <p>Each container group can include the definition for one or more containers. A
|
|
52
|
+
* container definition specifies a container image that is stored in an Amazon Elastic Container Registry (Amazon ECR)
|
|
53
|
+
* public or private repository.</p>
|
|
54
|
+
* <p>
|
|
55
|
+
* <b>Request options</b>
|
|
56
|
+
* </p>
|
|
57
|
+
* <p>Use this operation to make the following types of requests. Most fleet settings have
|
|
58
|
+
* default values, so you can create a working fleet with a minimal configuration and
|
|
59
|
+
* default values, which you can customize later.</p>
|
|
60
|
+
* <ul>
|
|
61
|
+
* <li>
|
|
62
|
+
* <p>Create a fleet with no container groups. You can configure a container fleet and then add
|
|
63
|
+
* container group definitions later. In this scenario, no fleet instances are
|
|
64
|
+
* deployed, and the fleet can't host game sessions until you add a game server
|
|
65
|
+
* container group definition. Provide the following required parameter
|
|
66
|
+
* values:</p>
|
|
67
|
+
* <ul>
|
|
68
|
+
* <li>
|
|
69
|
+
* <p>
|
|
70
|
+
* <code>FleetRoleArn</code>
|
|
71
|
+
* </p>
|
|
72
|
+
* </li>
|
|
73
|
+
* </ul>
|
|
74
|
+
* </li>
|
|
75
|
+
* <li>
|
|
76
|
+
* <p>Create a fleet with a game server container group. Provide the following required parameter
|
|
77
|
+
* values:</p>
|
|
78
|
+
* <ul>
|
|
79
|
+
* <li>
|
|
80
|
+
* <p>
|
|
81
|
+
* <code>FleetRoleArn</code>
|
|
82
|
+
* </p>
|
|
83
|
+
* </li>
|
|
84
|
+
* <li>
|
|
85
|
+
* <p>
|
|
86
|
+
* <code>GameServerContainerGroupDefinitionName</code>
|
|
87
|
+
* </p>
|
|
88
|
+
* </li>
|
|
89
|
+
* </ul>
|
|
90
|
+
* </li>
|
|
91
|
+
* <li>
|
|
92
|
+
* <p>Create a fleet with a game server container group and a per-instance container group. Provide
|
|
93
|
+
* the following required parameter values:</p>
|
|
94
|
+
* <ul>
|
|
95
|
+
* <li>
|
|
96
|
+
* <p>
|
|
97
|
+
* <code>FleetRoleArn</code>
|
|
98
|
+
* </p>
|
|
99
|
+
* </li>
|
|
100
|
+
* <li>
|
|
101
|
+
* <p>
|
|
102
|
+
* <code>GameServerContainerGroupDefinitionName</code>
|
|
103
|
+
* </p>
|
|
104
|
+
* </li>
|
|
105
|
+
* <li>
|
|
106
|
+
* <p>
|
|
107
|
+
* <code>PerInstanceContainerGroupDefinitionName</code>
|
|
108
|
+
* </p>
|
|
109
|
+
* </li>
|
|
110
|
+
* </ul>
|
|
111
|
+
* </li>
|
|
112
|
+
* </ul>
|
|
113
|
+
* <p>
|
|
114
|
+
* <b>Results</b>
|
|
115
|
+
* </p>
|
|
116
|
+
* <p>If successful, this operation creates a new container fleet resource, places it in
|
|
117
|
+
* <code>PENDING</code> status, and initiates the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-creating-all.html#fleets-creation-workflow">fleet creation workflow</a>. For fleets with container groups, this workflow
|
|
118
|
+
* starts a fleet deployment and transitions the status to <code>ACTIVE</code>. Fleets
|
|
119
|
+
* without a container group are placed in <code>CREATED</code> status.</p>
|
|
120
|
+
* <p>You can update most of the properties of a fleet, including container group
|
|
121
|
+
* definitions, and deploy the update across all fleet instances. Use a fleet update to
|
|
122
|
+
* deploy a new game server version update across the container fleet. </p>
|
|
123
|
+
* @example
|
|
124
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
125
|
+
* ```javascript
|
|
126
|
+
* import { GameLiftClient, CreateContainerFleetCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
|
|
127
|
+
* // const { GameLiftClient, CreateContainerFleetCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
|
|
128
|
+
* const client = new GameLiftClient(config);
|
|
129
|
+
* const input = { // CreateContainerFleetInput
|
|
130
|
+
* FleetRoleArn: "STRING_VALUE", // required
|
|
131
|
+
* Description: "STRING_VALUE",
|
|
132
|
+
* GameServerContainerGroupDefinitionName: "STRING_VALUE",
|
|
133
|
+
* PerInstanceContainerGroupDefinitionName: "STRING_VALUE",
|
|
134
|
+
* InstanceConnectionPortRange: { // ConnectionPortRange
|
|
135
|
+
* FromPort: Number("int"), // required
|
|
136
|
+
* ToPort: Number("int"), // required
|
|
137
|
+
* },
|
|
138
|
+
* InstanceInboundPermissions: [ // IpPermissionsList
|
|
139
|
+
* { // IpPermission
|
|
140
|
+
* FromPort: Number("int"), // required
|
|
141
|
+
* ToPort: Number("int"), // required
|
|
142
|
+
* IpRange: "STRING_VALUE", // required
|
|
143
|
+
* Protocol: "TCP" || "UDP", // required
|
|
144
|
+
* },
|
|
145
|
+
* ],
|
|
146
|
+
* GameServerContainerGroupsPerInstance: Number("int"),
|
|
147
|
+
* InstanceType: "STRING_VALUE",
|
|
148
|
+
* BillingType: "ON_DEMAND" || "SPOT",
|
|
149
|
+
* Locations: [ // LocationConfigurationList
|
|
150
|
+
* { // LocationConfiguration
|
|
151
|
+
* Location: "STRING_VALUE", // required
|
|
152
|
+
* },
|
|
153
|
+
* ],
|
|
154
|
+
* MetricGroups: [ // MetricGroupList
|
|
155
|
+
* "STRING_VALUE",
|
|
156
|
+
* ],
|
|
157
|
+
* NewGameSessionProtectionPolicy: "NoProtection" || "FullProtection",
|
|
158
|
+
* GameSessionCreationLimitPolicy: { // GameSessionCreationLimitPolicy
|
|
159
|
+
* NewGameSessionsPerCreator: Number("int"),
|
|
160
|
+
* PolicyPeriodInMinutes: Number("int"),
|
|
161
|
+
* },
|
|
162
|
+
* LogConfiguration: { // LogConfiguration
|
|
163
|
+
* LogDestination: "NONE" || "CLOUDWATCH" || "S3",
|
|
164
|
+
* S3BucketName: "STRING_VALUE",
|
|
165
|
+
* LogGroupArn: "STRING_VALUE",
|
|
166
|
+
* },
|
|
167
|
+
* Tags: [ // TagList
|
|
168
|
+
* { // Tag
|
|
169
|
+
* Key: "STRING_VALUE", // required
|
|
170
|
+
* Value: "STRING_VALUE", // required
|
|
171
|
+
* },
|
|
172
|
+
* ],
|
|
173
|
+
* };
|
|
174
|
+
* const command = new CreateContainerFleetCommand(input);
|
|
175
|
+
* const response = await client.send(command);
|
|
176
|
+
* // { // CreateContainerFleetOutput
|
|
177
|
+
* // ContainerFleet: { // ContainerFleet
|
|
178
|
+
* // FleetId: "STRING_VALUE",
|
|
179
|
+
* // FleetArn: "STRING_VALUE",
|
|
180
|
+
* // FleetRoleArn: "STRING_VALUE",
|
|
181
|
+
* // GameServerContainerGroupDefinitionName: "STRING_VALUE",
|
|
182
|
+
* // GameServerContainerGroupDefinitionArn: "STRING_VALUE",
|
|
183
|
+
* // PerInstanceContainerGroupDefinitionName: "STRING_VALUE",
|
|
184
|
+
* // PerInstanceContainerGroupDefinitionArn: "STRING_VALUE",
|
|
185
|
+
* // InstanceConnectionPortRange: { // ConnectionPortRange
|
|
186
|
+
* // FromPort: Number("int"), // required
|
|
187
|
+
* // ToPort: Number("int"), // required
|
|
188
|
+
* // },
|
|
189
|
+
* // InstanceInboundPermissions: [ // IpPermissionsList
|
|
190
|
+
* // { // IpPermission
|
|
191
|
+
* // FromPort: Number("int"), // required
|
|
192
|
+
* // ToPort: Number("int"), // required
|
|
193
|
+
* // IpRange: "STRING_VALUE", // required
|
|
194
|
+
* // Protocol: "TCP" || "UDP", // required
|
|
195
|
+
* // },
|
|
196
|
+
* // ],
|
|
197
|
+
* // GameServerContainerGroupsPerInstance: Number("int"),
|
|
198
|
+
* // MaximumGameServerContainerGroupsPerInstance: Number("int"),
|
|
199
|
+
* // InstanceType: "STRING_VALUE",
|
|
200
|
+
* // BillingType: "ON_DEMAND" || "SPOT",
|
|
201
|
+
* // Description: "STRING_VALUE",
|
|
202
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
203
|
+
* // MetricGroups: [ // MetricGroupList
|
|
204
|
+
* // "STRING_VALUE",
|
|
205
|
+
* // ],
|
|
206
|
+
* // NewGameSessionProtectionPolicy: "NoProtection" || "FullProtection",
|
|
207
|
+
* // GameSessionCreationLimitPolicy: { // GameSessionCreationLimitPolicy
|
|
208
|
+
* // NewGameSessionsPerCreator: Number("int"),
|
|
209
|
+
* // PolicyPeriodInMinutes: Number("int"),
|
|
210
|
+
* // },
|
|
211
|
+
* // Status: "PENDING" || "CREATING" || "CREATED" || "ACTIVATING" || "ACTIVE" || "UPDATING" || "DELETING",
|
|
212
|
+
* // DeploymentDetails: { // DeploymentDetails
|
|
213
|
+
* // LatestDeploymentId: "STRING_VALUE",
|
|
214
|
+
* // },
|
|
215
|
+
* // LogConfiguration: { // LogConfiguration
|
|
216
|
+
* // LogDestination: "NONE" || "CLOUDWATCH" || "S3",
|
|
217
|
+
* // S3BucketName: "STRING_VALUE",
|
|
218
|
+
* // LogGroupArn: "STRING_VALUE",
|
|
219
|
+
* // },
|
|
220
|
+
* // LocationAttributes: [ // ContainerFleetLocationAttributesList
|
|
221
|
+
* // { // ContainerFleetLocationAttributes
|
|
222
|
+
* // Location: "STRING_VALUE",
|
|
223
|
+
* // Status: "PENDING" || "CREATING" || "CREATED" || "ACTIVATING" || "ACTIVE" || "UPDATING" || "DELETING",
|
|
224
|
+
* // },
|
|
225
|
+
* // ],
|
|
226
|
+
* // },
|
|
227
|
+
* // };
|
|
228
|
+
*
|
|
229
|
+
* ```
|
|
230
|
+
*
|
|
231
|
+
* @param CreateContainerFleetCommandInput - {@link CreateContainerFleetCommandInput}
|
|
232
|
+
* @returns {@link CreateContainerFleetCommandOutput}
|
|
233
|
+
* @see {@link CreateContainerFleetCommandInput} for command's `input` shape.
|
|
234
|
+
* @see {@link CreateContainerFleetCommandOutput} for command's `response` shape.
|
|
235
|
+
* @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
|
|
236
|
+
*
|
|
237
|
+
* @throws {@link ConflictException} (client fault)
|
|
238
|
+
* <p>The requested operation would cause a conflict with the current state of a service
|
|
239
|
+
* resource associated with the request. Resolve the conflict before retrying this
|
|
240
|
+
* request.</p>
|
|
241
|
+
* <p></p>
|
|
242
|
+
*
|
|
243
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
244
|
+
* <p>The service encountered an unrecoverable internal failure while processing the
|
|
245
|
+
* request. Clients can retry such requests immediately or after a waiting period.</p>
|
|
246
|
+
*
|
|
247
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
248
|
+
* <p>One or more parameter values in the request are invalid. Correct the invalid parameter
|
|
249
|
+
* values before retrying.</p>
|
|
250
|
+
*
|
|
251
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
252
|
+
* <p>The requested operation would cause the resource to exceed the allowed service limit.
|
|
253
|
+
* Resolve the issue before retrying.</p>
|
|
254
|
+
*
|
|
255
|
+
* @throws {@link TaggingFailedException} (client fault)
|
|
256
|
+
* <p>The requested tagging operation did not succeed. This may be due to invalid tag format
|
|
257
|
+
* or the maximum tag limit may have been exceeded. Resolve the issue before
|
|
258
|
+
* retrying.</p>
|
|
259
|
+
*
|
|
260
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
261
|
+
* <p>The client failed authentication. Clients should not retry such requests.</p>
|
|
262
|
+
*
|
|
263
|
+
* @throws {@link UnsupportedRegionException} (client fault)
|
|
264
|
+
* <p>The requested operation is not supported in the Region specified.</p>
|
|
265
|
+
*
|
|
266
|
+
* @throws {@link GameLiftServiceException}
|
|
267
|
+
* <p>Base exception class for all service exceptions from GameLift service.</p>
|
|
268
|
+
*
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export declare class CreateContainerFleetCommand extends CreateContainerFleetCommand_base {
|
|
272
|
+
/** @internal type navigation helper, not in runtime. */
|
|
273
|
+
protected static __types: {
|
|
274
|
+
api: {
|
|
275
|
+
input: CreateContainerFleetInput;
|
|
276
|
+
output: CreateContainerFleetOutput;
|
|
277
|
+
};
|
|
278
|
+
sdk: {
|
|
279
|
+
input: CreateContainerFleetCommandInput;
|
|
280
|
+
output: CreateContainerFleetCommandOutput;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
}
|