@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
|
@@ -1,40 +1,203 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Alias,
|
|
3
3
|
AnywhereConfiguration,
|
|
4
|
+
AwsCredentials,
|
|
4
5
|
BackfillMode,
|
|
5
6
|
BalancingStrategy,
|
|
6
7
|
Build,
|
|
8
|
+
ComparisonOperatorType,
|
|
9
|
+
Compute,
|
|
10
|
+
ConnectionPortRange,
|
|
11
|
+
ContainerFleet,
|
|
12
|
+
ContainerFleetRemoveAttribute,
|
|
13
|
+
ContainerGroupDefinition,
|
|
14
|
+
ContainerGroupType,
|
|
15
|
+
ContainerOperatingSystem,
|
|
16
|
+
DeploymentConfiguration,
|
|
7
17
|
DesiredPlayerSession,
|
|
8
18
|
FilterConfiguration,
|
|
9
19
|
FleetAction,
|
|
20
|
+
FleetDeployment,
|
|
10
21
|
FlexMatchMode,
|
|
11
22
|
GameProperty,
|
|
12
23
|
GameServer,
|
|
24
|
+
GameServerContainerDefinitionInput,
|
|
13
25
|
GameServerGroup,
|
|
14
26
|
GameServerGroupAction,
|
|
15
27
|
GameServerProtectionPolicy,
|
|
16
28
|
GameServerUtilizationStatus,
|
|
17
29
|
GameSession,
|
|
30
|
+
GameSessionCreationLimitPolicy,
|
|
18
31
|
GameSessionPlacement,
|
|
19
32
|
GameSessionQueue,
|
|
20
33
|
GameSessionQueueDestination,
|
|
21
34
|
InstanceDefinition,
|
|
22
35
|
IpPermission,
|
|
36
|
+
LocationModel,
|
|
37
|
+
LogConfiguration,
|
|
23
38
|
MatchmakingConfiguration,
|
|
24
39
|
MatchmakingTicket,
|
|
40
|
+
MetricName,
|
|
25
41
|
Player,
|
|
26
42
|
PlayerLatency,
|
|
27
43
|
PlayerLatencyPolicy,
|
|
28
44
|
PlayerSessionCreationPolicy,
|
|
45
|
+
PolicyType,
|
|
29
46
|
PriorityConfiguration,
|
|
30
47
|
ProtectionPolicy,
|
|
31
48
|
ResourceCreationLimitPolicy,
|
|
32
49
|
RoutingStrategy,
|
|
33
50
|
RuntimeConfiguration,
|
|
34
51
|
S3Location,
|
|
52
|
+
ScalingAdjustmentType,
|
|
35
53
|
Script,
|
|
54
|
+
SupportContainerDefinitionInput,
|
|
36
55
|
Tag,
|
|
56
|
+
TargetConfiguration,
|
|
37
57
|
} from "./models_0";
|
|
58
|
+
export interface ListContainerGroupDefinitionsInput {
|
|
59
|
+
ContainerGroupType?: ContainerGroupType;
|
|
60
|
+
Limit?: number;
|
|
61
|
+
NextToken?: string;
|
|
62
|
+
}
|
|
63
|
+
export interface ListContainerGroupDefinitionsOutput {
|
|
64
|
+
ContainerGroupDefinitions?: ContainerGroupDefinition[];
|
|
65
|
+
NextToken?: string;
|
|
66
|
+
}
|
|
67
|
+
export interface ListContainerGroupDefinitionVersionsInput {
|
|
68
|
+
Name: string | undefined;
|
|
69
|
+
Limit?: number;
|
|
70
|
+
NextToken?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface ListContainerGroupDefinitionVersionsOutput {
|
|
73
|
+
ContainerGroupDefinitions?: ContainerGroupDefinition[];
|
|
74
|
+
NextToken?: string;
|
|
75
|
+
}
|
|
76
|
+
export interface ListFleetDeploymentsInput {
|
|
77
|
+
FleetId?: string;
|
|
78
|
+
Limit?: number;
|
|
79
|
+
NextToken?: string;
|
|
80
|
+
}
|
|
81
|
+
export interface ListFleetDeploymentsOutput {
|
|
82
|
+
FleetDeployments?: FleetDeployment[];
|
|
83
|
+
NextToken?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface ListFleetsInput {
|
|
86
|
+
BuildId?: string;
|
|
87
|
+
ScriptId?: string;
|
|
88
|
+
Limit?: number;
|
|
89
|
+
NextToken?: string;
|
|
90
|
+
}
|
|
91
|
+
export interface ListFleetsOutput {
|
|
92
|
+
FleetIds?: string[];
|
|
93
|
+
NextToken?: string;
|
|
94
|
+
}
|
|
95
|
+
export interface ListGameServerGroupsInput {
|
|
96
|
+
Limit?: number;
|
|
97
|
+
NextToken?: string;
|
|
98
|
+
}
|
|
99
|
+
export interface ListGameServerGroupsOutput {
|
|
100
|
+
GameServerGroups?: GameServerGroup[];
|
|
101
|
+
NextToken?: string;
|
|
102
|
+
}
|
|
103
|
+
export declare const SortOrder: {
|
|
104
|
+
readonly ASCENDING: "ASCENDING";
|
|
105
|
+
readonly DESCENDING: "DESCENDING";
|
|
106
|
+
};
|
|
107
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
108
|
+
export interface ListGameServersInput {
|
|
109
|
+
GameServerGroupName: string | undefined;
|
|
110
|
+
SortOrder?: SortOrder;
|
|
111
|
+
Limit?: number;
|
|
112
|
+
NextToken?: string;
|
|
113
|
+
}
|
|
114
|
+
export interface ListGameServersOutput {
|
|
115
|
+
GameServers?: GameServer[];
|
|
116
|
+
NextToken?: string;
|
|
117
|
+
}
|
|
118
|
+
export declare const LocationFilter: {
|
|
119
|
+
readonly AWS: "AWS";
|
|
120
|
+
readonly CUSTOM: "CUSTOM";
|
|
121
|
+
};
|
|
122
|
+
export type LocationFilter =
|
|
123
|
+
(typeof LocationFilter)[keyof typeof LocationFilter];
|
|
124
|
+
export interface ListLocationsInput {
|
|
125
|
+
Filters?: LocationFilter[];
|
|
126
|
+
Limit?: number;
|
|
127
|
+
NextToken?: string;
|
|
128
|
+
}
|
|
129
|
+
export interface ListLocationsOutput {
|
|
130
|
+
Locations?: LocationModel[];
|
|
131
|
+
NextToken?: string;
|
|
132
|
+
}
|
|
133
|
+
export interface ListScriptsInput {
|
|
134
|
+
Limit?: number;
|
|
135
|
+
NextToken?: string;
|
|
136
|
+
}
|
|
137
|
+
export interface ListScriptsOutput {
|
|
138
|
+
Scripts?: Script[];
|
|
139
|
+
NextToken?: string;
|
|
140
|
+
}
|
|
141
|
+
export interface ListTagsForResourceRequest {
|
|
142
|
+
ResourceARN: string | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface ListTagsForResourceResponse {
|
|
145
|
+
Tags?: Tag[];
|
|
146
|
+
}
|
|
147
|
+
export interface PutScalingPolicyInput {
|
|
148
|
+
Name: string | undefined;
|
|
149
|
+
FleetId: string | undefined;
|
|
150
|
+
ScalingAdjustment?: number;
|
|
151
|
+
ScalingAdjustmentType?: ScalingAdjustmentType;
|
|
152
|
+
Threshold?: number;
|
|
153
|
+
ComparisonOperator?: ComparisonOperatorType;
|
|
154
|
+
EvaluationPeriods?: number;
|
|
155
|
+
MetricName: MetricName | undefined;
|
|
156
|
+
PolicyType?: PolicyType;
|
|
157
|
+
TargetConfiguration?: TargetConfiguration;
|
|
158
|
+
}
|
|
159
|
+
export interface PutScalingPolicyOutput {
|
|
160
|
+
Name?: string;
|
|
161
|
+
}
|
|
162
|
+
export interface RegisterComputeInput {
|
|
163
|
+
FleetId: string | undefined;
|
|
164
|
+
ComputeName: string | undefined;
|
|
165
|
+
CertificatePath?: string;
|
|
166
|
+
DnsName?: string;
|
|
167
|
+
IpAddress?: string;
|
|
168
|
+
Location?: string;
|
|
169
|
+
}
|
|
170
|
+
export interface RegisterComputeOutput {
|
|
171
|
+
Compute?: Compute;
|
|
172
|
+
}
|
|
173
|
+
export interface RegisterGameServerInput {
|
|
174
|
+
GameServerGroupName: string | undefined;
|
|
175
|
+
GameServerId: string | undefined;
|
|
176
|
+
InstanceId: string | undefined;
|
|
177
|
+
ConnectionInfo?: string;
|
|
178
|
+
GameServerData?: string;
|
|
179
|
+
}
|
|
180
|
+
export interface RegisterGameServerOutput {
|
|
181
|
+
GameServer?: GameServer;
|
|
182
|
+
}
|
|
183
|
+
export interface RequestUploadCredentialsInput {
|
|
184
|
+
BuildId: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
export interface RequestUploadCredentialsOutput {
|
|
187
|
+
UploadCredentials?: AwsCredentials;
|
|
188
|
+
StorageLocation?: S3Location;
|
|
189
|
+
}
|
|
190
|
+
export interface ResolveAliasInput {
|
|
191
|
+
AliasId: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface ResolveAliasOutput {
|
|
194
|
+
FleetId?: string;
|
|
195
|
+
FleetArn?: string;
|
|
196
|
+
}
|
|
197
|
+
export interface ResumeGameServerGroupInput {
|
|
198
|
+
GameServerGroupName: string | undefined;
|
|
199
|
+
ResumeActions: GameServerGroupAction[] | undefined;
|
|
200
|
+
}
|
|
38
201
|
export interface ResumeGameServerGroupOutput {
|
|
39
202
|
GameServerGroup?: GameServerGroup;
|
|
40
203
|
}
|
|
@@ -143,6 +306,38 @@ export interface UpdateBuildInput {
|
|
|
143
306
|
export interface UpdateBuildOutput {
|
|
144
307
|
Build?: Build;
|
|
145
308
|
}
|
|
309
|
+
export interface UpdateContainerFleetInput {
|
|
310
|
+
FleetId: string | undefined;
|
|
311
|
+
GameServerContainerGroupDefinitionName?: string;
|
|
312
|
+
PerInstanceContainerGroupDefinitionName?: string;
|
|
313
|
+
GameServerContainerGroupsPerInstance?: number;
|
|
314
|
+
InstanceConnectionPortRange?: ConnectionPortRange;
|
|
315
|
+
InstanceInboundPermissionAuthorizations?: IpPermission[];
|
|
316
|
+
InstanceInboundPermissionRevocations?: IpPermission[];
|
|
317
|
+
DeploymentConfiguration?: DeploymentConfiguration;
|
|
318
|
+
Description?: string;
|
|
319
|
+
MetricGroups?: string[];
|
|
320
|
+
NewGameSessionProtectionPolicy?: ProtectionPolicy;
|
|
321
|
+
GameSessionCreationLimitPolicy?: GameSessionCreationLimitPolicy;
|
|
322
|
+
LogConfiguration?: LogConfiguration;
|
|
323
|
+
RemoveAttributes?: ContainerFleetRemoveAttribute[];
|
|
324
|
+
}
|
|
325
|
+
export interface UpdateContainerFleetOutput {
|
|
326
|
+
ContainerFleet?: ContainerFleet;
|
|
327
|
+
}
|
|
328
|
+
export interface UpdateContainerGroupDefinitionInput {
|
|
329
|
+
Name: string | undefined;
|
|
330
|
+
GameServerContainerDefinition?: GameServerContainerDefinitionInput;
|
|
331
|
+
SupportContainerDefinitions?: SupportContainerDefinitionInput[];
|
|
332
|
+
TotalMemoryLimitMebibytes?: number;
|
|
333
|
+
TotalVcpuLimit?: number;
|
|
334
|
+
VersionDescription?: string;
|
|
335
|
+
SourceVersionNumber?: number;
|
|
336
|
+
OperatingSystem?: ContainerOperatingSystem;
|
|
337
|
+
}
|
|
338
|
+
export interface UpdateContainerGroupDefinitionOutput {
|
|
339
|
+
ContainerGroupDefinition?: ContainerGroupDefinition;
|
|
340
|
+
}
|
|
146
341
|
export interface UpdateFleetAttributesInput {
|
|
147
342
|
FleetId: string | undefined;
|
|
148
343
|
Name?: string;
|
|
@@ -268,6 +463,21 @@ export interface ValidateMatchmakingRuleSetInput {
|
|
|
268
463
|
export interface ValidateMatchmakingRuleSetOutput {
|
|
269
464
|
Valid?: boolean;
|
|
270
465
|
}
|
|
466
|
+
export declare const ListContainerGroupDefinitionsOutputFilterSensitiveLog: (
|
|
467
|
+
obj: ListContainerGroupDefinitionsOutput
|
|
468
|
+
) => any;
|
|
469
|
+
export declare const ListContainerGroupDefinitionVersionsOutputFilterSensitiveLog: (
|
|
470
|
+
obj: ListContainerGroupDefinitionVersionsOutput
|
|
471
|
+
) => any;
|
|
472
|
+
export declare const RegisterComputeInputFilterSensitiveLog: (
|
|
473
|
+
obj: RegisterComputeInput
|
|
474
|
+
) => any;
|
|
475
|
+
export declare const RegisterComputeOutputFilterSensitiveLog: (
|
|
476
|
+
obj: RegisterComputeOutput
|
|
477
|
+
) => any;
|
|
478
|
+
export declare const RequestUploadCredentialsOutputFilterSensitiveLog: (
|
|
479
|
+
obj: RequestUploadCredentialsOutput
|
|
480
|
+
) => any;
|
|
271
481
|
export declare const SearchGameSessionsOutputFilterSensitiveLog: (
|
|
272
482
|
obj: SearchGameSessionsOutput
|
|
273
483
|
) => any;
|
|
@@ -292,6 +502,18 @@ export declare const StartMatchmakingOutputFilterSensitiveLog: (
|
|
|
292
502
|
export declare const StopGameSessionPlacementOutputFilterSensitiveLog: (
|
|
293
503
|
obj: StopGameSessionPlacementOutput
|
|
294
504
|
) => any;
|
|
505
|
+
export declare const UpdateContainerFleetInputFilterSensitiveLog: (
|
|
506
|
+
obj: UpdateContainerFleetInput
|
|
507
|
+
) => any;
|
|
508
|
+
export declare const UpdateContainerFleetOutputFilterSensitiveLog: (
|
|
509
|
+
obj: UpdateContainerFleetOutput
|
|
510
|
+
) => any;
|
|
511
|
+
export declare const UpdateContainerGroupDefinitionInputFilterSensitiveLog: (
|
|
512
|
+
obj: UpdateContainerGroupDefinitionInput
|
|
513
|
+
) => any;
|
|
514
|
+
export declare const UpdateContainerGroupDefinitionOutputFilterSensitiveLog: (
|
|
515
|
+
obj: UpdateContainerGroupDefinitionOutput
|
|
516
|
+
) => any;
|
|
295
517
|
export declare const UpdateFleetPortSettingsInputFilterSensitiveLog: (
|
|
296
518
|
obj: UpdateFleetPortSettingsInput
|
|
297
519
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListContainerFleetsCommandInput,
|
|
4
|
+
ListContainerFleetsCommandOutput,
|
|
5
|
+
} from "../commands/ListContainerFleetsCommand";
|
|
6
|
+
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListContainerFleets: (
|
|
8
|
+
config: GameLiftPaginationConfiguration,
|
|
9
|
+
input: ListContainerFleetsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListContainerFleetsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListContainerGroupDefinitionVersionsCommandInput,
|
|
4
|
+
ListContainerGroupDefinitionVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListContainerGroupDefinitionVersionsCommand";
|
|
6
|
+
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListContainerGroupDefinitionVersions: (
|
|
8
|
+
config: GameLiftPaginationConfiguration,
|
|
9
|
+
input: ListContainerGroupDefinitionVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListContainerGroupDefinitionVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFleetDeploymentsCommandInput,
|
|
4
|
+
ListFleetDeploymentsCommandOutput,
|
|
5
|
+
} from "../commands/ListFleetDeploymentsCommand";
|
|
6
|
+
import { GameLiftPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFleetDeployments: (
|
|
8
|
+
config: GameLiftPaginationConfiguration,
|
|
9
|
+
input: ListFleetDeploymentsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFleetDeploymentsCommandOutput>;
|
|
@@ -16,7 +16,10 @@ export * from "./DescribeScalingPoliciesPaginator";
|
|
|
16
16
|
export * from "./ListAliasesPaginator";
|
|
17
17
|
export * from "./ListBuildsPaginator";
|
|
18
18
|
export * from "./ListComputePaginator";
|
|
19
|
+
export * from "./ListContainerFleetsPaginator";
|
|
20
|
+
export * from "./ListContainerGroupDefinitionVersionsPaginator";
|
|
19
21
|
export * from "./ListContainerGroupDefinitionsPaginator";
|
|
22
|
+
export * from "./ListFleetDeploymentsPaginator";
|
|
20
23
|
export * from "./ListFleetsPaginator";
|
|
21
24
|
export * from "./ListGameServerGroupsPaginator";
|
|
22
25
|
export * from "./ListGameServersPaginator";
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateBuildCommandInput,
|
|
20
20
|
CreateBuildCommandOutput,
|
|
21
21
|
} from "../commands/CreateBuildCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateContainerFleetCommandInput,
|
|
24
|
+
CreateContainerFleetCommandOutput,
|
|
25
|
+
} from "../commands/CreateContainerFleetCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateContainerGroupDefinitionCommandInput,
|
|
24
28
|
CreateContainerGroupDefinitionCommandOutput,
|
|
@@ -83,6 +87,10 @@ import {
|
|
|
83
87
|
DeleteBuildCommandInput,
|
|
84
88
|
DeleteBuildCommandOutput,
|
|
85
89
|
} from "../commands/DeleteBuildCommand";
|
|
90
|
+
import {
|
|
91
|
+
DeleteContainerFleetCommandInput,
|
|
92
|
+
DeleteContainerFleetCommandOutput,
|
|
93
|
+
} from "../commands/DeleteContainerFleetCommand";
|
|
86
94
|
import {
|
|
87
95
|
DeleteContainerGroupDefinitionCommandInput,
|
|
88
96
|
DeleteContainerGroupDefinitionCommandOutput,
|
|
@@ -151,6 +159,10 @@ import {
|
|
|
151
159
|
DescribeComputeCommandInput,
|
|
152
160
|
DescribeComputeCommandOutput,
|
|
153
161
|
} from "../commands/DescribeComputeCommand";
|
|
162
|
+
import {
|
|
163
|
+
DescribeContainerFleetCommandInput,
|
|
164
|
+
DescribeContainerFleetCommandOutput,
|
|
165
|
+
} from "../commands/DescribeContainerFleetCommand";
|
|
154
166
|
import {
|
|
155
167
|
DescribeContainerGroupDefinitionCommandInput,
|
|
156
168
|
DescribeContainerGroupDefinitionCommandOutput,
|
|
@@ -167,6 +179,10 @@ import {
|
|
|
167
179
|
DescribeFleetCapacityCommandInput,
|
|
168
180
|
DescribeFleetCapacityCommandOutput,
|
|
169
181
|
} from "../commands/DescribeFleetCapacityCommand";
|
|
182
|
+
import {
|
|
183
|
+
DescribeFleetDeploymentCommandInput,
|
|
184
|
+
DescribeFleetDeploymentCommandOutput,
|
|
185
|
+
} from "../commands/DescribeFleetDeploymentCommand";
|
|
170
186
|
import {
|
|
171
187
|
DescribeFleetEventsCommandInput,
|
|
172
188
|
DescribeFleetEventsCommandOutput,
|
|
@@ -287,10 +303,22 @@ import {
|
|
|
287
303
|
ListComputeCommandInput,
|
|
288
304
|
ListComputeCommandOutput,
|
|
289
305
|
} from "../commands/ListComputeCommand";
|
|
306
|
+
import {
|
|
307
|
+
ListContainerFleetsCommandInput,
|
|
308
|
+
ListContainerFleetsCommandOutput,
|
|
309
|
+
} from "../commands/ListContainerFleetsCommand";
|
|
290
310
|
import {
|
|
291
311
|
ListContainerGroupDefinitionsCommandInput,
|
|
292
312
|
ListContainerGroupDefinitionsCommandOutput,
|
|
293
313
|
} from "../commands/ListContainerGroupDefinitionsCommand";
|
|
314
|
+
import {
|
|
315
|
+
ListContainerGroupDefinitionVersionsCommandInput,
|
|
316
|
+
ListContainerGroupDefinitionVersionsCommandOutput,
|
|
317
|
+
} from "../commands/ListContainerGroupDefinitionVersionsCommand";
|
|
318
|
+
import {
|
|
319
|
+
ListFleetDeploymentsCommandInput,
|
|
320
|
+
ListFleetDeploymentsCommandOutput,
|
|
321
|
+
} from "../commands/ListFleetDeploymentsCommand";
|
|
294
322
|
import {
|
|
295
323
|
ListFleetsCommandInput,
|
|
296
324
|
ListFleetsCommandOutput,
|
|
@@ -391,6 +419,14 @@ import {
|
|
|
391
419
|
UpdateBuildCommandInput,
|
|
392
420
|
UpdateBuildCommandOutput,
|
|
393
421
|
} from "../commands/UpdateBuildCommand";
|
|
422
|
+
import {
|
|
423
|
+
UpdateContainerFleetCommandInput,
|
|
424
|
+
UpdateContainerFleetCommandOutput,
|
|
425
|
+
} from "../commands/UpdateContainerFleetCommand";
|
|
426
|
+
import {
|
|
427
|
+
UpdateContainerGroupDefinitionCommandInput,
|
|
428
|
+
UpdateContainerGroupDefinitionCommandOutput,
|
|
429
|
+
} from "../commands/UpdateContainerGroupDefinitionCommand";
|
|
394
430
|
import {
|
|
395
431
|
UpdateFleetAttributesCommandInput,
|
|
396
432
|
UpdateFleetAttributesCommandOutput,
|
|
@@ -451,6 +487,10 @@ export declare const se_CreateBuildCommand: (
|
|
|
451
487
|
input: CreateBuildCommandInput,
|
|
452
488
|
context: __SerdeContext
|
|
453
489
|
) => Promise<__HttpRequest>;
|
|
490
|
+
export declare const se_CreateContainerFleetCommand: (
|
|
491
|
+
input: CreateContainerFleetCommandInput,
|
|
492
|
+
context: __SerdeContext
|
|
493
|
+
) => Promise<__HttpRequest>;
|
|
454
494
|
export declare const se_CreateContainerGroupDefinitionCommand: (
|
|
455
495
|
input: CreateContainerGroupDefinitionCommandInput,
|
|
456
496
|
context: __SerdeContext
|
|
@@ -515,6 +555,10 @@ export declare const se_DeleteBuildCommand: (
|
|
|
515
555
|
input: DeleteBuildCommandInput,
|
|
516
556
|
context: __SerdeContext
|
|
517
557
|
) => Promise<__HttpRequest>;
|
|
558
|
+
export declare const se_DeleteContainerFleetCommand: (
|
|
559
|
+
input: DeleteContainerFleetCommandInput,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<__HttpRequest>;
|
|
518
562
|
export declare const se_DeleteContainerGroupDefinitionCommand: (
|
|
519
563
|
input: DeleteContainerGroupDefinitionCommandInput,
|
|
520
564
|
context: __SerdeContext
|
|
@@ -583,6 +627,10 @@ export declare const se_DescribeComputeCommand: (
|
|
|
583
627
|
input: DescribeComputeCommandInput,
|
|
584
628
|
context: __SerdeContext
|
|
585
629
|
) => Promise<__HttpRequest>;
|
|
630
|
+
export declare const se_DescribeContainerFleetCommand: (
|
|
631
|
+
input: DescribeContainerFleetCommandInput,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<__HttpRequest>;
|
|
586
634
|
export declare const se_DescribeContainerGroupDefinitionCommand: (
|
|
587
635
|
input: DescribeContainerGroupDefinitionCommandInput,
|
|
588
636
|
context: __SerdeContext
|
|
@@ -599,6 +647,10 @@ export declare const se_DescribeFleetCapacityCommand: (
|
|
|
599
647
|
input: DescribeFleetCapacityCommandInput,
|
|
600
648
|
context: __SerdeContext
|
|
601
649
|
) => Promise<__HttpRequest>;
|
|
650
|
+
export declare const se_DescribeFleetDeploymentCommand: (
|
|
651
|
+
input: DescribeFleetDeploymentCommandInput,
|
|
652
|
+
context: __SerdeContext
|
|
653
|
+
) => Promise<__HttpRequest>;
|
|
602
654
|
export declare const se_DescribeFleetEventsCommand: (
|
|
603
655
|
input: DescribeFleetEventsCommandInput,
|
|
604
656
|
context: __SerdeContext
|
|
@@ -719,10 +771,22 @@ export declare const se_ListComputeCommand: (
|
|
|
719
771
|
input: ListComputeCommandInput,
|
|
720
772
|
context: __SerdeContext
|
|
721
773
|
) => Promise<__HttpRequest>;
|
|
774
|
+
export declare const se_ListContainerFleetsCommand: (
|
|
775
|
+
input: ListContainerFleetsCommandInput,
|
|
776
|
+
context: __SerdeContext
|
|
777
|
+
) => Promise<__HttpRequest>;
|
|
722
778
|
export declare const se_ListContainerGroupDefinitionsCommand: (
|
|
723
779
|
input: ListContainerGroupDefinitionsCommandInput,
|
|
724
780
|
context: __SerdeContext
|
|
725
781
|
) => Promise<__HttpRequest>;
|
|
782
|
+
export declare const se_ListContainerGroupDefinitionVersionsCommand: (
|
|
783
|
+
input: ListContainerGroupDefinitionVersionsCommandInput,
|
|
784
|
+
context: __SerdeContext
|
|
785
|
+
) => Promise<__HttpRequest>;
|
|
786
|
+
export declare const se_ListFleetDeploymentsCommand: (
|
|
787
|
+
input: ListFleetDeploymentsCommandInput,
|
|
788
|
+
context: __SerdeContext
|
|
789
|
+
) => Promise<__HttpRequest>;
|
|
726
790
|
export declare const se_ListFleetsCommand: (
|
|
727
791
|
input: ListFleetsCommandInput,
|
|
728
792
|
context: __SerdeContext
|
|
@@ -823,6 +887,14 @@ export declare const se_UpdateBuildCommand: (
|
|
|
823
887
|
input: UpdateBuildCommandInput,
|
|
824
888
|
context: __SerdeContext
|
|
825
889
|
) => Promise<__HttpRequest>;
|
|
890
|
+
export declare const se_UpdateContainerFleetCommand: (
|
|
891
|
+
input: UpdateContainerFleetCommandInput,
|
|
892
|
+
context: __SerdeContext
|
|
893
|
+
) => Promise<__HttpRequest>;
|
|
894
|
+
export declare const se_UpdateContainerGroupDefinitionCommand: (
|
|
895
|
+
input: UpdateContainerGroupDefinitionCommandInput,
|
|
896
|
+
context: __SerdeContext
|
|
897
|
+
) => Promise<__HttpRequest>;
|
|
826
898
|
export declare const se_UpdateFleetAttributesCommand: (
|
|
827
899
|
input: UpdateFleetAttributesCommandInput,
|
|
828
900
|
context: __SerdeContext
|
|
@@ -883,6 +955,10 @@ export declare const de_CreateBuildCommand: (
|
|
|
883
955
|
output: __HttpResponse,
|
|
884
956
|
context: __SerdeContext
|
|
885
957
|
) => Promise<CreateBuildCommandOutput>;
|
|
958
|
+
export declare const de_CreateContainerFleetCommand: (
|
|
959
|
+
output: __HttpResponse,
|
|
960
|
+
context: __SerdeContext
|
|
961
|
+
) => Promise<CreateContainerFleetCommandOutput>;
|
|
886
962
|
export declare const de_CreateContainerGroupDefinitionCommand: (
|
|
887
963
|
output: __HttpResponse,
|
|
888
964
|
context: __SerdeContext
|
|
@@ -947,6 +1023,10 @@ export declare const de_DeleteBuildCommand: (
|
|
|
947
1023
|
output: __HttpResponse,
|
|
948
1024
|
context: __SerdeContext
|
|
949
1025
|
) => Promise<DeleteBuildCommandOutput>;
|
|
1026
|
+
export declare const de_DeleteContainerFleetCommand: (
|
|
1027
|
+
output: __HttpResponse,
|
|
1028
|
+
context: __SerdeContext
|
|
1029
|
+
) => Promise<DeleteContainerFleetCommandOutput>;
|
|
950
1030
|
export declare const de_DeleteContainerGroupDefinitionCommand: (
|
|
951
1031
|
output: __HttpResponse,
|
|
952
1032
|
context: __SerdeContext
|
|
@@ -1015,6 +1095,10 @@ export declare const de_DescribeComputeCommand: (
|
|
|
1015
1095
|
output: __HttpResponse,
|
|
1016
1096
|
context: __SerdeContext
|
|
1017
1097
|
) => Promise<DescribeComputeCommandOutput>;
|
|
1098
|
+
export declare const de_DescribeContainerFleetCommand: (
|
|
1099
|
+
output: __HttpResponse,
|
|
1100
|
+
context: __SerdeContext
|
|
1101
|
+
) => Promise<DescribeContainerFleetCommandOutput>;
|
|
1018
1102
|
export declare const de_DescribeContainerGroupDefinitionCommand: (
|
|
1019
1103
|
output: __HttpResponse,
|
|
1020
1104
|
context: __SerdeContext
|
|
@@ -1031,6 +1115,10 @@ export declare const de_DescribeFleetCapacityCommand: (
|
|
|
1031
1115
|
output: __HttpResponse,
|
|
1032
1116
|
context: __SerdeContext
|
|
1033
1117
|
) => Promise<DescribeFleetCapacityCommandOutput>;
|
|
1118
|
+
export declare const de_DescribeFleetDeploymentCommand: (
|
|
1119
|
+
output: __HttpResponse,
|
|
1120
|
+
context: __SerdeContext
|
|
1121
|
+
) => Promise<DescribeFleetDeploymentCommandOutput>;
|
|
1034
1122
|
export declare const de_DescribeFleetEventsCommand: (
|
|
1035
1123
|
output: __HttpResponse,
|
|
1036
1124
|
context: __SerdeContext
|
|
@@ -1151,10 +1239,22 @@ export declare const de_ListComputeCommand: (
|
|
|
1151
1239
|
output: __HttpResponse,
|
|
1152
1240
|
context: __SerdeContext
|
|
1153
1241
|
) => Promise<ListComputeCommandOutput>;
|
|
1242
|
+
export declare const de_ListContainerFleetsCommand: (
|
|
1243
|
+
output: __HttpResponse,
|
|
1244
|
+
context: __SerdeContext
|
|
1245
|
+
) => Promise<ListContainerFleetsCommandOutput>;
|
|
1154
1246
|
export declare const de_ListContainerGroupDefinitionsCommand: (
|
|
1155
1247
|
output: __HttpResponse,
|
|
1156
1248
|
context: __SerdeContext
|
|
1157
1249
|
) => Promise<ListContainerGroupDefinitionsCommandOutput>;
|
|
1250
|
+
export declare const de_ListContainerGroupDefinitionVersionsCommand: (
|
|
1251
|
+
output: __HttpResponse,
|
|
1252
|
+
context: __SerdeContext
|
|
1253
|
+
) => Promise<ListContainerGroupDefinitionVersionsCommandOutput>;
|
|
1254
|
+
export declare const de_ListFleetDeploymentsCommand: (
|
|
1255
|
+
output: __HttpResponse,
|
|
1256
|
+
context: __SerdeContext
|
|
1257
|
+
) => Promise<ListFleetDeploymentsCommandOutput>;
|
|
1158
1258
|
export declare const de_ListFleetsCommand: (
|
|
1159
1259
|
output: __HttpResponse,
|
|
1160
1260
|
context: __SerdeContext
|
|
@@ -1255,6 +1355,14 @@ export declare const de_UpdateBuildCommand: (
|
|
|
1255
1355
|
output: __HttpResponse,
|
|
1256
1356
|
context: __SerdeContext
|
|
1257
1357
|
) => Promise<UpdateBuildCommandOutput>;
|
|
1358
|
+
export declare const de_UpdateContainerFleetCommand: (
|
|
1359
|
+
output: __HttpResponse,
|
|
1360
|
+
context: __SerdeContext
|
|
1361
|
+
) => Promise<UpdateContainerFleetCommandOutput>;
|
|
1362
|
+
export declare const de_UpdateContainerGroupDefinitionCommand: (
|
|
1363
|
+
output: __HttpResponse,
|
|
1364
|
+
context: __SerdeContext
|
|
1365
|
+
) => Promise<UpdateContainerGroupDefinitionCommandOutput>;
|
|
1258
1366
|
export declare const de_UpdateFleetAttributesCommand: (
|
|
1259
1367
|
output: __HttpResponse,
|
|
1260
1368
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-gamelift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Gamelift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.690.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-gamelift",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.687.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.687.0",
|
|
25
25
|
"@aws-sdk/core": "3.686.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.687.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.687.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.687.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|