@aws-sdk/client-gameliftstreams 3.1097.0 → 3.1099.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 +35 -0
- package/dist-cjs/index.js +184 -4
- package/dist-es/GameLiftStreams.js +12 -0
- package/dist-es/commands/CreateStreamUrlCommand.js +4 -0
- package/dist-es/commands/GetStreamUrlCommand.js +4 -0
- package/dist-es/commands/ListApplicationShaderCachesCommand.js +4 -0
- package/dist-es/commands/ListStreamUrlsCommand.js +4 -0
- package/dist-es/commands/RevokeStreamUrlCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +27 -3
- package/dist-es/pagination/ListStreamUrlsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +107 -0
- package/dist-types/GameLiftStreams.d.ts +43 -0
- package/dist-types/GameLiftStreamsClient.d.ts +7 -2
- package/dist-types/commands/CreateStreamUrlCommand.d.ts +144 -0
- package/dist-types/commands/GetStreamUrlCommand.d.ts +135 -0
- package/dist-types/commands/ListApplicationShaderCachesCommand.d.ts +97 -0
- package/dist-types/commands/ListStreamUrlsCommand.d.ts +103 -0
- package/dist-types/commands/RevokeStreamUrlCommand.d.ts +86 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +64 -8
- package/dist-types/models/models_0.d.ts +520 -43
- package/dist-types/pagination/ListStreamUrlsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/GameLiftStreams.d.ts +93 -0
- package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateStreamUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetStreamUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListApplicationShaderCachesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListStreamUrlsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RevokeStreamUrlCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -4
- package/dist-types/ts3.4/models/models_0.d.ts +122 -12
- package/dist-types/ts3.4/pagination/ListStreamUrlsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +6 -6
|
@@ -4,13 +4,17 @@ import {
|
|
|
4
4
|
ExportFilesStatus,
|
|
5
5
|
Protocol,
|
|
6
6
|
ReplicationStatusType,
|
|
7
|
+
RevocationMode,
|
|
7
8
|
RuntimeEnvironmentType,
|
|
9
|
+
ShaderCacheStatus,
|
|
8
10
|
StreamClass,
|
|
9
11
|
StreamGroupLocationStatus,
|
|
10
12
|
StreamGroupStatus,
|
|
11
13
|
StreamGroupStatusReason,
|
|
12
14
|
StreamSessionStatus,
|
|
13
15
|
StreamSessionStatusReason,
|
|
16
|
+
StreamUrlStatus,
|
|
17
|
+
StreamUrlStatusReason,
|
|
14
18
|
} from "./enums";
|
|
15
19
|
export interface VpcTransitConfiguration {
|
|
16
20
|
VpcId: string | undefined;
|
|
@@ -198,6 +202,49 @@ export interface CreateStreamSessionConnectionInput {
|
|
|
198
202
|
export interface CreateStreamSessionConnectionOutput {
|
|
199
203
|
SignalResponse?: string | undefined;
|
|
200
204
|
}
|
|
205
|
+
export interface Resolution {
|
|
206
|
+
Width: number | undefined;
|
|
207
|
+
Height: number | undefined;
|
|
208
|
+
}
|
|
209
|
+
export interface DisplayConfiguration {
|
|
210
|
+
Resolution?: Resolution | undefined;
|
|
211
|
+
}
|
|
212
|
+
export interface CreateStreamUrlInput {
|
|
213
|
+
Identifier: string | undefined;
|
|
214
|
+
ApplicationIdentifier: string | undefined;
|
|
215
|
+
Protocol: Protocol | undefined;
|
|
216
|
+
UrlExpiresAfterMinutes: number | undefined;
|
|
217
|
+
UsageLimit?: number | undefined;
|
|
218
|
+
Description?: string | undefined;
|
|
219
|
+
Locations: string[] | undefined;
|
|
220
|
+
SessionLengthSeconds?: number | undefined;
|
|
221
|
+
AdditionalLaunchArgs?: string[] | undefined;
|
|
222
|
+
AdditionalEnvironmentVariables?: Record<string, string> | undefined;
|
|
223
|
+
RoleArn?: string | undefined;
|
|
224
|
+
DisplayConfiguration?: DisplayConfiguration | undefined;
|
|
225
|
+
ClientToken?: string | undefined;
|
|
226
|
+
}
|
|
227
|
+
export interface CreateStreamUrlOutput {
|
|
228
|
+
Arn: string | undefined;
|
|
229
|
+
StreamUrlId?: string | undefined;
|
|
230
|
+
StreamUrl?: string | undefined;
|
|
231
|
+
Status?: StreamUrlStatus | undefined;
|
|
232
|
+
StatusReason?: StreamUrlStatusReason | undefined;
|
|
233
|
+
ExpiresAt?: Date | undefined;
|
|
234
|
+
CreatedAt?: Date | undefined;
|
|
235
|
+
UsageLimit?: number | undefined;
|
|
236
|
+
RemainingUses?: number | undefined;
|
|
237
|
+
StreamGroupArn?: string | undefined;
|
|
238
|
+
ApplicationArn?: string | undefined;
|
|
239
|
+
Protocol?: Protocol | undefined;
|
|
240
|
+
Locations?: string[] | undefined;
|
|
241
|
+
SessionLengthSeconds?: number | undefined;
|
|
242
|
+
Description?: string | undefined;
|
|
243
|
+
AdditionalLaunchArgs?: string[] | undefined;
|
|
244
|
+
AdditionalEnvironmentVariables?: Record<string, string> | undefined;
|
|
245
|
+
RoleArn?: string | undefined;
|
|
246
|
+
DisplayConfiguration?: DisplayConfiguration | undefined;
|
|
247
|
+
}
|
|
201
248
|
export interface DeleteStreamGroupInput {
|
|
202
249
|
Identifier: string | undefined;
|
|
203
250
|
}
|
|
@@ -209,13 +256,6 @@ export interface DisassociateApplicationsOutput {
|
|
|
209
256
|
Arn?: string | undefined;
|
|
210
257
|
ApplicationArns?: string[] | undefined;
|
|
211
258
|
}
|
|
212
|
-
export interface Resolution {
|
|
213
|
-
Width: number | undefined;
|
|
214
|
-
Height: number | undefined;
|
|
215
|
-
}
|
|
216
|
-
export interface DisplayConfiguration {
|
|
217
|
-
Resolution?: Resolution | undefined;
|
|
218
|
-
}
|
|
219
259
|
export interface ExportFilesMetadata {
|
|
220
260
|
Status?: ExportFilesStatus | undefined;
|
|
221
261
|
StatusReason?: string | undefined;
|
|
@@ -259,12 +299,9 @@ export interface GetStreamSessionOutput {
|
|
|
259
299
|
RoleArn?: string | undefined;
|
|
260
300
|
DisplayConfiguration?: DisplayConfiguration | undefined;
|
|
261
301
|
}
|
|
262
|
-
export interface
|
|
263
|
-
Status?: StreamSessionStatus | undefined;
|
|
264
|
-
ExportFilesStatus?: ExportFilesStatus | undefined;
|
|
265
|
-
NextToken?: string | undefined;
|
|
266
|
-
MaxResults?: number | undefined;
|
|
302
|
+
export interface GetStreamUrlInput {
|
|
267
303
|
Identifier: string | undefined;
|
|
304
|
+
StreamUrlIdentifier: string | undefined;
|
|
268
305
|
}
|
|
269
306
|
export interface StreamSessionSummary {
|
|
270
307
|
Arn?: string | undefined;
|
|
@@ -279,6 +316,49 @@ export interface StreamSessionSummary {
|
|
|
279
316
|
Location?: string | undefined;
|
|
280
317
|
RoleArn?: string | undefined;
|
|
281
318
|
}
|
|
319
|
+
export interface GetStreamUrlOutput {
|
|
320
|
+
Arn: string | undefined;
|
|
321
|
+
StreamUrlId?: string | undefined;
|
|
322
|
+
StreamUrl?: string | undefined;
|
|
323
|
+
Status?: StreamUrlStatus | undefined;
|
|
324
|
+
StatusReason?: StreamUrlStatusReason | undefined;
|
|
325
|
+
ExpiresAt?: Date | undefined;
|
|
326
|
+
CreatedAt?: Date | undefined;
|
|
327
|
+
UsageLimit?: number | undefined;
|
|
328
|
+
RemainingUses?: number | undefined;
|
|
329
|
+
StreamGroupArn?: string | undefined;
|
|
330
|
+
ApplicationArn?: string | undefined;
|
|
331
|
+
Protocol?: Protocol | undefined;
|
|
332
|
+
Locations?: string[] | undefined;
|
|
333
|
+
SessionLengthSeconds?: number | undefined;
|
|
334
|
+
Description?: string | undefined;
|
|
335
|
+
AdditionalLaunchArgs?: string[] | undefined;
|
|
336
|
+
AdditionalEnvironmentVariables?: Record<string, string> | undefined;
|
|
337
|
+
RoleArn?: string | undefined;
|
|
338
|
+
DisplayConfiguration?: DisplayConfiguration | undefined;
|
|
339
|
+
StreamSessions?: StreamSessionSummary[] | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface ListApplicationShaderCachesInput {
|
|
342
|
+
Identifier: string | undefined;
|
|
343
|
+
}
|
|
344
|
+
export interface ShaderCacheSummary {
|
|
345
|
+
Identifier: string | undefined;
|
|
346
|
+
ApplicationArn: string | undefined;
|
|
347
|
+
Status?: ShaderCacheStatus | undefined;
|
|
348
|
+
LastUpdatedAt?: Date | undefined;
|
|
349
|
+
StorageBytes?: number | undefined;
|
|
350
|
+
AssociatedStreamGroups?: string[] | undefined;
|
|
351
|
+
}
|
|
352
|
+
export interface ListApplicationShaderCachesOutput {
|
|
353
|
+
Items?: ShaderCacheSummary[] | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface ListStreamSessionsInput {
|
|
356
|
+
Status?: StreamSessionStatus | undefined;
|
|
357
|
+
ExportFilesStatus?: ExportFilesStatus | undefined;
|
|
358
|
+
NextToken?: string | undefined;
|
|
359
|
+
MaxResults?: number | undefined;
|
|
360
|
+
Identifier: string | undefined;
|
|
361
|
+
}
|
|
282
362
|
export interface ListStreamSessionsOutput {
|
|
283
363
|
Items?: StreamSessionSummary[] | undefined;
|
|
284
364
|
NextToken?: string | undefined;
|
|
@@ -293,6 +373,31 @@ export interface ListStreamSessionsByAccountOutput {
|
|
|
293
373
|
Items?: StreamSessionSummary[] | undefined;
|
|
294
374
|
NextToken?: string | undefined;
|
|
295
375
|
}
|
|
376
|
+
export interface ListStreamUrlsInput {
|
|
377
|
+
Status?: StreamUrlStatus | undefined;
|
|
378
|
+
StreamGroupIdentifier?: string | undefined;
|
|
379
|
+
NextToken?: string | undefined;
|
|
380
|
+
MaxResults?: number | undefined;
|
|
381
|
+
}
|
|
382
|
+
export interface StreamUrlSummary {
|
|
383
|
+
Arn: string | undefined;
|
|
384
|
+
StreamUrlId?: string | undefined;
|
|
385
|
+
StreamUrl?: string | undefined;
|
|
386
|
+
Status?: StreamUrlStatus | undefined;
|
|
387
|
+
StatusReason?: StreamUrlStatusReason | undefined;
|
|
388
|
+
ExpiresAt?: Date | undefined;
|
|
389
|
+
CreatedAt?: Date | undefined;
|
|
390
|
+
UsageLimit?: number | undefined;
|
|
391
|
+
RemainingUses?: number | undefined;
|
|
392
|
+
StreamGroupArn?: string | undefined;
|
|
393
|
+
ApplicationArn?: string | undefined;
|
|
394
|
+
SessionLengthSeconds?: number | undefined;
|
|
395
|
+
Description?: string | undefined;
|
|
396
|
+
}
|
|
397
|
+
export interface ListStreamUrlsOutput {
|
|
398
|
+
Items?: StreamUrlSummary[] | undefined;
|
|
399
|
+
NextToken?: string | undefined;
|
|
400
|
+
}
|
|
296
401
|
export interface ListTagsForResourceRequest {
|
|
297
402
|
ResourceArn: string | undefined;
|
|
298
403
|
}
|
|
@@ -303,6 +408,11 @@ export interface RemoveStreamGroupLocationsInput {
|
|
|
303
408
|
Identifier: string | undefined;
|
|
304
409
|
Locations: string[] | undefined;
|
|
305
410
|
}
|
|
411
|
+
export interface RevokeStreamUrlInput {
|
|
412
|
+
Identifier: string | undefined;
|
|
413
|
+
StreamUrlIdentifier: string | undefined;
|
|
414
|
+
RevocationMode?: RevocationMode | undefined;
|
|
415
|
+
}
|
|
306
416
|
export interface StartStreamSessionInput {
|
|
307
417
|
ClientToken?: string | undefined;
|
|
308
418
|
Description?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListStreamUrlsCommandInput,
|
|
4
|
+
ListStreamUrlsCommandOutput,
|
|
5
|
+
} from "../commands/ListStreamUrlsCommand";
|
|
6
|
+
import { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListStreamUrls: (
|
|
8
|
+
config: GameLiftStreamsPaginationConfiguration,
|
|
9
|
+
input: ListStreamUrlsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListStreamUrlsCommandOutput>;
|
|
@@ -23,6 +23,8 @@ export declare var CreateStreamSessionAdminShellInput$: StaticStructureSchema;
|
|
|
23
23
|
export declare var CreateStreamSessionAdminShellOutput$: StaticStructureSchema;
|
|
24
24
|
export declare var CreateStreamSessionConnectionInput$: StaticStructureSchema;
|
|
25
25
|
export declare var CreateStreamSessionConnectionOutput$: StaticStructureSchema;
|
|
26
|
+
export declare var CreateStreamUrlInput$: StaticStructureSchema;
|
|
27
|
+
export declare var CreateStreamUrlOutput$: StaticStructureSchema;
|
|
26
28
|
export declare var DefaultApplication$: StaticStructureSchema;
|
|
27
29
|
export declare var DeleteApplicationInput$: StaticStructureSchema;
|
|
28
30
|
export declare var DeleteStreamGroupInput$: StaticStructureSchema;
|
|
@@ -38,6 +40,10 @@ export declare var GetStreamGroupInput$: StaticStructureSchema;
|
|
|
38
40
|
export declare var GetStreamGroupOutput$: StaticStructureSchema;
|
|
39
41
|
export declare var GetStreamSessionInput$: StaticStructureSchema;
|
|
40
42
|
export declare var GetStreamSessionOutput$: StaticStructureSchema;
|
|
43
|
+
export declare var GetStreamUrlInput$: StaticStructureSchema;
|
|
44
|
+
export declare var GetStreamUrlOutput$: StaticStructureSchema;
|
|
45
|
+
export declare var ListApplicationShaderCachesInput$: StaticStructureSchema;
|
|
46
|
+
export declare var ListApplicationShaderCachesOutput$: StaticStructureSchema;
|
|
41
47
|
export declare var ListApplicationsInput$: StaticStructureSchema;
|
|
42
48
|
export declare var ListApplicationsOutput$: StaticStructureSchema;
|
|
43
49
|
export declare var ListStreamGroupsInput$: StaticStructureSchema;
|
|
@@ -46,6 +52,8 @@ export declare var ListStreamSessionsByAccountInput$: StaticStructureSchema;
|
|
|
46
52
|
export declare var ListStreamSessionsByAccountOutput$: StaticStructureSchema;
|
|
47
53
|
export declare var ListStreamSessionsInput$: StaticStructureSchema;
|
|
48
54
|
export declare var ListStreamSessionsOutput$: StaticStructureSchema;
|
|
55
|
+
export declare var ListStreamUrlsInput$: StaticStructureSchema;
|
|
56
|
+
export declare var ListStreamUrlsOutput$: StaticStructureSchema;
|
|
49
57
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
50
58
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
51
59
|
export declare var LocationConfiguration$: StaticStructureSchema;
|
|
@@ -54,11 +62,14 @@ export declare var PerformanceStatsConfiguration$: StaticStructureSchema;
|
|
|
54
62
|
export declare var RemoveStreamGroupLocationsInput$: StaticStructureSchema;
|
|
55
63
|
export declare var ReplicationStatus$: StaticStructureSchema;
|
|
56
64
|
export declare var Resolution$: StaticStructureSchema;
|
|
65
|
+
export declare var RevokeStreamUrlInput$: StaticStructureSchema;
|
|
57
66
|
export declare var RuntimeEnvironment$: StaticStructureSchema;
|
|
67
|
+
export declare var ShaderCacheSummary$: StaticStructureSchema;
|
|
58
68
|
export declare var StartStreamSessionInput$: StaticStructureSchema;
|
|
59
69
|
export declare var StartStreamSessionOutput$: StaticStructureSchema;
|
|
60
70
|
export declare var StreamGroupSummary$: StaticStructureSchema;
|
|
61
71
|
export declare var StreamSessionSummary$: StaticStructureSchema;
|
|
72
|
+
export declare var StreamUrlSummary$: StaticStructureSchema;
|
|
62
73
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
63
74
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
64
75
|
export declare var TerminateStreamSessionInput$: StaticStructureSchema;
|
|
@@ -76,6 +87,7 @@ export declare var CreateApplication$: StaticOperationSchema;
|
|
|
76
87
|
export declare var CreateStreamGroup$: StaticOperationSchema;
|
|
77
88
|
export declare var CreateStreamSessionAdminShell$: StaticOperationSchema;
|
|
78
89
|
export declare var CreateStreamSessionConnection$: StaticOperationSchema;
|
|
90
|
+
export declare var CreateStreamUrl$: StaticOperationSchema;
|
|
79
91
|
export declare var DeleteApplication$: StaticOperationSchema;
|
|
80
92
|
export declare var DeleteStreamGroup$: StaticOperationSchema;
|
|
81
93
|
export declare var DisassociateApplications$: StaticOperationSchema;
|
|
@@ -83,12 +95,16 @@ export declare var ExportStreamSessionFiles$: StaticOperationSchema;
|
|
|
83
95
|
export declare var GetApplication$: StaticOperationSchema;
|
|
84
96
|
export declare var GetStreamGroup$: StaticOperationSchema;
|
|
85
97
|
export declare var GetStreamSession$: StaticOperationSchema;
|
|
98
|
+
export declare var GetStreamUrl$: StaticOperationSchema;
|
|
86
99
|
export declare var ListApplications$: StaticOperationSchema;
|
|
100
|
+
export declare var ListApplicationShaderCaches$: StaticOperationSchema;
|
|
87
101
|
export declare var ListStreamGroups$: StaticOperationSchema;
|
|
88
102
|
export declare var ListStreamSessions$: StaticOperationSchema;
|
|
89
103
|
export declare var ListStreamSessionsByAccount$: StaticOperationSchema;
|
|
104
|
+
export declare var ListStreamUrls$: StaticOperationSchema;
|
|
90
105
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
91
106
|
export declare var RemoveStreamGroupLocations$: StaticOperationSchema;
|
|
107
|
+
export declare var RevokeStreamUrl$: StaticOperationSchema;
|
|
92
108
|
export declare var StartStreamSession$: StaticOperationSchema;
|
|
93
109
|
export declare var TagResource$: StaticOperationSchema;
|
|
94
110
|
export declare var TerminateStreamSession$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-gameliftstreams",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1099.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Gameliftstreams Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-gameliftstreams",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.75",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
|
-
"@smithy/core": "^3.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
54
|
-
"@smithy/node-http-handler": "^4.9.
|
|
52
|
+
"@smithy/core": "^3.31.1",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
55
55
|
"@smithy/types": "^4.16.1",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|