@aws-sdk/client-gameliftstreams 3.1096.0 → 3.1098.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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListStreamUrlsCommandInput, ListStreamUrlsCommandOutput } from "../commands/ListStreamUrlsCommand";
|
|
3
|
+
import type { GameLiftStreamsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListStreamUrls: (config: GameLiftStreamsPaginationConfiguration, input: ListStreamUrlsCommandInput, ...rest: any[]) => Paginator<ListStreamUrlsCommandOutput>;
|
|
@@ -28,6 +28,8 @@ export declare var CreateStreamSessionAdminShellInput$: StaticStructureSchema;
|
|
|
28
28
|
export declare var CreateStreamSessionAdminShellOutput$: StaticStructureSchema;
|
|
29
29
|
export declare var CreateStreamSessionConnectionInput$: StaticStructureSchema;
|
|
30
30
|
export declare var CreateStreamSessionConnectionOutput$: StaticStructureSchema;
|
|
31
|
+
export declare var CreateStreamUrlInput$: StaticStructureSchema;
|
|
32
|
+
export declare var CreateStreamUrlOutput$: StaticStructureSchema;
|
|
31
33
|
export declare var DefaultApplication$: StaticStructureSchema;
|
|
32
34
|
export declare var DeleteApplicationInput$: StaticStructureSchema;
|
|
33
35
|
export declare var DeleteStreamGroupInput$: StaticStructureSchema;
|
|
@@ -43,6 +45,10 @@ export declare var GetStreamGroupInput$: StaticStructureSchema;
|
|
|
43
45
|
export declare var GetStreamGroupOutput$: StaticStructureSchema;
|
|
44
46
|
export declare var GetStreamSessionInput$: StaticStructureSchema;
|
|
45
47
|
export declare var GetStreamSessionOutput$: StaticStructureSchema;
|
|
48
|
+
export declare var GetStreamUrlInput$: StaticStructureSchema;
|
|
49
|
+
export declare var GetStreamUrlOutput$: StaticStructureSchema;
|
|
50
|
+
export declare var ListApplicationShaderCachesInput$: StaticStructureSchema;
|
|
51
|
+
export declare var ListApplicationShaderCachesOutput$: StaticStructureSchema;
|
|
46
52
|
export declare var ListApplicationsInput$: StaticStructureSchema;
|
|
47
53
|
export declare var ListApplicationsOutput$: StaticStructureSchema;
|
|
48
54
|
export declare var ListStreamGroupsInput$: StaticStructureSchema;
|
|
@@ -51,6 +57,8 @@ export declare var ListStreamSessionsByAccountInput$: StaticStructureSchema;
|
|
|
51
57
|
export declare var ListStreamSessionsByAccountOutput$: StaticStructureSchema;
|
|
52
58
|
export declare var ListStreamSessionsInput$: StaticStructureSchema;
|
|
53
59
|
export declare var ListStreamSessionsOutput$: StaticStructureSchema;
|
|
60
|
+
export declare var ListStreamUrlsInput$: StaticStructureSchema;
|
|
61
|
+
export declare var ListStreamUrlsOutput$: StaticStructureSchema;
|
|
54
62
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
55
63
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
56
64
|
export declare var LocationConfiguration$: StaticStructureSchema;
|
|
@@ -59,11 +67,14 @@ export declare var PerformanceStatsConfiguration$: StaticStructureSchema;
|
|
|
59
67
|
export declare var RemoveStreamGroupLocationsInput$: StaticStructureSchema;
|
|
60
68
|
export declare var ReplicationStatus$: StaticStructureSchema;
|
|
61
69
|
export declare var Resolution$: StaticStructureSchema;
|
|
70
|
+
export declare var RevokeStreamUrlInput$: StaticStructureSchema;
|
|
62
71
|
export declare var RuntimeEnvironment$: StaticStructureSchema;
|
|
72
|
+
export declare var ShaderCacheSummary$: StaticStructureSchema;
|
|
63
73
|
export declare var StartStreamSessionInput$: StaticStructureSchema;
|
|
64
74
|
export declare var StartStreamSessionOutput$: StaticStructureSchema;
|
|
65
75
|
export declare var StreamGroupSummary$: StaticStructureSchema;
|
|
66
76
|
export declare var StreamSessionSummary$: StaticStructureSchema;
|
|
77
|
+
export declare var StreamUrlSummary$: StaticStructureSchema;
|
|
67
78
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
68
79
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
69
80
|
export declare var TerminateStreamSessionInput$: StaticStructureSchema;
|
|
@@ -81,6 +92,7 @@ export declare var CreateApplication$: StaticOperationSchema;
|
|
|
81
92
|
export declare var CreateStreamGroup$: StaticOperationSchema;
|
|
82
93
|
export declare var CreateStreamSessionAdminShell$: StaticOperationSchema;
|
|
83
94
|
export declare var CreateStreamSessionConnection$: StaticOperationSchema;
|
|
95
|
+
export declare var CreateStreamUrl$: StaticOperationSchema;
|
|
84
96
|
export declare var DeleteApplication$: StaticOperationSchema;
|
|
85
97
|
export declare var DeleteStreamGroup$: StaticOperationSchema;
|
|
86
98
|
export declare var DisassociateApplications$: StaticOperationSchema;
|
|
@@ -88,12 +100,16 @@ export declare var ExportStreamSessionFiles$: StaticOperationSchema;
|
|
|
88
100
|
export declare var GetApplication$: StaticOperationSchema;
|
|
89
101
|
export declare var GetStreamGroup$: StaticOperationSchema;
|
|
90
102
|
export declare var GetStreamSession$: StaticOperationSchema;
|
|
103
|
+
export declare var GetStreamUrl$: StaticOperationSchema;
|
|
91
104
|
export declare var ListApplications$: StaticOperationSchema;
|
|
105
|
+
export declare var ListApplicationShaderCaches$: StaticOperationSchema;
|
|
92
106
|
export declare var ListStreamGroups$: StaticOperationSchema;
|
|
93
107
|
export declare var ListStreamSessions$: StaticOperationSchema;
|
|
94
108
|
export declare var ListStreamSessionsByAccount$: StaticOperationSchema;
|
|
109
|
+
export declare var ListStreamUrls$: StaticOperationSchema;
|
|
95
110
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
96
111
|
export declare var RemoveStreamGroupLocations$: StaticOperationSchema;
|
|
112
|
+
export declare var RevokeStreamUrl$: StaticOperationSchema;
|
|
97
113
|
export declare var StartStreamSession$: StaticOperationSchema;
|
|
98
114
|
export declare var TagResource$: StaticOperationSchema;
|
|
99
115
|
export declare var TerminateStreamSession$: StaticOperationSchema;
|
|
@@ -29,6 +29,10 @@ import {
|
|
|
29
29
|
CreateStreamSessionConnectionCommandInput,
|
|
30
30
|
CreateStreamSessionConnectionCommandOutput,
|
|
31
31
|
} from "./commands/CreateStreamSessionConnectionCommand";
|
|
32
|
+
import {
|
|
33
|
+
CreateStreamUrlCommandInput,
|
|
34
|
+
CreateStreamUrlCommandOutput,
|
|
35
|
+
} from "./commands/CreateStreamUrlCommand";
|
|
32
36
|
import {
|
|
33
37
|
DeleteApplicationCommandInput,
|
|
34
38
|
DeleteApplicationCommandOutput,
|
|
@@ -57,10 +61,18 @@ import {
|
|
|
57
61
|
GetStreamSessionCommandInput,
|
|
58
62
|
GetStreamSessionCommandOutput,
|
|
59
63
|
} from "./commands/GetStreamSessionCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetStreamUrlCommandInput,
|
|
66
|
+
GetStreamUrlCommandOutput,
|
|
67
|
+
} from "./commands/GetStreamUrlCommand";
|
|
60
68
|
import {
|
|
61
69
|
ListApplicationsCommandInput,
|
|
62
70
|
ListApplicationsCommandOutput,
|
|
63
71
|
} from "./commands/ListApplicationsCommand";
|
|
72
|
+
import {
|
|
73
|
+
ListApplicationShaderCachesCommandInput,
|
|
74
|
+
ListApplicationShaderCachesCommandOutput,
|
|
75
|
+
} from "./commands/ListApplicationShaderCachesCommand";
|
|
64
76
|
import {
|
|
65
77
|
ListStreamGroupsCommandInput,
|
|
66
78
|
ListStreamGroupsCommandOutput,
|
|
@@ -73,6 +85,10 @@ import {
|
|
|
73
85
|
ListStreamSessionsCommandInput,
|
|
74
86
|
ListStreamSessionsCommandOutput,
|
|
75
87
|
} from "./commands/ListStreamSessionsCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListStreamUrlsCommandInput,
|
|
90
|
+
ListStreamUrlsCommandOutput,
|
|
91
|
+
} from "./commands/ListStreamUrlsCommand";
|
|
76
92
|
import {
|
|
77
93
|
ListTagsForResourceCommandInput,
|
|
78
94
|
ListTagsForResourceCommandOutput,
|
|
@@ -81,6 +97,10 @@ import {
|
|
|
81
97
|
RemoveStreamGroupLocationsCommandInput,
|
|
82
98
|
RemoveStreamGroupLocationsCommandOutput,
|
|
83
99
|
} from "./commands/RemoveStreamGroupLocationsCommand";
|
|
100
|
+
import {
|
|
101
|
+
RevokeStreamUrlCommandInput,
|
|
102
|
+
RevokeStreamUrlCommandOutput,
|
|
103
|
+
} from "./commands/RevokeStreamUrlCommand";
|
|
84
104
|
import {
|
|
85
105
|
StartStreamSessionCommandInput,
|
|
86
106
|
StartStreamSessionCommandOutput,
|
|
@@ -183,6 +203,19 @@ export interface GameLiftStreams {
|
|
|
183
203
|
options: __HttpHandlerOptions,
|
|
184
204
|
cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void,
|
|
185
205
|
): void;
|
|
206
|
+
createStreamUrl(
|
|
207
|
+
args: CreateStreamUrlCommandInput,
|
|
208
|
+
options?: __HttpHandlerOptions,
|
|
209
|
+
): Promise<CreateStreamUrlCommandOutput>;
|
|
210
|
+
createStreamUrl(
|
|
211
|
+
args: CreateStreamUrlCommandInput,
|
|
212
|
+
cb: (err: any, data?: CreateStreamUrlCommandOutput) => void,
|
|
213
|
+
): void;
|
|
214
|
+
createStreamUrl(
|
|
215
|
+
args: CreateStreamUrlCommandInput,
|
|
216
|
+
options: __HttpHandlerOptions,
|
|
217
|
+
cb: (err: any, data?: CreateStreamUrlCommandOutput) => void,
|
|
218
|
+
): void;
|
|
186
219
|
deleteApplication(
|
|
187
220
|
args: DeleteApplicationCommandInput,
|
|
188
221
|
options?: __HttpHandlerOptions,
|
|
@@ -274,6 +307,19 @@ export interface GameLiftStreams {
|
|
|
274
307
|
options: __HttpHandlerOptions,
|
|
275
308
|
cb: (err: any, data?: GetStreamSessionCommandOutput) => void,
|
|
276
309
|
): void;
|
|
310
|
+
getStreamUrl(
|
|
311
|
+
args: GetStreamUrlCommandInput,
|
|
312
|
+
options?: __HttpHandlerOptions,
|
|
313
|
+
): Promise<GetStreamUrlCommandOutput>;
|
|
314
|
+
getStreamUrl(
|
|
315
|
+
args: GetStreamUrlCommandInput,
|
|
316
|
+
cb: (err: any, data?: GetStreamUrlCommandOutput) => void,
|
|
317
|
+
): void;
|
|
318
|
+
getStreamUrl(
|
|
319
|
+
args: GetStreamUrlCommandInput,
|
|
320
|
+
options: __HttpHandlerOptions,
|
|
321
|
+
cb: (err: any, data?: GetStreamUrlCommandOutput) => void,
|
|
322
|
+
): void;
|
|
277
323
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
278
324
|
listApplications(
|
|
279
325
|
args: ListApplicationsCommandInput,
|
|
@@ -288,6 +334,19 @@ export interface GameLiftStreams {
|
|
|
288
334
|
options: __HttpHandlerOptions,
|
|
289
335
|
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
290
336
|
): void;
|
|
337
|
+
listApplicationShaderCaches(
|
|
338
|
+
args: ListApplicationShaderCachesCommandInput,
|
|
339
|
+
options?: __HttpHandlerOptions,
|
|
340
|
+
): Promise<ListApplicationShaderCachesCommandOutput>;
|
|
341
|
+
listApplicationShaderCaches(
|
|
342
|
+
args: ListApplicationShaderCachesCommandInput,
|
|
343
|
+
cb: (err: any, data?: ListApplicationShaderCachesCommandOutput) => void,
|
|
344
|
+
): void;
|
|
345
|
+
listApplicationShaderCaches(
|
|
346
|
+
args: ListApplicationShaderCachesCommandInput,
|
|
347
|
+
options: __HttpHandlerOptions,
|
|
348
|
+
cb: (err: any, data?: ListApplicationShaderCachesCommandOutput) => void,
|
|
349
|
+
): void;
|
|
291
350
|
listStreamGroups(): Promise<ListStreamGroupsCommandOutput>;
|
|
292
351
|
listStreamGroups(
|
|
293
352
|
args: ListStreamGroupsCommandInput,
|
|
@@ -329,6 +388,20 @@ export interface GameLiftStreams {
|
|
|
329
388
|
options: __HttpHandlerOptions,
|
|
330
389
|
cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void,
|
|
331
390
|
): void;
|
|
391
|
+
listStreamUrls(): Promise<ListStreamUrlsCommandOutput>;
|
|
392
|
+
listStreamUrls(
|
|
393
|
+
args: ListStreamUrlsCommandInput,
|
|
394
|
+
options?: __HttpHandlerOptions,
|
|
395
|
+
): Promise<ListStreamUrlsCommandOutput>;
|
|
396
|
+
listStreamUrls(
|
|
397
|
+
args: ListStreamUrlsCommandInput,
|
|
398
|
+
cb: (err: any, data?: ListStreamUrlsCommandOutput) => void,
|
|
399
|
+
): void;
|
|
400
|
+
listStreamUrls(
|
|
401
|
+
args: ListStreamUrlsCommandInput,
|
|
402
|
+
options: __HttpHandlerOptions,
|
|
403
|
+
cb: (err: any, data?: ListStreamUrlsCommandOutput) => void,
|
|
404
|
+
): void;
|
|
332
405
|
listTagsForResource(
|
|
333
406
|
args: ListTagsForResourceCommandInput,
|
|
334
407
|
options?: __HttpHandlerOptions,
|
|
@@ -355,6 +428,19 @@ export interface GameLiftStreams {
|
|
|
355
428
|
options: __HttpHandlerOptions,
|
|
356
429
|
cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void,
|
|
357
430
|
): void;
|
|
431
|
+
revokeStreamUrl(
|
|
432
|
+
args: RevokeStreamUrlCommandInput,
|
|
433
|
+
options?: __HttpHandlerOptions,
|
|
434
|
+
): Promise<RevokeStreamUrlCommandOutput>;
|
|
435
|
+
revokeStreamUrl(
|
|
436
|
+
args: RevokeStreamUrlCommandInput,
|
|
437
|
+
cb: (err: any, data?: RevokeStreamUrlCommandOutput) => void,
|
|
438
|
+
): void;
|
|
439
|
+
revokeStreamUrl(
|
|
440
|
+
args: RevokeStreamUrlCommandInput,
|
|
441
|
+
options: __HttpHandlerOptions,
|
|
442
|
+
cb: (err: any, data?: RevokeStreamUrlCommandOutput) => void,
|
|
443
|
+
): void;
|
|
358
444
|
startStreamSession(
|
|
359
445
|
args: StartStreamSessionCommandInput,
|
|
360
446
|
options?: __HttpHandlerOptions,
|
|
@@ -461,6 +547,13 @@ export interface GameLiftStreams {
|
|
|
461
547
|
Exclude<keyof PaginationConfiguration, "client">
|
|
462
548
|
>,
|
|
463
549
|
): Paginator<ListStreamSessionsByAccountCommandOutput>;
|
|
550
|
+
paginateListStreamUrls(
|
|
551
|
+
args?: ListStreamUrlsCommandInput,
|
|
552
|
+
paginationConfig?: Pick<
|
|
553
|
+
PaginationConfiguration,
|
|
554
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
555
|
+
>,
|
|
556
|
+
): Paginator<ListStreamUrlsCommandOutput>;
|
|
464
557
|
waitUntilApplicationReady(
|
|
465
558
|
args: GetApplicationCommandInput,
|
|
466
559
|
waiterConfig:
|
|
@@ -57,6 +57,10 @@ import {
|
|
|
57
57
|
CreateStreamSessionConnectionCommandInput,
|
|
58
58
|
CreateStreamSessionConnectionCommandOutput,
|
|
59
59
|
} from "./commands/CreateStreamSessionConnectionCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateStreamUrlCommandInput,
|
|
62
|
+
CreateStreamUrlCommandOutput,
|
|
63
|
+
} from "./commands/CreateStreamUrlCommand";
|
|
60
64
|
import {
|
|
61
65
|
DeleteApplicationCommandInput,
|
|
62
66
|
DeleteApplicationCommandOutput,
|
|
@@ -85,10 +89,18 @@ import {
|
|
|
85
89
|
GetStreamSessionCommandInput,
|
|
86
90
|
GetStreamSessionCommandOutput,
|
|
87
91
|
} from "./commands/GetStreamSessionCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetStreamUrlCommandInput,
|
|
94
|
+
GetStreamUrlCommandOutput,
|
|
95
|
+
} from "./commands/GetStreamUrlCommand";
|
|
88
96
|
import {
|
|
89
97
|
ListApplicationsCommandInput,
|
|
90
98
|
ListApplicationsCommandOutput,
|
|
91
99
|
} from "./commands/ListApplicationsCommand";
|
|
100
|
+
import {
|
|
101
|
+
ListApplicationShaderCachesCommandInput,
|
|
102
|
+
ListApplicationShaderCachesCommandOutput,
|
|
103
|
+
} from "./commands/ListApplicationShaderCachesCommand";
|
|
92
104
|
import {
|
|
93
105
|
ListStreamGroupsCommandInput,
|
|
94
106
|
ListStreamGroupsCommandOutput,
|
|
@@ -101,6 +113,10 @@ import {
|
|
|
101
113
|
ListStreamSessionsCommandInput,
|
|
102
114
|
ListStreamSessionsCommandOutput,
|
|
103
115
|
} from "./commands/ListStreamSessionsCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListStreamUrlsCommandInput,
|
|
118
|
+
ListStreamUrlsCommandOutput,
|
|
119
|
+
} from "./commands/ListStreamUrlsCommand";
|
|
104
120
|
import {
|
|
105
121
|
ListTagsForResourceCommandInput,
|
|
106
122
|
ListTagsForResourceCommandOutput,
|
|
@@ -109,6 +125,10 @@ import {
|
|
|
109
125
|
RemoveStreamGroupLocationsCommandInput,
|
|
110
126
|
RemoveStreamGroupLocationsCommandOutput,
|
|
111
127
|
} from "./commands/RemoveStreamGroupLocationsCommand";
|
|
128
|
+
import {
|
|
129
|
+
RevokeStreamUrlCommandInput,
|
|
130
|
+
RevokeStreamUrlCommandOutput,
|
|
131
|
+
} from "./commands/RevokeStreamUrlCommand";
|
|
112
132
|
import {
|
|
113
133
|
StartStreamSessionCommandInput,
|
|
114
134
|
StartStreamSessionCommandOutput,
|
|
@@ -144,6 +164,7 @@ export type ServiceInputTypes =
|
|
|
144
164
|
| CreateStreamGroupCommandInput
|
|
145
165
|
| CreateStreamSessionAdminShellCommandInput
|
|
146
166
|
| CreateStreamSessionConnectionCommandInput
|
|
167
|
+
| CreateStreamUrlCommandInput
|
|
147
168
|
| DeleteApplicationCommandInput
|
|
148
169
|
| DeleteStreamGroupCommandInput
|
|
149
170
|
| DisassociateApplicationsCommandInput
|
|
@@ -151,12 +172,16 @@ export type ServiceInputTypes =
|
|
|
151
172
|
| GetApplicationCommandInput
|
|
152
173
|
| GetStreamGroupCommandInput
|
|
153
174
|
| GetStreamSessionCommandInput
|
|
175
|
+
| GetStreamUrlCommandInput
|
|
176
|
+
| ListApplicationShaderCachesCommandInput
|
|
154
177
|
| ListApplicationsCommandInput
|
|
155
178
|
| ListStreamGroupsCommandInput
|
|
156
179
|
| ListStreamSessionsByAccountCommandInput
|
|
157
180
|
| ListStreamSessionsCommandInput
|
|
181
|
+
| ListStreamUrlsCommandInput
|
|
158
182
|
| ListTagsForResourceCommandInput
|
|
159
183
|
| RemoveStreamGroupLocationsCommandInput
|
|
184
|
+
| RevokeStreamUrlCommandInput
|
|
160
185
|
| StartStreamSessionCommandInput
|
|
161
186
|
| TagResourceCommandInput
|
|
162
187
|
| TerminateStreamSessionCommandInput
|
|
@@ -170,6 +195,7 @@ export type ServiceOutputTypes =
|
|
|
170
195
|
| CreateStreamGroupCommandOutput
|
|
171
196
|
| CreateStreamSessionAdminShellCommandOutput
|
|
172
197
|
| CreateStreamSessionConnectionCommandOutput
|
|
198
|
+
| CreateStreamUrlCommandOutput
|
|
173
199
|
| DeleteApplicationCommandOutput
|
|
174
200
|
| DeleteStreamGroupCommandOutput
|
|
175
201
|
| DisassociateApplicationsCommandOutput
|
|
@@ -177,12 +203,16 @@ export type ServiceOutputTypes =
|
|
|
177
203
|
| GetApplicationCommandOutput
|
|
178
204
|
| GetStreamGroupCommandOutput
|
|
179
205
|
| GetStreamSessionCommandOutput
|
|
206
|
+
| GetStreamUrlCommandOutput
|
|
207
|
+
| ListApplicationShaderCachesCommandOutput
|
|
180
208
|
| ListApplicationsCommandOutput
|
|
181
209
|
| ListStreamGroupsCommandOutput
|
|
182
210
|
| ListStreamSessionsByAccountCommandOutput
|
|
183
211
|
| ListStreamSessionsCommandOutput
|
|
212
|
+
| ListStreamUrlsCommandOutput
|
|
184
213
|
| ListTagsForResourceCommandOutput
|
|
185
214
|
| RemoveStreamGroupLocationsCommandOutput
|
|
215
|
+
| RevokeStreamUrlCommandOutput
|
|
186
216
|
| StartStreamSessionCommandOutput
|
|
187
217
|
| TagResourceCommandOutput
|
|
188
218
|
| TerminateStreamSessionCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { CreateStreamUrlInput, CreateStreamUrlOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface CreateStreamUrlCommandInput extends CreateStreamUrlInput {}
|
|
5
|
+
export interface CreateStreamUrlCommandOutput extends CreateStreamUrlOutput, __MetadataBearer {}
|
|
6
|
+
declare const CreateStreamUrlCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: CreateStreamUrlCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
CreateStreamUrlCommandInput,
|
|
11
|
+
CreateStreamUrlCommandOutput,
|
|
12
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: CreateStreamUrlCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateStreamUrlCommandInput,
|
|
20
|
+
CreateStreamUrlCommandOutput,
|
|
21
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class CreateStreamUrlCommand extends CreateStreamUrlCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: CreateStreamUrlInput;
|
|
31
|
+
output: CreateStreamUrlOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: CreateStreamUrlCommandInput;
|
|
35
|
+
output: CreateStreamUrlCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetStreamUrlInput, GetStreamUrlOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetStreamUrlCommandInput extends GetStreamUrlInput {}
|
|
5
|
+
export interface GetStreamUrlCommandOutput extends GetStreamUrlOutput, __MetadataBearer {}
|
|
6
|
+
declare const GetStreamUrlCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: GetStreamUrlCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
GetStreamUrlCommandInput,
|
|
11
|
+
GetStreamUrlCommandOutput,
|
|
12
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: GetStreamUrlCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
GetStreamUrlCommandInput,
|
|
20
|
+
GetStreamUrlCommandOutput,
|
|
21
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class GetStreamUrlCommand extends GetStreamUrlCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: GetStreamUrlInput;
|
|
31
|
+
output: GetStreamUrlOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: GetStreamUrlCommandInput;
|
|
35
|
+
output: GetStreamUrlCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationShaderCachesInput,
|
|
4
|
+
ListApplicationShaderCachesOutput,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListApplicationShaderCachesCommandInput extends ListApplicationShaderCachesInput {}
|
|
8
|
+
export interface ListApplicationShaderCachesCommandOutput
|
|
9
|
+
extends ListApplicationShaderCachesOutput, __MetadataBearer {}
|
|
10
|
+
declare const ListApplicationShaderCachesCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListApplicationShaderCachesCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListApplicationShaderCachesCommandInput,
|
|
15
|
+
ListApplicationShaderCachesCommandOutput,
|
|
16
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ListApplicationShaderCachesCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListApplicationShaderCachesCommandInput,
|
|
24
|
+
ListApplicationShaderCachesCommandOutput,
|
|
25
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListApplicationShaderCachesCommand extends ListApplicationShaderCachesCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListApplicationShaderCachesInput;
|
|
35
|
+
output: ListApplicationShaderCachesOutput;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListApplicationShaderCachesCommandInput;
|
|
39
|
+
output: ListApplicationShaderCachesCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListStreamUrlsInput, ListStreamUrlsOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListStreamUrlsCommandInput extends ListStreamUrlsInput {}
|
|
5
|
+
export interface ListStreamUrlsCommandOutput extends ListStreamUrlsOutput, __MetadataBearer {}
|
|
6
|
+
declare const ListStreamUrlsCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: ListStreamUrlsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
ListStreamUrlsCommandInput,
|
|
11
|
+
ListStreamUrlsCommandOutput,
|
|
12
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
...[input]: [] | [ListStreamUrlsCommandInput]
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListStreamUrlsCommandInput,
|
|
20
|
+
ListStreamUrlsCommandOutput,
|
|
21
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class ListStreamUrlsCommand extends ListStreamUrlsCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: ListStreamUrlsInput;
|
|
31
|
+
output: ListStreamUrlsOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: ListStreamUrlsCommandInput;
|
|
35
|
+
output: ListStreamUrlsCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { RevokeStreamUrlInput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface RevokeStreamUrlCommandInput extends RevokeStreamUrlInput {}
|
|
5
|
+
export interface RevokeStreamUrlCommandOutput extends __MetadataBearer {}
|
|
6
|
+
declare const RevokeStreamUrlCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: RevokeStreamUrlCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
RevokeStreamUrlCommandInput,
|
|
11
|
+
RevokeStreamUrlCommandOutput,
|
|
12
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: RevokeStreamUrlCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
RevokeStreamUrlCommandInput,
|
|
20
|
+
RevokeStreamUrlCommandOutput,
|
|
21
|
+
import("..").GameLiftStreamsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class RevokeStreamUrlCommand extends RevokeStreamUrlCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: RevokeStreamUrlInput;
|
|
31
|
+
output: {};
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: RevokeStreamUrlCommandInput;
|
|
35
|
+
output: RevokeStreamUrlCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./CreateApplicationCommand";
|
|
|
4
4
|
export * from "./CreateStreamGroupCommand";
|
|
5
5
|
export * from "./CreateStreamSessionAdminShellCommand";
|
|
6
6
|
export * from "./CreateStreamSessionConnectionCommand";
|
|
7
|
+
export * from "./CreateStreamUrlCommand";
|
|
7
8
|
export * from "./DeleteApplicationCommand";
|
|
8
9
|
export * from "./DeleteStreamGroupCommand";
|
|
9
10
|
export * from "./DisassociateApplicationsCommand";
|
|
@@ -11,12 +12,16 @@ export * from "./ExportStreamSessionFilesCommand";
|
|
|
11
12
|
export * from "./GetApplicationCommand";
|
|
12
13
|
export * from "./GetStreamGroupCommand";
|
|
13
14
|
export * from "./GetStreamSessionCommand";
|
|
15
|
+
export * from "./GetStreamUrlCommand";
|
|
16
|
+
export * from "./ListApplicationShaderCachesCommand";
|
|
14
17
|
export * from "./ListApplicationsCommand";
|
|
15
18
|
export * from "./ListStreamGroupsCommand";
|
|
16
19
|
export * from "./ListStreamSessionsByAccountCommand";
|
|
17
20
|
export * from "./ListStreamSessionsCommand";
|
|
21
|
+
export * from "./ListStreamUrlsCommand";
|
|
18
22
|
export * from "./ListTagsForResourceCommand";
|
|
19
23
|
export * from "./RemoveStreamGroupLocationsCommand";
|
|
24
|
+
export * from "./RevokeStreamUrlCommand";
|
|
20
25
|
export * from "./StartStreamSessionCommand";
|
|
21
26
|
export * from "./TagResourceCommand";
|
|
22
27
|
export * from "./TerminateStreamSessionCommand";
|
|
@@ -70,16 +70,32 @@ export declare const StreamGroupStatusReason: {
|
|
|
70
70
|
};
|
|
71
71
|
export type StreamGroupStatusReason =
|
|
72
72
|
(typeof StreamGroupStatusReason)[keyof typeof StreamGroupStatusReason];
|
|
73
|
+
export declare const Protocol: {
|
|
74
|
+
readonly WEBRTC: "WebRTC";
|
|
75
|
+
};
|
|
76
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
77
|
+
export declare const StreamUrlStatus: {
|
|
78
|
+
readonly ACTIVE: "ACTIVE";
|
|
79
|
+
readonly EXPIRED: "EXPIRED";
|
|
80
|
+
readonly LIMIT_REACHED: "LIMIT_REACHED";
|
|
81
|
+
readonly REVOKED: "REVOKED";
|
|
82
|
+
};
|
|
83
|
+
export type StreamUrlStatus = (typeof StreamUrlStatus)[keyof typeof StreamUrlStatus];
|
|
84
|
+
export declare const StreamUrlStatusReason: {
|
|
85
|
+
readonly APPLICATION_DELETED: "applicationDeleted";
|
|
86
|
+
readonly REVOKED_AND_SESSIONS_TERMINATED: "revokedAndSessionsTerminated";
|
|
87
|
+
readonly REVOKED_AND_TERMINATING_SESSIONS: "revokedAndTerminatingSessions";
|
|
88
|
+
readonly STREAM_GROUP_DELETED: "streamGroupDeleted";
|
|
89
|
+
readonly USER_REVOKED: "userRevoked";
|
|
90
|
+
};
|
|
91
|
+
export type StreamUrlStatusReason =
|
|
92
|
+
(typeof StreamUrlStatusReason)[keyof typeof StreamUrlStatusReason];
|
|
73
93
|
export declare const ExportFilesStatus: {
|
|
74
94
|
readonly FAILED: "FAILED";
|
|
75
95
|
readonly PENDING: "PENDING";
|
|
76
96
|
readonly SUCCEEDED: "SUCCEEDED";
|
|
77
97
|
};
|
|
78
98
|
export type ExportFilesStatus = (typeof ExportFilesStatus)[keyof typeof ExportFilesStatus];
|
|
79
|
-
export declare const Protocol: {
|
|
80
|
-
readonly WEBRTC: "WebRTC";
|
|
81
|
-
};
|
|
82
|
-
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
83
99
|
export declare const StreamSessionStatus: {
|
|
84
100
|
readonly ACTIVATING: "ACTIVATING";
|
|
85
101
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -106,3 +122,16 @@ export declare const StreamSessionStatusReason: {
|
|
|
106
122
|
};
|
|
107
123
|
export type StreamSessionStatusReason =
|
|
108
124
|
(typeof StreamSessionStatusReason)[keyof typeof StreamSessionStatusReason];
|
|
125
|
+
export declare const ShaderCacheStatus: {
|
|
126
|
+
readonly DELETING: "DELETING";
|
|
127
|
+
readonly ERROR: "ERROR";
|
|
128
|
+
readonly INITIALIZED: "INITIALIZED";
|
|
129
|
+
readonly PROCESSING: "PROCESSING";
|
|
130
|
+
readonly READY: "READY";
|
|
131
|
+
};
|
|
132
|
+
export type ShaderCacheStatus = (typeof ShaderCacheStatus)[keyof typeof ShaderCacheStatus];
|
|
133
|
+
export declare const RevocationMode: {
|
|
134
|
+
readonly REVOKE_AND_TERMINATE_SESSIONS: "REVOKE_AND_TERMINATE_SESSIONS";
|
|
135
|
+
readonly REVOKE_URL: "REVOKE_URL";
|
|
136
|
+
};
|
|
137
|
+
export type RevocationMode = (typeof RevocationMode)[keyof typeof RevocationMode];
|