@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,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateContainerFleetInput,
|
|
10
|
+
CreateContainerFleetOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateContainerFleetCommandInput
|
|
15
|
+
extends CreateContainerFleetInput {}
|
|
16
|
+
export interface CreateContainerFleetCommandOutput
|
|
17
|
+
extends CreateContainerFleetOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateContainerFleetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateContainerFleetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateContainerFleetCommandInput,
|
|
24
|
+
CreateContainerFleetCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateContainerFleetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateContainerFleetCommandInput,
|
|
33
|
+
CreateContainerFleetCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateContainerFleetCommand extends CreateContainerFleetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateContainerFleetInput;
|
|
44
|
+
output: CreateContainerFleetOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateContainerFleetCommandInput;
|
|
48
|
+
output: CreateContainerFleetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteContainerFleetInput,
|
|
10
|
+
DeleteContainerFleetOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteContainerFleetCommandInput
|
|
15
|
+
extends DeleteContainerFleetInput {}
|
|
16
|
+
export interface DeleteContainerFleetCommandOutput
|
|
17
|
+
extends DeleteContainerFleetOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteContainerFleetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteContainerFleetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteContainerFleetCommandInput,
|
|
24
|
+
DeleteContainerFleetCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteContainerFleetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteContainerFleetCommandInput,
|
|
33
|
+
DeleteContainerFleetCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteContainerFleetCommand extends DeleteContainerFleetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteContainerFleetInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteContainerFleetCommandInput;
|
|
48
|
+
output: DeleteContainerFleetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,13 +5,17 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GameLiftClient";
|
|
8
|
-
import {
|
|
8
|
+
import {
|
|
9
|
+
DeleteContainerGroupDefinitionInput,
|
|
10
|
+
DeleteContainerGroupDefinitionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
9
12
|
export { __MetadataBearer };
|
|
10
13
|
export { $Command };
|
|
11
14
|
export interface DeleteContainerGroupDefinitionCommandInput
|
|
12
15
|
extends DeleteContainerGroupDefinitionInput {}
|
|
13
16
|
export interface DeleteContainerGroupDefinitionCommandOutput
|
|
14
|
-
extends
|
|
17
|
+
extends DeleteContainerGroupDefinitionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
15
19
|
declare const DeleteContainerGroupDefinitionCommand_base: {
|
|
16
20
|
new (
|
|
17
21
|
input: DeleteContainerGroupDefinitionCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeContainerFleetInput,
|
|
10
|
+
DescribeContainerFleetOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeContainerFleetCommandInput
|
|
15
|
+
extends DescribeContainerFleetInput {}
|
|
16
|
+
export interface DescribeContainerFleetCommandOutput
|
|
17
|
+
extends DescribeContainerFleetOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeContainerFleetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeContainerFleetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeContainerFleetCommandInput,
|
|
24
|
+
DescribeContainerFleetCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeContainerFleetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeContainerFleetCommandInput,
|
|
33
|
+
DescribeContainerFleetCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeContainerFleetCommand extends DescribeContainerFleetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeContainerFleetInput;
|
|
44
|
+
output: DescribeContainerFleetOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeContainerFleetCommandInput;
|
|
48
|
+
output: DescribeContainerFleetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeFleetDeploymentInput,
|
|
10
|
+
DescribeFleetDeploymentOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeFleetDeploymentCommandInput
|
|
15
|
+
extends DescribeFleetDeploymentInput {}
|
|
16
|
+
export interface DescribeFleetDeploymentCommandOutput
|
|
17
|
+
extends DescribeFleetDeploymentOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeFleetDeploymentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeFleetDeploymentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeFleetDeploymentCommandInput,
|
|
24
|
+
DescribeFleetDeploymentCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeFleetDeploymentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeFleetDeploymentCommandInput,
|
|
33
|
+
DescribeFleetDeploymentCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeFleetDeploymentCommand extends DescribeFleetDeploymentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeFleetDeploymentInput;
|
|
44
|
+
output: DescribeFleetDeploymentOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeFleetDeploymentCommandInput;
|
|
48
|
+
output: DescribeFleetDeploymentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
ListContainerFleetsInput,
|
|
10
|
+
ListContainerFleetsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListContainerFleetsCommandInput
|
|
15
|
+
extends ListContainerFleetsInput {}
|
|
16
|
+
export interface ListContainerFleetsCommandOutput
|
|
17
|
+
extends ListContainerFleetsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListContainerFleetsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListContainerFleetsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListContainerFleetsCommandInput,
|
|
24
|
+
ListContainerFleetsCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListContainerFleetsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListContainerFleetsCommandInput,
|
|
33
|
+
ListContainerFleetsCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListContainerFleetsCommand extends ListContainerFleetsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListContainerFleetsInput;
|
|
44
|
+
output: ListContainerFleetsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListContainerFleetsCommandInput;
|
|
48
|
+
output: ListContainerFleetsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
ListContainerGroupDefinitionVersionsInput,
|
|
10
|
+
ListContainerGroupDefinitionVersionsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListContainerGroupDefinitionVersionsCommandInput
|
|
15
|
+
extends ListContainerGroupDefinitionVersionsInput {}
|
|
16
|
+
export interface ListContainerGroupDefinitionVersionsCommandOutput
|
|
17
|
+
extends ListContainerGroupDefinitionVersionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListContainerGroupDefinitionVersionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListContainerGroupDefinitionVersionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListContainerGroupDefinitionVersionsCommandInput,
|
|
24
|
+
ListContainerGroupDefinitionVersionsCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListContainerGroupDefinitionVersionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListContainerGroupDefinitionVersionsCommandInput,
|
|
33
|
+
ListContainerGroupDefinitionVersionsCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListContainerGroupDefinitionVersionsCommand extends ListContainerGroupDefinitionVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListContainerGroupDefinitionVersionsInput;
|
|
44
|
+
output: ListContainerGroupDefinitionVersionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListContainerGroupDefinitionVersionsCommandInput;
|
|
48
|
+
output: ListContainerGroupDefinitionVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListContainerGroupDefinitionsInput,
|
|
10
10
|
ListContainerGroupDefinitionsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListContainerGroupDefinitionsCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
ListFleetDeploymentsInput,
|
|
10
|
+
ListFleetDeploymentsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListFleetDeploymentsCommandInput
|
|
15
|
+
extends ListFleetDeploymentsInput {}
|
|
16
|
+
export interface ListFleetDeploymentsCommandOutput
|
|
17
|
+
extends ListFleetDeploymentsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListFleetDeploymentsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListFleetDeploymentsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListFleetDeploymentsCommandInput,
|
|
24
|
+
ListFleetDeploymentsCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListFleetDeploymentsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListFleetDeploymentsCommandInput,
|
|
33
|
+
ListFleetDeploymentsCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListFleetDeploymentsCommand extends ListFleetDeploymentsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListFleetDeploymentsInput;
|
|
44
|
+
output: ListFleetDeploymentsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListFleetDeploymentsCommandInput;
|
|
48
|
+
output: ListFleetDeploymentsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GameLiftClient";
|
|
8
|
-
import { ListFleetsInput, ListFleetsOutput } from "../models/
|
|
8
|
+
import { ListFleetsInput, ListFleetsOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListFleetsCommandInput extends ListFleetsInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListGameServersInput,
|
|
10
10
|
ListGameServersOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListGameServersCommandInput extends ListGameServersInput {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GameLiftClient";
|
|
8
|
-
import { ListLocationsInput, ListLocationsOutput } from "../models/
|
|
8
|
+
import { ListLocationsInput, ListLocationsOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListLocationsCommandInput extends ListLocationsInput {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GameLiftClient";
|
|
8
|
-
import { ListScriptsInput, ListScriptsOutput } from "../models/
|
|
8
|
+
import { ListScriptsInput, ListScriptsOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListScriptsCommandInput extends ListScriptsInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
PutScalingPolicyInput,
|
|
10
10
|
PutScalingPolicyOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface PutScalingPolicyCommandInput extends PutScalingPolicyInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RegisterComputeInput,
|
|
10
10
|
RegisterComputeOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RegisterComputeCommandInput extends RegisterComputeInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RequestUploadCredentialsInput,
|
|
10
10
|
RequestUploadCredentialsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RequestUploadCredentialsCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GameLiftClient";
|
|
8
|
-
import { ResolveAliasInput, ResolveAliasOutput } from "../models/
|
|
8
|
+
import { ResolveAliasInput, ResolveAliasOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ResolveAliasCommandInput extends ResolveAliasInput {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GameLiftClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ResumeGameServerGroupInput,
|
|
10
|
+
ResumeGameServerGroupOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ResumeGameServerGroupCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateContainerFleetInput,
|
|
10
|
+
UpdateContainerFleetOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateContainerFleetCommandInput
|
|
15
|
+
extends UpdateContainerFleetInput {}
|
|
16
|
+
export interface UpdateContainerFleetCommandOutput
|
|
17
|
+
extends UpdateContainerFleetOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateContainerFleetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateContainerFleetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateContainerFleetCommandInput,
|
|
24
|
+
UpdateContainerFleetCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateContainerFleetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateContainerFleetCommandInput,
|
|
33
|
+
UpdateContainerFleetCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateContainerFleetCommand extends UpdateContainerFleetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateContainerFleetInput;
|
|
44
|
+
output: UpdateContainerFleetOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateContainerFleetCommandInput;
|
|
48
|
+
output: UpdateContainerFleetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GameLiftClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GameLiftClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateContainerGroupDefinitionInput,
|
|
10
|
+
UpdateContainerGroupDefinitionOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateContainerGroupDefinitionCommandInput
|
|
15
|
+
extends UpdateContainerGroupDefinitionInput {}
|
|
16
|
+
export interface UpdateContainerGroupDefinitionCommandOutput
|
|
17
|
+
extends UpdateContainerGroupDefinitionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateContainerGroupDefinitionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateContainerGroupDefinitionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateContainerGroupDefinitionCommandInput,
|
|
24
|
+
UpdateContainerGroupDefinitionCommandOutput,
|
|
25
|
+
GameLiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateContainerGroupDefinitionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateContainerGroupDefinitionCommandInput,
|
|
33
|
+
UpdateContainerGroupDefinitionCommandOutput,
|
|
34
|
+
GameLiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateContainerGroupDefinitionCommand extends UpdateContainerGroupDefinitionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateContainerGroupDefinitionInput;
|
|
44
|
+
output: UpdateContainerGroupDefinitionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateContainerGroupDefinitionCommandInput;
|
|
48
|
+
output: UpdateContainerGroupDefinitionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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";
|