@aws-sdk/client-gameliftstreams 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/GameLiftStreams.d.ts +86 -91
- package/dist-types/ts3.4/GameLiftStreamsClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddStreamGroupLocationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/AssociateApplicationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateStreamGroupCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateStreamSessionAdminShellCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateStreamSessionConnectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteStreamGroupCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DisassociateApplicationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ExportStreamSessionFilesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetStreamGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListStreamGroupsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListStreamSessionsByAccountCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveStreamGroupLocationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartStreamSessionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TerminateStreamSessionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateStreamGroupCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +7 -24
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForApplicationDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForApplicationReady.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForStreamGroupActive.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForStreamGroupDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForStreamSessionActive.d.ts +3 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -85,10 +85,7 @@ import {
|
|
|
85
85
|
StartStreamSessionCommandInput,
|
|
86
86
|
StartStreamSessionCommandOutput,
|
|
87
87
|
} from "./commands/StartStreamSessionCommand";
|
|
88
|
-
import {
|
|
89
|
-
TagResourceCommandInput,
|
|
90
|
-
TagResourceCommandOutput,
|
|
91
|
-
} from "./commands/TagResourceCommand";
|
|
88
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
92
89
|
import {
|
|
93
90
|
TerminateStreamSessionCommandInput,
|
|
94
91
|
TerminateStreamSessionCommandOutput,
|
|
@@ -110,359 +107,359 @@ import { ResourceNotFoundException } from "./models/errors";
|
|
|
110
107
|
export interface GameLiftStreams {
|
|
111
108
|
addStreamGroupLocations(
|
|
112
109
|
args: AddStreamGroupLocationsCommandInput,
|
|
113
|
-
options?: __HttpHandlerOptions
|
|
110
|
+
options?: __HttpHandlerOptions,
|
|
114
111
|
): Promise<AddStreamGroupLocationsCommandOutput>;
|
|
115
112
|
addStreamGroupLocations(
|
|
116
113
|
args: AddStreamGroupLocationsCommandInput,
|
|
117
|
-
cb: (err: any, data?: AddStreamGroupLocationsCommandOutput) => void
|
|
114
|
+
cb: (err: any, data?: AddStreamGroupLocationsCommandOutput) => void,
|
|
118
115
|
): void;
|
|
119
116
|
addStreamGroupLocations(
|
|
120
117
|
args: AddStreamGroupLocationsCommandInput,
|
|
121
118
|
options: __HttpHandlerOptions,
|
|
122
|
-
cb: (err: any, data?: AddStreamGroupLocationsCommandOutput) => void
|
|
119
|
+
cb: (err: any, data?: AddStreamGroupLocationsCommandOutput) => void,
|
|
123
120
|
): void;
|
|
124
121
|
associateApplications(
|
|
125
122
|
args: AssociateApplicationsCommandInput,
|
|
126
|
-
options?: __HttpHandlerOptions
|
|
123
|
+
options?: __HttpHandlerOptions,
|
|
127
124
|
): Promise<AssociateApplicationsCommandOutput>;
|
|
128
125
|
associateApplications(
|
|
129
126
|
args: AssociateApplicationsCommandInput,
|
|
130
|
-
cb: (err: any, data?: AssociateApplicationsCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: AssociateApplicationsCommandOutput) => void,
|
|
131
128
|
): void;
|
|
132
129
|
associateApplications(
|
|
133
130
|
args: AssociateApplicationsCommandInput,
|
|
134
131
|
options: __HttpHandlerOptions,
|
|
135
|
-
cb: (err: any, data?: AssociateApplicationsCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: AssociateApplicationsCommandOutput) => void,
|
|
136
133
|
): void;
|
|
137
134
|
createApplication(
|
|
138
135
|
args: CreateApplicationCommandInput,
|
|
139
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
140
137
|
): Promise<CreateApplicationCommandOutput>;
|
|
141
138
|
createApplication(
|
|
142
139
|
args: CreateApplicationCommandInput,
|
|
143
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
144
141
|
): void;
|
|
145
142
|
createApplication(
|
|
146
143
|
args: CreateApplicationCommandInput,
|
|
147
144
|
options: __HttpHandlerOptions,
|
|
148
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
149
146
|
): void;
|
|
150
147
|
createStreamGroup(
|
|
151
148
|
args: CreateStreamGroupCommandInput,
|
|
152
|
-
options?: __HttpHandlerOptions
|
|
149
|
+
options?: __HttpHandlerOptions,
|
|
153
150
|
): Promise<CreateStreamGroupCommandOutput>;
|
|
154
151
|
createStreamGroup(
|
|
155
152
|
args: CreateStreamGroupCommandInput,
|
|
156
|
-
cb: (err: any, data?: CreateStreamGroupCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: CreateStreamGroupCommandOutput) => void,
|
|
157
154
|
): void;
|
|
158
155
|
createStreamGroup(
|
|
159
156
|
args: CreateStreamGroupCommandInput,
|
|
160
157
|
options: __HttpHandlerOptions,
|
|
161
|
-
cb: (err: any, data?: CreateStreamGroupCommandOutput) => void
|
|
158
|
+
cb: (err: any, data?: CreateStreamGroupCommandOutput) => void,
|
|
162
159
|
): void;
|
|
163
160
|
createStreamSessionAdminShell(
|
|
164
161
|
args: CreateStreamSessionAdminShellCommandInput,
|
|
165
|
-
options?: __HttpHandlerOptions
|
|
162
|
+
options?: __HttpHandlerOptions,
|
|
166
163
|
): Promise<CreateStreamSessionAdminShellCommandOutput>;
|
|
167
164
|
createStreamSessionAdminShell(
|
|
168
165
|
args: CreateStreamSessionAdminShellCommandInput,
|
|
169
|
-
cb: (err: any, data?: CreateStreamSessionAdminShellCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CreateStreamSessionAdminShellCommandOutput) => void,
|
|
170
167
|
): void;
|
|
171
168
|
createStreamSessionAdminShell(
|
|
172
169
|
args: CreateStreamSessionAdminShellCommandInput,
|
|
173
170
|
options: __HttpHandlerOptions,
|
|
174
|
-
cb: (err: any, data?: CreateStreamSessionAdminShellCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: CreateStreamSessionAdminShellCommandOutput) => void,
|
|
175
172
|
): void;
|
|
176
173
|
createStreamSessionConnection(
|
|
177
174
|
args: CreateStreamSessionConnectionCommandInput,
|
|
178
|
-
options?: __HttpHandlerOptions
|
|
175
|
+
options?: __HttpHandlerOptions,
|
|
179
176
|
): Promise<CreateStreamSessionConnectionCommandOutput>;
|
|
180
177
|
createStreamSessionConnection(
|
|
181
178
|
args: CreateStreamSessionConnectionCommandInput,
|
|
182
|
-
cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void
|
|
179
|
+
cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void,
|
|
183
180
|
): void;
|
|
184
181
|
createStreamSessionConnection(
|
|
185
182
|
args: CreateStreamSessionConnectionCommandInput,
|
|
186
183
|
options: __HttpHandlerOptions,
|
|
187
|
-
cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: CreateStreamSessionConnectionCommandOutput) => void,
|
|
188
185
|
): void;
|
|
189
186
|
deleteApplication(
|
|
190
187
|
args: DeleteApplicationCommandInput,
|
|
191
|
-
options?: __HttpHandlerOptions
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
192
189
|
): Promise<DeleteApplicationCommandOutput>;
|
|
193
190
|
deleteApplication(
|
|
194
191
|
args: DeleteApplicationCommandInput,
|
|
195
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
196
193
|
): void;
|
|
197
194
|
deleteApplication(
|
|
198
195
|
args: DeleteApplicationCommandInput,
|
|
199
196
|
options: __HttpHandlerOptions,
|
|
200
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
201
198
|
): void;
|
|
202
199
|
deleteStreamGroup(
|
|
203
200
|
args: DeleteStreamGroupCommandInput,
|
|
204
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
205
202
|
): Promise<DeleteStreamGroupCommandOutput>;
|
|
206
203
|
deleteStreamGroup(
|
|
207
204
|
args: DeleteStreamGroupCommandInput,
|
|
208
|
-
cb: (err: any, data?: DeleteStreamGroupCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: DeleteStreamGroupCommandOutput) => void,
|
|
209
206
|
): void;
|
|
210
207
|
deleteStreamGroup(
|
|
211
208
|
args: DeleteStreamGroupCommandInput,
|
|
212
209
|
options: __HttpHandlerOptions,
|
|
213
|
-
cb: (err: any, data?: DeleteStreamGroupCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: DeleteStreamGroupCommandOutput) => void,
|
|
214
211
|
): void;
|
|
215
212
|
disassociateApplications(
|
|
216
213
|
args: DisassociateApplicationsCommandInput,
|
|
217
|
-
options?: __HttpHandlerOptions
|
|
214
|
+
options?: __HttpHandlerOptions,
|
|
218
215
|
): Promise<DisassociateApplicationsCommandOutput>;
|
|
219
216
|
disassociateApplications(
|
|
220
217
|
args: DisassociateApplicationsCommandInput,
|
|
221
|
-
cb: (err: any, data?: DisassociateApplicationsCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: DisassociateApplicationsCommandOutput) => void,
|
|
222
219
|
): void;
|
|
223
220
|
disassociateApplications(
|
|
224
221
|
args: DisassociateApplicationsCommandInput,
|
|
225
222
|
options: __HttpHandlerOptions,
|
|
226
|
-
cb: (err: any, data?: DisassociateApplicationsCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: DisassociateApplicationsCommandOutput) => void,
|
|
227
224
|
): void;
|
|
228
225
|
exportStreamSessionFiles(
|
|
229
226
|
args: ExportStreamSessionFilesCommandInput,
|
|
230
|
-
options?: __HttpHandlerOptions
|
|
227
|
+
options?: __HttpHandlerOptions,
|
|
231
228
|
): Promise<ExportStreamSessionFilesCommandOutput>;
|
|
232
229
|
exportStreamSessionFiles(
|
|
233
230
|
args: ExportStreamSessionFilesCommandInput,
|
|
234
|
-
cb: (err: any, data?: ExportStreamSessionFilesCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: ExportStreamSessionFilesCommandOutput) => void,
|
|
235
232
|
): void;
|
|
236
233
|
exportStreamSessionFiles(
|
|
237
234
|
args: ExportStreamSessionFilesCommandInput,
|
|
238
235
|
options: __HttpHandlerOptions,
|
|
239
|
-
cb: (err: any, data?: ExportStreamSessionFilesCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: ExportStreamSessionFilesCommandOutput) => void,
|
|
240
237
|
): void;
|
|
241
238
|
getApplication(
|
|
242
239
|
args: GetApplicationCommandInput,
|
|
243
|
-
options?: __HttpHandlerOptions
|
|
240
|
+
options?: __HttpHandlerOptions,
|
|
244
241
|
): Promise<GetApplicationCommandOutput>;
|
|
245
242
|
getApplication(
|
|
246
243
|
args: GetApplicationCommandInput,
|
|
247
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
248
245
|
): void;
|
|
249
246
|
getApplication(
|
|
250
247
|
args: GetApplicationCommandInput,
|
|
251
248
|
options: __HttpHandlerOptions,
|
|
252
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
249
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
253
250
|
): void;
|
|
254
251
|
getStreamGroup(
|
|
255
252
|
args: GetStreamGroupCommandInput,
|
|
256
|
-
options?: __HttpHandlerOptions
|
|
253
|
+
options?: __HttpHandlerOptions,
|
|
257
254
|
): Promise<GetStreamGroupCommandOutput>;
|
|
258
255
|
getStreamGroup(
|
|
259
256
|
args: GetStreamGroupCommandInput,
|
|
260
|
-
cb: (err: any, data?: GetStreamGroupCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: GetStreamGroupCommandOutput) => void,
|
|
261
258
|
): void;
|
|
262
259
|
getStreamGroup(
|
|
263
260
|
args: GetStreamGroupCommandInput,
|
|
264
261
|
options: __HttpHandlerOptions,
|
|
265
|
-
cb: (err: any, data?: GetStreamGroupCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: GetStreamGroupCommandOutput) => void,
|
|
266
263
|
): void;
|
|
267
264
|
getStreamSession(
|
|
268
265
|
args: GetStreamSessionCommandInput,
|
|
269
|
-
options?: __HttpHandlerOptions
|
|
266
|
+
options?: __HttpHandlerOptions,
|
|
270
267
|
): Promise<GetStreamSessionCommandOutput>;
|
|
271
268
|
getStreamSession(
|
|
272
269
|
args: GetStreamSessionCommandInput,
|
|
273
|
-
cb: (err: any, data?: GetStreamSessionCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: GetStreamSessionCommandOutput) => void,
|
|
274
271
|
): void;
|
|
275
272
|
getStreamSession(
|
|
276
273
|
args: GetStreamSessionCommandInput,
|
|
277
274
|
options: __HttpHandlerOptions,
|
|
278
|
-
cb: (err: any, data?: GetStreamSessionCommandOutput) => void
|
|
275
|
+
cb: (err: any, data?: GetStreamSessionCommandOutput) => void,
|
|
279
276
|
): void;
|
|
280
277
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
281
278
|
listApplications(
|
|
282
279
|
args: ListApplicationsCommandInput,
|
|
283
|
-
options?: __HttpHandlerOptions
|
|
280
|
+
options?: __HttpHandlerOptions,
|
|
284
281
|
): Promise<ListApplicationsCommandOutput>;
|
|
285
282
|
listApplications(
|
|
286
283
|
args: ListApplicationsCommandInput,
|
|
287
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
288
285
|
): void;
|
|
289
286
|
listApplications(
|
|
290
287
|
args: ListApplicationsCommandInput,
|
|
291
288
|
options: __HttpHandlerOptions,
|
|
292
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
293
290
|
): void;
|
|
294
291
|
listStreamGroups(): Promise<ListStreamGroupsCommandOutput>;
|
|
295
292
|
listStreamGroups(
|
|
296
293
|
args: ListStreamGroupsCommandInput,
|
|
297
|
-
options?: __HttpHandlerOptions
|
|
294
|
+
options?: __HttpHandlerOptions,
|
|
298
295
|
): Promise<ListStreamGroupsCommandOutput>;
|
|
299
296
|
listStreamGroups(
|
|
300
297
|
args: ListStreamGroupsCommandInput,
|
|
301
|
-
cb: (err: any, data?: ListStreamGroupsCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: ListStreamGroupsCommandOutput) => void,
|
|
302
299
|
): void;
|
|
303
300
|
listStreamGroups(
|
|
304
301
|
args: ListStreamGroupsCommandInput,
|
|
305
302
|
options: __HttpHandlerOptions,
|
|
306
|
-
cb: (err: any, data?: ListStreamGroupsCommandOutput) => void
|
|
303
|
+
cb: (err: any, data?: ListStreamGroupsCommandOutput) => void,
|
|
307
304
|
): void;
|
|
308
305
|
listStreamSessions(
|
|
309
306
|
args: ListStreamSessionsCommandInput,
|
|
310
|
-
options?: __HttpHandlerOptions
|
|
307
|
+
options?: __HttpHandlerOptions,
|
|
311
308
|
): Promise<ListStreamSessionsCommandOutput>;
|
|
312
309
|
listStreamSessions(
|
|
313
310
|
args: ListStreamSessionsCommandInput,
|
|
314
|
-
cb: (err: any, data?: ListStreamSessionsCommandOutput) => void
|
|
311
|
+
cb: (err: any, data?: ListStreamSessionsCommandOutput) => void,
|
|
315
312
|
): void;
|
|
316
313
|
listStreamSessions(
|
|
317
314
|
args: ListStreamSessionsCommandInput,
|
|
318
315
|
options: __HttpHandlerOptions,
|
|
319
|
-
cb: (err: any, data?: ListStreamSessionsCommandOutput) => void
|
|
316
|
+
cb: (err: any, data?: ListStreamSessionsCommandOutput) => void,
|
|
320
317
|
): void;
|
|
321
318
|
listStreamSessionsByAccount(): Promise<ListStreamSessionsByAccountCommandOutput>;
|
|
322
319
|
listStreamSessionsByAccount(
|
|
323
320
|
args: ListStreamSessionsByAccountCommandInput,
|
|
324
|
-
options?: __HttpHandlerOptions
|
|
321
|
+
options?: __HttpHandlerOptions,
|
|
325
322
|
): Promise<ListStreamSessionsByAccountCommandOutput>;
|
|
326
323
|
listStreamSessionsByAccount(
|
|
327
324
|
args: ListStreamSessionsByAccountCommandInput,
|
|
328
|
-
cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void
|
|
325
|
+
cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void,
|
|
329
326
|
): void;
|
|
330
327
|
listStreamSessionsByAccount(
|
|
331
328
|
args: ListStreamSessionsByAccountCommandInput,
|
|
332
329
|
options: __HttpHandlerOptions,
|
|
333
|
-
cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void
|
|
330
|
+
cb: (err: any, data?: ListStreamSessionsByAccountCommandOutput) => void,
|
|
334
331
|
): void;
|
|
335
332
|
listTagsForResource(
|
|
336
333
|
args: ListTagsForResourceCommandInput,
|
|
337
|
-
options?: __HttpHandlerOptions
|
|
334
|
+
options?: __HttpHandlerOptions,
|
|
338
335
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
339
336
|
listTagsForResource(
|
|
340
337
|
args: ListTagsForResourceCommandInput,
|
|
341
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
342
339
|
): void;
|
|
343
340
|
listTagsForResource(
|
|
344
341
|
args: ListTagsForResourceCommandInput,
|
|
345
342
|
options: __HttpHandlerOptions,
|
|
346
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
347
344
|
): void;
|
|
348
345
|
removeStreamGroupLocations(
|
|
349
346
|
args: RemoveStreamGroupLocationsCommandInput,
|
|
350
|
-
options?: __HttpHandlerOptions
|
|
347
|
+
options?: __HttpHandlerOptions,
|
|
351
348
|
): Promise<RemoveStreamGroupLocationsCommandOutput>;
|
|
352
349
|
removeStreamGroupLocations(
|
|
353
350
|
args: RemoveStreamGroupLocationsCommandInput,
|
|
354
|
-
cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void
|
|
351
|
+
cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void,
|
|
355
352
|
): void;
|
|
356
353
|
removeStreamGroupLocations(
|
|
357
354
|
args: RemoveStreamGroupLocationsCommandInput,
|
|
358
355
|
options: __HttpHandlerOptions,
|
|
359
|
-
cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void
|
|
356
|
+
cb: (err: any, data?: RemoveStreamGroupLocationsCommandOutput) => void,
|
|
360
357
|
): void;
|
|
361
358
|
startStreamSession(
|
|
362
359
|
args: StartStreamSessionCommandInput,
|
|
363
|
-
options?: __HttpHandlerOptions
|
|
360
|
+
options?: __HttpHandlerOptions,
|
|
364
361
|
): Promise<StartStreamSessionCommandOutput>;
|
|
365
362
|
startStreamSession(
|
|
366
363
|
args: StartStreamSessionCommandInput,
|
|
367
|
-
cb: (err: any, data?: StartStreamSessionCommandOutput) => void
|
|
364
|
+
cb: (err: any, data?: StartStreamSessionCommandOutput) => void,
|
|
368
365
|
): void;
|
|
369
366
|
startStreamSession(
|
|
370
367
|
args: StartStreamSessionCommandInput,
|
|
371
368
|
options: __HttpHandlerOptions,
|
|
372
|
-
cb: (err: any, data?: StartStreamSessionCommandOutput) => void
|
|
369
|
+
cb: (err: any, data?: StartStreamSessionCommandOutput) => void,
|
|
373
370
|
): void;
|
|
374
371
|
tagResource(
|
|
375
372
|
args: TagResourceCommandInput,
|
|
376
|
-
options?: __HttpHandlerOptions
|
|
373
|
+
options?: __HttpHandlerOptions,
|
|
377
374
|
): Promise<TagResourceCommandOutput>;
|
|
378
375
|
tagResource(
|
|
379
376
|
args: TagResourceCommandInput,
|
|
380
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
377
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
381
378
|
): void;
|
|
382
379
|
tagResource(
|
|
383
380
|
args: TagResourceCommandInput,
|
|
384
381
|
options: __HttpHandlerOptions,
|
|
385
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
386
383
|
): void;
|
|
387
384
|
terminateStreamSession(
|
|
388
385
|
args: TerminateStreamSessionCommandInput,
|
|
389
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
390
387
|
): Promise<TerminateStreamSessionCommandOutput>;
|
|
391
388
|
terminateStreamSession(
|
|
392
389
|
args: TerminateStreamSessionCommandInput,
|
|
393
|
-
cb: (err: any, data?: TerminateStreamSessionCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: TerminateStreamSessionCommandOutput) => void,
|
|
394
391
|
): void;
|
|
395
392
|
terminateStreamSession(
|
|
396
393
|
args: TerminateStreamSessionCommandInput,
|
|
397
394
|
options: __HttpHandlerOptions,
|
|
398
|
-
cb: (err: any, data?: TerminateStreamSessionCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: TerminateStreamSessionCommandOutput) => void,
|
|
399
396
|
): void;
|
|
400
397
|
untagResource(
|
|
401
398
|
args: UntagResourceCommandInput,
|
|
402
|
-
options?: __HttpHandlerOptions
|
|
399
|
+
options?: __HttpHandlerOptions,
|
|
403
400
|
): Promise<UntagResourceCommandOutput>;
|
|
404
401
|
untagResource(
|
|
405
402
|
args: UntagResourceCommandInput,
|
|
406
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
407
404
|
): void;
|
|
408
405
|
untagResource(
|
|
409
406
|
args: UntagResourceCommandInput,
|
|
410
407
|
options: __HttpHandlerOptions,
|
|
411
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
412
409
|
): void;
|
|
413
410
|
updateApplication(
|
|
414
411
|
args: UpdateApplicationCommandInput,
|
|
415
|
-
options?: __HttpHandlerOptions
|
|
412
|
+
options?: __HttpHandlerOptions,
|
|
416
413
|
): Promise<UpdateApplicationCommandOutput>;
|
|
417
414
|
updateApplication(
|
|
418
415
|
args: UpdateApplicationCommandInput,
|
|
419
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
416
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
420
417
|
): void;
|
|
421
418
|
updateApplication(
|
|
422
419
|
args: UpdateApplicationCommandInput,
|
|
423
420
|
options: __HttpHandlerOptions,
|
|
424
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
421
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
425
422
|
): void;
|
|
426
423
|
updateStreamGroup(
|
|
427
424
|
args: UpdateStreamGroupCommandInput,
|
|
428
|
-
options?: __HttpHandlerOptions
|
|
425
|
+
options?: __HttpHandlerOptions,
|
|
429
426
|
): Promise<UpdateStreamGroupCommandOutput>;
|
|
430
427
|
updateStreamGroup(
|
|
431
428
|
args: UpdateStreamGroupCommandInput,
|
|
432
|
-
cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void
|
|
429
|
+
cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void,
|
|
433
430
|
): void;
|
|
434
431
|
updateStreamGroup(
|
|
435
432
|
args: UpdateStreamGroupCommandInput,
|
|
436
433
|
options: __HttpHandlerOptions,
|
|
437
|
-
cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void
|
|
434
|
+
cb: (err: any, data?: UpdateStreamGroupCommandOutput) => void,
|
|
438
435
|
): void;
|
|
439
436
|
paginateListApplications(
|
|
440
437
|
args?: ListApplicationsCommandInput,
|
|
441
438
|
paginationConfig?: Pick<
|
|
442
439
|
PaginationConfiguration,
|
|
443
440
|
Exclude<keyof PaginationConfiguration, "client">
|
|
444
|
-
|
|
441
|
+
>,
|
|
445
442
|
): Paginator<ListApplicationsCommandOutput>;
|
|
446
443
|
paginateListStreamGroups(
|
|
447
444
|
args?: ListStreamGroupsCommandInput,
|
|
448
445
|
paginationConfig?: Pick<
|
|
449
446
|
PaginationConfiguration,
|
|
450
447
|
Exclude<keyof PaginationConfiguration, "client">
|
|
451
|
-
|
|
448
|
+
>,
|
|
452
449
|
): Paginator<ListStreamGroupsCommandOutput>;
|
|
453
450
|
paginateListStreamSessions(
|
|
454
451
|
args: ListStreamSessionsCommandInput,
|
|
455
452
|
paginationConfig?: Pick<
|
|
456
453
|
PaginationConfiguration,
|
|
457
454
|
Exclude<keyof PaginationConfiguration, "client">
|
|
458
|
-
|
|
455
|
+
>,
|
|
459
456
|
): Paginator<ListStreamSessionsCommandOutput>;
|
|
460
457
|
paginateListStreamSessionsByAccount(
|
|
461
458
|
args?: ListStreamSessionsByAccountCommandInput,
|
|
462
459
|
paginationConfig?: Pick<
|
|
463
460
|
PaginationConfiguration,
|
|
464
461
|
Exclude<keyof PaginationConfiguration, "client">
|
|
465
|
-
|
|
462
|
+
>,
|
|
466
463
|
): Paginator<ListStreamSessionsByAccountCommandOutput>;
|
|
467
464
|
waitUntilApplicationReady(
|
|
468
465
|
args: GetApplicationCommandInput,
|
|
@@ -471,7 +468,7 @@ export interface GameLiftStreams {
|
|
|
471
468
|
| Pick<
|
|
472
469
|
WaiterConfiguration<GameLiftStreams>,
|
|
473
470
|
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
474
|
-
|
|
471
|
+
>,
|
|
475
472
|
): Promise<WaiterResult<GetApplicationCommandOutput>>;
|
|
476
473
|
waitUntilApplicationDeleted(
|
|
477
474
|
args: GetApplicationCommandInput,
|
|
@@ -480,7 +477,7 @@ export interface GameLiftStreams {
|
|
|
480
477
|
| Pick<
|
|
481
478
|
WaiterConfiguration<GameLiftStreams>,
|
|
482
479
|
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
483
|
-
|
|
480
|
+
>,
|
|
484
481
|
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
485
482
|
waitUntilStreamGroupActive(
|
|
486
483
|
args: GetStreamGroupCommandInput,
|
|
@@ -489,7 +486,7 @@ export interface GameLiftStreams {
|
|
|
489
486
|
| Pick<
|
|
490
487
|
WaiterConfiguration<GameLiftStreams>,
|
|
491
488
|
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
492
|
-
|
|
489
|
+
>,
|
|
493
490
|
): Promise<WaiterResult<GetStreamGroupCommandOutput>>;
|
|
494
491
|
waitUntilStreamGroupDeleted(
|
|
495
492
|
args: GetStreamGroupCommandInput,
|
|
@@ -498,7 +495,7 @@ export interface GameLiftStreams {
|
|
|
498
495
|
| Pick<
|
|
499
496
|
WaiterConfiguration<GameLiftStreams>,
|
|
500
497
|
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
501
|
-
|
|
498
|
+
>,
|
|
502
499
|
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
503
500
|
waitUntilStreamSessionActive(
|
|
504
501
|
args: GetStreamSessionCommandInput,
|
|
@@ -507,9 +504,7 @@ export interface GameLiftStreams {
|
|
|
507
504
|
| Pick<
|
|
508
505
|
WaiterConfiguration<GameLiftStreams>,
|
|
509
506
|
Exclude<keyof WaiterConfiguration<GameLiftStreams>, "client">
|
|
510
|
-
|
|
507
|
+
>,
|
|
511
508
|
): Promise<WaiterResult<GetStreamSessionCommandOutput>>;
|
|
512
509
|
}
|
|
513
|
-
export declare class GameLiftStreams
|
|
514
|
-
extends GameLiftStreamsClient
|
|
515
|
-
implements GameLiftStreams {}
|
|
510
|
+
export declare class GameLiftStreams extends GameLiftStreamsClient implements GameLiftStreams {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -116,10 +113,7 @@ import {
|
|
|
116
113
|
StartStreamSessionCommandInput,
|
|
117
114
|
StartStreamSessionCommandOutput,
|
|
118
115
|
} from "./commands/StartStreamSessionCommand";
|
|
119
|
-
import {
|
|
120
|
-
TagResourceCommandInput,
|
|
121
|
-
TagResourceCommandOutput,
|
|
122
|
-
} from "./commands/TagResourceCommand";
|
|
116
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
123
117
|
import {
|
|
124
118
|
TerminateStreamSessionCommandInput,
|
|
125
119
|
TerminateStreamSessionCommandOutput,
|
|
@@ -195,8 +189,7 @@ export type ServiceOutputTypes =
|
|
|
195
189
|
| UntagResourceCommandOutput
|
|
196
190
|
| UpdateApplicationCommandOutput
|
|
197
191
|
| UpdateStreamGroupCommandOutput;
|
|
198
|
-
export interface ClientDefaults
|
|
199
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
192
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
200
193
|
requestHandler?: __HttpHandlerUserInput;
|
|
201
194
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
202
195
|
urlParser?: __UrlParser;
|
|
@@ -221,9 +214,7 @@ export interface ClientDefaults
|
|
|
221
214
|
extensions?: RuntimeExtension[];
|
|
222
215
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
223
216
|
}
|
|
224
|
-
export type GameLiftStreamsClientConfigType = Partial<
|
|
225
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
226
|
-
> &
|
|
217
|
+
export type GameLiftStreamsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
227
218
|
ClientDefaults &
|
|
228
219
|
UserAgentInputConfig &
|
|
229
220
|
RetryInputConfig &
|
|
@@ -232,8 +223,7 @@ export type GameLiftStreamsClientConfigType = Partial<
|
|
|
232
223
|
EndpointInputConfig<EndpointParameters> &
|
|
233
224
|
HttpAuthSchemeInputConfig &
|
|
234
225
|
ClientInputEndpointParameters;
|
|
235
|
-
export interface GameLiftStreamsClientConfig
|
|
236
|
-
extends GameLiftStreamsClientConfigType {}
|
|
226
|
+
export interface GameLiftStreamsClientConfig extends GameLiftStreamsClientConfigType {}
|
|
237
227
|
export type GameLiftStreamsClientResolvedConfigType =
|
|
238
228
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
239
229
|
Required<ClientDefaults> &
|
|
@@ -245,8 +235,7 @@ export type GameLiftStreamsClientResolvedConfigType =
|
|
|
245
235
|
EndpointResolvedConfig<EndpointParameters> &
|
|
246
236
|
HttpAuthSchemeResolvedConfig &
|
|
247
237
|
ClientResolvedEndpointParameters;
|
|
248
|
-
export interface GameLiftStreamsClientResolvedConfig
|
|
249
|
-
extends GameLiftStreamsClientResolvedConfigType {}
|
|
238
|
+
export interface GameLiftStreamsClientResolvedConfig extends GameLiftStreamsClientResolvedConfigType {}
|
|
250
239
|
export declare class GameLiftStreamsClient extends __Client<
|
|
251
240
|
__HttpHandlerOptions,
|
|
252
241
|
ServiceInputTypes,
|
|
@@ -254,8 +243,6 @@ export declare class GameLiftStreamsClient extends __Client<
|
|
|
254
243
|
GameLiftStreamsClientResolvedConfig
|
|
255
244
|
> {
|
|
256
245
|
readonly config: GameLiftStreamsClientResolvedConfig;
|
|
257
|
-
constructor(
|
|
258
|
-
...[configuration]: __CheckOptionalClientConfig<GameLiftStreamsClientConfig>
|
|
259
|
-
);
|
|
246
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<GameLiftStreamsClientConfig>);
|
|
260
247
|
destroy(): void;
|
|
261
248
|
}
|
|
@@ -7,17 +7,10 @@ import { GameLiftStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): GameLiftStreamsHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { GameLiftStreamsClientResolvedConfig } from "../GameLiftStreamsClient";
|
|
15
|
-
export interface GameLiftStreamsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface GameLiftStreamsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface GameLiftStreamsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface GameLiftStreamsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
GameLiftStreamsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
GameLiftStreamsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultGameLiftStreamsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: GameLiftStreamsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<GameLiftStreamsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface GameLiftStreamsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<GameLiftStreamsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface GameLiftStreamsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<GameLiftStreamsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultGameLiftStreamsHttpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: GameLiftStreamsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: GameLiftStreamsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|