@aws-sdk/client-gameliftstreams 3.974.0 → 3.978.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/dist-cjs/index.js +70 -57
- package/dist-es/GameLiftStreams.js +23 -1
- package/dist-types/GameLiftStreams.d.ts +60 -1
- package/dist-types/ts3.4/GameLiftStreams.d.ts +80 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1072,78 +1072,33 @@ class UpdateStreamGroupCommand extends smithyClient.Command
|
|
|
1072
1072
|
.build() {
|
|
1073
1073
|
}
|
|
1074
1074
|
|
|
1075
|
-
const commands = {
|
|
1076
|
-
AddStreamGroupLocationsCommand,
|
|
1077
|
-
AssociateApplicationsCommand,
|
|
1078
|
-
CreateApplicationCommand,
|
|
1079
|
-
CreateStreamGroupCommand,
|
|
1080
|
-
CreateStreamSessionConnectionCommand,
|
|
1081
|
-
DeleteApplicationCommand,
|
|
1082
|
-
DeleteStreamGroupCommand,
|
|
1083
|
-
DisassociateApplicationsCommand,
|
|
1084
|
-
ExportStreamSessionFilesCommand,
|
|
1085
|
-
GetApplicationCommand,
|
|
1086
|
-
GetStreamGroupCommand,
|
|
1087
|
-
GetStreamSessionCommand,
|
|
1088
|
-
ListApplicationsCommand,
|
|
1089
|
-
ListStreamGroupsCommand,
|
|
1090
|
-
ListStreamSessionsCommand,
|
|
1091
|
-
ListStreamSessionsByAccountCommand,
|
|
1092
|
-
ListTagsForResourceCommand,
|
|
1093
|
-
RemoveStreamGroupLocationsCommand,
|
|
1094
|
-
StartStreamSessionCommand,
|
|
1095
|
-
TagResourceCommand,
|
|
1096
|
-
TerminateStreamSessionCommand,
|
|
1097
|
-
UntagResourceCommand,
|
|
1098
|
-
UpdateApplicationCommand,
|
|
1099
|
-
UpdateStreamGroupCommand,
|
|
1100
|
-
};
|
|
1101
|
-
class GameLiftStreams extends GameLiftStreamsClient {
|
|
1102
|
-
}
|
|
1103
|
-
smithyClient.createAggregatedClient(commands, GameLiftStreams);
|
|
1104
|
-
|
|
1105
1075
|
const paginateListApplications = core.createPaginator(GameLiftStreamsClient, ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1106
1076
|
|
|
1107
1077
|
const paginateListStreamGroups = core.createPaginator(GameLiftStreamsClient, ListStreamGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1108
1078
|
|
|
1109
|
-
const paginateListStreamSessions = core.createPaginator(GameLiftStreamsClient, ListStreamSessionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1110
|
-
|
|
1111
1079
|
const paginateListStreamSessionsByAccount = core.createPaginator(GameLiftStreamsClient, ListStreamSessionsByAccountCommand, "NextToken", "NextToken", "MaxResults");
|
|
1112
1080
|
|
|
1081
|
+
const paginateListStreamSessions = core.createPaginator(GameLiftStreamsClient, ListStreamSessionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1082
|
+
|
|
1113
1083
|
const checkState$4 = async (client, input) => {
|
|
1114
1084
|
let reason;
|
|
1115
1085
|
try {
|
|
1116
1086
|
let result = await client.send(new GetApplicationCommand(input));
|
|
1117
1087
|
reason = result;
|
|
1118
|
-
try {
|
|
1119
|
-
const returnComparator = () => {
|
|
1120
|
-
return result.Status;
|
|
1121
|
-
};
|
|
1122
|
-
if (returnComparator() === "READY") {
|
|
1123
|
-
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1124
|
-
}
|
|
1125
|
-
}
|
|
1126
|
-
catch (e) { }
|
|
1127
|
-
try {
|
|
1128
|
-
const returnComparator = () => {
|
|
1129
|
-
return result.Status;
|
|
1130
|
-
};
|
|
1131
|
-
if (returnComparator() === "ERROR") {
|
|
1132
|
-
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
1133
|
-
}
|
|
1134
|
-
}
|
|
1135
|
-
catch (e) { }
|
|
1136
1088
|
}
|
|
1137
1089
|
catch (exception) {
|
|
1138
1090
|
reason = exception;
|
|
1091
|
+
if (exception.name && exception.name == "ResourceNotFoundException") {
|
|
1092
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1093
|
+
}
|
|
1139
1094
|
}
|
|
1140
1095
|
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
1141
1096
|
};
|
|
1142
|
-
const
|
|
1097
|
+
const waitForApplicationDeleted = async (params, input) => {
|
|
1143
1098
|
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
1144
1099
|
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1145
1100
|
};
|
|
1146
|
-
const
|
|
1101
|
+
const waitUntilApplicationDeleted = async (params, input) => {
|
|
1147
1102
|
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
1148
1103
|
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1149
1104
|
return utilWaiter.checkExceptions(result);
|
|
@@ -1154,20 +1109,35 @@ const checkState$3 = async (client, input) => {
|
|
|
1154
1109
|
try {
|
|
1155
1110
|
let result = await client.send(new GetApplicationCommand(input));
|
|
1156
1111
|
reason = result;
|
|
1112
|
+
try {
|
|
1113
|
+
const returnComparator = () => {
|
|
1114
|
+
return result.Status;
|
|
1115
|
+
};
|
|
1116
|
+
if (returnComparator() === "READY") {
|
|
1117
|
+
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
catch (e) { }
|
|
1121
|
+
try {
|
|
1122
|
+
const returnComparator = () => {
|
|
1123
|
+
return result.Status;
|
|
1124
|
+
};
|
|
1125
|
+
if (returnComparator() === "ERROR") {
|
|
1126
|
+
return { state: utilWaiter.WaiterState.FAILURE, reason };
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
catch (e) { }
|
|
1157
1130
|
}
|
|
1158
1131
|
catch (exception) {
|
|
1159
1132
|
reason = exception;
|
|
1160
|
-
if (exception.name && exception.name == "ResourceNotFoundException") {
|
|
1161
|
-
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1162
|
-
}
|
|
1163
1133
|
}
|
|
1164
1134
|
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
1165
1135
|
};
|
|
1166
|
-
const
|
|
1136
|
+
const waitForApplicationReady = async (params, input) => {
|
|
1167
1137
|
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
1168
1138
|
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1169
1139
|
};
|
|
1170
|
-
const
|
|
1140
|
+
const waitUntilApplicationReady = async (params, input) => {
|
|
1171
1141
|
const serviceDefaults = { minDelay: 2, maxDelay: 120 };
|
|
1172
1142
|
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1173
1143
|
return utilWaiter.checkExceptions(result);
|
|
@@ -1293,6 +1263,49 @@ const waitUntilStreamSessionActive = async (params, input) => {
|
|
|
1293
1263
|
return utilWaiter.checkExceptions(result);
|
|
1294
1264
|
};
|
|
1295
1265
|
|
|
1266
|
+
const commands = {
|
|
1267
|
+
AddStreamGroupLocationsCommand,
|
|
1268
|
+
AssociateApplicationsCommand,
|
|
1269
|
+
CreateApplicationCommand,
|
|
1270
|
+
CreateStreamGroupCommand,
|
|
1271
|
+
CreateStreamSessionConnectionCommand,
|
|
1272
|
+
DeleteApplicationCommand,
|
|
1273
|
+
DeleteStreamGroupCommand,
|
|
1274
|
+
DisassociateApplicationsCommand,
|
|
1275
|
+
ExportStreamSessionFilesCommand,
|
|
1276
|
+
GetApplicationCommand,
|
|
1277
|
+
GetStreamGroupCommand,
|
|
1278
|
+
GetStreamSessionCommand,
|
|
1279
|
+
ListApplicationsCommand,
|
|
1280
|
+
ListStreamGroupsCommand,
|
|
1281
|
+
ListStreamSessionsCommand,
|
|
1282
|
+
ListStreamSessionsByAccountCommand,
|
|
1283
|
+
ListTagsForResourceCommand,
|
|
1284
|
+
RemoveStreamGroupLocationsCommand,
|
|
1285
|
+
StartStreamSessionCommand,
|
|
1286
|
+
TagResourceCommand,
|
|
1287
|
+
TerminateStreamSessionCommand,
|
|
1288
|
+
UntagResourceCommand,
|
|
1289
|
+
UpdateApplicationCommand,
|
|
1290
|
+
UpdateStreamGroupCommand,
|
|
1291
|
+
};
|
|
1292
|
+
const paginators = {
|
|
1293
|
+
paginateListApplications,
|
|
1294
|
+
paginateListStreamGroups,
|
|
1295
|
+
paginateListStreamSessions,
|
|
1296
|
+
paginateListStreamSessionsByAccount,
|
|
1297
|
+
};
|
|
1298
|
+
const waiters = {
|
|
1299
|
+
waitUntilApplicationReady,
|
|
1300
|
+
waitUntilApplicationDeleted,
|
|
1301
|
+
waitUntilStreamGroupActive,
|
|
1302
|
+
waitUntilStreamGroupDeleted,
|
|
1303
|
+
waitUntilStreamSessionActive,
|
|
1304
|
+
};
|
|
1305
|
+
class GameLiftStreams extends GameLiftStreamsClient {
|
|
1306
|
+
}
|
|
1307
|
+
smithyClient.createAggregatedClient(commands, GameLiftStreams, { paginators, waiters });
|
|
1308
|
+
|
|
1296
1309
|
const StreamGroupLocationStatus = {
|
|
1297
1310
|
ACTIVATING: "ACTIVATING",
|
|
1298
1311
|
ACTIVE: "ACTIVE",
|
|
@@ -24,6 +24,15 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
24
24
|
import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
25
25
|
import { UpdateStreamGroupCommand, } from "./commands/UpdateStreamGroupCommand";
|
|
26
26
|
import { GameLiftStreamsClient } from "./GameLiftStreamsClient";
|
|
27
|
+
import { paginateListApplications } from "./pagination/ListApplicationsPaginator";
|
|
28
|
+
import { paginateListStreamGroups } from "./pagination/ListStreamGroupsPaginator";
|
|
29
|
+
import { paginateListStreamSessionsByAccount } from "./pagination/ListStreamSessionsByAccountPaginator";
|
|
30
|
+
import { paginateListStreamSessions } from "./pagination/ListStreamSessionsPaginator";
|
|
31
|
+
import { waitUntilApplicationDeleted } from "./waiters/waitForApplicationDeleted";
|
|
32
|
+
import { waitUntilApplicationReady } from "./waiters/waitForApplicationReady";
|
|
33
|
+
import { waitUntilStreamGroupActive } from "./waiters/waitForStreamGroupActive";
|
|
34
|
+
import { waitUntilStreamGroupDeleted } from "./waiters/waitForStreamGroupDeleted";
|
|
35
|
+
import { waitUntilStreamSessionActive } from "./waiters/waitForStreamSessionActive";
|
|
27
36
|
const commands = {
|
|
28
37
|
AddStreamGroupLocationsCommand,
|
|
29
38
|
AssociateApplicationsCommand,
|
|
@@ -50,6 +59,19 @@ const commands = {
|
|
|
50
59
|
UpdateApplicationCommand,
|
|
51
60
|
UpdateStreamGroupCommand,
|
|
52
61
|
};
|
|
62
|
+
const paginators = {
|
|
63
|
+
paginateListApplications,
|
|
64
|
+
paginateListStreamGroups,
|
|
65
|
+
paginateListStreamSessions,
|
|
66
|
+
paginateListStreamSessionsByAccount,
|
|
67
|
+
};
|
|
68
|
+
const waiters = {
|
|
69
|
+
waitUntilApplicationReady,
|
|
70
|
+
waitUntilApplicationDeleted,
|
|
71
|
+
waitUntilStreamGroupActive,
|
|
72
|
+
waitUntilStreamGroupDeleted,
|
|
73
|
+
waitUntilStreamSessionActive,
|
|
74
|
+
};
|
|
53
75
|
export class GameLiftStreams extends GameLiftStreamsClient {
|
|
54
76
|
}
|
|
55
|
-
createAggregatedClient(commands, GameLiftStreams);
|
|
77
|
+
createAggregatedClient(commands, GameLiftStreams, { paginators, waiters });
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { AddStreamGroupLocationsCommandInput, AddStreamGroupLocationsCommandOutput } from "./commands/AddStreamGroupLocationsCommand";
|
|
3
4
|
import { AssociateApplicationsCommandInput, AssociateApplicationsCommandOutput } from "./commands/AssociateApplicationsCommand";
|
|
4
5
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
@@ -172,6 +173,64 @@ export interface GameLiftStreams {
|
|
|
172
173
|
updateStreamGroup(args: UpdateStreamGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStreamGroupCommandOutput>;
|
|
173
174
|
updateStreamGroup(args: UpdateStreamGroupCommandInput, cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void): void;
|
|
174
175
|
updateStreamGroup(args: UpdateStreamGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void): void;
|
|
176
|
+
/**
|
|
177
|
+
* @see {@link ListApplicationsCommand}
|
|
178
|
+
* @param args - command input.
|
|
179
|
+
* @param paginationConfig - optional pagination config.
|
|
180
|
+
* @returns AsyncIterable of {@link ListApplicationsCommandOutput}.
|
|
181
|
+
*/
|
|
182
|
+
paginateListApplications(args?: ListApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationsCommandOutput>;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link ListStreamGroupsCommand}
|
|
185
|
+
* @param args - command input.
|
|
186
|
+
* @param paginationConfig - optional pagination config.
|
|
187
|
+
* @returns AsyncIterable of {@link ListStreamGroupsCommandOutput}.
|
|
188
|
+
*/
|
|
189
|
+
paginateListStreamGroups(args?: ListStreamGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStreamGroupsCommandOutput>;
|
|
190
|
+
/**
|
|
191
|
+
* @see {@link ListStreamSessionsCommand}
|
|
192
|
+
* @param args - command input.
|
|
193
|
+
* @param paginationConfig - optional pagination config.
|
|
194
|
+
* @returns AsyncIterable of {@link ListStreamSessionsCommandOutput}.
|
|
195
|
+
*/
|
|
196
|
+
paginateListStreamSessions(args: ListStreamSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStreamSessionsCommandOutput>;
|
|
197
|
+
/**
|
|
198
|
+
* @see {@link ListStreamSessionsByAccountCommand}
|
|
199
|
+
* @param args - command input.
|
|
200
|
+
* @param paginationConfig - optional pagination config.
|
|
201
|
+
* @returns AsyncIterable of {@link ListStreamSessionsByAccountCommandOutput}.
|
|
202
|
+
*/
|
|
203
|
+
paginateListStreamSessionsByAccount(args?: ListStreamSessionsByAccountCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStreamSessionsByAccountCommandOutput>;
|
|
204
|
+
/**
|
|
205
|
+
* @see {@link GetApplicationCommand}
|
|
206
|
+
* @param args - command input.
|
|
207
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
208
|
+
*/
|
|
209
|
+
waitUntilApplicationReady(args: GetApplicationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GameLiftStreams>, "client">): Promise<WaiterResult>;
|
|
210
|
+
/**
|
|
211
|
+
* @see {@link GetApplicationCommand}
|
|
212
|
+
* @param args - command input.
|
|
213
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
214
|
+
*/
|
|
215
|
+
waitUntilApplicationDeleted(args: GetApplicationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GameLiftStreams>, "client">): Promise<WaiterResult>;
|
|
216
|
+
/**
|
|
217
|
+
* @see {@link GetStreamGroupCommand}
|
|
218
|
+
* @param args - command input.
|
|
219
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
220
|
+
*/
|
|
221
|
+
waitUntilStreamGroupActive(args: GetStreamGroupCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GameLiftStreams>, "client">): Promise<WaiterResult>;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link GetStreamGroupCommand}
|
|
224
|
+
* @param args - command input.
|
|
225
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
226
|
+
*/
|
|
227
|
+
waitUntilStreamGroupDeleted(args: GetStreamGroupCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GameLiftStreams>, "client">): Promise<WaiterResult>;
|
|
228
|
+
/**
|
|
229
|
+
* @see {@link GetStreamSessionCommand}
|
|
230
|
+
* @param args - command input.
|
|
231
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
232
|
+
*/
|
|
233
|
+
waitUntilStreamSessionActive(args: GetStreamSessionCommandInput, waiterConfig: number | Omit<WaiterConfiguration<GameLiftStreams>, "client">): Promise<WaiterResult>;
|
|
175
234
|
}
|
|
176
235
|
/**
|
|
177
236
|
* <fullname>Amazon GameLift Streams</fullname> <p>Amazon GameLift Streams provides a global cloud solution for content streaming experiences. Use Amazon GameLift Streams tools to upload and configure content for streaming, deploy and scale computing resources to host streams, and manage stream session placement to meet customer demand.</p> <p>This Reference Guide describes the Amazon GameLift Streams service API. You can use the API through the Amazon Web Services SDK, the Command Line Interface (CLI), or by making direct REST calls through HTTPS.</p> <p>See the <i>Amazon GameLift Streams Developer Guide</i> for more information on how Amazon GameLift Streams works and how to work with it.</p>
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
AddStreamGroupLocationsCommandInput,
|
|
4
10
|
AddStreamGroupLocationsCommandOutput,
|
|
@@ -412,6 +418,79 @@ export interface GameLiftStreams {
|
|
|
412
418
|
options: __HttpHandlerOptions,
|
|
413
419
|
cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void
|
|
414
420
|
): void;
|
|
421
|
+
paginateListApplications(
|
|
422
|
+
args?: ListApplicationsCommandInput,
|
|
423
|
+
paginationConfig?: Pick<
|
|
424
|
+
PaginationConfiguration,
|
|
425
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
426
|
+
>
|
|
427
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
428
|
+
paginateListStreamGroups(
|
|
429
|
+
args?: ListStreamGroupsCommandInput,
|
|
430
|
+
paginationConfig?: Pick<
|
|
431
|
+
PaginationConfiguration,
|
|
432
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
433
|
+
>
|
|
434
|
+
): Paginator<ListStreamGroupsCommandOutput>;
|
|
435
|
+
paginateListStreamSessions(
|
|
436
|
+
args: ListStreamSessionsCommandInput,
|
|
437
|
+
paginationConfig?: Pick<
|
|
438
|
+
PaginationConfiguration,
|
|
439
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
440
|
+
>
|
|
441
|
+
): Paginator<ListStreamSessionsCommandOutput>;
|
|
442
|
+
paginateListStreamSessionsByAccount(
|
|
443
|
+
args?: ListStreamSessionsByAccountCommandInput,
|
|
444
|
+
paginationConfig?: Pick<
|
|
445
|
+
PaginationConfiguration,
|
|
446
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
447
|
+
>
|
|
448
|
+
): Paginator<ListStreamSessionsByAccountCommandOutput>;
|
|
449
|
+
waitUntilApplicationReady(
|
|
450
|
+
args: GetApplicationCommandInput,
|
|
451
|
+
waiterConfig:
|
|
452
|
+
| number
|
|
453
|
+
| Pick<
|
|
454
|
+
WaiterConfiguration<GameLiftStreams>,
|
|
455
|
+
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
456
|
+
>
|
|
457
|
+
): Promise<WaiterResult>;
|
|
458
|
+
waitUntilApplicationDeleted(
|
|
459
|
+
args: GetApplicationCommandInput,
|
|
460
|
+
waiterConfig:
|
|
461
|
+
| number
|
|
462
|
+
| Pick<
|
|
463
|
+
WaiterConfiguration<GameLiftStreams>,
|
|
464
|
+
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
465
|
+
>
|
|
466
|
+
): Promise<WaiterResult>;
|
|
467
|
+
waitUntilStreamGroupActive(
|
|
468
|
+
args: GetStreamGroupCommandInput,
|
|
469
|
+
waiterConfig:
|
|
470
|
+
| number
|
|
471
|
+
| Pick<
|
|
472
|
+
WaiterConfiguration<GameLiftStreams>,
|
|
473
|
+
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
474
|
+
>
|
|
475
|
+
): Promise<WaiterResult>;
|
|
476
|
+
waitUntilStreamGroupDeleted(
|
|
477
|
+
args: GetStreamGroupCommandInput,
|
|
478
|
+
waiterConfig:
|
|
479
|
+
| number
|
|
480
|
+
| Pick<
|
|
481
|
+
WaiterConfiguration<GameLiftStreams>,
|
|
482
|
+
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
483
|
+
>
|
|
484
|
+
): Promise<WaiterResult>;
|
|
485
|
+
waitUntilStreamSessionActive(
|
|
486
|
+
args: GetStreamSessionCommandInput,
|
|
487
|
+
waiterConfig:
|
|
488
|
+
| number
|
|
489
|
+
| Pick<
|
|
490
|
+
WaiterConfiguration<GameLiftStreams>,
|
|
491
|
+
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
492
|
+
>
|
|
493
|
+
): Promise<WaiterResult>;
|
|
415
494
|
}
|
|
416
495
|
export declare class GameLiftStreams
|
|
417
496
|
extends GameLiftStreamsClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-gameliftstreams",
|
|
3
3
|
"description": "AWS SDK for JavaScript Gameliftstreams Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-gameliftstreams",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|