@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
|
@@ -0,0 +1,253 @@
|
|
|
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 { UpdateContainerFleetInput, UpdateContainerFleetOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateContainerFleetCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateContainerFleetCommandInput extends UpdateContainerFleetInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateContainerFleetCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateContainerFleetCommandOutput extends UpdateContainerFleetOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateContainerFleetCommand_base: {
|
|
25
|
+
new (input: UpdateContainerFleetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput, GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateContainerFleetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContainerFleetCommandInput, UpdateContainerFleetCommandOutput, GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the properties of a managed container fleet. Depending on the properties being
|
|
31
|
+
* updated, this operation might initiate a fleet deployment. You can track deployments for
|
|
32
|
+
* a fleet using <a>DescribeFleetDeployment</a>.</p>
|
|
33
|
+
* <p>
|
|
34
|
+
* <b>Request options</b>
|
|
35
|
+
* </p>
|
|
36
|
+
* <p>As with CreateContainerFleet, many fleet properties use common defaults or are
|
|
37
|
+
* calculated based on the fleet's container group definitions. </p>
|
|
38
|
+
* <ul>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>Update fleet properties that result in a fleet deployment. Include only those
|
|
41
|
+
* properties that you want to change. Specify deployment configuration
|
|
42
|
+
* settings.</p>
|
|
43
|
+
* </li>
|
|
44
|
+
* <li>
|
|
45
|
+
* <p>Update fleet properties that don't result in a fleet deployment. Include only
|
|
46
|
+
* those properties that you want to change.</p>
|
|
47
|
+
* </li>
|
|
48
|
+
* </ul>
|
|
49
|
+
* <p>Changes to the following properties initiate a fleet deployment: </p>
|
|
50
|
+
* <ul>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p>
|
|
53
|
+
* <code>GameServerContainerGroupDefinition</code>
|
|
54
|
+
* </p>
|
|
55
|
+
* </li>
|
|
56
|
+
* <li>
|
|
57
|
+
* <p>
|
|
58
|
+
* <code>PerInstanceContainerGroupDefinition</code>
|
|
59
|
+
* </p>
|
|
60
|
+
* </li>
|
|
61
|
+
* <li>
|
|
62
|
+
* <p>
|
|
63
|
+
* <code>GameServerContainerGroupsPerInstance</code>
|
|
64
|
+
* </p>
|
|
65
|
+
* </li>
|
|
66
|
+
* <li>
|
|
67
|
+
* <p>
|
|
68
|
+
* <code>InstanceInboundPermissions</code>
|
|
69
|
+
* </p>
|
|
70
|
+
* </li>
|
|
71
|
+
* <li>
|
|
72
|
+
* <p>
|
|
73
|
+
* <code>InstanceConnectionPortRange</code>
|
|
74
|
+
* </p>
|
|
75
|
+
* </li>
|
|
76
|
+
* <li>
|
|
77
|
+
* <p>
|
|
78
|
+
* <code>LogConfiguration</code>
|
|
79
|
+
* </p>
|
|
80
|
+
* </li>
|
|
81
|
+
* </ul>
|
|
82
|
+
* <p>
|
|
83
|
+
* <b>Results</b>
|
|
84
|
+
* </p>
|
|
85
|
+
* <p>If successful, this operation updates the container fleet resource, and might initiate
|
|
86
|
+
* a new deployment of fleet resources using the deployment configuration provided. A
|
|
87
|
+
* deployment replaces existing fleet instances with new instances that are deployed with
|
|
88
|
+
* the updated fleet properties. The fleet is placed in <code>UPDATING</code> status until
|
|
89
|
+
* the deployment is complete, then return to <code>ACTIVE</code>. </p>
|
|
90
|
+
* <p>You can have only one update deployment active at a time for a fleet. If a second
|
|
91
|
+
* update request initiates a deployment while another deployment is in progress, the first
|
|
92
|
+
* deployment is cancelled.</p>
|
|
93
|
+
* @example
|
|
94
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
95
|
+
* ```javascript
|
|
96
|
+
* import { GameLiftClient, UpdateContainerFleetCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
|
|
97
|
+
* // const { GameLiftClient, UpdateContainerFleetCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
|
|
98
|
+
* const client = new GameLiftClient(config);
|
|
99
|
+
* const input = { // UpdateContainerFleetInput
|
|
100
|
+
* FleetId: "STRING_VALUE", // required
|
|
101
|
+
* GameServerContainerGroupDefinitionName: "STRING_VALUE",
|
|
102
|
+
* PerInstanceContainerGroupDefinitionName: "STRING_VALUE",
|
|
103
|
+
* GameServerContainerGroupsPerInstance: Number("int"),
|
|
104
|
+
* InstanceConnectionPortRange: { // ConnectionPortRange
|
|
105
|
+
* FromPort: Number("int"), // required
|
|
106
|
+
* ToPort: Number("int"), // required
|
|
107
|
+
* },
|
|
108
|
+
* InstanceInboundPermissionAuthorizations: [ // IpPermissionsList
|
|
109
|
+
* { // IpPermission
|
|
110
|
+
* FromPort: Number("int"), // required
|
|
111
|
+
* ToPort: Number("int"), // required
|
|
112
|
+
* IpRange: "STRING_VALUE", // required
|
|
113
|
+
* Protocol: "TCP" || "UDP", // required
|
|
114
|
+
* },
|
|
115
|
+
* ],
|
|
116
|
+
* InstanceInboundPermissionRevocations: [
|
|
117
|
+
* {
|
|
118
|
+
* FromPort: Number("int"), // required
|
|
119
|
+
* ToPort: Number("int"), // required
|
|
120
|
+
* IpRange: "STRING_VALUE", // required
|
|
121
|
+
* Protocol: "TCP" || "UDP", // required
|
|
122
|
+
* },
|
|
123
|
+
* ],
|
|
124
|
+
* DeploymentConfiguration: { // DeploymentConfiguration
|
|
125
|
+
* ProtectionStrategy: "WITH_PROTECTION" || "IGNORE_PROTECTION",
|
|
126
|
+
* MinimumHealthyPercentage: Number("int"),
|
|
127
|
+
* ImpairmentStrategy: "MAINTAIN" || "ROLLBACK",
|
|
128
|
+
* },
|
|
129
|
+
* Description: "STRING_VALUE",
|
|
130
|
+
* MetricGroups: [ // MetricGroupList
|
|
131
|
+
* "STRING_VALUE",
|
|
132
|
+
* ],
|
|
133
|
+
* NewGameSessionProtectionPolicy: "NoProtection" || "FullProtection",
|
|
134
|
+
* GameSessionCreationLimitPolicy: { // GameSessionCreationLimitPolicy
|
|
135
|
+
* NewGameSessionsPerCreator: Number("int"),
|
|
136
|
+
* PolicyPeriodInMinutes: Number("int"),
|
|
137
|
+
* },
|
|
138
|
+
* LogConfiguration: { // LogConfiguration
|
|
139
|
+
* LogDestination: "NONE" || "CLOUDWATCH" || "S3",
|
|
140
|
+
* S3BucketName: "STRING_VALUE",
|
|
141
|
+
* LogGroupArn: "STRING_VALUE",
|
|
142
|
+
* },
|
|
143
|
+
* RemoveAttributes: [ // ContainerFleetRemoveAttributeList
|
|
144
|
+
* "PER_INSTANCE_CONTAINER_GROUP_DEFINITION",
|
|
145
|
+
* ],
|
|
146
|
+
* };
|
|
147
|
+
* const command = new UpdateContainerFleetCommand(input);
|
|
148
|
+
* const response = await client.send(command);
|
|
149
|
+
* // { // UpdateContainerFleetOutput
|
|
150
|
+
* // ContainerFleet: { // ContainerFleet
|
|
151
|
+
* // FleetId: "STRING_VALUE",
|
|
152
|
+
* // FleetArn: "STRING_VALUE",
|
|
153
|
+
* // FleetRoleArn: "STRING_VALUE",
|
|
154
|
+
* // GameServerContainerGroupDefinitionName: "STRING_VALUE",
|
|
155
|
+
* // GameServerContainerGroupDefinitionArn: "STRING_VALUE",
|
|
156
|
+
* // PerInstanceContainerGroupDefinitionName: "STRING_VALUE",
|
|
157
|
+
* // PerInstanceContainerGroupDefinitionArn: "STRING_VALUE",
|
|
158
|
+
* // InstanceConnectionPortRange: { // ConnectionPortRange
|
|
159
|
+
* // FromPort: Number("int"), // required
|
|
160
|
+
* // ToPort: Number("int"), // required
|
|
161
|
+
* // },
|
|
162
|
+
* // InstanceInboundPermissions: [ // IpPermissionsList
|
|
163
|
+
* // { // IpPermission
|
|
164
|
+
* // FromPort: Number("int"), // required
|
|
165
|
+
* // ToPort: Number("int"), // required
|
|
166
|
+
* // IpRange: "STRING_VALUE", // required
|
|
167
|
+
* // Protocol: "TCP" || "UDP", // required
|
|
168
|
+
* // },
|
|
169
|
+
* // ],
|
|
170
|
+
* // GameServerContainerGroupsPerInstance: Number("int"),
|
|
171
|
+
* // MaximumGameServerContainerGroupsPerInstance: Number("int"),
|
|
172
|
+
* // InstanceType: "STRING_VALUE",
|
|
173
|
+
* // BillingType: "ON_DEMAND" || "SPOT",
|
|
174
|
+
* // Description: "STRING_VALUE",
|
|
175
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
176
|
+
* // MetricGroups: [ // MetricGroupList
|
|
177
|
+
* // "STRING_VALUE",
|
|
178
|
+
* // ],
|
|
179
|
+
* // NewGameSessionProtectionPolicy: "NoProtection" || "FullProtection",
|
|
180
|
+
* // GameSessionCreationLimitPolicy: { // GameSessionCreationLimitPolicy
|
|
181
|
+
* // NewGameSessionsPerCreator: Number("int"),
|
|
182
|
+
* // PolicyPeriodInMinutes: Number("int"),
|
|
183
|
+
* // },
|
|
184
|
+
* // Status: "PENDING" || "CREATING" || "CREATED" || "ACTIVATING" || "ACTIVE" || "UPDATING" || "DELETING",
|
|
185
|
+
* // DeploymentDetails: { // DeploymentDetails
|
|
186
|
+
* // LatestDeploymentId: "STRING_VALUE",
|
|
187
|
+
* // },
|
|
188
|
+
* // LogConfiguration: { // LogConfiguration
|
|
189
|
+
* // LogDestination: "NONE" || "CLOUDWATCH" || "S3",
|
|
190
|
+
* // S3BucketName: "STRING_VALUE",
|
|
191
|
+
* // LogGroupArn: "STRING_VALUE",
|
|
192
|
+
* // },
|
|
193
|
+
* // LocationAttributes: [ // ContainerFleetLocationAttributesList
|
|
194
|
+
* // { // ContainerFleetLocationAttributes
|
|
195
|
+
* // Location: "STRING_VALUE",
|
|
196
|
+
* // Status: "PENDING" || "CREATING" || "CREATED" || "ACTIVATING" || "ACTIVE" || "UPDATING" || "DELETING",
|
|
197
|
+
* // },
|
|
198
|
+
* // ],
|
|
199
|
+
* // },
|
|
200
|
+
* // };
|
|
201
|
+
*
|
|
202
|
+
* ```
|
|
203
|
+
*
|
|
204
|
+
* @param UpdateContainerFleetCommandInput - {@link UpdateContainerFleetCommandInput}
|
|
205
|
+
* @returns {@link UpdateContainerFleetCommandOutput}
|
|
206
|
+
* @see {@link UpdateContainerFleetCommandInput} for command's `input` shape.
|
|
207
|
+
* @see {@link UpdateContainerFleetCommandOutput} for command's `response` shape.
|
|
208
|
+
* @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
|
|
209
|
+
*
|
|
210
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
211
|
+
* <p>The service encountered an unrecoverable internal failure while processing the
|
|
212
|
+
* request. Clients can retry such requests immediately or after a waiting period.</p>
|
|
213
|
+
*
|
|
214
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
215
|
+
* <p>One or more parameter values in the request are invalid. Correct the invalid parameter
|
|
216
|
+
* values before retrying.</p>
|
|
217
|
+
*
|
|
218
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
219
|
+
* <p>The requested operation would cause the resource to exceed the allowed service limit.
|
|
220
|
+
* Resolve the issue before retrying.</p>
|
|
221
|
+
*
|
|
222
|
+
* @throws {@link NotFoundException} (client fault)
|
|
223
|
+
* <p>The requested resources was not found. The resource was either not created yet or deleted.</p>
|
|
224
|
+
*
|
|
225
|
+
* @throws {@link NotReadyException} (client fault)
|
|
226
|
+
* <p> The operation failed because Amazon GameLift has not yet finished validating this compute. We
|
|
227
|
+
* recommend attempting 8 to 10 retries over 3 to 5 minutes with <a href="http://aws.amazon.com/blogs/https:/aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/">exponential
|
|
228
|
+
* backoffs and jitter</a>. </p>
|
|
229
|
+
*
|
|
230
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
231
|
+
* <p>The client failed authentication. Clients should not retry such requests.</p>
|
|
232
|
+
*
|
|
233
|
+
* @throws {@link UnsupportedRegionException} (client fault)
|
|
234
|
+
* <p>The requested operation is not supported in the Region specified.</p>
|
|
235
|
+
*
|
|
236
|
+
* @throws {@link GameLiftServiceException}
|
|
237
|
+
* <p>Base exception class for all service exceptions from GameLift service.</p>
|
|
238
|
+
*
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
export declare class UpdateContainerFleetCommand extends UpdateContainerFleetCommand_base {
|
|
242
|
+
/** @internal type navigation helper, not in runtime. */
|
|
243
|
+
protected static __types: {
|
|
244
|
+
api: {
|
|
245
|
+
input: UpdateContainerFleetInput;
|
|
246
|
+
output: UpdateContainerFleetOutput;
|
|
247
|
+
};
|
|
248
|
+
sdk: {
|
|
249
|
+
input: UpdateContainerFleetCommandInput;
|
|
250
|
+
output: UpdateContainerFleetCommandOutput;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
}
|
|
@@ -0,0 +1,310 @@
|
|
|
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 { UpdateContainerGroupDefinitionInput, UpdateContainerGroupDefinitionOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateContainerGroupDefinitionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateContainerGroupDefinitionCommandInput extends UpdateContainerGroupDefinitionInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateContainerGroupDefinitionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateContainerGroupDefinitionCommandOutput extends UpdateContainerGroupDefinitionOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateContainerGroupDefinitionCommand_base: {
|
|
25
|
+
new (input: UpdateContainerGroupDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput, GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateContainerGroupDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContainerGroupDefinitionCommandInput, UpdateContainerGroupDefinitionCommandOutput, GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates properties in an existing container group definition. This operation doesn't
|
|
31
|
+
* replace the definition. Instead, it creates a new version of the definition and saves it
|
|
32
|
+
* separately. You can access all versions that you choose to retain.</p>
|
|
33
|
+
* <p>The only property you can't update is the container group type.</p>
|
|
34
|
+
* <p>
|
|
35
|
+
* <b>Request options:</b>
|
|
36
|
+
* </p>
|
|
37
|
+
* <ul>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>Update based on the latest version of the container group definition. Specify the
|
|
40
|
+
* container group definition name only, or use an ARN value without a version number.
|
|
41
|
+
* Provide updated values for the properties that you want to change only. All other values
|
|
42
|
+
* remain the same as the latest version.</p>
|
|
43
|
+
* </li>
|
|
44
|
+
* <li>
|
|
45
|
+
* <p>Update based on a specific version of the container group definition. Specify the
|
|
46
|
+
* container group definition name and a source version number, or use an ARN value with a
|
|
47
|
+
* version number. Provide updated values for the properties that you want to change only.
|
|
48
|
+
* All other values remain the same as the source version.</p>
|
|
49
|
+
* </li>
|
|
50
|
+
* <li>
|
|
51
|
+
* <p>Change a game server container definition. Provide the updated container
|
|
52
|
+
* definition.</p>
|
|
53
|
+
* </li>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>Add or change a support container definition. Provide a complete set of container
|
|
56
|
+
* definitions, including the updated definition.</p>
|
|
57
|
+
* </li>
|
|
58
|
+
* <li>
|
|
59
|
+
* <p>Remove a support container definition. Provide a complete set of container
|
|
60
|
+
* definitions, excluding the definition to remove. If the container group has only one
|
|
61
|
+
* support container definition, provide an empty set.</p>
|
|
62
|
+
* </li>
|
|
63
|
+
* </ul>
|
|
64
|
+
* <p>
|
|
65
|
+
* <b>Results:</b>
|
|
66
|
+
* </p>
|
|
67
|
+
* <p>If successful, this operation returns the complete properties of the new container group
|
|
68
|
+
* definition version.</p>
|
|
69
|
+
* <p>If the container group definition version is used in an active fleets, the update
|
|
70
|
+
* automatically initiates a new fleet deployment of the new version. You can track a fleet's
|
|
71
|
+
* deployments using <a>ListFleetDeployments</a>.</p>
|
|
72
|
+
* @example
|
|
73
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
74
|
+
* ```javascript
|
|
75
|
+
* import { GameLiftClient, UpdateContainerGroupDefinitionCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
|
|
76
|
+
* // const { GameLiftClient, UpdateContainerGroupDefinitionCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
|
|
77
|
+
* const client = new GameLiftClient(config);
|
|
78
|
+
* const input = { // UpdateContainerGroupDefinitionInput
|
|
79
|
+
* Name: "STRING_VALUE", // required
|
|
80
|
+
* GameServerContainerDefinition: { // GameServerContainerDefinitionInput
|
|
81
|
+
* ContainerName: "STRING_VALUE", // required
|
|
82
|
+
* DependsOn: [ // ContainerDependencyList
|
|
83
|
+
* { // ContainerDependency
|
|
84
|
+
* ContainerName: "STRING_VALUE", // required
|
|
85
|
+
* Condition: "START" || "COMPLETE" || "SUCCESS" || "HEALTHY", // required
|
|
86
|
+
* },
|
|
87
|
+
* ],
|
|
88
|
+
* MountPoints: [ // ContainerMountPointList
|
|
89
|
+
* { // ContainerMountPoint
|
|
90
|
+
* InstancePath: "STRING_VALUE", // required
|
|
91
|
+
* ContainerPath: "STRING_VALUE",
|
|
92
|
+
* AccessLevel: "READ_ONLY" || "READ_AND_WRITE",
|
|
93
|
+
* },
|
|
94
|
+
* ],
|
|
95
|
+
* EnvironmentOverride: [ // ContainerEnvironmentList
|
|
96
|
+
* { // ContainerEnvironment
|
|
97
|
+
* Name: "STRING_VALUE", // required
|
|
98
|
+
* Value: "STRING_VALUE", // required
|
|
99
|
+
* },
|
|
100
|
+
* ],
|
|
101
|
+
* ImageUri: "STRING_VALUE", // required
|
|
102
|
+
* PortConfiguration: { // ContainerPortConfiguration
|
|
103
|
+
* ContainerPortRanges: [ // ContainerPortRangeList // required
|
|
104
|
+
* { // ContainerPortRange
|
|
105
|
+
* FromPort: Number("int"), // required
|
|
106
|
+
* ToPort: Number("int"), // required
|
|
107
|
+
* Protocol: "TCP" || "UDP", // required
|
|
108
|
+
* },
|
|
109
|
+
* ],
|
|
110
|
+
* },
|
|
111
|
+
* ServerSdkVersion: "STRING_VALUE", // required
|
|
112
|
+
* },
|
|
113
|
+
* SupportContainerDefinitions: [ // SupportContainerDefinitionInputList
|
|
114
|
+
* { // SupportContainerDefinitionInput
|
|
115
|
+
* ContainerName: "STRING_VALUE", // required
|
|
116
|
+
* DependsOn: [
|
|
117
|
+
* {
|
|
118
|
+
* ContainerName: "STRING_VALUE", // required
|
|
119
|
+
* Condition: "START" || "COMPLETE" || "SUCCESS" || "HEALTHY", // required
|
|
120
|
+
* },
|
|
121
|
+
* ],
|
|
122
|
+
* MountPoints: [
|
|
123
|
+
* {
|
|
124
|
+
* InstancePath: "STRING_VALUE", // required
|
|
125
|
+
* ContainerPath: "STRING_VALUE",
|
|
126
|
+
* AccessLevel: "READ_ONLY" || "READ_AND_WRITE",
|
|
127
|
+
* },
|
|
128
|
+
* ],
|
|
129
|
+
* EnvironmentOverride: [
|
|
130
|
+
* {
|
|
131
|
+
* Name: "STRING_VALUE", // required
|
|
132
|
+
* Value: "STRING_VALUE", // required
|
|
133
|
+
* },
|
|
134
|
+
* ],
|
|
135
|
+
* Essential: true || false,
|
|
136
|
+
* HealthCheck: { // ContainerHealthCheck
|
|
137
|
+
* Command: [ // ContainerCommandStringList // required
|
|
138
|
+
* "STRING_VALUE",
|
|
139
|
+
* ],
|
|
140
|
+
* Interval: Number("int"),
|
|
141
|
+
* Retries: Number("int"),
|
|
142
|
+
* StartPeriod: Number("int"),
|
|
143
|
+
* Timeout: Number("int"),
|
|
144
|
+
* },
|
|
145
|
+
* ImageUri: "STRING_VALUE", // required
|
|
146
|
+
* MemoryHardLimitMebibytes: Number("int"),
|
|
147
|
+
* PortConfiguration: {
|
|
148
|
+
* ContainerPortRanges: [ // required
|
|
149
|
+
* {
|
|
150
|
+
* FromPort: Number("int"), // required
|
|
151
|
+
* ToPort: Number("int"), // required
|
|
152
|
+
* Protocol: "TCP" || "UDP", // required
|
|
153
|
+
* },
|
|
154
|
+
* ],
|
|
155
|
+
* },
|
|
156
|
+
* Vcpu: Number("double"),
|
|
157
|
+
* },
|
|
158
|
+
* ],
|
|
159
|
+
* TotalMemoryLimitMebibytes: Number("int"),
|
|
160
|
+
* TotalVcpuLimit: Number("double"),
|
|
161
|
+
* VersionDescription: "STRING_VALUE",
|
|
162
|
+
* SourceVersionNumber: Number("int"),
|
|
163
|
+
* OperatingSystem: "AMAZON_LINUX_2023",
|
|
164
|
+
* };
|
|
165
|
+
* const command = new UpdateContainerGroupDefinitionCommand(input);
|
|
166
|
+
* const response = await client.send(command);
|
|
167
|
+
* // { // UpdateContainerGroupDefinitionOutput
|
|
168
|
+
* // ContainerGroupDefinition: { // ContainerGroupDefinition
|
|
169
|
+
* // ContainerGroupDefinitionArn: "STRING_VALUE",
|
|
170
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
171
|
+
* // OperatingSystem: "AMAZON_LINUX_2023",
|
|
172
|
+
* // Name: "STRING_VALUE", // required
|
|
173
|
+
* // ContainerGroupType: "GAME_SERVER" || "PER_INSTANCE",
|
|
174
|
+
* // TotalMemoryLimitMebibytes: Number("int"),
|
|
175
|
+
* // TotalVcpuLimit: Number("double"),
|
|
176
|
+
* // GameServerContainerDefinition: { // GameServerContainerDefinition
|
|
177
|
+
* // ContainerName: "STRING_VALUE",
|
|
178
|
+
* // DependsOn: [ // ContainerDependencyList
|
|
179
|
+
* // { // ContainerDependency
|
|
180
|
+
* // ContainerName: "STRING_VALUE", // required
|
|
181
|
+
* // Condition: "START" || "COMPLETE" || "SUCCESS" || "HEALTHY", // required
|
|
182
|
+
* // },
|
|
183
|
+
* // ],
|
|
184
|
+
* // MountPoints: [ // ContainerMountPointList
|
|
185
|
+
* // { // ContainerMountPoint
|
|
186
|
+
* // InstancePath: "STRING_VALUE", // required
|
|
187
|
+
* // ContainerPath: "STRING_VALUE",
|
|
188
|
+
* // AccessLevel: "READ_ONLY" || "READ_AND_WRITE",
|
|
189
|
+
* // },
|
|
190
|
+
* // ],
|
|
191
|
+
* // EnvironmentOverride: [ // ContainerEnvironmentList
|
|
192
|
+
* // { // ContainerEnvironment
|
|
193
|
+
* // Name: "STRING_VALUE", // required
|
|
194
|
+
* // Value: "STRING_VALUE", // required
|
|
195
|
+
* // },
|
|
196
|
+
* // ],
|
|
197
|
+
* // ImageUri: "STRING_VALUE",
|
|
198
|
+
* // PortConfiguration: { // ContainerPortConfiguration
|
|
199
|
+
* // ContainerPortRanges: [ // ContainerPortRangeList // required
|
|
200
|
+
* // { // ContainerPortRange
|
|
201
|
+
* // FromPort: Number("int"), // required
|
|
202
|
+
* // ToPort: Number("int"), // required
|
|
203
|
+
* // Protocol: "TCP" || "UDP", // required
|
|
204
|
+
* // },
|
|
205
|
+
* // ],
|
|
206
|
+
* // },
|
|
207
|
+
* // ResolvedImageDigest: "STRING_VALUE",
|
|
208
|
+
* // ServerSdkVersion: "STRING_VALUE",
|
|
209
|
+
* // },
|
|
210
|
+
* // SupportContainerDefinitions: [ // SupportContainerDefinitionList
|
|
211
|
+
* // { // SupportContainerDefinition
|
|
212
|
+
* // ContainerName: "STRING_VALUE",
|
|
213
|
+
* // DependsOn: [
|
|
214
|
+
* // {
|
|
215
|
+
* // ContainerName: "STRING_VALUE", // required
|
|
216
|
+
* // Condition: "START" || "COMPLETE" || "SUCCESS" || "HEALTHY", // required
|
|
217
|
+
* // },
|
|
218
|
+
* // ],
|
|
219
|
+
* // MountPoints: [
|
|
220
|
+
* // {
|
|
221
|
+
* // InstancePath: "STRING_VALUE", // required
|
|
222
|
+
* // ContainerPath: "STRING_VALUE",
|
|
223
|
+
* // AccessLevel: "READ_ONLY" || "READ_AND_WRITE",
|
|
224
|
+
* // },
|
|
225
|
+
* // ],
|
|
226
|
+
* // EnvironmentOverride: [
|
|
227
|
+
* // {
|
|
228
|
+
* // Name: "STRING_VALUE", // required
|
|
229
|
+
* // Value: "STRING_VALUE", // required
|
|
230
|
+
* // },
|
|
231
|
+
* // ],
|
|
232
|
+
* // Essential: true || false,
|
|
233
|
+
* // HealthCheck: { // ContainerHealthCheck
|
|
234
|
+
* // Command: [ // ContainerCommandStringList // required
|
|
235
|
+
* // "STRING_VALUE",
|
|
236
|
+
* // ],
|
|
237
|
+
* // Interval: Number("int"),
|
|
238
|
+
* // Retries: Number("int"),
|
|
239
|
+
* // StartPeriod: Number("int"),
|
|
240
|
+
* // Timeout: Number("int"),
|
|
241
|
+
* // },
|
|
242
|
+
* // ImageUri: "STRING_VALUE",
|
|
243
|
+
* // MemoryHardLimitMebibytes: Number("int"),
|
|
244
|
+
* // PortConfiguration: {
|
|
245
|
+
* // ContainerPortRanges: [ // required
|
|
246
|
+
* // {
|
|
247
|
+
* // FromPort: Number("int"), // required
|
|
248
|
+
* // ToPort: Number("int"), // required
|
|
249
|
+
* // Protocol: "TCP" || "UDP", // required
|
|
250
|
+
* // },
|
|
251
|
+
* // ],
|
|
252
|
+
* // },
|
|
253
|
+
* // ResolvedImageDigest: "STRING_VALUE",
|
|
254
|
+
* // Vcpu: Number("double"),
|
|
255
|
+
* // },
|
|
256
|
+
* // ],
|
|
257
|
+
* // VersionNumber: Number("int"),
|
|
258
|
+
* // VersionDescription: "STRING_VALUE",
|
|
259
|
+
* // Status: "READY" || "COPYING" || "FAILED",
|
|
260
|
+
* // StatusReason: "STRING_VALUE",
|
|
261
|
+
* // },
|
|
262
|
+
* // };
|
|
263
|
+
*
|
|
264
|
+
* ```
|
|
265
|
+
*
|
|
266
|
+
* @param UpdateContainerGroupDefinitionCommandInput - {@link UpdateContainerGroupDefinitionCommandInput}
|
|
267
|
+
* @returns {@link UpdateContainerGroupDefinitionCommandOutput}
|
|
268
|
+
* @see {@link UpdateContainerGroupDefinitionCommandInput} for command's `input` shape.
|
|
269
|
+
* @see {@link UpdateContainerGroupDefinitionCommandOutput} for command's `response` shape.
|
|
270
|
+
* @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
|
|
271
|
+
*
|
|
272
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
273
|
+
* <p>The service encountered an unrecoverable internal failure while processing the
|
|
274
|
+
* request. Clients can retry such requests immediately or after a waiting period.</p>
|
|
275
|
+
*
|
|
276
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
277
|
+
* <p>One or more parameter values in the request are invalid. Correct the invalid parameter
|
|
278
|
+
* values before retrying.</p>
|
|
279
|
+
*
|
|
280
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
281
|
+
* <p>The requested operation would cause the resource to exceed the allowed service limit.
|
|
282
|
+
* Resolve the issue before retrying.</p>
|
|
283
|
+
*
|
|
284
|
+
* @throws {@link NotFoundException} (client fault)
|
|
285
|
+
* <p>The requested resources was not found. The resource was either not created yet or deleted.</p>
|
|
286
|
+
*
|
|
287
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
288
|
+
* <p>The client failed authentication. Clients should not retry such requests.</p>
|
|
289
|
+
*
|
|
290
|
+
* @throws {@link UnsupportedRegionException} (client fault)
|
|
291
|
+
* <p>The requested operation is not supported in the Region specified.</p>
|
|
292
|
+
*
|
|
293
|
+
* @throws {@link GameLiftServiceException}
|
|
294
|
+
* <p>Base exception class for all service exceptions from GameLift service.</p>
|
|
295
|
+
*
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
export declare class UpdateContainerGroupDefinitionCommand extends UpdateContainerGroupDefinitionCommand_base {
|
|
299
|
+
/** @internal type navigation helper, not in runtime. */
|
|
300
|
+
protected static __types: {
|
|
301
|
+
api: {
|
|
302
|
+
input: UpdateContainerGroupDefinitionInput;
|
|
303
|
+
output: UpdateContainerGroupDefinitionOutput;
|
|
304
|
+
};
|
|
305
|
+
sdk: {
|
|
306
|
+
input: UpdateContainerGroupDefinitionCommandInput;
|
|
307
|
+
output: UpdateContainerGroupDefinitionCommandOutput;
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
}
|
|
@@ -27,10 +27,7 @@ declare const UpdateFleetCapacityCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <b>This operation has been expanded to use with the Amazon GameLift containers feature, which is currently in public preview.</b>
|
|
32
|
-
* </p>
|
|
33
|
-
* <p>Updates capacity settings for a managed EC2 fleet or container fleet. For these
|
|
30
|
+
* <p>Updates capacity settings for a managed EC2 fleet or managed container fleet. For these
|
|
34
31
|
* fleets, you adjust capacity by changing the number of instances in the fleet. Fleet
|
|
35
32
|
* capacity determines the number of game sessions and players that the fleet can host
|
|
36
33
|
* based on its configuration. For fleets with multiple locations, use this operation to
|
|
@@ -50,11 +47,11 @@ declare const UpdateFleetCapacityCommand_base: {
|
|
|
50
47
|
* </li>
|
|
51
48
|
* </ul>
|
|
52
49
|
* <p>To update capacity for a fleet's home Region, or if the fleet has no remote
|
|
53
|
-
*
|
|
54
|
-
*
|
|
50
|
+
* locations, omit the <code>Location</code> parameter. The fleet must be in
|
|
51
|
+
* <code>ACTIVE</code> status. </p>
|
|
55
52
|
* <p>To update capacity for a fleet's remote location, set the
|
|
56
|
-
*
|
|
57
|
-
*
|
|
53
|
+
* <code>Location</code> parameter to the location to update. The location must be in
|
|
54
|
+
* <code>ACTIVE</code> status.</p>
|
|
58
55
|
* <p>If successful, Amazon GameLift updates the capacity settings and returns the identifiers for
|
|
59
56
|
* the updated fleet and/or location. If a requested change to desired capacity exceeds the
|
|
60
57
|
* instance type's limit, the <code>LimitExceeded</code> exception occurs. </p>
|
|
@@ -67,7 +64,7 @@ declare const UpdateFleetCapacityCommand_base: {
|
|
|
67
64
|
* </p>
|
|
68
65
|
* <p>
|
|
69
66
|
* <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-manage-capacity.html">Scaling fleet
|
|
70
|
-
*
|
|
67
|
+
* capacity</a>
|
|
71
68
|
* </p>
|
|
72
69
|
* @example
|
|
73
70
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -28,9 +28,7 @@ declare const UpdateRuntimeConfigurationCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Updates the runtime configuration for the specified fleet. The runtime configuration
|
|
31
|
-
* tells Amazon GameLift how to launch server processes on computes in
|
|
32
|
-
* fleets, it determines what server processes to run on each fleet instance. For container
|
|
33
|
-
* fleets, it describes what server processes to run in each replica container group. You
|
|
31
|
+
* tells Amazon GameLift how to launch server processes on computes in managed EC2 and Anywhere fleets. You
|
|
34
32
|
* can update a fleet's runtime configuration at any time after the fleet is created; it
|
|
35
33
|
* does not need to be in <code>ACTIVE</code> status.</p>
|
|
36
34
|
* <p>To update runtime configuration, specify the fleet ID and provide a
|
|
@@ -2,6 +2,7 @@ export * from "./AcceptMatchCommand";
|
|
|
2
2
|
export * from "./ClaimGameServerCommand";
|
|
3
3
|
export * from "./CreateAliasCommand";
|
|
4
4
|
export * from "./CreateBuildCommand";
|
|
5
|
+
export * from "./CreateContainerFleetCommand";
|
|
5
6
|
export * from "./CreateContainerGroupDefinitionCommand";
|
|
6
7
|
export * from "./CreateFleetCommand";
|
|
7
8
|
export * from "./CreateFleetLocationsCommand";
|
|
@@ -18,6 +19,7 @@ export * from "./CreateVpcPeeringAuthorizationCommand";
|
|
|
18
19
|
export * from "./CreateVpcPeeringConnectionCommand";
|
|
19
20
|
export * from "./DeleteAliasCommand";
|
|
20
21
|
export * from "./DeleteBuildCommand";
|
|
22
|
+
export * from "./DeleteContainerFleetCommand";
|
|
21
23
|
export * from "./DeleteContainerGroupDefinitionCommand";
|
|
22
24
|
export * from "./DeleteFleetCommand";
|
|
23
25
|
export * from "./DeleteFleetLocationsCommand";
|
|
@@ -35,10 +37,12 @@ export * from "./DeregisterGameServerCommand";
|
|
|
35
37
|
export * from "./DescribeAliasCommand";
|
|
36
38
|
export * from "./DescribeBuildCommand";
|
|
37
39
|
export * from "./DescribeComputeCommand";
|
|
40
|
+
export * from "./DescribeContainerFleetCommand";
|
|
38
41
|
export * from "./DescribeContainerGroupDefinitionCommand";
|
|
39
42
|
export * from "./DescribeEC2InstanceLimitsCommand";
|
|
40
43
|
export * from "./DescribeFleetAttributesCommand";
|
|
41
44
|
export * from "./DescribeFleetCapacityCommand";
|
|
45
|
+
export * from "./DescribeFleetDeploymentCommand";
|
|
42
46
|
export * from "./DescribeFleetEventsCommand";
|
|
43
47
|
export * from "./DescribeFleetLocationAttributesCommand";
|
|
44
48
|
export * from "./DescribeFleetLocationCapacityCommand";
|
|
@@ -69,7 +73,10 @@ export * from "./GetInstanceAccessCommand";
|
|
|
69
73
|
export * from "./ListAliasesCommand";
|
|
70
74
|
export * from "./ListBuildsCommand";
|
|
71
75
|
export * from "./ListComputeCommand";
|
|
76
|
+
export * from "./ListContainerFleetsCommand";
|
|
77
|
+
export * from "./ListContainerGroupDefinitionVersionsCommand";
|
|
72
78
|
export * from "./ListContainerGroupDefinitionsCommand";
|
|
79
|
+
export * from "./ListFleetDeploymentsCommand";
|
|
73
80
|
export * from "./ListFleetsCommand";
|
|
74
81
|
export * from "./ListGameServerGroupsCommand";
|
|
75
82
|
export * from "./ListGameServersCommand";
|
|
@@ -95,6 +102,8 @@ export * from "./TagResourceCommand";
|
|
|
95
102
|
export * from "./UntagResourceCommand";
|
|
96
103
|
export * from "./UpdateAliasCommand";
|
|
97
104
|
export * from "./UpdateBuildCommand";
|
|
105
|
+
export * from "./UpdateContainerFleetCommand";
|
|
106
|
+
export * from "./UpdateContainerGroupDefinitionCommand";
|
|
98
107
|
export * from "./UpdateFleetAttributesCommand";
|
|
99
108
|
export * from "./UpdateFleetCapacityCommand";
|
|
100
109
|
export * from "./UpdateFleetPortSettingsCommand";
|