@aws-sdk/client-gameliftstreams 3.987.0 → 3.988.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 +43 -793
- package/dist-cjs/models/GameLiftStreamsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +113 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +586 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +49 -43
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var GameLiftStreamsServiceException = require('./models/GameLiftStreamsServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -109,681 +112,6 @@ class GameLiftStreamsClient extends smithyClient.Client {
|
|
|
109
112
|
}
|
|
110
113
|
}
|
|
111
114
|
|
|
112
|
-
class GameLiftStreamsServiceException extends smithyClient.ServiceException {
|
|
113
|
-
constructor(options) {
|
|
114
|
-
super(options);
|
|
115
|
-
Object.setPrototypeOf(this, GameLiftStreamsServiceException.prototype);
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
class AccessDeniedException extends GameLiftStreamsServiceException {
|
|
120
|
-
name = "AccessDeniedException";
|
|
121
|
-
$fault = "client";
|
|
122
|
-
Message;
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
this.Message = opts.Message;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class InternalServerException extends GameLiftStreamsServiceException {
|
|
134
|
-
name = "InternalServerException";
|
|
135
|
-
$fault = "server";
|
|
136
|
-
$retryable = {};
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InternalServerException",
|
|
141
|
-
$fault: "server",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ResourceNotFoundException extends GameLiftStreamsServiceException {
|
|
149
|
-
name = "ResourceNotFoundException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ServiceQuotaExceededException extends GameLiftStreamsServiceException {
|
|
163
|
-
name = "ServiceQuotaExceededException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ServiceQuotaExceededException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ThrottlingException extends GameLiftStreamsServiceException {
|
|
177
|
-
name = "ThrottlingException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
$retryable = {
|
|
180
|
-
throttling: true,
|
|
181
|
-
};
|
|
182
|
-
Message;
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "ThrottlingException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
190
|
-
this.Message = opts.Message;
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
class ValidationException extends GameLiftStreamsServiceException {
|
|
194
|
-
name = "ValidationException";
|
|
195
|
-
$fault = "client";
|
|
196
|
-
Message;
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "ValidationException",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
204
|
-
this.Message = opts.Message;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
class ConflictException extends GameLiftStreamsServiceException {
|
|
208
|
-
name = "ConflictException";
|
|
209
|
-
$fault = "client";
|
|
210
|
-
Message;
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "ConflictException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
218
|
-
this.Message = opts.Message;
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
const _A = "Arn";
|
|
223
|
-
const _AA = "ApplicationArns";
|
|
224
|
-
const _AAI = "AssociateApplicationsInput";
|
|
225
|
-
const _AAO = "AssociateApplicationsOutput";
|
|
226
|
-
const _AAp = "ApplicationArn";
|
|
227
|
-
const _AAs = "AssociatedApplications";
|
|
228
|
-
const _AAss = "AssociateApplications";
|
|
229
|
-
const _AC = "AllocatedCapacity";
|
|
230
|
-
const _ADE = "AccessDeniedException";
|
|
231
|
-
const _AEV = "AdditionalEnvironmentVariables";
|
|
232
|
-
const _AI = "ApplicationIdentifiers";
|
|
233
|
-
const _AIp = "ApplicationIdentifier";
|
|
234
|
-
const _ALA = "AdditionalLaunchArgs";
|
|
235
|
-
const _ALOU = "ApplicationLogOutputUri";
|
|
236
|
-
const _ALP = "ApplicationLogPaths";
|
|
237
|
-
const _AOC = "AlwaysOnCapacity";
|
|
238
|
-
const _AS = "ApplicationSummary";
|
|
239
|
-
const _ASG = "AssociatedStreamGroups";
|
|
240
|
-
const _ASGL = "AddStreamGroupLocations";
|
|
241
|
-
const _ASGLI = "AddStreamGroupLocationsInput";
|
|
242
|
-
const _ASGLO = "AddStreamGroupLocationsOutput";
|
|
243
|
-
const _ASL = "ApplicationSummaryList";
|
|
244
|
-
const _ASU = "ApplicationSourceUri";
|
|
245
|
-
const _CA = "CreatedAt";
|
|
246
|
-
const _CAI = "CreateApplicationInput";
|
|
247
|
-
const _CAO = "CreateApplicationOutput";
|
|
248
|
-
const _CAr = "CreateApplication";
|
|
249
|
-
const _CE = "ConflictException";
|
|
250
|
-
const _CSG = "CreateStreamGroup";
|
|
251
|
-
const _CSGI = "CreateStreamGroupInput";
|
|
252
|
-
const _CSGO = "CreateStreamGroupOutput";
|
|
253
|
-
const _CSSC = "CreateStreamSessionConnection";
|
|
254
|
-
const _CSSCI = "CreateStreamSessionConnectionInput";
|
|
255
|
-
const _CSSCO = "CreateStreamSessionConnectionOutput";
|
|
256
|
-
const _CT = "ClientToken";
|
|
257
|
-
const _CTS = "ConnectionTimeoutSeconds";
|
|
258
|
-
const _D = "Description";
|
|
259
|
-
const _DA = "DefaultApplication";
|
|
260
|
-
const _DAI = "DefaultApplicationIdentifier";
|
|
261
|
-
const _DAIe = "DeleteApplicationInput";
|
|
262
|
-
const _DAIi = "DisassociateApplicationsInput";
|
|
263
|
-
const _DAO = "DisassociateApplicationsOutput";
|
|
264
|
-
const _DAe = "DeleteApplication";
|
|
265
|
-
const _DAi = "DisassociateApplications";
|
|
266
|
-
const _DSG = "DeleteStreamGroup";
|
|
267
|
-
const _DSGI = "DeleteStreamGroupInput";
|
|
268
|
-
const _EA = "ExpiresAt";
|
|
269
|
-
const _EFM = "ExportFilesMetadata";
|
|
270
|
-
const _EFS = "ExportFilesStatus";
|
|
271
|
-
const _EP = "ExecutablePath";
|
|
272
|
-
const _ESSF = "ExportStreamSessionFiles";
|
|
273
|
-
const _ESSFI = "ExportStreamSessionFilesInput";
|
|
274
|
-
const _ESSFO = "ExportStreamSessionFilesOutput";
|
|
275
|
-
const _GA = "GetApplication";
|
|
276
|
-
const _GAI = "GetApplicationInput";
|
|
277
|
-
const _GAO = "GetApplicationOutput";
|
|
278
|
-
const _GSG = "GetStreamGroup";
|
|
279
|
-
const _GSGI = "GetStreamGroupInput";
|
|
280
|
-
const _GSGO = "GetStreamGroupOutput";
|
|
281
|
-
const _GSS = "GetStreamSession";
|
|
282
|
-
const _GSSI = "GetStreamSessionInput";
|
|
283
|
-
const _GSSO = "GetStreamSessionOutput";
|
|
284
|
-
const _I = "Identifier";
|
|
285
|
-
const _IC = "IdleCapacity";
|
|
286
|
-
const _ISE = "InternalServerException";
|
|
287
|
-
const _Id = "Id";
|
|
288
|
-
const _It = "Items";
|
|
289
|
-
const _L = "Locations";
|
|
290
|
-
const _LA = "ListApplications";
|
|
291
|
-
const _LAI = "ListApplicationsInput";
|
|
292
|
-
const _LAO = "ListApplicationsOutput";
|
|
293
|
-
const _LC = "LocationConfigurations";
|
|
294
|
-
const _LCo = "LocationConfiguration";
|
|
295
|
-
const _LFLU = "LogFileLocationUri";
|
|
296
|
-
const _LN = "LocationName";
|
|
297
|
-
const _LS = "LocationStates";
|
|
298
|
-
const _LSG = "ListStreamGroups";
|
|
299
|
-
const _LSGI = "ListStreamGroupsInput";
|
|
300
|
-
const _LSGO = "ListStreamGroupsOutput";
|
|
301
|
-
const _LSS = "ListStreamSessions";
|
|
302
|
-
const _LSSBA = "ListStreamSessionsByAccount";
|
|
303
|
-
const _LSSBAI = "ListStreamSessionsByAccountInput";
|
|
304
|
-
const _LSSBAO = "ListStreamSessionsByAccountOutput";
|
|
305
|
-
const _LSSI = "ListStreamSessionsInput";
|
|
306
|
-
const _LSSO = "ListStreamSessionsOutput";
|
|
307
|
-
const _LSo = "LocationState";
|
|
308
|
-
const _LTFR = "ListTagsForResource";
|
|
309
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
310
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
311
|
-
const _LUA = "LastUpdatedAt";
|
|
312
|
-
const _Lo = "Location";
|
|
313
|
-
const _M = "Message";
|
|
314
|
-
const _MC = "MaximumCapacity";
|
|
315
|
-
const _MR = "MaxResults";
|
|
316
|
-
const _NT = "NextToken";
|
|
317
|
-
const _ODC = "OnDemandCapacity";
|
|
318
|
-
const _OU = "OutputUri";
|
|
319
|
-
const _P = "Protocol";
|
|
320
|
-
const _PSC = "PerformanceStatsConfiguration";
|
|
321
|
-
const _RA = "ResourceArn";
|
|
322
|
-
const _RC = "RequestedCapacity";
|
|
323
|
-
const _RE = "RuntimeEnvironment";
|
|
324
|
-
const _RNFE = "ResourceNotFoundException";
|
|
325
|
-
const _RS = "ReplicationStatuses";
|
|
326
|
-
const _RSGL = "RemoveStreamGroupLocations";
|
|
327
|
-
const _RSGLI = "RemoveStreamGroupLocationsInput";
|
|
328
|
-
const _RSe = "ReplicationStatus";
|
|
329
|
-
const _S = "Status";
|
|
330
|
-
const _SC = "StreamClass";
|
|
331
|
-
const _SGI = "StreamGroupId";
|
|
332
|
-
const _SGS = "StreamGroupSummary";
|
|
333
|
-
const _SGSL = "StreamGroupSummaryList";
|
|
334
|
-
const _SLS = "SessionLengthSeconds";
|
|
335
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
336
|
-
const _SR = "SignalRequest";
|
|
337
|
-
const _SRi = "SignalResponse";
|
|
338
|
-
const _SRt = "StatusReason";
|
|
339
|
-
const _SSI = "StreamSessionIdentifier";
|
|
340
|
-
const _SSS = "StreamSessionSummary";
|
|
341
|
-
const _SSSI = "StartStreamSessionInput";
|
|
342
|
-
const _SSSL = "StreamSessionSummaryList";
|
|
343
|
-
const _SSSO = "StartStreamSessionOutput";
|
|
344
|
-
const _SSSt = "StartStreamSession";
|
|
345
|
-
const _SWC = "SharedWithClient";
|
|
346
|
-
const _T = "Tags";
|
|
347
|
-
const _TE = "ThrottlingException";
|
|
348
|
-
const _TIC = "TargetIdleCapacity";
|
|
349
|
-
const _TK = "TagKeys";
|
|
350
|
-
const _TR = "TagResource";
|
|
351
|
-
const _TRR = "TagResourceRequest";
|
|
352
|
-
const _TRRa = "TagResourceResponse";
|
|
353
|
-
const _TSS = "TerminateStreamSession";
|
|
354
|
-
const _TSSI = "TerminateStreamSessionInput";
|
|
355
|
-
const _Ty = "Type";
|
|
356
|
-
const _UA = "UpdateApplication";
|
|
357
|
-
const _UAI = "UpdateApplicationInput";
|
|
358
|
-
const _UAO = "UpdateApplicationOutput";
|
|
359
|
-
const _UI = "UserId";
|
|
360
|
-
const _UR = "UntagResource";
|
|
361
|
-
const _URR = "UntagResourceRequest";
|
|
362
|
-
const _URRn = "UntagResourceResponse";
|
|
363
|
-
const _USG = "UpdateStreamGroup";
|
|
364
|
-
const _USGI = "UpdateStreamGroupInput";
|
|
365
|
-
const _USGO = "UpdateStreamGroupOutput";
|
|
366
|
-
const _V = "Version";
|
|
367
|
-
const _VE = "ValidationException";
|
|
368
|
-
const _WSPU = "WebSdkProtocolUrl";
|
|
369
|
-
const _c = "client";
|
|
370
|
-
const _e = "error";
|
|
371
|
-
const _h = "http";
|
|
372
|
-
const _hE = "httpError";
|
|
373
|
-
const _hQ = "httpQuery";
|
|
374
|
-
const _l = "locations";
|
|
375
|
-
const _s = "server";
|
|
376
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.gameliftstreams";
|
|
377
|
-
const _tK = "tagKeys";
|
|
378
|
-
const n0 = "com.amazonaws.gameliftstreams";
|
|
379
|
-
var SignalRequest = [0, n0, _SR, 8, 0];
|
|
380
|
-
var SignalResponse = [0, n0, _SRi, 8, 0];
|
|
381
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
382
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
383
|
-
[_M],
|
|
384
|
-
[0], 1
|
|
385
|
-
];
|
|
386
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
387
|
-
var AddStreamGroupLocationsInput$ = [3, n0, _ASGLI,
|
|
388
|
-
0,
|
|
389
|
-
[_I, _LC],
|
|
390
|
-
[[0, 1], () => LocationConfigurations], 2
|
|
391
|
-
];
|
|
392
|
-
var AddStreamGroupLocationsOutput$ = [3, n0, _ASGLO,
|
|
393
|
-
0,
|
|
394
|
-
[_I, _L],
|
|
395
|
-
[0, () => LocationStates], 2
|
|
396
|
-
];
|
|
397
|
-
var ApplicationSummary$ = [3, n0, _AS,
|
|
398
|
-
0,
|
|
399
|
-
[_A, _Id, _D, _S, _CA, _LUA, _RE],
|
|
400
|
-
[0, 0, 0, 0, 4, 4, () => RuntimeEnvironment$], 1
|
|
401
|
-
];
|
|
402
|
-
var AssociateApplicationsInput$ = [3, n0, _AAI,
|
|
403
|
-
0,
|
|
404
|
-
[_I, _AI],
|
|
405
|
-
[[0, 1], 64 | 0], 2
|
|
406
|
-
];
|
|
407
|
-
var AssociateApplicationsOutput$ = [3, n0, _AAO,
|
|
408
|
-
0,
|
|
409
|
-
[_A, _AA],
|
|
410
|
-
[0, 64 | 0]
|
|
411
|
-
];
|
|
412
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
413
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
414
|
-
[_M],
|
|
415
|
-
[0], 1
|
|
416
|
-
];
|
|
417
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
418
|
-
var CreateApplicationInput$ = [3, n0, _CAI,
|
|
419
|
-
0,
|
|
420
|
-
[_D, _RE, _EP, _ASU, _ALP, _ALOU, _T, _CT],
|
|
421
|
-
[0, () => RuntimeEnvironment$, 0, 0, 64 | 0, 0, 128 | 0, [0, 4]], 4
|
|
422
|
-
];
|
|
423
|
-
var CreateApplicationOutput$ = [3, n0, _CAO,
|
|
424
|
-
0,
|
|
425
|
-
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
426
|
-
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0], 1
|
|
427
|
-
];
|
|
428
|
-
var CreateStreamGroupInput$ = [3, n0, _CSGI,
|
|
429
|
-
0,
|
|
430
|
-
[_D, _SC, _DAI, _LC, _T, _CT],
|
|
431
|
-
[0, 0, 0, () => LocationConfigurations, 128 | 0, [0, 4]], 2
|
|
432
|
-
];
|
|
433
|
-
var CreateStreamGroupOutput$ = [3, n0, _CSGO,
|
|
434
|
-
0,
|
|
435
|
-
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
436
|
-
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0], 1
|
|
437
|
-
];
|
|
438
|
-
var CreateStreamSessionConnectionInput$ = [3, n0, _CSSCI,
|
|
439
|
-
0,
|
|
440
|
-
[_I, _SSI, _SR, _CT],
|
|
441
|
-
[[0, 1], [0, 1], [() => SignalRequest, 0], [0, 4]], 3
|
|
442
|
-
];
|
|
443
|
-
var CreateStreamSessionConnectionOutput$ = [3, n0, _CSSCO,
|
|
444
|
-
0,
|
|
445
|
-
[_SRi],
|
|
446
|
-
[[() => SignalResponse, 0]]
|
|
447
|
-
];
|
|
448
|
-
var DefaultApplication$ = [3, n0, _DA,
|
|
449
|
-
0,
|
|
450
|
-
[_Id, _A],
|
|
451
|
-
[0, 0]
|
|
452
|
-
];
|
|
453
|
-
var DeleteApplicationInput$ = [3, n0, _DAIe,
|
|
454
|
-
0,
|
|
455
|
-
[_I],
|
|
456
|
-
[[0, 1]], 1
|
|
457
|
-
];
|
|
458
|
-
var DeleteStreamGroupInput$ = [3, n0, _DSGI,
|
|
459
|
-
0,
|
|
460
|
-
[_I],
|
|
461
|
-
[[0, 1]], 1
|
|
462
|
-
];
|
|
463
|
-
var DisassociateApplicationsInput$ = [3, n0, _DAIi,
|
|
464
|
-
0,
|
|
465
|
-
[_I, _AI],
|
|
466
|
-
[[0, 1], 64 | 0], 2
|
|
467
|
-
];
|
|
468
|
-
var DisassociateApplicationsOutput$ = [3, n0, _DAO,
|
|
469
|
-
0,
|
|
470
|
-
[_A, _AA],
|
|
471
|
-
[0, 64 | 0]
|
|
472
|
-
];
|
|
473
|
-
var ExportFilesMetadata$ = [3, n0, _EFM,
|
|
474
|
-
0,
|
|
475
|
-
[_S, _SRt, _OU],
|
|
476
|
-
[0, 0, 0]
|
|
477
|
-
];
|
|
478
|
-
var ExportStreamSessionFilesInput$ = [3, n0, _ESSFI,
|
|
479
|
-
0,
|
|
480
|
-
[_I, _SSI, _OU],
|
|
481
|
-
[[0, 1], [0, 1], 0], 3
|
|
482
|
-
];
|
|
483
|
-
var ExportStreamSessionFilesOutput$ = [3, n0, _ESSFO,
|
|
484
|
-
0,
|
|
485
|
-
[],
|
|
486
|
-
[]
|
|
487
|
-
];
|
|
488
|
-
var GetApplicationInput$ = [3, n0, _GAI,
|
|
489
|
-
0,
|
|
490
|
-
[_I],
|
|
491
|
-
[[0, 1]], 1
|
|
492
|
-
];
|
|
493
|
-
var GetApplicationOutput$ = [3, n0, _GAO,
|
|
494
|
-
0,
|
|
495
|
-
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
496
|
-
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0], 1
|
|
497
|
-
];
|
|
498
|
-
var GetStreamGroupInput$ = [3, n0, _GSGI,
|
|
499
|
-
0,
|
|
500
|
-
[_I],
|
|
501
|
-
[[0, 1]], 1
|
|
502
|
-
];
|
|
503
|
-
var GetStreamGroupOutput$ = [3, n0, _GSGO,
|
|
504
|
-
0,
|
|
505
|
-
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
506
|
-
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0], 1
|
|
507
|
-
];
|
|
508
|
-
var GetStreamSessionInput$ = [3, n0, _GSSI,
|
|
509
|
-
0,
|
|
510
|
-
[_I, _SSI],
|
|
511
|
-
[[0, 1], [0, 1]], 2
|
|
512
|
-
];
|
|
513
|
-
var GetStreamSessionOutput$ = [3, n0, _GSSO,
|
|
514
|
-
0,
|
|
515
|
-
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
516
|
-
[0, 0, 0, 0, 0, 0, 0, 0, [() => SignalRequest, 0], [() => SignalResponse, 0], 1, 1, 64 | 0, 128 | 0, () => PerformanceStatsConfiguration$, 0, 0, 4, 4, 0, () => ExportFilesMetadata$]
|
|
517
|
-
];
|
|
518
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
519
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
520
|
-
[_M],
|
|
521
|
-
[0], 1
|
|
522
|
-
];
|
|
523
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
524
|
-
var ListApplicationsInput$ = [3, n0, _LAI,
|
|
525
|
-
0,
|
|
526
|
-
[_NT, _MR],
|
|
527
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
528
|
-
];
|
|
529
|
-
var ListApplicationsOutput$ = [3, n0, _LAO,
|
|
530
|
-
0,
|
|
531
|
-
[_It, _NT],
|
|
532
|
-
[() => ApplicationSummaryList, 0]
|
|
533
|
-
];
|
|
534
|
-
var ListStreamGroupsInput$ = [3, n0, _LSGI,
|
|
535
|
-
0,
|
|
536
|
-
[_NT, _MR],
|
|
537
|
-
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
538
|
-
];
|
|
539
|
-
var ListStreamGroupsOutput$ = [3, n0, _LSGO,
|
|
540
|
-
0,
|
|
541
|
-
[_It, _NT],
|
|
542
|
-
[() => StreamGroupSummaryList, 0]
|
|
543
|
-
];
|
|
544
|
-
var ListStreamSessionsByAccountInput$ = [3, n0, _LSSBAI,
|
|
545
|
-
0,
|
|
546
|
-
[_S, _EFS, _NT, _MR],
|
|
547
|
-
[[0, { [_hQ]: _S }], [0, { [_hQ]: _EFS }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
548
|
-
];
|
|
549
|
-
var ListStreamSessionsByAccountOutput$ = [3, n0, _LSSBAO,
|
|
550
|
-
0,
|
|
551
|
-
[_It, _NT],
|
|
552
|
-
[() => StreamSessionSummaryList, 0]
|
|
553
|
-
];
|
|
554
|
-
var ListStreamSessionsInput$ = [3, n0, _LSSI,
|
|
555
|
-
0,
|
|
556
|
-
[_I, _S, _EFS, _NT, _MR],
|
|
557
|
-
[[0, 1], [0, { [_hQ]: _S }], [0, { [_hQ]: _EFS }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
558
|
-
];
|
|
559
|
-
var ListStreamSessionsOutput$ = [3, n0, _LSSO,
|
|
560
|
-
0,
|
|
561
|
-
[_It, _NT],
|
|
562
|
-
[() => StreamSessionSummaryList, 0]
|
|
563
|
-
];
|
|
564
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
565
|
-
0,
|
|
566
|
-
[_RA],
|
|
567
|
-
[[0, 1]], 1
|
|
568
|
-
];
|
|
569
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
570
|
-
0,
|
|
571
|
-
[_T],
|
|
572
|
-
[128 | 0]
|
|
573
|
-
];
|
|
574
|
-
var LocationConfiguration$ = [3, n0, _LCo,
|
|
575
|
-
0,
|
|
576
|
-
[_LN, _AOC, _ODC, _TIC, _MC],
|
|
577
|
-
[0, 1, 1, 1, 1], 1
|
|
578
|
-
];
|
|
579
|
-
var LocationState$ = [3, n0, _LSo,
|
|
580
|
-
0,
|
|
581
|
-
[_LN, _S, _AOC, _ODC, _TIC, _MC, _RC, _AC, _IC],
|
|
582
|
-
[0, 0, 1, 1, 1, 1, 1, 1, 1]
|
|
583
|
-
];
|
|
584
|
-
var PerformanceStatsConfiguration$ = [3, n0, _PSC,
|
|
585
|
-
0,
|
|
586
|
-
[_SWC],
|
|
587
|
-
[2]
|
|
588
|
-
];
|
|
589
|
-
var RemoveStreamGroupLocationsInput$ = [3, n0, _RSGLI,
|
|
590
|
-
0,
|
|
591
|
-
[_I, _L],
|
|
592
|
-
[[0, 1], [64 | 0, { [_hQ]: _l }]], 2
|
|
593
|
-
];
|
|
594
|
-
var ReplicationStatus$ = [3, n0, _RSe,
|
|
595
|
-
0,
|
|
596
|
-
[_Lo, _S],
|
|
597
|
-
[0, 0]
|
|
598
|
-
];
|
|
599
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
600
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
601
|
-
[_M],
|
|
602
|
-
[0], 1
|
|
603
|
-
];
|
|
604
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
605
|
-
var RuntimeEnvironment$ = [3, n0, _RE,
|
|
606
|
-
0,
|
|
607
|
-
[_Ty, _V],
|
|
608
|
-
[0, 0], 2
|
|
609
|
-
];
|
|
610
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
611
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
612
|
-
[_M],
|
|
613
|
-
[0], 1
|
|
614
|
-
];
|
|
615
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
616
|
-
var StartStreamSessionInput$ = [3, n0, _SSSI,
|
|
617
|
-
0,
|
|
618
|
-
[_I, _P, _SR, _AIp, _CT, _D, _UI, _L, _CTS, _SLS, _ALA, _AEV, _PSC],
|
|
619
|
-
[[0, 1], 0, [() => SignalRequest, 0], 0, [0, 4], 0, 0, 64 | 0, 1, 1, 64 | 0, 128 | 0, () => PerformanceStatsConfiguration$], 4
|
|
620
|
-
];
|
|
621
|
-
var StartStreamSessionOutput$ = [3, n0, _SSSO,
|
|
622
|
-
0,
|
|
623
|
-
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
624
|
-
[0, 0, 0, 0, 0, 0, 0, 0, [() => SignalRequest, 0], [() => SignalResponse, 0], 1, 1, 64 | 0, 128 | 0, () => PerformanceStatsConfiguration$, 0, 0, 4, 4, 0, () => ExportFilesMetadata$]
|
|
625
|
-
];
|
|
626
|
-
var StreamGroupSummary$ = [3, n0, _SGS,
|
|
627
|
-
0,
|
|
628
|
-
[_A, _Id, _D, _DA, _SC, _S, _CA, _LUA, _EA],
|
|
629
|
-
[0, 0, 0, () => DefaultApplication$, 0, 0, 4, 4, 4], 1
|
|
630
|
-
];
|
|
631
|
-
var StreamSessionSummary$ = [3, n0, _SSS,
|
|
632
|
-
0,
|
|
633
|
-
[_A, _UI, _S, _SRt, _P, _LUA, _CA, _AAp, _EFM, _Lo],
|
|
634
|
-
[0, 0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, 0]
|
|
635
|
-
];
|
|
636
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
637
|
-
0,
|
|
638
|
-
[_RA, _T],
|
|
639
|
-
[[0, 1], 128 | 0], 2
|
|
640
|
-
];
|
|
641
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
642
|
-
0,
|
|
643
|
-
[],
|
|
644
|
-
[]
|
|
645
|
-
];
|
|
646
|
-
var TerminateStreamSessionInput$ = [3, n0, _TSSI,
|
|
647
|
-
0,
|
|
648
|
-
[_I, _SSI],
|
|
649
|
-
[[0, 1], [0, 1]], 2
|
|
650
|
-
];
|
|
651
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
652
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
653
|
-
[_M],
|
|
654
|
-
[0], 1
|
|
655
|
-
];
|
|
656
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
657
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
658
|
-
0,
|
|
659
|
-
[_RA, _TK],
|
|
660
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
661
|
-
];
|
|
662
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
663
|
-
0,
|
|
664
|
-
[],
|
|
665
|
-
[]
|
|
666
|
-
];
|
|
667
|
-
var UpdateApplicationInput$ = [3, n0, _UAI,
|
|
668
|
-
0,
|
|
669
|
-
[_I, _D, _ALP, _ALOU],
|
|
670
|
-
[[0, 1], 0, 64 | 0, 0], 1
|
|
671
|
-
];
|
|
672
|
-
var UpdateApplicationOutput$ = [3, n0, _UAO,
|
|
673
|
-
0,
|
|
674
|
-
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
675
|
-
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0], 1
|
|
676
|
-
];
|
|
677
|
-
var UpdateStreamGroupInput$ = [3, n0, _USGI,
|
|
678
|
-
0,
|
|
679
|
-
[_I, _LC, _D, _DAI],
|
|
680
|
-
[[0, 1], () => LocationConfigurations, 0, 0], 1
|
|
681
|
-
];
|
|
682
|
-
var UpdateStreamGroupOutput$ = [3, n0, _USGO,
|
|
683
|
-
0,
|
|
684
|
-
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
685
|
-
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0], 1
|
|
686
|
-
];
|
|
687
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
688
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
689
|
-
[_M],
|
|
690
|
-
[0], 1
|
|
691
|
-
];
|
|
692
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
693
|
-
var __Unit = "unit";
|
|
694
|
-
var GameLiftStreamsServiceException$ = [-3, _sm, "GameLiftStreamsServiceException", 0, [], []];
|
|
695
|
-
schema.TypeRegistry.for(_sm).registerError(GameLiftStreamsServiceException$, GameLiftStreamsServiceException);
|
|
696
|
-
var ApplicationSummaryList = [1, n0, _ASL,
|
|
697
|
-
0, () => ApplicationSummary$
|
|
698
|
-
];
|
|
699
|
-
var LocationConfigurations = [1, n0, _LC,
|
|
700
|
-
0, () => LocationConfiguration$
|
|
701
|
-
];
|
|
702
|
-
var LocationStates = [1, n0, _LS,
|
|
703
|
-
0, () => LocationState$
|
|
704
|
-
];
|
|
705
|
-
var ReplicationStatuses = [1, n0, _RS,
|
|
706
|
-
0, () => ReplicationStatus$
|
|
707
|
-
];
|
|
708
|
-
var StreamGroupSummaryList = [1, n0, _SGSL,
|
|
709
|
-
0, () => StreamGroupSummary$
|
|
710
|
-
];
|
|
711
|
-
var StreamSessionSummaryList = [1, n0, _SSSL,
|
|
712
|
-
0, () => StreamSessionSummary$
|
|
713
|
-
];
|
|
714
|
-
var AddStreamGroupLocations$ = [9, n0, _ASGL,
|
|
715
|
-
{ [_h]: ["POST", "/streamgroups/{Identifier}/locations", 200] }, () => AddStreamGroupLocationsInput$, () => AddStreamGroupLocationsOutput$
|
|
716
|
-
];
|
|
717
|
-
var AssociateApplications$ = [9, n0, _AAss,
|
|
718
|
-
{ [_h]: ["POST", "/streamgroups/{Identifier}/associations", 200] }, () => AssociateApplicationsInput$, () => AssociateApplicationsOutput$
|
|
719
|
-
];
|
|
720
|
-
var CreateApplication$ = [9, n0, _CAr,
|
|
721
|
-
{ [_h]: ["POST", "/applications", 201] }, () => CreateApplicationInput$, () => CreateApplicationOutput$
|
|
722
|
-
];
|
|
723
|
-
var CreateStreamGroup$ = [9, n0, _CSG,
|
|
724
|
-
{ [_h]: ["POST", "/streamgroups", 201] }, () => CreateStreamGroupInput$, () => CreateStreamGroupOutput$
|
|
725
|
-
];
|
|
726
|
-
var CreateStreamSessionConnection$ = [9, n0, _CSSC,
|
|
727
|
-
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/connections", 200] }, () => CreateStreamSessionConnectionInput$, () => CreateStreamSessionConnectionOutput$
|
|
728
|
-
];
|
|
729
|
-
var DeleteApplication$ = [9, n0, _DAe,
|
|
730
|
-
{ [_h]: ["DELETE", "/applications/{Identifier}", 204] }, () => DeleteApplicationInput$, () => __Unit
|
|
731
|
-
];
|
|
732
|
-
var DeleteStreamGroup$ = [9, n0, _DSG,
|
|
733
|
-
{ [_h]: ["DELETE", "/streamgroups/{Identifier}", 204] }, () => DeleteStreamGroupInput$, () => __Unit
|
|
734
|
-
];
|
|
735
|
-
var DisassociateApplications$ = [9, n0, _DAi,
|
|
736
|
-
{ [_h]: ["POST", "/streamgroups/{Identifier}/disassociations", 200] }, () => DisassociateApplicationsInput$, () => DisassociateApplicationsOutput$
|
|
737
|
-
];
|
|
738
|
-
var ExportStreamSessionFiles$ = [9, n0, _ESSF,
|
|
739
|
-
{ [_h]: ["PUT", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/exportfiles", 200] }, () => ExportStreamSessionFilesInput$, () => ExportStreamSessionFilesOutput$
|
|
740
|
-
];
|
|
741
|
-
var GetApplication$ = [9, n0, _GA,
|
|
742
|
-
{ [_h]: ["GET", "/applications/{Identifier}", 200] }, () => GetApplicationInput$, () => GetApplicationOutput$
|
|
743
|
-
];
|
|
744
|
-
var GetStreamGroup$ = [9, n0, _GSG,
|
|
745
|
-
{ [_h]: ["GET", "/streamgroups/{Identifier}", 200] }, () => GetStreamGroupInput$, () => GetStreamGroupOutput$
|
|
746
|
-
];
|
|
747
|
-
var GetStreamSession$ = [9, n0, _GSS,
|
|
748
|
-
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 200] }, () => GetStreamSessionInput$, () => GetStreamSessionOutput$
|
|
749
|
-
];
|
|
750
|
-
var ListApplications$ = [9, n0, _LA,
|
|
751
|
-
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsInput$, () => ListApplicationsOutput$
|
|
752
|
-
];
|
|
753
|
-
var ListStreamGroups$ = [9, n0, _LSG,
|
|
754
|
-
{ [_h]: ["GET", "/streamgroups", 200] }, () => ListStreamGroupsInput$, () => ListStreamGroupsOutput$
|
|
755
|
-
];
|
|
756
|
-
var ListStreamSessions$ = [9, n0, _LSS,
|
|
757
|
-
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions", 200] }, () => ListStreamSessionsInput$, () => ListStreamSessionsOutput$
|
|
758
|
-
];
|
|
759
|
-
var ListStreamSessionsByAccount$ = [9, n0, _LSSBA,
|
|
760
|
-
{ [_h]: ["GET", "/streamsessions", 200] }, () => ListStreamSessionsByAccountInput$, () => ListStreamSessionsByAccountOutput$
|
|
761
|
-
];
|
|
762
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
763
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
764
|
-
];
|
|
765
|
-
var RemoveStreamGroupLocations$ = [9, n0, _RSGL,
|
|
766
|
-
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/locations", 204] }, () => RemoveStreamGroupLocationsInput$, () => __Unit
|
|
767
|
-
];
|
|
768
|
-
var StartStreamSession$ = [9, n0, _SSSt,
|
|
769
|
-
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions", 201] }, () => StartStreamSessionInput$, () => StartStreamSessionOutput$
|
|
770
|
-
];
|
|
771
|
-
var TagResource$ = [9, n0, _TR,
|
|
772
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
773
|
-
];
|
|
774
|
-
var TerminateStreamSession$ = [9, n0, _TSS,
|
|
775
|
-
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 204] }, () => TerminateStreamSessionInput$, () => __Unit
|
|
776
|
-
];
|
|
777
|
-
var UntagResource$ = [9, n0, _UR,
|
|
778
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
779
|
-
];
|
|
780
|
-
var UpdateApplication$ = [9, n0, _UA,
|
|
781
|
-
{ [_h]: ["PATCH", "/applications/{Identifier}", 200] }, () => UpdateApplicationInput$, () => UpdateApplicationOutput$
|
|
782
|
-
];
|
|
783
|
-
var UpdateStreamGroup$ = [9, n0, _USG,
|
|
784
|
-
{ [_h]: ["PATCH", "/streamgroups/{Identifier}", 200] }, () => UpdateStreamGroupInput$, () => UpdateStreamGroupOutput$
|
|
785
|
-
];
|
|
786
|
-
|
|
787
115
|
class AddStreamGroupLocationsCommand extends smithyClient.Command
|
|
788
116
|
.classBuilder()
|
|
789
117
|
.ep(commonParams)
|
|
@@ -792,7 +120,7 @@ class AddStreamGroupLocationsCommand extends smithyClient.Command
|
|
|
792
120
|
})
|
|
793
121
|
.s("GameLiftStreams", "AddStreamGroupLocations", {})
|
|
794
122
|
.n("GameLiftStreamsClient", "AddStreamGroupLocationsCommand")
|
|
795
|
-
.sc(AddStreamGroupLocations$)
|
|
123
|
+
.sc(schemas_0.AddStreamGroupLocations$)
|
|
796
124
|
.build() {
|
|
797
125
|
}
|
|
798
126
|
|
|
@@ -804,7 +132,7 @@ class AssociateApplicationsCommand extends smithyClient.Command
|
|
|
804
132
|
})
|
|
805
133
|
.s("GameLiftStreams", "AssociateApplications", {})
|
|
806
134
|
.n("GameLiftStreamsClient", "AssociateApplicationsCommand")
|
|
807
|
-
.sc(AssociateApplications$)
|
|
135
|
+
.sc(schemas_0.AssociateApplications$)
|
|
808
136
|
.build() {
|
|
809
137
|
}
|
|
810
138
|
|
|
@@ -816,7 +144,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
816
144
|
})
|
|
817
145
|
.s("GameLiftStreams", "CreateApplication", {})
|
|
818
146
|
.n("GameLiftStreamsClient", "CreateApplicationCommand")
|
|
819
|
-
.sc(CreateApplication$)
|
|
147
|
+
.sc(schemas_0.CreateApplication$)
|
|
820
148
|
.build() {
|
|
821
149
|
}
|
|
822
150
|
|
|
@@ -828,7 +156,7 @@ class CreateStreamGroupCommand extends smithyClient.Command
|
|
|
828
156
|
})
|
|
829
157
|
.s("GameLiftStreams", "CreateStreamGroup", {})
|
|
830
158
|
.n("GameLiftStreamsClient", "CreateStreamGroupCommand")
|
|
831
|
-
.sc(CreateStreamGroup$)
|
|
159
|
+
.sc(schemas_0.CreateStreamGroup$)
|
|
832
160
|
.build() {
|
|
833
161
|
}
|
|
834
162
|
|
|
@@ -840,7 +168,7 @@ class CreateStreamSessionConnectionCommand extends smithyClient.Command
|
|
|
840
168
|
})
|
|
841
169
|
.s("GameLiftStreams", "CreateStreamSessionConnection", {})
|
|
842
170
|
.n("GameLiftStreamsClient", "CreateStreamSessionConnectionCommand")
|
|
843
|
-
.sc(CreateStreamSessionConnection$)
|
|
171
|
+
.sc(schemas_0.CreateStreamSessionConnection$)
|
|
844
172
|
.build() {
|
|
845
173
|
}
|
|
846
174
|
|
|
@@ -852,7 +180,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
852
180
|
})
|
|
853
181
|
.s("GameLiftStreams", "DeleteApplication", {})
|
|
854
182
|
.n("GameLiftStreamsClient", "DeleteApplicationCommand")
|
|
855
|
-
.sc(DeleteApplication$)
|
|
183
|
+
.sc(schemas_0.DeleteApplication$)
|
|
856
184
|
.build() {
|
|
857
185
|
}
|
|
858
186
|
|
|
@@ -864,7 +192,7 @@ class DeleteStreamGroupCommand extends smithyClient.Command
|
|
|
864
192
|
})
|
|
865
193
|
.s("GameLiftStreams", "DeleteStreamGroup", {})
|
|
866
194
|
.n("GameLiftStreamsClient", "DeleteStreamGroupCommand")
|
|
867
|
-
.sc(DeleteStreamGroup$)
|
|
195
|
+
.sc(schemas_0.DeleteStreamGroup$)
|
|
868
196
|
.build() {
|
|
869
197
|
}
|
|
870
198
|
|
|
@@ -876,7 +204,7 @@ class DisassociateApplicationsCommand extends smithyClient.Command
|
|
|
876
204
|
})
|
|
877
205
|
.s("GameLiftStreams", "DisassociateApplications", {})
|
|
878
206
|
.n("GameLiftStreamsClient", "DisassociateApplicationsCommand")
|
|
879
|
-
.sc(DisassociateApplications$)
|
|
207
|
+
.sc(schemas_0.DisassociateApplications$)
|
|
880
208
|
.build() {
|
|
881
209
|
}
|
|
882
210
|
|
|
@@ -888,7 +216,7 @@ class ExportStreamSessionFilesCommand extends smithyClient.Command
|
|
|
888
216
|
})
|
|
889
217
|
.s("GameLiftStreams", "ExportStreamSessionFiles", {})
|
|
890
218
|
.n("GameLiftStreamsClient", "ExportStreamSessionFilesCommand")
|
|
891
|
-
.sc(ExportStreamSessionFiles$)
|
|
219
|
+
.sc(schemas_0.ExportStreamSessionFiles$)
|
|
892
220
|
.build() {
|
|
893
221
|
}
|
|
894
222
|
|
|
@@ -900,7 +228,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
900
228
|
})
|
|
901
229
|
.s("GameLiftStreams", "GetApplication", {})
|
|
902
230
|
.n("GameLiftStreamsClient", "GetApplicationCommand")
|
|
903
|
-
.sc(GetApplication$)
|
|
231
|
+
.sc(schemas_0.GetApplication$)
|
|
904
232
|
.build() {
|
|
905
233
|
}
|
|
906
234
|
|
|
@@ -912,7 +240,7 @@ class GetStreamGroupCommand extends smithyClient.Command
|
|
|
912
240
|
})
|
|
913
241
|
.s("GameLiftStreams", "GetStreamGroup", {})
|
|
914
242
|
.n("GameLiftStreamsClient", "GetStreamGroupCommand")
|
|
915
|
-
.sc(GetStreamGroup$)
|
|
243
|
+
.sc(schemas_0.GetStreamGroup$)
|
|
916
244
|
.build() {
|
|
917
245
|
}
|
|
918
246
|
|
|
@@ -924,7 +252,7 @@ class GetStreamSessionCommand extends smithyClient.Command
|
|
|
924
252
|
})
|
|
925
253
|
.s("GameLiftStreams", "GetStreamSession", {})
|
|
926
254
|
.n("GameLiftStreamsClient", "GetStreamSessionCommand")
|
|
927
|
-
.sc(GetStreamSession$)
|
|
255
|
+
.sc(schemas_0.GetStreamSession$)
|
|
928
256
|
.build() {
|
|
929
257
|
}
|
|
930
258
|
|
|
@@ -936,7 +264,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
936
264
|
})
|
|
937
265
|
.s("GameLiftStreams", "ListApplications", {})
|
|
938
266
|
.n("GameLiftStreamsClient", "ListApplicationsCommand")
|
|
939
|
-
.sc(ListApplications$)
|
|
267
|
+
.sc(schemas_0.ListApplications$)
|
|
940
268
|
.build() {
|
|
941
269
|
}
|
|
942
270
|
|
|
@@ -948,7 +276,7 @@ class ListStreamGroupsCommand extends smithyClient.Command
|
|
|
948
276
|
})
|
|
949
277
|
.s("GameLiftStreams", "ListStreamGroups", {})
|
|
950
278
|
.n("GameLiftStreamsClient", "ListStreamGroupsCommand")
|
|
951
|
-
.sc(ListStreamGroups$)
|
|
279
|
+
.sc(schemas_0.ListStreamGroups$)
|
|
952
280
|
.build() {
|
|
953
281
|
}
|
|
954
282
|
|
|
@@ -960,7 +288,7 @@ class ListStreamSessionsByAccountCommand extends smithyClient.Command
|
|
|
960
288
|
})
|
|
961
289
|
.s("GameLiftStreams", "ListStreamSessionsByAccount", {})
|
|
962
290
|
.n("GameLiftStreamsClient", "ListStreamSessionsByAccountCommand")
|
|
963
|
-
.sc(ListStreamSessionsByAccount$)
|
|
291
|
+
.sc(schemas_0.ListStreamSessionsByAccount$)
|
|
964
292
|
.build() {
|
|
965
293
|
}
|
|
966
294
|
|
|
@@ -972,7 +300,7 @@ class ListStreamSessionsCommand extends smithyClient.Command
|
|
|
972
300
|
})
|
|
973
301
|
.s("GameLiftStreams", "ListStreamSessions", {})
|
|
974
302
|
.n("GameLiftStreamsClient", "ListStreamSessionsCommand")
|
|
975
|
-
.sc(ListStreamSessions$)
|
|
303
|
+
.sc(schemas_0.ListStreamSessions$)
|
|
976
304
|
.build() {
|
|
977
305
|
}
|
|
978
306
|
|
|
@@ -984,7 +312,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
984
312
|
})
|
|
985
313
|
.s("GameLiftStreams", "ListTagsForResource", {})
|
|
986
314
|
.n("GameLiftStreamsClient", "ListTagsForResourceCommand")
|
|
987
|
-
.sc(ListTagsForResource$)
|
|
315
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
988
316
|
.build() {
|
|
989
317
|
}
|
|
990
318
|
|
|
@@ -996,7 +324,7 @@ class RemoveStreamGroupLocationsCommand extends smithyClient.Command
|
|
|
996
324
|
})
|
|
997
325
|
.s("GameLiftStreams", "RemoveStreamGroupLocations", {})
|
|
998
326
|
.n("GameLiftStreamsClient", "RemoveStreamGroupLocationsCommand")
|
|
999
|
-
.sc(RemoveStreamGroupLocations$)
|
|
327
|
+
.sc(schemas_0.RemoveStreamGroupLocations$)
|
|
1000
328
|
.build() {
|
|
1001
329
|
}
|
|
1002
330
|
|
|
@@ -1008,7 +336,7 @@ class StartStreamSessionCommand extends smithyClient.Command
|
|
|
1008
336
|
})
|
|
1009
337
|
.s("GameLiftStreams", "StartStreamSession", {})
|
|
1010
338
|
.n("GameLiftStreamsClient", "StartStreamSessionCommand")
|
|
1011
|
-
.sc(StartStreamSession$)
|
|
339
|
+
.sc(schemas_0.StartStreamSession$)
|
|
1012
340
|
.build() {
|
|
1013
341
|
}
|
|
1014
342
|
|
|
@@ -1020,7 +348,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1020
348
|
})
|
|
1021
349
|
.s("GameLiftStreams", "TagResource", {})
|
|
1022
350
|
.n("GameLiftStreamsClient", "TagResourceCommand")
|
|
1023
|
-
.sc(TagResource$)
|
|
351
|
+
.sc(schemas_0.TagResource$)
|
|
1024
352
|
.build() {
|
|
1025
353
|
}
|
|
1026
354
|
|
|
@@ -1032,7 +360,7 @@ class TerminateStreamSessionCommand extends smithyClient.Command
|
|
|
1032
360
|
})
|
|
1033
361
|
.s("GameLiftStreams", "TerminateStreamSession", {})
|
|
1034
362
|
.n("GameLiftStreamsClient", "TerminateStreamSessionCommand")
|
|
1035
|
-
.sc(TerminateStreamSession$)
|
|
363
|
+
.sc(schemas_0.TerminateStreamSession$)
|
|
1036
364
|
.build() {
|
|
1037
365
|
}
|
|
1038
366
|
|
|
@@ -1044,7 +372,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1044
372
|
})
|
|
1045
373
|
.s("GameLiftStreams", "UntagResource", {})
|
|
1046
374
|
.n("GameLiftStreamsClient", "UntagResourceCommand")
|
|
1047
|
-
.sc(UntagResource$)
|
|
375
|
+
.sc(schemas_0.UntagResource$)
|
|
1048
376
|
.build() {
|
|
1049
377
|
}
|
|
1050
378
|
|
|
@@ -1056,7 +384,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1056
384
|
})
|
|
1057
385
|
.s("GameLiftStreams", "UpdateApplication", {})
|
|
1058
386
|
.n("GameLiftStreamsClient", "UpdateApplicationCommand")
|
|
1059
|
-
.sc(UpdateApplication$)
|
|
387
|
+
.sc(schemas_0.UpdateApplication$)
|
|
1060
388
|
.build() {
|
|
1061
389
|
}
|
|
1062
390
|
|
|
@@ -1068,7 +396,7 @@ class UpdateStreamGroupCommand extends smithyClient.Command
|
|
|
1068
396
|
})
|
|
1069
397
|
.s("GameLiftStreams", "UpdateStreamGroup", {})
|
|
1070
398
|
.n("GameLiftStreamsClient", "UpdateStreamGroupCommand")
|
|
1071
|
-
.sc(UpdateStreamGroup$)
|
|
399
|
+
.sc(schemas_0.UpdateStreamGroup$)
|
|
1072
400
|
.build() {
|
|
1073
401
|
}
|
|
1074
402
|
|
|
@@ -1399,138 +727,48 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1399
727
|
enumerable: true,
|
|
1400
728
|
get: function () { return smithyClient.Client; }
|
|
1401
729
|
});
|
|
1402
|
-
exports
|
|
1403
|
-
|
|
1404
|
-
|
|
730
|
+
Object.defineProperty(exports, "GameLiftStreamsServiceException", {
|
|
731
|
+
enumerable: true,
|
|
732
|
+
get: function () { return GameLiftStreamsServiceException.GameLiftStreamsServiceException; }
|
|
733
|
+
});
|
|
1405
734
|
exports.AddStreamGroupLocationsCommand = AddStreamGroupLocationsCommand;
|
|
1406
|
-
exports.AddStreamGroupLocationsInput$ = AddStreamGroupLocationsInput$;
|
|
1407
|
-
exports.AddStreamGroupLocationsOutput$ = AddStreamGroupLocationsOutput$;
|
|
1408
735
|
exports.ApplicationStatus = ApplicationStatus;
|
|
1409
736
|
exports.ApplicationStatusReason = ApplicationStatusReason;
|
|
1410
|
-
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1411
|
-
exports.AssociateApplications$ = AssociateApplications$;
|
|
1412
737
|
exports.AssociateApplicationsCommand = AssociateApplicationsCommand;
|
|
1413
|
-
exports.AssociateApplicationsInput$ = AssociateApplicationsInput$;
|
|
1414
|
-
exports.AssociateApplicationsOutput$ = AssociateApplicationsOutput$;
|
|
1415
|
-
exports.ConflictException = ConflictException;
|
|
1416
|
-
exports.ConflictException$ = ConflictException$;
|
|
1417
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
1418
738
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1419
|
-
exports.CreateApplicationInput$ = CreateApplicationInput$;
|
|
1420
|
-
exports.CreateApplicationOutput$ = CreateApplicationOutput$;
|
|
1421
|
-
exports.CreateStreamGroup$ = CreateStreamGroup$;
|
|
1422
739
|
exports.CreateStreamGroupCommand = CreateStreamGroupCommand;
|
|
1423
|
-
exports.CreateStreamGroupInput$ = CreateStreamGroupInput$;
|
|
1424
|
-
exports.CreateStreamGroupOutput$ = CreateStreamGroupOutput$;
|
|
1425
|
-
exports.CreateStreamSessionConnection$ = CreateStreamSessionConnection$;
|
|
1426
740
|
exports.CreateStreamSessionConnectionCommand = CreateStreamSessionConnectionCommand;
|
|
1427
|
-
exports.CreateStreamSessionConnectionInput$ = CreateStreamSessionConnectionInput$;
|
|
1428
|
-
exports.CreateStreamSessionConnectionOutput$ = CreateStreamSessionConnectionOutput$;
|
|
1429
|
-
exports.DefaultApplication$ = DefaultApplication$;
|
|
1430
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
1431
741
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1432
|
-
exports.DeleteApplicationInput$ = DeleteApplicationInput$;
|
|
1433
|
-
exports.DeleteStreamGroup$ = DeleteStreamGroup$;
|
|
1434
742
|
exports.DeleteStreamGroupCommand = DeleteStreamGroupCommand;
|
|
1435
|
-
exports.DeleteStreamGroupInput$ = DeleteStreamGroupInput$;
|
|
1436
|
-
exports.DisassociateApplications$ = DisassociateApplications$;
|
|
1437
743
|
exports.DisassociateApplicationsCommand = DisassociateApplicationsCommand;
|
|
1438
|
-
exports.DisassociateApplicationsInput$ = DisassociateApplicationsInput$;
|
|
1439
|
-
exports.DisassociateApplicationsOutput$ = DisassociateApplicationsOutput$;
|
|
1440
|
-
exports.ExportFilesMetadata$ = ExportFilesMetadata$;
|
|
1441
744
|
exports.ExportFilesStatus = ExportFilesStatus;
|
|
1442
|
-
exports.ExportStreamSessionFiles$ = ExportStreamSessionFiles$;
|
|
1443
745
|
exports.ExportStreamSessionFilesCommand = ExportStreamSessionFilesCommand;
|
|
1444
|
-
exports.ExportStreamSessionFilesInput$ = ExportStreamSessionFilesInput$;
|
|
1445
|
-
exports.ExportStreamSessionFilesOutput$ = ExportStreamSessionFilesOutput$;
|
|
1446
746
|
exports.GameLiftStreams = GameLiftStreams;
|
|
1447
747
|
exports.GameLiftStreamsClient = GameLiftStreamsClient;
|
|
1448
|
-
exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException;
|
|
1449
|
-
exports.GameLiftStreamsServiceException$ = GameLiftStreamsServiceException$;
|
|
1450
|
-
exports.GetApplication$ = GetApplication$;
|
|
1451
748
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1452
|
-
exports.GetApplicationInput$ = GetApplicationInput$;
|
|
1453
|
-
exports.GetApplicationOutput$ = GetApplicationOutput$;
|
|
1454
|
-
exports.GetStreamGroup$ = GetStreamGroup$;
|
|
1455
749
|
exports.GetStreamGroupCommand = GetStreamGroupCommand;
|
|
1456
|
-
exports.GetStreamGroupInput$ = GetStreamGroupInput$;
|
|
1457
|
-
exports.GetStreamGroupOutput$ = GetStreamGroupOutput$;
|
|
1458
|
-
exports.GetStreamSession$ = GetStreamSession$;
|
|
1459
750
|
exports.GetStreamSessionCommand = GetStreamSessionCommand;
|
|
1460
|
-
exports.GetStreamSessionInput$ = GetStreamSessionInput$;
|
|
1461
|
-
exports.GetStreamSessionOutput$ = GetStreamSessionOutput$;
|
|
1462
|
-
exports.InternalServerException = InternalServerException;
|
|
1463
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1464
|
-
exports.ListApplications$ = ListApplications$;
|
|
1465
751
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1466
|
-
exports.ListApplicationsInput$ = ListApplicationsInput$;
|
|
1467
|
-
exports.ListApplicationsOutput$ = ListApplicationsOutput$;
|
|
1468
|
-
exports.ListStreamGroups$ = ListStreamGroups$;
|
|
1469
752
|
exports.ListStreamGroupsCommand = ListStreamGroupsCommand;
|
|
1470
|
-
exports.ListStreamGroupsInput$ = ListStreamGroupsInput$;
|
|
1471
|
-
exports.ListStreamGroupsOutput$ = ListStreamGroupsOutput$;
|
|
1472
|
-
exports.ListStreamSessions$ = ListStreamSessions$;
|
|
1473
|
-
exports.ListStreamSessionsByAccount$ = ListStreamSessionsByAccount$;
|
|
1474
753
|
exports.ListStreamSessionsByAccountCommand = ListStreamSessionsByAccountCommand;
|
|
1475
|
-
exports.ListStreamSessionsByAccountInput$ = ListStreamSessionsByAccountInput$;
|
|
1476
|
-
exports.ListStreamSessionsByAccountOutput$ = ListStreamSessionsByAccountOutput$;
|
|
1477
754
|
exports.ListStreamSessionsCommand = ListStreamSessionsCommand;
|
|
1478
|
-
exports.ListStreamSessionsInput$ = ListStreamSessionsInput$;
|
|
1479
|
-
exports.ListStreamSessionsOutput$ = ListStreamSessionsOutput$;
|
|
1480
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1481
755
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1482
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1483
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1484
|
-
exports.LocationConfiguration$ = LocationConfiguration$;
|
|
1485
|
-
exports.LocationState$ = LocationState$;
|
|
1486
|
-
exports.PerformanceStatsConfiguration$ = PerformanceStatsConfiguration$;
|
|
1487
756
|
exports.Protocol = Protocol;
|
|
1488
|
-
exports.RemoveStreamGroupLocations$ = RemoveStreamGroupLocations$;
|
|
1489
757
|
exports.RemoveStreamGroupLocationsCommand = RemoveStreamGroupLocationsCommand;
|
|
1490
|
-
exports.RemoveStreamGroupLocationsInput$ = RemoveStreamGroupLocationsInput$;
|
|
1491
|
-
exports.ReplicationStatus$ = ReplicationStatus$;
|
|
1492
758
|
exports.ReplicationStatusType = ReplicationStatusType;
|
|
1493
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1494
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1495
|
-
exports.RuntimeEnvironment$ = RuntimeEnvironment$;
|
|
1496
759
|
exports.RuntimeEnvironmentType = RuntimeEnvironmentType;
|
|
1497
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1498
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1499
|
-
exports.StartStreamSession$ = StartStreamSession$;
|
|
1500
760
|
exports.StartStreamSessionCommand = StartStreamSessionCommand;
|
|
1501
|
-
exports.StartStreamSessionInput$ = StartStreamSessionInput$;
|
|
1502
|
-
exports.StartStreamSessionOutput$ = StartStreamSessionOutput$;
|
|
1503
761
|
exports.StreamClass = StreamClass;
|
|
1504
762
|
exports.StreamGroupLocationStatus = StreamGroupLocationStatus;
|
|
1505
763
|
exports.StreamGroupStatus = StreamGroupStatus;
|
|
1506
764
|
exports.StreamGroupStatusReason = StreamGroupStatusReason;
|
|
1507
|
-
exports.StreamGroupSummary$ = StreamGroupSummary$;
|
|
1508
765
|
exports.StreamSessionStatus = StreamSessionStatus;
|
|
1509
766
|
exports.StreamSessionStatusReason = StreamSessionStatusReason;
|
|
1510
|
-
exports.StreamSessionSummary$ = StreamSessionSummary$;
|
|
1511
|
-
exports.TagResource$ = TagResource$;
|
|
1512
767
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1513
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1514
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1515
|
-
exports.TerminateStreamSession$ = TerminateStreamSession$;
|
|
1516
768
|
exports.TerminateStreamSessionCommand = TerminateStreamSessionCommand;
|
|
1517
|
-
exports.TerminateStreamSessionInput$ = TerminateStreamSessionInput$;
|
|
1518
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1519
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1520
|
-
exports.UntagResource$ = UntagResource$;
|
|
1521
769
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1522
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1523
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1524
|
-
exports.UpdateApplication$ = UpdateApplication$;
|
|
1525
770
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1526
|
-
exports.UpdateApplicationInput$ = UpdateApplicationInput$;
|
|
1527
|
-
exports.UpdateApplicationOutput$ = UpdateApplicationOutput$;
|
|
1528
|
-
exports.UpdateStreamGroup$ = UpdateStreamGroup$;
|
|
1529
771
|
exports.UpdateStreamGroupCommand = UpdateStreamGroupCommand;
|
|
1530
|
-
exports.UpdateStreamGroupInput$ = UpdateStreamGroupInput$;
|
|
1531
|
-
exports.UpdateStreamGroupOutput$ = UpdateStreamGroupOutput$;
|
|
1532
|
-
exports.ValidationException = ValidationException;
|
|
1533
|
-
exports.ValidationException$ = ValidationException$;
|
|
1534
772
|
exports.paginateListApplications = paginateListApplications;
|
|
1535
773
|
exports.paginateListStreamGroups = paginateListStreamGroups;
|
|
1536
774
|
exports.paginateListStreamSessions = paginateListStreamSessions;
|
|
@@ -1545,3 +783,15 @@ exports.waitUntilApplicationReady = waitUntilApplicationReady;
|
|
|
1545
783
|
exports.waitUntilStreamGroupActive = waitUntilStreamGroupActive;
|
|
1546
784
|
exports.waitUntilStreamGroupDeleted = waitUntilStreamGroupDeleted;
|
|
1547
785
|
exports.waitUntilStreamSessionActive = waitUntilStreamSessionActive;
|
|
786
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
787
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
788
|
+
enumerable: true,
|
|
789
|
+
get: function () { return schemas_0[k]; }
|
|
790
|
+
});
|
|
791
|
+
});
|
|
792
|
+
Object.keys(errors).forEach(function (k) {
|
|
793
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
794
|
+
enumerable: true,
|
|
795
|
+
get: function () { return errors[k]; }
|
|
796
|
+
});
|
|
797
|
+
});
|