@aws-sdk/client-gameliftstreams 3.1075.0 → 3.1076.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 +957 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/GameLiftStreamsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -103
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -664
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultGameLiftStreamsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "gameliftstreams",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultGameLiftStreamsHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -29,6 +65,815 @@ const commonParams = {
|
|
|
29
65
|
Region: { type: "builtInParams", name: "region" },
|
|
30
66
|
};
|
|
31
67
|
|
|
68
|
+
var version = "3.1075.0";
|
|
69
|
+
var packageInfo = {
|
|
70
|
+
version: version};
|
|
71
|
+
|
|
72
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
73
|
+
const _data = {
|
|
74
|
+
conditions: [
|
|
75
|
+
[a, [b]],
|
|
76
|
+
[a, c],
|
|
77
|
+
["aws.partition", c, "PartitionResult"],
|
|
78
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
79
|
+
],
|
|
80
|
+
results: [
|
|
81
|
+
[-1],
|
|
82
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
83
|
+
[b, {}],
|
|
84
|
+
["https://gameliftstreams-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
85
|
+
["https://gameliftstreams.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
87
|
+
]
|
|
88
|
+
};
|
|
89
|
+
const root = 2;
|
|
90
|
+
const r = 100_000_000;
|
|
91
|
+
const nodes = new Int32Array([
|
|
92
|
+
-1, 1, -1,
|
|
93
|
+
0, 6, 3,
|
|
94
|
+
1, 4, r + 5,
|
|
95
|
+
2, 5, r + 5,
|
|
96
|
+
3, r + 3, r + 4,
|
|
97
|
+
3, r + 1, r + 2,
|
|
98
|
+
]);
|
|
99
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
100
|
+
|
|
101
|
+
const cache = new EndpointCache({
|
|
102
|
+
size: 50,
|
|
103
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
104
|
+
});
|
|
105
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
106
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
107
|
+
endpointParams: endpointParams,
|
|
108
|
+
logger: context.logger,
|
|
109
|
+
}));
|
|
110
|
+
};
|
|
111
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
112
|
+
|
|
113
|
+
class GameLiftStreamsServiceException extends ServiceException {
|
|
114
|
+
constructor(options) {
|
|
115
|
+
super(options);
|
|
116
|
+
Object.setPrototypeOf(this, GameLiftStreamsServiceException.prototype);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
class AccessDeniedException extends GameLiftStreamsServiceException {
|
|
121
|
+
name = "AccessDeniedException";
|
|
122
|
+
$fault = "client";
|
|
123
|
+
Message;
|
|
124
|
+
constructor(opts) {
|
|
125
|
+
super({
|
|
126
|
+
name: "AccessDeniedException",
|
|
127
|
+
$fault: "client",
|
|
128
|
+
...opts,
|
|
129
|
+
});
|
|
130
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
+
this.Message = opts.Message;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
class InternalServerException extends GameLiftStreamsServiceException {
|
|
135
|
+
name = "InternalServerException";
|
|
136
|
+
$fault = "server";
|
|
137
|
+
$retryable = {};
|
|
138
|
+
Message;
|
|
139
|
+
constructor(opts) {
|
|
140
|
+
super({
|
|
141
|
+
name: "InternalServerException",
|
|
142
|
+
$fault: "server",
|
|
143
|
+
...opts,
|
|
144
|
+
});
|
|
145
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
146
|
+
this.Message = opts.Message;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
class ResourceNotFoundException extends GameLiftStreamsServiceException {
|
|
150
|
+
name = "ResourceNotFoundException";
|
|
151
|
+
$fault = "client";
|
|
152
|
+
Message;
|
|
153
|
+
constructor(opts) {
|
|
154
|
+
super({
|
|
155
|
+
name: "ResourceNotFoundException",
|
|
156
|
+
$fault: "client",
|
|
157
|
+
...opts,
|
|
158
|
+
});
|
|
159
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
160
|
+
this.Message = opts.Message;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class ServiceQuotaExceededException extends GameLiftStreamsServiceException {
|
|
164
|
+
name = "ServiceQuotaExceededException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
Message;
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "ServiceQuotaExceededException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
174
|
+
this.Message = opts.Message;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
class ThrottlingException extends GameLiftStreamsServiceException {
|
|
178
|
+
name = "ThrottlingException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
$retryable = {
|
|
181
|
+
throttling: true,
|
|
182
|
+
};
|
|
183
|
+
Message;
|
|
184
|
+
constructor(opts) {
|
|
185
|
+
super({
|
|
186
|
+
name: "ThrottlingException",
|
|
187
|
+
$fault: "client",
|
|
188
|
+
...opts,
|
|
189
|
+
});
|
|
190
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
191
|
+
this.Message = opts.Message;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
class ValidationException extends GameLiftStreamsServiceException {
|
|
195
|
+
name = "ValidationException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
Message;
|
|
198
|
+
constructor(opts) {
|
|
199
|
+
super({
|
|
200
|
+
name: "ValidationException",
|
|
201
|
+
$fault: "client",
|
|
202
|
+
...opts,
|
|
203
|
+
});
|
|
204
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
205
|
+
this.Message = opts.Message;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
class ConflictException extends GameLiftStreamsServiceException {
|
|
209
|
+
name = "ConflictException";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
Message;
|
|
212
|
+
constructor(opts) {
|
|
213
|
+
super({
|
|
214
|
+
name: "ConflictException",
|
|
215
|
+
$fault: "client",
|
|
216
|
+
...opts,
|
|
217
|
+
});
|
|
218
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
219
|
+
this.Message = opts.Message;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
const _A = "Arn";
|
|
224
|
+
const _AA = "ApplicationArns";
|
|
225
|
+
const _AAI = "AssociateApplicationsInput";
|
|
226
|
+
const _AAO = "AssociateApplicationsOutput";
|
|
227
|
+
const _AAp = "ApplicationArn";
|
|
228
|
+
const _AAs = "AssociatedApplications";
|
|
229
|
+
const _AAss = "AssociateApplications";
|
|
230
|
+
const _AC = "AllocatedCapacity";
|
|
231
|
+
const _ADE = "AccessDeniedException";
|
|
232
|
+
const _AEV = "AdditionalEnvironmentVariables";
|
|
233
|
+
const _AI = "ApplicationIdentifiers";
|
|
234
|
+
const _AIp = "ApplicationIdentifier";
|
|
235
|
+
const _ALA = "AdditionalLaunchArgs";
|
|
236
|
+
const _ALOU = "ApplicationLogOutputUri";
|
|
237
|
+
const _ALP = "ApplicationLogPaths";
|
|
238
|
+
const _AOC = "AlwaysOnCapacity";
|
|
239
|
+
const _AS = "ApplicationSummary";
|
|
240
|
+
const _ASG = "AssociatedStreamGroups";
|
|
241
|
+
const _ASGL = "AddStreamGroupLocations";
|
|
242
|
+
const _ASGLI = "AddStreamGroupLocationsInput";
|
|
243
|
+
const _ASGLO = "AddStreamGroupLocationsOutput";
|
|
244
|
+
const _ASL = "ApplicationSummaryList";
|
|
245
|
+
const _ASU = "ApplicationSourceUri";
|
|
246
|
+
const _CA = "CreatedAt";
|
|
247
|
+
const _CAI = "CreateApplicationInput";
|
|
248
|
+
const _CAO = "CreateApplicationOutput";
|
|
249
|
+
const _CAr = "CreateApplication";
|
|
250
|
+
const _CE = "ConflictException";
|
|
251
|
+
const _CSG = "CreateStreamGroup";
|
|
252
|
+
const _CSGI = "CreateStreamGroupInput";
|
|
253
|
+
const _CSGO = "CreateStreamGroupOutput";
|
|
254
|
+
const _CSSC = "CreateStreamSessionConnection";
|
|
255
|
+
const _CSSCI = "CreateStreamSessionConnectionInput";
|
|
256
|
+
const _CSSCO = "CreateStreamSessionConnectionOutput";
|
|
257
|
+
const _CT = "ClientToken";
|
|
258
|
+
const _CTS = "ConnectionTimeoutSeconds";
|
|
259
|
+
const _D = "Description";
|
|
260
|
+
const _DA = "DefaultApplication";
|
|
261
|
+
const _DAI = "DefaultApplicationIdentifier";
|
|
262
|
+
const _DAIe = "DeleteApplicationInput";
|
|
263
|
+
const _DAIi = "DisassociateApplicationsInput";
|
|
264
|
+
const _DAO = "DisassociateApplicationsOutput";
|
|
265
|
+
const _DAe = "DeleteApplication";
|
|
266
|
+
const _DAi = "DisassociateApplications";
|
|
267
|
+
const _DSG = "DeleteStreamGroup";
|
|
268
|
+
const _DSGI = "DeleteStreamGroupInput";
|
|
269
|
+
const _EA = "ExpiresAt";
|
|
270
|
+
const _EFM = "ExportFilesMetadata";
|
|
271
|
+
const _EFS = "ExportFilesStatus";
|
|
272
|
+
const _EP = "ExecutablePath";
|
|
273
|
+
const _ESSF = "ExportStreamSessionFiles";
|
|
274
|
+
const _ESSFI = "ExportStreamSessionFilesInput";
|
|
275
|
+
const _ESSFO = "ExportStreamSessionFilesOutput";
|
|
276
|
+
const _GA = "GetApplication";
|
|
277
|
+
const _GAI = "GetApplicationInput";
|
|
278
|
+
const _GAO = "GetApplicationOutput";
|
|
279
|
+
const _GSG = "GetStreamGroup";
|
|
280
|
+
const _GSGI = "GetStreamGroupInput";
|
|
281
|
+
const _GSGO = "GetStreamGroupOutput";
|
|
282
|
+
const _GSS = "GetStreamSession";
|
|
283
|
+
const _GSSI = "GetStreamSessionInput";
|
|
284
|
+
const _GSSO = "GetStreamSessionOutput";
|
|
285
|
+
const _I = "Identifier";
|
|
286
|
+
const _IC = "IdleCapacity";
|
|
287
|
+
const _ICB = "Ipv4CidrBlocks";
|
|
288
|
+
const _ISE = "InternalServerException";
|
|
289
|
+
const _IVICB = "InternalVpcIpv4CidrBlock";
|
|
290
|
+
const _Id = "Id";
|
|
291
|
+
const _It = "Items";
|
|
292
|
+
const _L = "Locations";
|
|
293
|
+
const _LA = "ListApplications";
|
|
294
|
+
const _LAI = "ListApplicationsInput";
|
|
295
|
+
const _LAO = "ListApplicationsOutput";
|
|
296
|
+
const _LC = "LocationConfigurations";
|
|
297
|
+
const _LCo = "LocationConfiguration";
|
|
298
|
+
const _LFLU = "LogFileLocationUri";
|
|
299
|
+
const _LN = "LocationName";
|
|
300
|
+
const _LS = "LocationStates";
|
|
301
|
+
const _LSG = "ListStreamGroups";
|
|
302
|
+
const _LSGI = "ListStreamGroupsInput";
|
|
303
|
+
const _LSGO = "ListStreamGroupsOutput";
|
|
304
|
+
const _LSS = "ListStreamSessions";
|
|
305
|
+
const _LSSBA = "ListStreamSessionsByAccount";
|
|
306
|
+
const _LSSBAI = "ListStreamSessionsByAccountInput";
|
|
307
|
+
const _LSSBAO = "ListStreamSessionsByAccountOutput";
|
|
308
|
+
const _LSSI = "ListStreamSessionsInput";
|
|
309
|
+
const _LSSO = "ListStreamSessionsOutput";
|
|
310
|
+
const _LSo = "LocationState";
|
|
311
|
+
const _LTFR = "ListTagsForResource";
|
|
312
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
313
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
314
|
+
const _LUA = "LastUpdatedAt";
|
|
315
|
+
const _Lo = "Location";
|
|
316
|
+
const _M = "Message";
|
|
317
|
+
const _MC = "MaximumCapacity";
|
|
318
|
+
const _MR = "MaxResults";
|
|
319
|
+
const _NT = "NextToken";
|
|
320
|
+
const _ODC = "OnDemandCapacity";
|
|
321
|
+
const _OU = "OutputUri";
|
|
322
|
+
const _P = "Protocol";
|
|
323
|
+
const _PSC = "PerformanceStatsConfiguration";
|
|
324
|
+
const _RA = "ResourceArn";
|
|
325
|
+
const _RC = "RequestedCapacity";
|
|
326
|
+
const _RE = "RuntimeEnvironment";
|
|
327
|
+
const _RNFE = "ResourceNotFoundException";
|
|
328
|
+
const _RS = "ReplicationStatuses";
|
|
329
|
+
const _RSGL = "RemoveStreamGroupLocations";
|
|
330
|
+
const _RSGLI = "RemoveStreamGroupLocationsInput";
|
|
331
|
+
const _RSe = "ReplicationStatus";
|
|
332
|
+
const _S = "Status";
|
|
333
|
+
const _SC = "StreamClass";
|
|
334
|
+
const _SGI = "StreamGroupId";
|
|
335
|
+
const _SGS = "StreamGroupSummary";
|
|
336
|
+
const _SGSL = "StreamGroupSummaryList";
|
|
337
|
+
const _SLS = "SessionLengthSeconds";
|
|
338
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
339
|
+
const _SR = "SignalRequest";
|
|
340
|
+
const _SRi = "SignalResponse";
|
|
341
|
+
const _SRt = "StatusReason";
|
|
342
|
+
const _SSI = "StreamSessionIdentifier";
|
|
343
|
+
const _SSS = "StreamSessionSummary";
|
|
344
|
+
const _SSSI = "StartStreamSessionInput";
|
|
345
|
+
const _SSSL = "StreamSessionSummaryList";
|
|
346
|
+
const _SSSO = "StartStreamSessionOutput";
|
|
347
|
+
const _SSSt = "StartStreamSession";
|
|
348
|
+
const _SWC = "SharedWithClient";
|
|
349
|
+
const _T = "Tags";
|
|
350
|
+
const _TE = "ThrottlingException";
|
|
351
|
+
const _TGI = "TransitGatewayId";
|
|
352
|
+
const _TGRSA = "TransitGatewayResourceShareArn";
|
|
353
|
+
const _TIC = "TargetIdleCapacity";
|
|
354
|
+
const _TK = "TagKeys";
|
|
355
|
+
const _TR = "TagResource";
|
|
356
|
+
const _TRR = "TagResourceRequest";
|
|
357
|
+
const _TRRa = "TagResourceResponse";
|
|
358
|
+
const _TSS = "TerminateStreamSession";
|
|
359
|
+
const _TSSI = "TerminateStreamSessionInput";
|
|
360
|
+
const _Ty = "Type";
|
|
361
|
+
const _UA = "UpdateApplication";
|
|
362
|
+
const _UAI = "UpdateApplicationInput";
|
|
363
|
+
const _UAO = "UpdateApplicationOutput";
|
|
364
|
+
const _UI = "UserId";
|
|
365
|
+
const _UR = "UntagResource";
|
|
366
|
+
const _URR = "UntagResourceRequest";
|
|
367
|
+
const _URRn = "UntagResourceResponse";
|
|
368
|
+
const _USG = "UpdateStreamGroup";
|
|
369
|
+
const _USGI = "UpdateStreamGroupInput";
|
|
370
|
+
const _USGO = "UpdateStreamGroupOutput";
|
|
371
|
+
const _V = "Version";
|
|
372
|
+
const _VE = "ValidationException";
|
|
373
|
+
const _VI = "VpcId";
|
|
374
|
+
const _VTC = "VpcTransitConfiguration";
|
|
375
|
+
const _VTCR = "VpcTransitConfigurationResponse";
|
|
376
|
+
const _WSPU = "WebSdkProtocolUrl";
|
|
377
|
+
const _c = "client";
|
|
378
|
+
const _e = "error";
|
|
379
|
+
const _h = "http";
|
|
380
|
+
const _hE = "httpError";
|
|
381
|
+
const _hQ = "httpQuery";
|
|
382
|
+
const _l = "locations";
|
|
383
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.gameliftstreams";
|
|
384
|
+
const _se = "server";
|
|
385
|
+
const _tK = "tagKeys";
|
|
386
|
+
const n0 = "com.amazonaws.gameliftstreams";
|
|
387
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
388
|
+
var GameLiftStreamsServiceException$ = [-3, _s, "GameLiftStreamsServiceException", 0, [], []];
|
|
389
|
+
_s_registry.registerError(GameLiftStreamsServiceException$, GameLiftStreamsServiceException);
|
|
390
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
391
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
392
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
393
|
+
[_M],
|
|
394
|
+
[0], 1
|
|
395
|
+
];
|
|
396
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
397
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
398
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
399
|
+
[_M],
|
|
400
|
+
[0], 1
|
|
401
|
+
];
|
|
402
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
403
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
404
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
405
|
+
[_M],
|
|
406
|
+
[0], 1
|
|
407
|
+
];
|
|
408
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
409
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
410
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
411
|
+
[_M],
|
|
412
|
+
[0], 1
|
|
413
|
+
];
|
|
414
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
415
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
416
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
417
|
+
[_M],
|
|
418
|
+
[0], 1
|
|
419
|
+
];
|
|
420
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
421
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
422
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
423
|
+
[_M],
|
|
424
|
+
[0], 1
|
|
425
|
+
];
|
|
426
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
427
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
428
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
429
|
+
[_M],
|
|
430
|
+
[0], 1
|
|
431
|
+
];
|
|
432
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
433
|
+
const errorTypeRegistries = [
|
|
434
|
+
_s_registry,
|
|
435
|
+
n0_registry,
|
|
436
|
+
];
|
|
437
|
+
var SignalRequest = [0, n0, _SR, 8, 0];
|
|
438
|
+
var SignalResponse = [0, n0, _SRi, 8, 0];
|
|
439
|
+
var AddStreamGroupLocationsInput$ = [3, n0, _ASGLI,
|
|
440
|
+
0,
|
|
441
|
+
[_I, _LC],
|
|
442
|
+
[[0, 1], () => LocationConfigurations], 2
|
|
443
|
+
];
|
|
444
|
+
var AddStreamGroupLocationsOutput$ = [3, n0, _ASGLO,
|
|
445
|
+
0,
|
|
446
|
+
[_I, _L],
|
|
447
|
+
[0, () => LocationStates], 2
|
|
448
|
+
];
|
|
449
|
+
var ApplicationSummary$ = [3, n0, _AS,
|
|
450
|
+
0,
|
|
451
|
+
[_A, _Id, _D, _S, _CA, _LUA, _RE],
|
|
452
|
+
[0, 0, 0, 0, 4, 4, () => RuntimeEnvironment$], 1
|
|
453
|
+
];
|
|
454
|
+
var AssociateApplicationsInput$ = [3, n0, _AAI,
|
|
455
|
+
0,
|
|
456
|
+
[_I, _AI],
|
|
457
|
+
[[0, 1], 64 | 0], 2
|
|
458
|
+
];
|
|
459
|
+
var AssociateApplicationsOutput$ = [3, n0, _AAO,
|
|
460
|
+
0,
|
|
461
|
+
[_A, _AA],
|
|
462
|
+
[0, 64 | 0]
|
|
463
|
+
];
|
|
464
|
+
var CreateApplicationInput$ = [3, n0, _CAI,
|
|
465
|
+
0,
|
|
466
|
+
[_D, _RE, _EP, _ASU, _ALP, _ALOU, _T, _CT],
|
|
467
|
+
[0, () => RuntimeEnvironment$, 0, 0, 64 | 0, 0, 128 | 0, [0, 4]], 4
|
|
468
|
+
];
|
|
469
|
+
var CreateApplicationOutput$ = [3, n0, _CAO,
|
|
470
|
+
0,
|
|
471
|
+
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
472
|
+
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0], 1
|
|
473
|
+
];
|
|
474
|
+
var CreateStreamGroupInput$ = [3, n0, _CSGI,
|
|
475
|
+
0,
|
|
476
|
+
[_D, _SC, _DAI, _LC, _T, _CT],
|
|
477
|
+
[0, 0, 0, () => LocationConfigurations, 128 | 0, [0, 4]], 2
|
|
478
|
+
];
|
|
479
|
+
var CreateStreamGroupOutput$ = [3, n0, _CSGO,
|
|
480
|
+
0,
|
|
481
|
+
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
482
|
+
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0], 1
|
|
483
|
+
];
|
|
484
|
+
var CreateStreamSessionConnectionInput$ = [3, n0, _CSSCI,
|
|
485
|
+
0,
|
|
486
|
+
[_I, _SSI, _SR, _CT],
|
|
487
|
+
[[0, 1], [0, 1], [() => SignalRequest, 0], [0, 4]], 3
|
|
488
|
+
];
|
|
489
|
+
var CreateStreamSessionConnectionOutput$ = [3, n0, _CSSCO,
|
|
490
|
+
0,
|
|
491
|
+
[_SRi],
|
|
492
|
+
[[() => SignalResponse, 0]]
|
|
493
|
+
];
|
|
494
|
+
var DefaultApplication$ = [3, n0, _DA,
|
|
495
|
+
0,
|
|
496
|
+
[_Id, _A],
|
|
497
|
+
[0, 0]
|
|
498
|
+
];
|
|
499
|
+
var DeleteApplicationInput$ = [3, n0, _DAIe,
|
|
500
|
+
0,
|
|
501
|
+
[_I],
|
|
502
|
+
[[0, 1]], 1
|
|
503
|
+
];
|
|
504
|
+
var DeleteStreamGroupInput$ = [3, n0, _DSGI,
|
|
505
|
+
0,
|
|
506
|
+
[_I],
|
|
507
|
+
[[0, 1]], 1
|
|
508
|
+
];
|
|
509
|
+
var DisassociateApplicationsInput$ = [3, n0, _DAIi,
|
|
510
|
+
0,
|
|
511
|
+
[_I, _AI],
|
|
512
|
+
[[0, 1], 64 | 0], 2
|
|
513
|
+
];
|
|
514
|
+
var DisassociateApplicationsOutput$ = [3, n0, _DAO,
|
|
515
|
+
0,
|
|
516
|
+
[_A, _AA],
|
|
517
|
+
[0, 64 | 0]
|
|
518
|
+
];
|
|
519
|
+
var ExportFilesMetadata$ = [3, n0, _EFM,
|
|
520
|
+
0,
|
|
521
|
+
[_S, _SRt, _OU],
|
|
522
|
+
[0, 0, 0]
|
|
523
|
+
];
|
|
524
|
+
var ExportStreamSessionFilesInput$ = [3, n0, _ESSFI,
|
|
525
|
+
0,
|
|
526
|
+
[_I, _SSI, _OU],
|
|
527
|
+
[[0, 1], [0, 1], 0], 3
|
|
528
|
+
];
|
|
529
|
+
var ExportStreamSessionFilesOutput$ = [3, n0, _ESSFO,
|
|
530
|
+
0,
|
|
531
|
+
[],
|
|
532
|
+
[]
|
|
533
|
+
];
|
|
534
|
+
var GetApplicationInput$ = [3, n0, _GAI,
|
|
535
|
+
0,
|
|
536
|
+
[_I],
|
|
537
|
+
[[0, 1]], 1
|
|
538
|
+
];
|
|
539
|
+
var GetApplicationOutput$ = [3, n0, _GAO,
|
|
540
|
+
0,
|
|
541
|
+
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
542
|
+
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0], 1
|
|
543
|
+
];
|
|
544
|
+
var GetStreamGroupInput$ = [3, n0, _GSGI,
|
|
545
|
+
0,
|
|
546
|
+
[_I],
|
|
547
|
+
[[0, 1]], 1
|
|
548
|
+
];
|
|
549
|
+
var GetStreamGroupOutput$ = [3, n0, _GSGO,
|
|
550
|
+
0,
|
|
551
|
+
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
552
|
+
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0], 1
|
|
553
|
+
];
|
|
554
|
+
var GetStreamSessionInput$ = [3, n0, _GSSI,
|
|
555
|
+
0,
|
|
556
|
+
[_I, _SSI],
|
|
557
|
+
[[0, 1], [0, 1]], 2
|
|
558
|
+
];
|
|
559
|
+
var GetStreamSessionOutput$ = [3, n0, _GSSO,
|
|
560
|
+
0,
|
|
561
|
+
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
562
|
+
[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$]
|
|
563
|
+
];
|
|
564
|
+
var ListApplicationsInput$ = [3, n0, _LAI,
|
|
565
|
+
0,
|
|
566
|
+
[_NT, _MR],
|
|
567
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
568
|
+
];
|
|
569
|
+
var ListApplicationsOutput$ = [3, n0, _LAO,
|
|
570
|
+
0,
|
|
571
|
+
[_It, _NT],
|
|
572
|
+
[() => ApplicationSummaryList, 0]
|
|
573
|
+
];
|
|
574
|
+
var ListStreamGroupsInput$ = [3, n0, _LSGI,
|
|
575
|
+
0,
|
|
576
|
+
[_NT, _MR],
|
|
577
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
578
|
+
];
|
|
579
|
+
var ListStreamGroupsOutput$ = [3, n0, _LSGO,
|
|
580
|
+
0,
|
|
581
|
+
[_It, _NT],
|
|
582
|
+
[() => StreamGroupSummaryList, 0]
|
|
583
|
+
];
|
|
584
|
+
var ListStreamSessionsByAccountInput$ = [3, n0, _LSSBAI,
|
|
585
|
+
0,
|
|
586
|
+
[_S, _EFS, _NT, _MR],
|
|
587
|
+
[[0, { [_hQ]: _S }], [0, { [_hQ]: _EFS }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
588
|
+
];
|
|
589
|
+
var ListStreamSessionsByAccountOutput$ = [3, n0, _LSSBAO,
|
|
590
|
+
0,
|
|
591
|
+
[_It, _NT],
|
|
592
|
+
[() => StreamSessionSummaryList, 0]
|
|
593
|
+
];
|
|
594
|
+
var ListStreamSessionsInput$ = [3, n0, _LSSI,
|
|
595
|
+
0,
|
|
596
|
+
[_I, _S, _EFS, _NT, _MR],
|
|
597
|
+
[[0, 1], [0, { [_hQ]: _S }], [0, { [_hQ]: _EFS }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
598
|
+
];
|
|
599
|
+
var ListStreamSessionsOutput$ = [3, n0, _LSSO,
|
|
600
|
+
0,
|
|
601
|
+
[_It, _NT],
|
|
602
|
+
[() => StreamSessionSummaryList, 0]
|
|
603
|
+
];
|
|
604
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
605
|
+
0,
|
|
606
|
+
[_RA],
|
|
607
|
+
[[0, 1]], 1
|
|
608
|
+
];
|
|
609
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
610
|
+
0,
|
|
611
|
+
[_T],
|
|
612
|
+
[128 | 0]
|
|
613
|
+
];
|
|
614
|
+
var LocationConfiguration$ = [3, n0, _LCo,
|
|
615
|
+
0,
|
|
616
|
+
[_LN, _AOC, _ODC, _TIC, _MC, _VTC],
|
|
617
|
+
[0, 1, 1, 1, 1, () => VpcTransitConfiguration$], 1
|
|
618
|
+
];
|
|
619
|
+
var LocationState$ = [3, n0, _LSo,
|
|
620
|
+
0,
|
|
621
|
+
[_LN, _S, _AOC, _ODC, _TIC, _MC, _RC, _AC, _IC, _IVICB, _VTC],
|
|
622
|
+
[0, 0, 1, 1, 1, 1, 1, 1, 1, 0, () => VpcTransitConfigurationResponse$]
|
|
623
|
+
];
|
|
624
|
+
var PerformanceStatsConfiguration$ = [3, n0, _PSC,
|
|
625
|
+
0,
|
|
626
|
+
[_SWC],
|
|
627
|
+
[2]
|
|
628
|
+
];
|
|
629
|
+
var RemoveStreamGroupLocationsInput$ = [3, n0, _RSGLI,
|
|
630
|
+
0,
|
|
631
|
+
[_I, _L],
|
|
632
|
+
[[0, 1], [64 | 0, { [_hQ]: _l }]], 2
|
|
633
|
+
];
|
|
634
|
+
var ReplicationStatus$ = [3, n0, _RSe,
|
|
635
|
+
0,
|
|
636
|
+
[_Lo, _S],
|
|
637
|
+
[0, 0]
|
|
638
|
+
];
|
|
639
|
+
var RuntimeEnvironment$ = [3, n0, _RE,
|
|
640
|
+
0,
|
|
641
|
+
[_Ty, _V],
|
|
642
|
+
[0, 0], 2
|
|
643
|
+
];
|
|
644
|
+
var StartStreamSessionInput$ = [3, n0, _SSSI,
|
|
645
|
+
0,
|
|
646
|
+
[_I, _P, _SR, _AIp, _CT, _D, _UI, _L, _CTS, _SLS, _ALA, _AEV, _PSC],
|
|
647
|
+
[[0, 1], 0, [() => SignalRequest, 0], 0, [0, 4], 0, 0, 64 | 0, 1, 1, 64 | 0, 128 | 0, () => PerformanceStatsConfiguration$], 4
|
|
648
|
+
];
|
|
649
|
+
var StartStreamSessionOutput$ = [3, n0, _SSSO,
|
|
650
|
+
0,
|
|
651
|
+
[_A, _D, _SGI, _UI, _S, _SRt, _P, _Lo, _SR, _SRi, _CTS, _SLS, _ALA, _AEV, _PSC, _LFLU, _WSPU, _LUA, _CA, _AAp, _EFM],
|
|
652
|
+
[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$]
|
|
653
|
+
];
|
|
654
|
+
var StreamGroupSummary$ = [3, n0, _SGS,
|
|
655
|
+
0,
|
|
656
|
+
[_A, _Id, _D, _DA, _SC, _S, _CA, _LUA, _EA],
|
|
657
|
+
[0, 0, 0, () => DefaultApplication$, 0, 0, 4, 4, 4], 1
|
|
658
|
+
];
|
|
659
|
+
var StreamSessionSummary$ = [3, n0, _SSS,
|
|
660
|
+
0,
|
|
661
|
+
[_A, _UI, _S, _SRt, _P, _LUA, _CA, _AAp, _EFM, _Lo],
|
|
662
|
+
[0, 0, 0, 0, 0, 4, 4, 0, () => ExportFilesMetadata$, 0]
|
|
663
|
+
];
|
|
664
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
665
|
+
0,
|
|
666
|
+
[_RA, _T],
|
|
667
|
+
[[0, 1], 128 | 0], 2
|
|
668
|
+
];
|
|
669
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
670
|
+
0,
|
|
671
|
+
[],
|
|
672
|
+
[]
|
|
673
|
+
];
|
|
674
|
+
var TerminateStreamSessionInput$ = [3, n0, _TSSI,
|
|
675
|
+
0,
|
|
676
|
+
[_I, _SSI],
|
|
677
|
+
[[0, 1], [0, 1]], 2
|
|
678
|
+
];
|
|
679
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
680
|
+
0,
|
|
681
|
+
[_RA, _TK],
|
|
682
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
683
|
+
];
|
|
684
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
685
|
+
0,
|
|
686
|
+
[],
|
|
687
|
+
[]
|
|
688
|
+
];
|
|
689
|
+
var UpdateApplicationInput$ = [3, n0, _UAI,
|
|
690
|
+
0,
|
|
691
|
+
[_I, _D, _ALP, _ALOU],
|
|
692
|
+
[[0, 1], 0, 64 | 0, 0], 1
|
|
693
|
+
];
|
|
694
|
+
var UpdateApplicationOutput$ = [3, n0, _UAO,
|
|
695
|
+
0,
|
|
696
|
+
[_A, _D, _RE, _EP, _ALP, _ALOU, _ASU, _Id, _S, _SRt, _RS, _CA, _LUA, _ASG],
|
|
697
|
+
[0, 0, () => RuntimeEnvironment$, 0, 64 | 0, 0, 0, 0, 0, 0, () => ReplicationStatuses, 4, 4, 64 | 0], 1
|
|
698
|
+
];
|
|
699
|
+
var UpdateStreamGroupInput$ = [3, n0, _USGI,
|
|
700
|
+
0,
|
|
701
|
+
[_I, _LC, _D, _DAI],
|
|
702
|
+
[[0, 1], () => LocationConfigurations, 0, 0], 1
|
|
703
|
+
];
|
|
704
|
+
var UpdateStreamGroupOutput$ = [3, n0, _USGO,
|
|
705
|
+
0,
|
|
706
|
+
[_A, _D, _DA, _LS, _SC, _Id, _S, _SRt, _LUA, _CA, _EA, _AAs],
|
|
707
|
+
[0, 0, () => DefaultApplication$, () => LocationStates, 0, 0, 0, 0, 4, 4, 4, 64 | 0], 1
|
|
708
|
+
];
|
|
709
|
+
var VpcTransitConfiguration$ = [3, n0, _VTC,
|
|
710
|
+
0,
|
|
711
|
+
[_VI, _ICB],
|
|
712
|
+
[0, 64 | 0], 2
|
|
713
|
+
];
|
|
714
|
+
var VpcTransitConfigurationResponse$ = [3, n0, _VTCR,
|
|
715
|
+
0,
|
|
716
|
+
[_VI, _ICB, _TGI, _TGRSA],
|
|
717
|
+
[0, 64 | 0, 0, 0]
|
|
718
|
+
];
|
|
719
|
+
var __Unit = "unit";
|
|
720
|
+
var ApplicationSummaryList = [1, n0, _ASL,
|
|
721
|
+
0, () => ApplicationSummary$
|
|
722
|
+
];
|
|
723
|
+
var LocationConfigurations = [1, n0, _LC,
|
|
724
|
+
0, () => LocationConfiguration$
|
|
725
|
+
];
|
|
726
|
+
var LocationStates = [1, n0, _LS,
|
|
727
|
+
0, () => LocationState$
|
|
728
|
+
];
|
|
729
|
+
var ReplicationStatuses = [1, n0, _RS,
|
|
730
|
+
0, () => ReplicationStatus$
|
|
731
|
+
];
|
|
732
|
+
var StreamGroupSummaryList = [1, n0, _SGSL,
|
|
733
|
+
0, () => StreamGroupSummary$
|
|
734
|
+
];
|
|
735
|
+
var StreamSessionSummaryList = [1, n0, _SSSL,
|
|
736
|
+
0, () => StreamSessionSummary$
|
|
737
|
+
];
|
|
738
|
+
var AddStreamGroupLocations$ = [9, n0, _ASGL,
|
|
739
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/locations", 200] }, () => AddStreamGroupLocationsInput$, () => AddStreamGroupLocationsOutput$
|
|
740
|
+
];
|
|
741
|
+
var AssociateApplications$ = [9, n0, _AAss,
|
|
742
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/associations", 200] }, () => AssociateApplicationsInput$, () => AssociateApplicationsOutput$
|
|
743
|
+
];
|
|
744
|
+
var CreateApplication$ = [9, n0, _CAr,
|
|
745
|
+
{ [_h]: ["POST", "/applications", 201] }, () => CreateApplicationInput$, () => CreateApplicationOutput$
|
|
746
|
+
];
|
|
747
|
+
var CreateStreamGroup$ = [9, n0, _CSG,
|
|
748
|
+
{ [_h]: ["POST", "/streamgroups", 201] }, () => CreateStreamGroupInput$, () => CreateStreamGroupOutput$
|
|
749
|
+
];
|
|
750
|
+
var CreateStreamSessionConnection$ = [9, n0, _CSSC,
|
|
751
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/connections", 200] }, () => CreateStreamSessionConnectionInput$, () => CreateStreamSessionConnectionOutput$
|
|
752
|
+
];
|
|
753
|
+
var DeleteApplication$ = [9, n0, _DAe,
|
|
754
|
+
{ [_h]: ["DELETE", "/applications/{Identifier}", 204] }, () => DeleteApplicationInput$, () => __Unit
|
|
755
|
+
];
|
|
756
|
+
var DeleteStreamGroup$ = [9, n0, _DSG,
|
|
757
|
+
{ [_h]: ["DELETE", "/streamgroups/{Identifier}", 204] }, () => DeleteStreamGroupInput$, () => __Unit
|
|
758
|
+
];
|
|
759
|
+
var DisassociateApplications$ = [9, n0, _DAi,
|
|
760
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/disassociations", 200] }, () => DisassociateApplicationsInput$, () => DisassociateApplicationsOutput$
|
|
761
|
+
];
|
|
762
|
+
var ExportStreamSessionFiles$ = [9, n0, _ESSF,
|
|
763
|
+
{ [_h]: ["PUT", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/exportfiles", 200] }, () => ExportStreamSessionFilesInput$, () => ExportStreamSessionFilesOutput$
|
|
764
|
+
];
|
|
765
|
+
var GetApplication$ = [9, n0, _GA,
|
|
766
|
+
{ [_h]: ["GET", "/applications/{Identifier}", 200] }, () => GetApplicationInput$, () => GetApplicationOutput$
|
|
767
|
+
];
|
|
768
|
+
var GetStreamGroup$ = [9, n0, _GSG,
|
|
769
|
+
{ [_h]: ["GET", "/streamgroups/{Identifier}", 200] }, () => GetStreamGroupInput$, () => GetStreamGroupOutput$
|
|
770
|
+
];
|
|
771
|
+
var GetStreamSession$ = [9, n0, _GSS,
|
|
772
|
+
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 200] }, () => GetStreamSessionInput$, () => GetStreamSessionOutput$
|
|
773
|
+
];
|
|
774
|
+
var ListApplications$ = [9, n0, _LA,
|
|
775
|
+
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsInput$, () => ListApplicationsOutput$
|
|
776
|
+
];
|
|
777
|
+
var ListStreamGroups$ = [9, n0, _LSG,
|
|
778
|
+
{ [_h]: ["GET", "/streamgroups", 200] }, () => ListStreamGroupsInput$, () => ListStreamGroupsOutput$
|
|
779
|
+
];
|
|
780
|
+
var ListStreamSessions$ = [9, n0, _LSS,
|
|
781
|
+
{ [_h]: ["GET", "/streamgroups/{Identifier}/streamsessions", 200] }, () => ListStreamSessionsInput$, () => ListStreamSessionsOutput$
|
|
782
|
+
];
|
|
783
|
+
var ListStreamSessionsByAccount$ = [9, n0, _LSSBA,
|
|
784
|
+
{ [_h]: ["GET", "/streamsessions", 200] }, () => ListStreamSessionsByAccountInput$, () => ListStreamSessionsByAccountOutput$
|
|
785
|
+
];
|
|
786
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
787
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
788
|
+
];
|
|
789
|
+
var RemoveStreamGroupLocations$ = [9, n0, _RSGL,
|
|
790
|
+
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/locations", 204] }, () => RemoveStreamGroupLocationsInput$, () => __Unit
|
|
791
|
+
];
|
|
792
|
+
var StartStreamSession$ = [9, n0, _SSSt,
|
|
793
|
+
{ [_h]: ["POST", "/streamgroups/{Identifier}/streamsessions", 201] }, () => StartStreamSessionInput$, () => StartStreamSessionOutput$
|
|
794
|
+
];
|
|
795
|
+
var TagResource$ = [9, n0, _TR,
|
|
796
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
797
|
+
];
|
|
798
|
+
var TerminateStreamSession$ = [9, n0, _TSS,
|
|
799
|
+
{ [_h]: ["DELETE", "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}", 204] }, () => TerminateStreamSessionInput$, () => __Unit
|
|
800
|
+
];
|
|
801
|
+
var UntagResource$ = [9, n0, _UR,
|
|
802
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
803
|
+
];
|
|
804
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
805
|
+
{ [_h]: ["PATCH", "/applications/{Identifier}", 200] }, () => UpdateApplicationInput$, () => UpdateApplicationOutput$
|
|
806
|
+
];
|
|
807
|
+
var UpdateStreamGroup$ = [9, n0, _USG,
|
|
808
|
+
{ [_h]: ["PATCH", "/streamgroups/{Identifier}", 200] }, () => UpdateStreamGroupInput$, () => UpdateStreamGroupOutput$
|
|
809
|
+
];
|
|
810
|
+
|
|
811
|
+
const getRuntimeConfig$1 = (config) => {
|
|
812
|
+
return {
|
|
813
|
+
apiVersion: "2018-05-10",
|
|
814
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
815
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
816
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
817
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
818
|
+
extensions: config?.extensions ?? [],
|
|
819
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultGameLiftStreamsHttpAuthSchemeProvider,
|
|
820
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
821
|
+
{
|
|
822
|
+
schemeId: "aws.auth#sigv4",
|
|
823
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
824
|
+
signer: new AwsSdkSigV4Signer(),
|
|
825
|
+
},
|
|
826
|
+
],
|
|
827
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
828
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
829
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
830
|
+
defaultNamespace: "com.amazonaws.gameliftstreams",
|
|
831
|
+
errorTypeRegistries,
|
|
832
|
+
version: "2018-05-10",
|
|
833
|
+
serviceTarget: "GameLiftStreams",
|
|
834
|
+
},
|
|
835
|
+
serviceId: config?.serviceId ?? "GameLiftStreams",
|
|
836
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
837
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
838
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
839
|
+
};
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
const getRuntimeConfig = (config) => {
|
|
843
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
844
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
845
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
846
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
847
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
848
|
+
const loaderConfig = {
|
|
849
|
+
profile: config?.profile,
|
|
850
|
+
logger: clientSharedValues.logger,
|
|
851
|
+
};
|
|
852
|
+
return {
|
|
853
|
+
...clientSharedValues,
|
|
854
|
+
...config,
|
|
855
|
+
runtime: "node",
|
|
856
|
+
defaultsMode,
|
|
857
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
858
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
859
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
860
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
861
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
862
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
863
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
864
|
+
retryMode: config?.retryMode ??
|
|
865
|
+
loadConfig({
|
|
866
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
867
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
868
|
+
}, config),
|
|
869
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
870
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
871
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
872
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
873
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
|
|
32
877
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
878
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
879
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -721,44 +1566,141 @@ const StreamSessionStatusReason = {
|
|
|
721
1566
|
RECONNECTION_TIMEOUT: "reconnectionTimeout",
|
|
722
1567
|
};
|
|
723
1568
|
|
|
1569
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1570
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1571
|
+
exports.AddStreamGroupLocations$ = AddStreamGroupLocations$;
|
|
724
1572
|
exports.AddStreamGroupLocationsCommand = AddStreamGroupLocationsCommand;
|
|
1573
|
+
exports.AddStreamGroupLocationsInput$ = AddStreamGroupLocationsInput$;
|
|
1574
|
+
exports.AddStreamGroupLocationsOutput$ = AddStreamGroupLocationsOutput$;
|
|
725
1575
|
exports.ApplicationStatus = ApplicationStatus;
|
|
726
1576
|
exports.ApplicationStatusReason = ApplicationStatusReason;
|
|
1577
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1578
|
+
exports.AssociateApplications$ = AssociateApplications$;
|
|
727
1579
|
exports.AssociateApplicationsCommand = AssociateApplicationsCommand;
|
|
1580
|
+
exports.AssociateApplicationsInput$ = AssociateApplicationsInput$;
|
|
1581
|
+
exports.AssociateApplicationsOutput$ = AssociateApplicationsOutput$;
|
|
1582
|
+
exports.ConflictException = ConflictException;
|
|
1583
|
+
exports.ConflictException$ = ConflictException$;
|
|
1584
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
728
1585
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1586
|
+
exports.CreateApplicationInput$ = CreateApplicationInput$;
|
|
1587
|
+
exports.CreateApplicationOutput$ = CreateApplicationOutput$;
|
|
1588
|
+
exports.CreateStreamGroup$ = CreateStreamGroup$;
|
|
729
1589
|
exports.CreateStreamGroupCommand = CreateStreamGroupCommand;
|
|
1590
|
+
exports.CreateStreamGroupInput$ = CreateStreamGroupInput$;
|
|
1591
|
+
exports.CreateStreamGroupOutput$ = CreateStreamGroupOutput$;
|
|
1592
|
+
exports.CreateStreamSessionConnection$ = CreateStreamSessionConnection$;
|
|
730
1593
|
exports.CreateStreamSessionConnectionCommand = CreateStreamSessionConnectionCommand;
|
|
1594
|
+
exports.CreateStreamSessionConnectionInput$ = CreateStreamSessionConnectionInput$;
|
|
1595
|
+
exports.CreateStreamSessionConnectionOutput$ = CreateStreamSessionConnectionOutput$;
|
|
1596
|
+
exports.DefaultApplication$ = DefaultApplication$;
|
|
1597
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
731
1598
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1599
|
+
exports.DeleteApplicationInput$ = DeleteApplicationInput$;
|
|
1600
|
+
exports.DeleteStreamGroup$ = DeleteStreamGroup$;
|
|
732
1601
|
exports.DeleteStreamGroupCommand = DeleteStreamGroupCommand;
|
|
1602
|
+
exports.DeleteStreamGroupInput$ = DeleteStreamGroupInput$;
|
|
1603
|
+
exports.DisassociateApplications$ = DisassociateApplications$;
|
|
733
1604
|
exports.DisassociateApplicationsCommand = DisassociateApplicationsCommand;
|
|
1605
|
+
exports.DisassociateApplicationsInput$ = DisassociateApplicationsInput$;
|
|
1606
|
+
exports.DisassociateApplicationsOutput$ = DisassociateApplicationsOutput$;
|
|
1607
|
+
exports.ExportFilesMetadata$ = ExportFilesMetadata$;
|
|
734
1608
|
exports.ExportFilesStatus = ExportFilesStatus;
|
|
1609
|
+
exports.ExportStreamSessionFiles$ = ExportStreamSessionFiles$;
|
|
735
1610
|
exports.ExportStreamSessionFilesCommand = ExportStreamSessionFilesCommand;
|
|
1611
|
+
exports.ExportStreamSessionFilesInput$ = ExportStreamSessionFilesInput$;
|
|
1612
|
+
exports.ExportStreamSessionFilesOutput$ = ExportStreamSessionFilesOutput$;
|
|
736
1613
|
exports.GameLiftStreams = GameLiftStreams;
|
|
737
1614
|
exports.GameLiftStreamsClient = GameLiftStreamsClient;
|
|
1615
|
+
exports.GameLiftStreamsServiceException = GameLiftStreamsServiceException;
|
|
1616
|
+
exports.GameLiftStreamsServiceException$ = GameLiftStreamsServiceException$;
|
|
1617
|
+
exports.GetApplication$ = GetApplication$;
|
|
738
1618
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1619
|
+
exports.GetApplicationInput$ = GetApplicationInput$;
|
|
1620
|
+
exports.GetApplicationOutput$ = GetApplicationOutput$;
|
|
1621
|
+
exports.GetStreamGroup$ = GetStreamGroup$;
|
|
739
1622
|
exports.GetStreamGroupCommand = GetStreamGroupCommand;
|
|
1623
|
+
exports.GetStreamGroupInput$ = GetStreamGroupInput$;
|
|
1624
|
+
exports.GetStreamGroupOutput$ = GetStreamGroupOutput$;
|
|
1625
|
+
exports.GetStreamSession$ = GetStreamSession$;
|
|
740
1626
|
exports.GetStreamSessionCommand = GetStreamSessionCommand;
|
|
1627
|
+
exports.GetStreamSessionInput$ = GetStreamSessionInput$;
|
|
1628
|
+
exports.GetStreamSessionOutput$ = GetStreamSessionOutput$;
|
|
1629
|
+
exports.InternalServerException = InternalServerException;
|
|
1630
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1631
|
+
exports.ListApplications$ = ListApplications$;
|
|
741
1632
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1633
|
+
exports.ListApplicationsInput$ = ListApplicationsInput$;
|
|
1634
|
+
exports.ListApplicationsOutput$ = ListApplicationsOutput$;
|
|
1635
|
+
exports.ListStreamGroups$ = ListStreamGroups$;
|
|
742
1636
|
exports.ListStreamGroupsCommand = ListStreamGroupsCommand;
|
|
1637
|
+
exports.ListStreamGroupsInput$ = ListStreamGroupsInput$;
|
|
1638
|
+
exports.ListStreamGroupsOutput$ = ListStreamGroupsOutput$;
|
|
1639
|
+
exports.ListStreamSessions$ = ListStreamSessions$;
|
|
1640
|
+
exports.ListStreamSessionsByAccount$ = ListStreamSessionsByAccount$;
|
|
743
1641
|
exports.ListStreamSessionsByAccountCommand = ListStreamSessionsByAccountCommand;
|
|
1642
|
+
exports.ListStreamSessionsByAccountInput$ = ListStreamSessionsByAccountInput$;
|
|
1643
|
+
exports.ListStreamSessionsByAccountOutput$ = ListStreamSessionsByAccountOutput$;
|
|
744
1644
|
exports.ListStreamSessionsCommand = ListStreamSessionsCommand;
|
|
1645
|
+
exports.ListStreamSessionsInput$ = ListStreamSessionsInput$;
|
|
1646
|
+
exports.ListStreamSessionsOutput$ = ListStreamSessionsOutput$;
|
|
1647
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
745
1648
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1649
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1650
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1651
|
+
exports.LocationConfiguration$ = LocationConfiguration$;
|
|
1652
|
+
exports.LocationState$ = LocationState$;
|
|
1653
|
+
exports.PerformanceStatsConfiguration$ = PerformanceStatsConfiguration$;
|
|
746
1654
|
exports.Protocol = Protocol;
|
|
1655
|
+
exports.RemoveStreamGroupLocations$ = RemoveStreamGroupLocations$;
|
|
747
1656
|
exports.RemoveStreamGroupLocationsCommand = RemoveStreamGroupLocationsCommand;
|
|
1657
|
+
exports.RemoveStreamGroupLocationsInput$ = RemoveStreamGroupLocationsInput$;
|
|
1658
|
+
exports.ReplicationStatus$ = ReplicationStatus$;
|
|
748
1659
|
exports.ReplicationStatusType = ReplicationStatusType;
|
|
1660
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1661
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1662
|
+
exports.RuntimeEnvironment$ = RuntimeEnvironment$;
|
|
749
1663
|
exports.RuntimeEnvironmentType = RuntimeEnvironmentType;
|
|
1664
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1665
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1666
|
+
exports.StartStreamSession$ = StartStreamSession$;
|
|
750
1667
|
exports.StartStreamSessionCommand = StartStreamSessionCommand;
|
|
1668
|
+
exports.StartStreamSessionInput$ = StartStreamSessionInput$;
|
|
1669
|
+
exports.StartStreamSessionOutput$ = StartStreamSessionOutput$;
|
|
751
1670
|
exports.StreamClass = StreamClass;
|
|
752
1671
|
exports.StreamGroupLocationStatus = StreamGroupLocationStatus;
|
|
753
1672
|
exports.StreamGroupStatus = StreamGroupStatus;
|
|
754
1673
|
exports.StreamGroupStatusReason = StreamGroupStatusReason;
|
|
1674
|
+
exports.StreamGroupSummary$ = StreamGroupSummary$;
|
|
755
1675
|
exports.StreamSessionStatus = StreamSessionStatus;
|
|
756
1676
|
exports.StreamSessionStatusReason = StreamSessionStatusReason;
|
|
1677
|
+
exports.StreamSessionSummary$ = StreamSessionSummary$;
|
|
1678
|
+
exports.TagResource$ = TagResource$;
|
|
757
1679
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1680
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1681
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1682
|
+
exports.TerminateStreamSession$ = TerminateStreamSession$;
|
|
758
1683
|
exports.TerminateStreamSessionCommand = TerminateStreamSessionCommand;
|
|
1684
|
+
exports.TerminateStreamSessionInput$ = TerminateStreamSessionInput$;
|
|
1685
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1686
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1687
|
+
exports.UntagResource$ = UntagResource$;
|
|
759
1688
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1689
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1690
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1691
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
760
1692
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1693
|
+
exports.UpdateApplicationInput$ = UpdateApplicationInput$;
|
|
1694
|
+
exports.UpdateApplicationOutput$ = UpdateApplicationOutput$;
|
|
1695
|
+
exports.UpdateStreamGroup$ = UpdateStreamGroup$;
|
|
761
1696
|
exports.UpdateStreamGroupCommand = UpdateStreamGroupCommand;
|
|
1697
|
+
exports.UpdateStreamGroupInput$ = UpdateStreamGroupInput$;
|
|
1698
|
+
exports.UpdateStreamGroupOutput$ = UpdateStreamGroupOutput$;
|
|
1699
|
+
exports.ValidationException = ValidationException;
|
|
1700
|
+
exports.ValidationException$ = ValidationException$;
|
|
1701
|
+
exports.VpcTransitConfiguration$ = VpcTransitConfiguration$;
|
|
1702
|
+
exports.VpcTransitConfigurationResponse$ = VpcTransitConfigurationResponse$;
|
|
1703
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
762
1704
|
exports.paginateListApplications = paginateListApplications;
|
|
763
1705
|
exports.paginateListStreamGroups = paginateListStreamGroups;
|
|
764
1706
|
exports.paginateListStreamSessions = paginateListStreamSessions;
|