@aws-sdk/client-appfabric 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 +45 -1018
- package/dist-cjs/models/AppFabricServiceException.js +12 -0
- package/dist-cjs/models/errors.js +127 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +764 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- 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,6 +15,9 @@ 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');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var AppFabricServiceException = require('./models/AppFabricServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,879 +113,6 @@ class AppFabricClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AppFabricServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, AppFabricServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends AppFabricServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends AppFabricServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
$retryable = {};
|
|
136
|
-
retryAfterSeconds;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "InternalServerException",
|
|
140
|
-
$fault: "server",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
144
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
class ResourceNotFoundException extends AppFabricServiceException {
|
|
148
|
-
name = "ResourceNotFoundException";
|
|
149
|
-
$fault = "client";
|
|
150
|
-
resourceId;
|
|
151
|
-
resourceType;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
-
this.resourceId = opts.resourceId;
|
|
160
|
-
this.resourceType = opts.resourceType;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ThrottlingException extends AppFabricServiceException {
|
|
164
|
-
name = "ThrottlingException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
$retryable = {
|
|
167
|
-
throttling: true,
|
|
168
|
-
};
|
|
169
|
-
serviceCode;
|
|
170
|
-
quotaCode;
|
|
171
|
-
retryAfterSeconds;
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "ThrottlingException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
179
|
-
this.serviceCode = opts.serviceCode;
|
|
180
|
-
this.quotaCode = opts.quotaCode;
|
|
181
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class ValidationException extends AppFabricServiceException {
|
|
185
|
-
name = "ValidationException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
reason;
|
|
188
|
-
fieldList;
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "ValidationException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
196
|
-
this.reason = opts.reason;
|
|
197
|
-
this.fieldList = opts.fieldList;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
class ConflictException extends AppFabricServiceException {
|
|
201
|
-
name = "ConflictException";
|
|
202
|
-
$fault = "client";
|
|
203
|
-
resourceId;
|
|
204
|
-
resourceType;
|
|
205
|
-
constructor(opts) {
|
|
206
|
-
super({
|
|
207
|
-
name: "ConflictException",
|
|
208
|
-
$fault: "client",
|
|
209
|
-
...opts,
|
|
210
|
-
});
|
|
211
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
212
|
-
this.resourceId = opts.resourceId;
|
|
213
|
-
this.resourceType = opts.resourceType;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class ServiceQuotaExceededException extends AppFabricServiceException {
|
|
217
|
-
name = "ServiceQuotaExceededException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
resourceId;
|
|
220
|
-
resourceType;
|
|
221
|
-
serviceCode;
|
|
222
|
-
quotaCode;
|
|
223
|
-
constructor(opts) {
|
|
224
|
-
super({
|
|
225
|
-
name: "ServiceQuotaExceededException",
|
|
226
|
-
$fault: "client",
|
|
227
|
-
...opts,
|
|
228
|
-
});
|
|
229
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
230
|
-
this.resourceId = opts.resourceId;
|
|
231
|
-
this.resourceType = opts.resourceType;
|
|
232
|
-
this.serviceCode = opts.serviceCode;
|
|
233
|
-
this.quotaCode = opts.quotaCode;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
const _AA = "AppAuthorization";
|
|
238
|
-
const _AAS = "AppAuthorizationSummary";
|
|
239
|
-
const _AASL = "AppAuthorizationSummaryList";
|
|
240
|
-
const _AB = "AppBundle";
|
|
241
|
-
const _ABS = "AppBundleSummary";
|
|
242
|
-
const _ABSL = "AppBundleSummaryList";
|
|
243
|
-
const _ADE = "AccessDeniedException";
|
|
244
|
-
const _AKC = "ApiKeyCredential";
|
|
245
|
-
const _ALDC = "AuditLogDestinationConfiguration";
|
|
246
|
-
const _ALPC = "AuditLogProcessingConfiguration";
|
|
247
|
-
const _AR = "AuthRequest";
|
|
248
|
-
const _BGUAT = "BatchGetUserAccessTasks";
|
|
249
|
-
const _BGUATR = "BatchGetUserAccessTasksRequest";
|
|
250
|
-
const _BGUATRa = "BatchGetUserAccessTasksResponse";
|
|
251
|
-
const _C = "Credential";
|
|
252
|
-
const _CAA = "ConnectAppAuthorization";
|
|
253
|
-
const _CAAR = "ConnectAppAuthorizationRequest";
|
|
254
|
-
const _CAARo = "ConnectAppAuthorizationResponse";
|
|
255
|
-
const _CAARr = "CreateAppAuthorizationRequest";
|
|
256
|
-
const _CAARre = "CreateAppAuthorizationResponse";
|
|
257
|
-
const _CAAr = "CreateAppAuthorization";
|
|
258
|
-
const _CAB = "CreateAppBundle";
|
|
259
|
-
const _CABR = "CreateAppBundleRequest";
|
|
260
|
-
const _CABRr = "CreateAppBundleResponse";
|
|
261
|
-
const _CE = "ConflictException";
|
|
262
|
-
const _CI = "CreateIngestion";
|
|
263
|
-
const _CID = "CreateIngestionDestination";
|
|
264
|
-
const _CIDR = "CreateIngestionDestinationRequest";
|
|
265
|
-
const _CIDRr = "CreateIngestionDestinationResponse";
|
|
266
|
-
const _CIR = "CreateIngestionRequest";
|
|
267
|
-
const _CIRr = "CreateIngestionResponse";
|
|
268
|
-
const _D = "Destination";
|
|
269
|
-
const _DAA = "DeleteAppAuthorization";
|
|
270
|
-
const _DAAR = "DeleteAppAuthorizationRequest";
|
|
271
|
-
const _DAARe = "DeleteAppAuthorizationResponse";
|
|
272
|
-
const _DAB = "DeleteAppBundle";
|
|
273
|
-
const _DABR = "DeleteAppBundleRequest";
|
|
274
|
-
const _DABRe = "DeleteAppBundleResponse";
|
|
275
|
-
const _DC = "DestinationConfiguration";
|
|
276
|
-
const _DI = "DeleteIngestion";
|
|
277
|
-
const _DID = "DeleteIngestionDestination";
|
|
278
|
-
const _DIDR = "DeleteIngestionDestinationRequest";
|
|
279
|
-
const _DIDRe = "DeleteIngestionDestinationResponse";
|
|
280
|
-
const _DIR = "DeleteIngestionRequest";
|
|
281
|
-
const _DIRe = "DeleteIngestionResponse";
|
|
282
|
-
const _E = "Email";
|
|
283
|
-
const _FS = "FirehoseStream";
|
|
284
|
-
const _GAA = "GetAppAuthorization";
|
|
285
|
-
const _GAAR = "GetAppAuthorizationRequest";
|
|
286
|
-
const _GAARe = "GetAppAuthorizationResponse";
|
|
287
|
-
const _GAB = "GetAppBundle";
|
|
288
|
-
const _GABR = "GetAppBundleRequest";
|
|
289
|
-
const _GABRe = "GetAppBundleResponse";
|
|
290
|
-
const _GI = "GetIngestion";
|
|
291
|
-
const _GID = "GetIngestionDestination";
|
|
292
|
-
const _GIDR = "GetIngestionDestinationRequest";
|
|
293
|
-
const _GIDRe = "GetIngestionDestinationResponse";
|
|
294
|
-
const _GIR = "GetIngestionRequest";
|
|
295
|
-
const _GIRe = "GetIngestionResponse";
|
|
296
|
-
const _I = "Ingestion";
|
|
297
|
-
const _ID = "IngestionDestination";
|
|
298
|
-
const _IDL = "IngestionDestinationList";
|
|
299
|
-
const _IDS = "IngestionDestinationSummary";
|
|
300
|
-
const _IL = "IngestionList";
|
|
301
|
-
const _IS = "IngestionSummary";
|
|
302
|
-
const _ISE = "InternalServerException";
|
|
303
|
-
const _LAA = "ListAppAuthorizations";
|
|
304
|
-
const _LAAR = "ListAppAuthorizationsRequest";
|
|
305
|
-
const _LAARi = "ListAppAuthorizationsResponse";
|
|
306
|
-
const _LAB = "ListAppBundles";
|
|
307
|
-
const _LABR = "ListAppBundlesRequest";
|
|
308
|
-
const _LABRi = "ListAppBundlesResponse";
|
|
309
|
-
const _LI = "ListIngestions";
|
|
310
|
-
const _LID = "ListIngestionDestinations";
|
|
311
|
-
const _LIDR = "ListIngestionDestinationsRequest";
|
|
312
|
-
const _LIDRi = "ListIngestionDestinationsResponse";
|
|
313
|
-
const _LIR = "ListIngestionsRequest";
|
|
314
|
-
const _LIRi = "ListIngestionsResponse";
|
|
315
|
-
const _LTFR = "ListTagsForResource";
|
|
316
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
317
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
318
|
-
const _OC = "Oauth2Credential";
|
|
319
|
-
const _PC = "ProcessingConfiguration";
|
|
320
|
-
const _RA = "Retry-After";
|
|
321
|
-
const _RNFE = "ResourceNotFoundException";
|
|
322
|
-
const _SB = "S3Bucket";
|
|
323
|
-
const _SI = "StartIngestion";
|
|
324
|
-
const _SIR = "StartIngestionRequest";
|
|
325
|
-
const _SIRt = "StartIngestionResponse";
|
|
326
|
-
const _SIRto = "StopIngestionRequest";
|
|
327
|
-
const _SIRtop = "StopIngestionResponse";
|
|
328
|
-
const _SIt = "StopIngestion";
|
|
329
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
330
|
-
const _SS = "SensitiveString2048";
|
|
331
|
-
const _SUAT = "StartUserAccessTasks";
|
|
332
|
-
const _SUATR = "StartUserAccessTasksRequest";
|
|
333
|
-
const _SUATRt = "StartUserAccessTasksResponse";
|
|
334
|
-
const _T = "Tag";
|
|
335
|
-
const _TE = "TaskError";
|
|
336
|
-
const _TEh = "ThrottlingException";
|
|
337
|
-
const _TL = "TagList";
|
|
338
|
-
const _TR = "TagResource";
|
|
339
|
-
const _TRR = "TagResourceRequest";
|
|
340
|
-
const _TRRa = "TagResourceResponse";
|
|
341
|
-
const _Te = "Tenant";
|
|
342
|
-
const _UAA = "UpdateAppAuthorization";
|
|
343
|
-
const _UAAR = "UpdateAppAuthorizationRequest";
|
|
344
|
-
const _UAARp = "UpdateAppAuthorizationResponse";
|
|
345
|
-
const _UARI = "UserAccessResultItem";
|
|
346
|
-
const _UARL = "UserAccessResultsList";
|
|
347
|
-
const _UATI = "UserAccessTaskItem";
|
|
348
|
-
const _UATL = "UserAccessTasksList";
|
|
349
|
-
const _UID = "UpdateIngestionDestination";
|
|
350
|
-
const _UIDR = "UpdateIngestionDestinationRequest";
|
|
351
|
-
const _UIDRp = "UpdateIngestionDestinationResponse";
|
|
352
|
-
const _UR = "UntagResource";
|
|
353
|
-
const _URR = "UntagResourceRequest";
|
|
354
|
-
const _URRn = "UntagResourceResponse";
|
|
355
|
-
const _VE = "ValidationException";
|
|
356
|
-
const _VEF = "ValidationExceptionField";
|
|
357
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
358
|
-
const _a = "app";
|
|
359
|
-
const _aA = "appAuthorization";
|
|
360
|
-
const _aAA = "appAuthorizationArn";
|
|
361
|
-
const _aAI = "appAuthorizationIdentifier";
|
|
362
|
-
const _aAS = "appAuthorizationSummary";
|
|
363
|
-
const _aASL = "appAuthorizationSummaryList";
|
|
364
|
-
const _aB = "appBundle";
|
|
365
|
-
const _aBA = "appBundleArn";
|
|
366
|
-
const _aBI = "appBundleIdentifier";
|
|
367
|
-
const _aBSL = "appBundleSummaryList";
|
|
368
|
-
const _aK = "apiKey";
|
|
369
|
-
const _aKC = "apiKeyCredential";
|
|
370
|
-
const _aL = "auditLog";
|
|
371
|
-
const _aR = "authRequest";
|
|
372
|
-
const _aT = "authType";
|
|
373
|
-
const _aU = "authUrl";
|
|
374
|
-
const _ar = "arn";
|
|
375
|
-
const _bN = "bucketName";
|
|
376
|
-
const _c = "client";
|
|
377
|
-
const _cA = "createdAt";
|
|
378
|
-
const _cI = "clientId";
|
|
379
|
-
const _cMKA = "customerManagedKeyArn";
|
|
380
|
-
const _cMKI = "customerManagedKeyIdentifier";
|
|
381
|
-
const _cS = "clientSecret";
|
|
382
|
-
const _cT = "clientToken";
|
|
383
|
-
const _co = "code";
|
|
384
|
-
const _cr = "credential";
|
|
385
|
-
const _d = "destination";
|
|
386
|
-
const _dC = "destinationConfiguration";
|
|
387
|
-
const _e = "error";
|
|
388
|
-
const _eC = "errorCode";
|
|
389
|
-
const _eM = "errorMessage";
|
|
390
|
-
const _em = "email";
|
|
391
|
-
const _f = "format";
|
|
392
|
-
const _fL = "fieldList";
|
|
393
|
-
const _fS = "firehoseStream";
|
|
394
|
-
const _h = "http";
|
|
395
|
-
const _hE = "httpError";
|
|
396
|
-
const _hH = "httpHeader";
|
|
397
|
-
const _hQ = "httpQuery";
|
|
398
|
-
const _i = "ingestion";
|
|
399
|
-
const _iA = "ingestionArn";
|
|
400
|
-
const _iD = "ingestionDestination";
|
|
401
|
-
const _iDI = "ingestionDestinationIdentifier";
|
|
402
|
-
const _iDn = "ingestionDestinations";
|
|
403
|
-
const _iI = "ingestionIdentifier";
|
|
404
|
-
const _iT = "ingestionType";
|
|
405
|
-
const _in = "ingestions";
|
|
406
|
-
const _k = "key";
|
|
407
|
-
const _m = "message";
|
|
408
|
-
const _mR = "maxResults";
|
|
409
|
-
const _n = "name";
|
|
410
|
-
const _nT = "nextToken";
|
|
411
|
-
const _oC = "oauth2Credential";
|
|
412
|
-
const _p = "persona";
|
|
413
|
-
const _pC = "processingConfiguration";
|
|
414
|
-
const _pr = "prefix";
|
|
415
|
-
const _qC = "quotaCode";
|
|
416
|
-
const _r = "reason";
|
|
417
|
-
const _rA = "resourceArn";
|
|
418
|
-
const _rAS = "retryAfterSeconds";
|
|
419
|
-
const _rI = "resourceId";
|
|
420
|
-
const _rS = "resultStatus";
|
|
421
|
-
const _rT = "resourceType";
|
|
422
|
-
const _rU = "redirectUri";
|
|
423
|
-
const _s = "status";
|
|
424
|
-
const _sB = "s3Bucket";
|
|
425
|
-
const _sC = "serviceCode";
|
|
426
|
-
const _sN = "streamName";
|
|
427
|
-
const _sR = "statusReason";
|
|
428
|
-
const _sc = "schema";
|
|
429
|
-
const _se = "server";
|
|
430
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appfabric";
|
|
431
|
-
const _st = "state";
|
|
432
|
-
const _t = "tenant";
|
|
433
|
-
const _tDN = "tenantDisplayName";
|
|
434
|
-
const _tE = "taskError";
|
|
435
|
-
const _tI = "tenantId";
|
|
436
|
-
const _tIL = "taskIdList";
|
|
437
|
-
const _tIa = "taskId";
|
|
438
|
-
const _tIe = "tenantIdentifier";
|
|
439
|
-
const _tK = "tagKeys";
|
|
440
|
-
const _ta = "tags";
|
|
441
|
-
const _uA = "updatedAt";
|
|
442
|
-
const _uARL = "userAccessResultsList";
|
|
443
|
-
const _uATL = "userAccessTasksList";
|
|
444
|
-
const _uFN = "userFullName";
|
|
445
|
-
const _uFNs = "userFirstName";
|
|
446
|
-
const _uI = "userId";
|
|
447
|
-
const _uLN = "userLastName";
|
|
448
|
-
const _uS = "userStatus";
|
|
449
|
-
const _v = "value";
|
|
450
|
-
const n0 = "com.amazonaws.appfabric";
|
|
451
|
-
var Email = [0, n0, _E, 8, 0];
|
|
452
|
-
var SensitiveString2048 = [0, n0, _SS, 8, 0];
|
|
453
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
454
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
455
|
-
[_m],
|
|
456
|
-
[0], 1
|
|
457
|
-
];
|
|
458
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
459
|
-
var ApiKeyCredential$ = [3, n0, _AKC,
|
|
460
|
-
0,
|
|
461
|
-
[_aK],
|
|
462
|
-
[[() => SensitiveString2048, 0]], 1
|
|
463
|
-
];
|
|
464
|
-
var AppAuthorization$ = [3, n0, _AA,
|
|
465
|
-
0,
|
|
466
|
-
[_aAA, _aBA, _a, _t, _aT, _s, _cA, _uA, _p, _aU],
|
|
467
|
-
[0, 0, 0, () => Tenant$, 0, 0, 5, 5, 0, 0], 8
|
|
468
|
-
];
|
|
469
|
-
var AppAuthorizationSummary$ = [3, n0, _AAS,
|
|
470
|
-
0,
|
|
471
|
-
[_aAA, _aBA, _a, _t, _s, _uA],
|
|
472
|
-
[0, 0, 0, () => Tenant$, 0, 5], 6
|
|
473
|
-
];
|
|
474
|
-
var AppBundle$ = [3, n0, _AB,
|
|
475
|
-
0,
|
|
476
|
-
[_ar, _cMKA],
|
|
477
|
-
[0, 0], 1
|
|
478
|
-
];
|
|
479
|
-
var AppBundleSummary$ = [3, n0, _ABS,
|
|
480
|
-
0,
|
|
481
|
-
[_ar],
|
|
482
|
-
[0], 1
|
|
483
|
-
];
|
|
484
|
-
var AuditLogDestinationConfiguration$ = [3, n0, _ALDC,
|
|
485
|
-
0,
|
|
486
|
-
[_d],
|
|
487
|
-
[() => Destination$], 1
|
|
488
|
-
];
|
|
489
|
-
var AuditLogProcessingConfiguration$ = [3, n0, _ALPC,
|
|
490
|
-
0,
|
|
491
|
-
[_sc, _f],
|
|
492
|
-
[0, 0], 2
|
|
493
|
-
];
|
|
494
|
-
var AuthRequest$ = [3, n0, _AR,
|
|
495
|
-
0,
|
|
496
|
-
[_rU, _co],
|
|
497
|
-
[0, [() => SensitiveString2048, 0]], 2
|
|
498
|
-
];
|
|
499
|
-
var BatchGetUserAccessTasksRequest$ = [3, n0, _BGUATR,
|
|
500
|
-
0,
|
|
501
|
-
[_aBI, _tIL],
|
|
502
|
-
[0, 64 | 0], 2
|
|
503
|
-
];
|
|
504
|
-
var BatchGetUserAccessTasksResponse$ = [3, n0, _BGUATRa,
|
|
505
|
-
0,
|
|
506
|
-
[_uARL],
|
|
507
|
-
[[() => UserAccessResultsList, 0]]
|
|
508
|
-
];
|
|
509
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
510
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
511
|
-
[_m, _rI, _rT],
|
|
512
|
-
[0, 0, 0], 3
|
|
513
|
-
];
|
|
514
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
515
|
-
var ConnectAppAuthorizationRequest$ = [3, n0, _CAAR,
|
|
516
|
-
0,
|
|
517
|
-
[_aBI, _aAI, _aR],
|
|
518
|
-
[[0, 1], [0, 1], [() => AuthRequest$, 0]], 2
|
|
519
|
-
];
|
|
520
|
-
var ConnectAppAuthorizationResponse$ = [3, n0, _CAARo,
|
|
521
|
-
0,
|
|
522
|
-
[_aAS],
|
|
523
|
-
[() => AppAuthorizationSummary$], 1
|
|
524
|
-
];
|
|
525
|
-
var CreateAppAuthorizationRequest$ = [3, n0, _CAARr,
|
|
526
|
-
0,
|
|
527
|
-
[_aBI, _a, _cr, _t, _aT, _cT, _ta],
|
|
528
|
-
[[0, 1], 0, [() => Credential$, 0], () => Tenant$, 0, [0, 4], () => TagList], 5
|
|
529
|
-
];
|
|
530
|
-
var CreateAppAuthorizationResponse$ = [3, n0, _CAARre,
|
|
531
|
-
0,
|
|
532
|
-
[_aA],
|
|
533
|
-
[() => AppAuthorization$], 1
|
|
534
|
-
];
|
|
535
|
-
var CreateAppBundleRequest$ = [3, n0, _CABR,
|
|
536
|
-
0,
|
|
537
|
-
[_cT, _cMKI, _ta],
|
|
538
|
-
[[0, 4], 0, () => TagList]
|
|
539
|
-
];
|
|
540
|
-
var CreateAppBundleResponse$ = [3, n0, _CABRr,
|
|
541
|
-
0,
|
|
542
|
-
[_aB],
|
|
543
|
-
[() => AppBundle$], 1
|
|
544
|
-
];
|
|
545
|
-
var CreateIngestionDestinationRequest$ = [3, n0, _CIDR,
|
|
546
|
-
0,
|
|
547
|
-
[_aBI, _iI, _pC, _dC, _cT, _ta],
|
|
548
|
-
[[0, 1], [0, 1], () => ProcessingConfiguration$, () => DestinationConfiguration$, [0, 4], () => TagList], 4
|
|
549
|
-
];
|
|
550
|
-
var CreateIngestionDestinationResponse$ = [3, n0, _CIDRr,
|
|
551
|
-
0,
|
|
552
|
-
[_iD],
|
|
553
|
-
[() => IngestionDestination$], 1
|
|
554
|
-
];
|
|
555
|
-
var CreateIngestionRequest$ = [3, n0, _CIR,
|
|
556
|
-
0,
|
|
557
|
-
[_aBI, _a, _tI, _iT, _cT, _ta],
|
|
558
|
-
[[0, 1], 0, 0, 0, [0, 4], () => TagList], 4
|
|
559
|
-
];
|
|
560
|
-
var CreateIngestionResponse$ = [3, n0, _CIRr,
|
|
561
|
-
0,
|
|
562
|
-
[_i],
|
|
563
|
-
[() => Ingestion$], 1
|
|
564
|
-
];
|
|
565
|
-
var DeleteAppAuthorizationRequest$ = [3, n0, _DAAR,
|
|
566
|
-
0,
|
|
567
|
-
[_aBI, _aAI],
|
|
568
|
-
[[0, 1], [0, 1]], 2
|
|
569
|
-
];
|
|
570
|
-
var DeleteAppAuthorizationResponse$ = [3, n0, _DAARe,
|
|
571
|
-
0,
|
|
572
|
-
[],
|
|
573
|
-
[]
|
|
574
|
-
];
|
|
575
|
-
var DeleteAppBundleRequest$ = [3, n0, _DABR,
|
|
576
|
-
0,
|
|
577
|
-
[_aBI],
|
|
578
|
-
[[0, 1]], 1
|
|
579
|
-
];
|
|
580
|
-
var DeleteAppBundleResponse$ = [3, n0, _DABRe,
|
|
581
|
-
0,
|
|
582
|
-
[],
|
|
583
|
-
[]
|
|
584
|
-
];
|
|
585
|
-
var DeleteIngestionDestinationRequest$ = [3, n0, _DIDR,
|
|
586
|
-
0,
|
|
587
|
-
[_aBI, _iI, _iDI],
|
|
588
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
589
|
-
];
|
|
590
|
-
var DeleteIngestionDestinationResponse$ = [3, n0, _DIDRe,
|
|
591
|
-
0,
|
|
592
|
-
[],
|
|
593
|
-
[]
|
|
594
|
-
];
|
|
595
|
-
var DeleteIngestionRequest$ = [3, n0, _DIR,
|
|
596
|
-
0,
|
|
597
|
-
[_aBI, _iI],
|
|
598
|
-
[[0, 1], [0, 1]], 2
|
|
599
|
-
];
|
|
600
|
-
var DeleteIngestionResponse$ = [3, n0, _DIRe,
|
|
601
|
-
0,
|
|
602
|
-
[],
|
|
603
|
-
[]
|
|
604
|
-
];
|
|
605
|
-
var FirehoseStream$ = [3, n0, _FS,
|
|
606
|
-
0,
|
|
607
|
-
[_sN],
|
|
608
|
-
[0], 1
|
|
609
|
-
];
|
|
610
|
-
var GetAppAuthorizationRequest$ = [3, n0, _GAAR,
|
|
611
|
-
0,
|
|
612
|
-
[_aBI, _aAI],
|
|
613
|
-
[[0, 1], [0, 1]], 2
|
|
614
|
-
];
|
|
615
|
-
var GetAppAuthorizationResponse$ = [3, n0, _GAARe,
|
|
616
|
-
0,
|
|
617
|
-
[_aA],
|
|
618
|
-
[() => AppAuthorization$], 1
|
|
619
|
-
];
|
|
620
|
-
var GetAppBundleRequest$ = [3, n0, _GABR,
|
|
621
|
-
0,
|
|
622
|
-
[_aBI],
|
|
623
|
-
[[0, 1]], 1
|
|
624
|
-
];
|
|
625
|
-
var GetAppBundleResponse$ = [3, n0, _GABRe,
|
|
626
|
-
0,
|
|
627
|
-
[_aB],
|
|
628
|
-
[() => AppBundle$], 1
|
|
629
|
-
];
|
|
630
|
-
var GetIngestionDestinationRequest$ = [3, n0, _GIDR,
|
|
631
|
-
0,
|
|
632
|
-
[_aBI, _iI, _iDI],
|
|
633
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
634
|
-
];
|
|
635
|
-
var GetIngestionDestinationResponse$ = [3, n0, _GIDRe,
|
|
636
|
-
0,
|
|
637
|
-
[_iD],
|
|
638
|
-
[() => IngestionDestination$], 1
|
|
639
|
-
];
|
|
640
|
-
var GetIngestionRequest$ = [3, n0, _GIR,
|
|
641
|
-
0,
|
|
642
|
-
[_aBI, _iI],
|
|
643
|
-
[[0, 1], [0, 1]], 2
|
|
644
|
-
];
|
|
645
|
-
var GetIngestionResponse$ = [3, n0, _GIRe,
|
|
646
|
-
0,
|
|
647
|
-
[_i],
|
|
648
|
-
[() => Ingestion$], 1
|
|
649
|
-
];
|
|
650
|
-
var Ingestion$ = [3, n0, _I,
|
|
651
|
-
0,
|
|
652
|
-
[_ar, _aBA, _a, _tI, _cA, _uA, _st, _iT],
|
|
653
|
-
[0, 0, 0, 0, 5, 5, 0, 0], 8
|
|
654
|
-
];
|
|
655
|
-
var IngestionDestination$ = [3, n0, _ID,
|
|
656
|
-
0,
|
|
657
|
-
[_ar, _iA, _pC, _dC, _s, _sR, _cA, _uA],
|
|
658
|
-
[0, 0, () => ProcessingConfiguration$, () => DestinationConfiguration$, 0, 0, 5, 5], 4
|
|
659
|
-
];
|
|
660
|
-
var IngestionDestinationSummary$ = [3, n0, _IDS,
|
|
661
|
-
0,
|
|
662
|
-
[_ar],
|
|
663
|
-
[0], 1
|
|
664
|
-
];
|
|
665
|
-
var IngestionSummary$ = [3, n0, _IS,
|
|
666
|
-
0,
|
|
667
|
-
[_ar, _a, _tI, _st],
|
|
668
|
-
[0, 0, 0, 0], 4
|
|
669
|
-
];
|
|
670
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
671
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
672
|
-
[_m, _rAS],
|
|
673
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
674
|
-
];
|
|
675
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
676
|
-
var ListAppAuthorizationsRequest$ = [3, n0, _LAAR,
|
|
677
|
-
0,
|
|
678
|
-
[_aBI, _mR, _nT],
|
|
679
|
-
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
680
|
-
];
|
|
681
|
-
var ListAppAuthorizationsResponse$ = [3, n0, _LAARi,
|
|
682
|
-
0,
|
|
683
|
-
[_aASL, _nT],
|
|
684
|
-
[() => AppAuthorizationSummaryList, 0], 1
|
|
685
|
-
];
|
|
686
|
-
var ListAppBundlesRequest$ = [3, n0, _LABR,
|
|
687
|
-
0,
|
|
688
|
-
[_mR, _nT],
|
|
689
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
690
|
-
];
|
|
691
|
-
var ListAppBundlesResponse$ = [3, n0, _LABRi,
|
|
692
|
-
0,
|
|
693
|
-
[_aBSL, _nT],
|
|
694
|
-
[() => AppBundleSummaryList, 0], 1
|
|
695
|
-
];
|
|
696
|
-
var ListIngestionDestinationsRequest$ = [3, n0, _LIDR,
|
|
697
|
-
0,
|
|
698
|
-
[_aBI, _iI, _mR, _nT],
|
|
699
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
700
|
-
];
|
|
701
|
-
var ListIngestionDestinationsResponse$ = [3, n0, _LIDRi,
|
|
702
|
-
0,
|
|
703
|
-
[_iDn, _nT],
|
|
704
|
-
[() => IngestionDestinationList, 0], 1
|
|
705
|
-
];
|
|
706
|
-
var ListIngestionsRequest$ = [3, n0, _LIR,
|
|
707
|
-
0,
|
|
708
|
-
[_aBI, _mR, _nT],
|
|
709
|
-
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
710
|
-
];
|
|
711
|
-
var ListIngestionsResponse$ = [3, n0, _LIRi,
|
|
712
|
-
0,
|
|
713
|
-
[_in, _nT],
|
|
714
|
-
[() => IngestionList, 0], 1
|
|
715
|
-
];
|
|
716
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
717
|
-
0,
|
|
718
|
-
[_rA],
|
|
719
|
-
[[0, 1]], 1
|
|
720
|
-
];
|
|
721
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
722
|
-
0,
|
|
723
|
-
[_ta],
|
|
724
|
-
[() => TagList]
|
|
725
|
-
];
|
|
726
|
-
var Oauth2Credential$ = [3, n0, _OC,
|
|
727
|
-
0,
|
|
728
|
-
[_cI, _cS],
|
|
729
|
-
[0, [() => SensitiveString2048, 0]], 2
|
|
730
|
-
];
|
|
731
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
732
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
733
|
-
[_m, _rI, _rT],
|
|
734
|
-
[0, 0, 0], 3
|
|
735
|
-
];
|
|
736
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
737
|
-
var S3Bucket$ = [3, n0, _SB,
|
|
738
|
-
0,
|
|
739
|
-
[_bN, _pr],
|
|
740
|
-
[0, 0], 1
|
|
741
|
-
];
|
|
742
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
743
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
744
|
-
[_m, _rI, _rT, _sC, _qC],
|
|
745
|
-
[0, 0, 0, 0, 0], 5
|
|
746
|
-
];
|
|
747
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
748
|
-
var StartIngestionRequest$ = [3, n0, _SIR,
|
|
749
|
-
0,
|
|
750
|
-
[_iI, _aBI],
|
|
751
|
-
[[0, 1], [0, 1]], 2
|
|
752
|
-
];
|
|
753
|
-
var StartIngestionResponse$ = [3, n0, _SIRt,
|
|
754
|
-
0,
|
|
755
|
-
[],
|
|
756
|
-
[]
|
|
757
|
-
];
|
|
758
|
-
var StartUserAccessTasksRequest$ = [3, n0, _SUATR,
|
|
759
|
-
0,
|
|
760
|
-
[_aBI, _em],
|
|
761
|
-
[0, [() => Email, 0]], 2
|
|
762
|
-
];
|
|
763
|
-
var StartUserAccessTasksResponse$ = [3, n0, _SUATRt,
|
|
764
|
-
0,
|
|
765
|
-
[_uATL],
|
|
766
|
-
[() => UserAccessTasksList]
|
|
767
|
-
];
|
|
768
|
-
var StopIngestionRequest$ = [3, n0, _SIRto,
|
|
769
|
-
0,
|
|
770
|
-
[_iI, _aBI],
|
|
771
|
-
[[0, 1], [0, 1]], 2
|
|
772
|
-
];
|
|
773
|
-
var StopIngestionResponse$ = [3, n0, _SIRtop,
|
|
774
|
-
0,
|
|
775
|
-
[],
|
|
776
|
-
[]
|
|
777
|
-
];
|
|
778
|
-
var Tag$ = [3, n0, _T,
|
|
779
|
-
0,
|
|
780
|
-
[_k, _v],
|
|
781
|
-
[0, 0], 2
|
|
782
|
-
];
|
|
783
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
784
|
-
0,
|
|
785
|
-
[_rA, _ta],
|
|
786
|
-
[[0, 1], () => TagList], 2
|
|
787
|
-
];
|
|
788
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
789
|
-
0,
|
|
790
|
-
[],
|
|
791
|
-
[]
|
|
792
|
-
];
|
|
793
|
-
var TaskError$ = [3, n0, _TE,
|
|
794
|
-
0,
|
|
795
|
-
[_eC, _eM],
|
|
796
|
-
[0, 0]
|
|
797
|
-
];
|
|
798
|
-
var Tenant$ = [3, n0, _Te,
|
|
799
|
-
0,
|
|
800
|
-
[_tIe, _tDN],
|
|
801
|
-
[0, 0], 2
|
|
802
|
-
];
|
|
803
|
-
var ThrottlingException$ = [-3, n0, _TEh,
|
|
804
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
805
|
-
[_m, _sC, _qC, _rAS],
|
|
806
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
807
|
-
];
|
|
808
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
809
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
810
|
-
0,
|
|
811
|
-
[_rA, _tK],
|
|
812
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
813
|
-
];
|
|
814
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
815
|
-
0,
|
|
816
|
-
[],
|
|
817
|
-
[]
|
|
818
|
-
];
|
|
819
|
-
var UpdateAppAuthorizationRequest$ = [3, n0, _UAAR,
|
|
820
|
-
0,
|
|
821
|
-
[_aBI, _aAI, _cr, _t],
|
|
822
|
-
[[0, 1], [0, 1], [() => Credential$, 0], () => Tenant$], 2
|
|
823
|
-
];
|
|
824
|
-
var UpdateAppAuthorizationResponse$ = [3, n0, _UAARp,
|
|
825
|
-
0,
|
|
826
|
-
[_aA],
|
|
827
|
-
[() => AppAuthorization$], 1
|
|
828
|
-
];
|
|
829
|
-
var UpdateIngestionDestinationRequest$ = [3, n0, _UIDR,
|
|
830
|
-
0,
|
|
831
|
-
[_aBI, _iI, _iDI, _dC],
|
|
832
|
-
[[0, 1], [0, 1], [0, 1], () => DestinationConfiguration$], 4
|
|
833
|
-
];
|
|
834
|
-
var UpdateIngestionDestinationResponse$ = [3, n0, _UIDRp,
|
|
835
|
-
0,
|
|
836
|
-
[_iD],
|
|
837
|
-
[() => IngestionDestination$], 1
|
|
838
|
-
];
|
|
839
|
-
var UserAccessResultItem$ = [3, n0, _UARI,
|
|
840
|
-
0,
|
|
841
|
-
[_a, _tI, _tDN, _tIa, _rS, _em, _uI, _uFN, _uFNs, _uLN, _uS, _tE],
|
|
842
|
-
[0, 0, 0, 0, 0, [() => Email, 0], [() => SensitiveString2048, 0], [() => SensitiveString2048, 0], [() => SensitiveString2048, 0], [() => SensitiveString2048, 0], 0, () => TaskError$]
|
|
843
|
-
];
|
|
844
|
-
var UserAccessTaskItem$ = [3, n0, _UATI,
|
|
845
|
-
0,
|
|
846
|
-
[_a, _tI, _tIa, _e],
|
|
847
|
-
[0, 0, 0, () => TaskError$], 2
|
|
848
|
-
];
|
|
849
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
850
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
851
|
-
[_m, _r, _fL],
|
|
852
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
853
|
-
];
|
|
854
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
855
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
856
|
-
0,
|
|
857
|
-
[_n, _m],
|
|
858
|
-
[0, 0], 2
|
|
859
|
-
];
|
|
860
|
-
var AppFabricServiceException$ = [-3, _sm, "AppFabricServiceException", 0, [], []];
|
|
861
|
-
schema.TypeRegistry.for(_sm).registerError(AppFabricServiceException$, AppFabricServiceException);
|
|
862
|
-
var AppAuthorizationSummaryList = [1, n0, _AASL,
|
|
863
|
-
0, () => AppAuthorizationSummary$
|
|
864
|
-
];
|
|
865
|
-
var AppBundleSummaryList = [1, n0, _ABSL,
|
|
866
|
-
0, () => AppBundleSummary$
|
|
867
|
-
];
|
|
868
|
-
var IngestionDestinationList = [1, n0, _IDL,
|
|
869
|
-
0, () => IngestionDestinationSummary$
|
|
870
|
-
];
|
|
871
|
-
var IngestionList = [1, n0, _IL,
|
|
872
|
-
0, () => IngestionSummary$
|
|
873
|
-
];
|
|
874
|
-
var TagList = [1, n0, _TL,
|
|
875
|
-
0, () => Tag$
|
|
876
|
-
];
|
|
877
|
-
var UserAccessResultsList = [1, n0, _UARL,
|
|
878
|
-
0, [() => UserAccessResultItem$,
|
|
879
|
-
0]
|
|
880
|
-
];
|
|
881
|
-
var UserAccessTasksList = [1, n0, _UATL,
|
|
882
|
-
0, () => UserAccessTaskItem$
|
|
883
|
-
];
|
|
884
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
885
|
-
0, () => ValidationExceptionField$
|
|
886
|
-
];
|
|
887
|
-
var Credential$ = [4, n0, _C,
|
|
888
|
-
0,
|
|
889
|
-
[_oC, _aKC],
|
|
890
|
-
[[() => Oauth2Credential$, 0], [() => ApiKeyCredential$, 0]]
|
|
891
|
-
];
|
|
892
|
-
var Destination$ = [4, n0, _D,
|
|
893
|
-
0,
|
|
894
|
-
[_sB, _fS],
|
|
895
|
-
[() => S3Bucket$, () => FirehoseStream$]
|
|
896
|
-
];
|
|
897
|
-
var DestinationConfiguration$ = [4, n0, _DC,
|
|
898
|
-
0,
|
|
899
|
-
[_aL],
|
|
900
|
-
[() => AuditLogDestinationConfiguration$]
|
|
901
|
-
];
|
|
902
|
-
var ProcessingConfiguration$ = [4, n0, _PC,
|
|
903
|
-
0,
|
|
904
|
-
[_aL],
|
|
905
|
-
[() => AuditLogProcessingConfiguration$]
|
|
906
|
-
];
|
|
907
|
-
var BatchGetUserAccessTasks$ = [9, n0, _BGUAT,
|
|
908
|
-
{ [_h]: ["POST", "/useraccess/batchget", 200] }, () => BatchGetUserAccessTasksRequest$, () => BatchGetUserAccessTasksResponse$
|
|
909
|
-
];
|
|
910
|
-
var ConnectAppAuthorization$ = [9, n0, _CAA,
|
|
911
|
-
{ [_h]: ["POST", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}/connect", 200] }, () => ConnectAppAuthorizationRequest$, () => ConnectAppAuthorizationResponse$
|
|
912
|
-
];
|
|
913
|
-
var CreateAppAuthorization$ = [9, n0, _CAAr,
|
|
914
|
-
{ [_h]: ["POST", "/appbundles/{appBundleIdentifier}/appauthorizations", 201] }, () => CreateAppAuthorizationRequest$, () => CreateAppAuthorizationResponse$
|
|
915
|
-
];
|
|
916
|
-
var CreateAppBundle$ = [9, n0, _CAB,
|
|
917
|
-
{ [_h]: ["POST", "/appbundles", 201] }, () => CreateAppBundleRequest$, () => CreateAppBundleResponse$
|
|
918
|
-
];
|
|
919
|
-
var CreateIngestion$ = [9, n0, _CI,
|
|
920
|
-
{ [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions", 201] }, () => CreateIngestionRequest$, () => CreateIngestionResponse$
|
|
921
|
-
];
|
|
922
|
-
var CreateIngestionDestination$ = [9, n0, _CID,
|
|
923
|
-
{ [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations", 201] }, () => CreateIngestionDestinationRequest$, () => CreateIngestionDestinationResponse$
|
|
924
|
-
];
|
|
925
|
-
var DeleteAppAuthorization$ = [9, n0, _DAA,
|
|
926
|
-
{ [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 204] }, () => DeleteAppAuthorizationRequest$, () => DeleteAppAuthorizationResponse$
|
|
927
|
-
];
|
|
928
|
-
var DeleteAppBundle$ = [9, n0, _DAB,
|
|
929
|
-
{ [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}", 204] }, () => DeleteAppBundleRequest$, () => DeleteAppBundleResponse$
|
|
930
|
-
];
|
|
931
|
-
var DeleteIngestion$ = [9, n0, _DI,
|
|
932
|
-
{ [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}", 204] }, () => DeleteIngestionRequest$, () => DeleteIngestionResponse$
|
|
933
|
-
];
|
|
934
|
-
var DeleteIngestionDestination$ = [9, n0, _DID,
|
|
935
|
-
{ [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}", 204] }, () => DeleteIngestionDestinationRequest$, () => DeleteIngestionDestinationResponse$
|
|
936
|
-
];
|
|
937
|
-
var GetAppAuthorization$ = [9, n0, _GAA,
|
|
938
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 200] }, () => GetAppAuthorizationRequest$, () => GetAppAuthorizationResponse$
|
|
939
|
-
];
|
|
940
|
-
var GetAppBundle$ = [9, n0, _GAB,
|
|
941
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}", 200] }, () => GetAppBundleRequest$, () => GetAppBundleResponse$
|
|
942
|
-
];
|
|
943
|
-
var GetIngestion$ = [9, n0, _GI,
|
|
944
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}", 200] }, () => GetIngestionRequest$, () => GetIngestionResponse$
|
|
945
|
-
];
|
|
946
|
-
var GetIngestionDestination$ = [9, n0, _GID,
|
|
947
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}", 200] }, () => GetIngestionDestinationRequest$, () => GetIngestionDestinationResponse$
|
|
948
|
-
];
|
|
949
|
-
var ListAppAuthorizations$ = [9, n0, _LAA,
|
|
950
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}/appauthorizations", 200] }, () => ListAppAuthorizationsRequest$, () => ListAppAuthorizationsResponse$
|
|
951
|
-
];
|
|
952
|
-
var ListAppBundles$ = [9, n0, _LAB,
|
|
953
|
-
{ [_h]: ["GET", "/appbundles", 200] }, () => ListAppBundlesRequest$, () => ListAppBundlesResponse$
|
|
954
|
-
];
|
|
955
|
-
var ListIngestionDestinations$ = [9, n0, _LID,
|
|
956
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations", 200] }, () => ListIngestionDestinationsRequest$, () => ListIngestionDestinationsResponse$
|
|
957
|
-
];
|
|
958
|
-
var ListIngestions$ = [9, n0, _LI,
|
|
959
|
-
{ [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions", 200] }, () => ListIngestionsRequest$, () => ListIngestionsResponse$
|
|
960
|
-
];
|
|
961
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
962
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
963
|
-
];
|
|
964
|
-
var StartIngestion$ = [9, n0, _SI,
|
|
965
|
-
{ [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/start", 200] }, () => StartIngestionRequest$, () => StartIngestionResponse$
|
|
966
|
-
];
|
|
967
|
-
var StartUserAccessTasks$ = [9, n0, _SUAT,
|
|
968
|
-
{ [_h]: ["POST", "/useraccess/start", 201] }, () => StartUserAccessTasksRequest$, () => StartUserAccessTasksResponse$
|
|
969
|
-
];
|
|
970
|
-
var StopIngestion$ = [9, n0, _SIt,
|
|
971
|
-
{ [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/stop", 200] }, () => StopIngestionRequest$, () => StopIngestionResponse$
|
|
972
|
-
];
|
|
973
|
-
var TagResource$ = [9, n0, _TR,
|
|
974
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
975
|
-
];
|
|
976
|
-
var UntagResource$ = [9, n0, _UR,
|
|
977
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
978
|
-
];
|
|
979
|
-
var UpdateAppAuthorization$ = [9, n0, _UAA,
|
|
980
|
-
{ [_h]: ["PATCH", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 200] }, () => UpdateAppAuthorizationRequest$, () => UpdateAppAuthorizationResponse$
|
|
981
|
-
];
|
|
982
|
-
var UpdateIngestionDestination$ = [9, n0, _UID,
|
|
983
|
-
{ [_h]: ["PATCH", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}", 200] }, () => UpdateIngestionDestinationRequest$, () => UpdateIngestionDestinationResponse$
|
|
984
|
-
];
|
|
985
|
-
|
|
986
116
|
class BatchGetUserAccessTasksCommand extends smithyClient.Command
|
|
987
117
|
.classBuilder()
|
|
988
118
|
.ep(commonParams)
|
|
@@ -991,7 +121,7 @@ class BatchGetUserAccessTasksCommand extends smithyClient.Command
|
|
|
991
121
|
})
|
|
992
122
|
.s("FabricFrontEndService", "BatchGetUserAccessTasks", {})
|
|
993
123
|
.n("AppFabricClient", "BatchGetUserAccessTasksCommand")
|
|
994
|
-
.sc(BatchGetUserAccessTasks$)
|
|
124
|
+
.sc(schemas_0.BatchGetUserAccessTasks$)
|
|
995
125
|
.build() {
|
|
996
126
|
}
|
|
997
127
|
|
|
@@ -1003,7 +133,7 @@ class ConnectAppAuthorizationCommand extends smithyClient.Command
|
|
|
1003
133
|
})
|
|
1004
134
|
.s("FabricFrontEndService", "ConnectAppAuthorization", {})
|
|
1005
135
|
.n("AppFabricClient", "ConnectAppAuthorizationCommand")
|
|
1006
|
-
.sc(ConnectAppAuthorization$)
|
|
136
|
+
.sc(schemas_0.ConnectAppAuthorization$)
|
|
1007
137
|
.build() {
|
|
1008
138
|
}
|
|
1009
139
|
|
|
@@ -1015,7 +145,7 @@ class CreateAppAuthorizationCommand extends smithyClient.Command
|
|
|
1015
145
|
})
|
|
1016
146
|
.s("FabricFrontEndService", "CreateAppAuthorization", {})
|
|
1017
147
|
.n("AppFabricClient", "CreateAppAuthorizationCommand")
|
|
1018
|
-
.sc(CreateAppAuthorization$)
|
|
148
|
+
.sc(schemas_0.CreateAppAuthorization$)
|
|
1019
149
|
.build() {
|
|
1020
150
|
}
|
|
1021
151
|
|
|
@@ -1027,7 +157,7 @@ class CreateAppBundleCommand extends smithyClient.Command
|
|
|
1027
157
|
})
|
|
1028
158
|
.s("FabricFrontEndService", "CreateAppBundle", {})
|
|
1029
159
|
.n("AppFabricClient", "CreateAppBundleCommand")
|
|
1030
|
-
.sc(CreateAppBundle$)
|
|
160
|
+
.sc(schemas_0.CreateAppBundle$)
|
|
1031
161
|
.build() {
|
|
1032
162
|
}
|
|
1033
163
|
|
|
@@ -1039,7 +169,7 @@ class CreateIngestionCommand extends smithyClient.Command
|
|
|
1039
169
|
})
|
|
1040
170
|
.s("FabricFrontEndService", "CreateIngestion", {})
|
|
1041
171
|
.n("AppFabricClient", "CreateIngestionCommand")
|
|
1042
|
-
.sc(CreateIngestion$)
|
|
172
|
+
.sc(schemas_0.CreateIngestion$)
|
|
1043
173
|
.build() {
|
|
1044
174
|
}
|
|
1045
175
|
|
|
@@ -1051,7 +181,7 @@ class CreateIngestionDestinationCommand extends smithyClient.Command
|
|
|
1051
181
|
})
|
|
1052
182
|
.s("FabricFrontEndService", "CreateIngestionDestination", {})
|
|
1053
183
|
.n("AppFabricClient", "CreateIngestionDestinationCommand")
|
|
1054
|
-
.sc(CreateIngestionDestination$)
|
|
184
|
+
.sc(schemas_0.CreateIngestionDestination$)
|
|
1055
185
|
.build() {
|
|
1056
186
|
}
|
|
1057
187
|
|
|
@@ -1063,7 +193,7 @@ class DeleteAppAuthorizationCommand extends smithyClient.Command
|
|
|
1063
193
|
})
|
|
1064
194
|
.s("FabricFrontEndService", "DeleteAppAuthorization", {})
|
|
1065
195
|
.n("AppFabricClient", "DeleteAppAuthorizationCommand")
|
|
1066
|
-
.sc(DeleteAppAuthorization$)
|
|
196
|
+
.sc(schemas_0.DeleteAppAuthorization$)
|
|
1067
197
|
.build() {
|
|
1068
198
|
}
|
|
1069
199
|
|
|
@@ -1075,7 +205,7 @@ class DeleteAppBundleCommand extends smithyClient.Command
|
|
|
1075
205
|
})
|
|
1076
206
|
.s("FabricFrontEndService", "DeleteAppBundle", {})
|
|
1077
207
|
.n("AppFabricClient", "DeleteAppBundleCommand")
|
|
1078
|
-
.sc(DeleteAppBundle$)
|
|
208
|
+
.sc(schemas_0.DeleteAppBundle$)
|
|
1079
209
|
.build() {
|
|
1080
210
|
}
|
|
1081
211
|
|
|
@@ -1087,7 +217,7 @@ class DeleteIngestionCommand extends smithyClient.Command
|
|
|
1087
217
|
})
|
|
1088
218
|
.s("FabricFrontEndService", "DeleteIngestion", {})
|
|
1089
219
|
.n("AppFabricClient", "DeleteIngestionCommand")
|
|
1090
|
-
.sc(DeleteIngestion$)
|
|
220
|
+
.sc(schemas_0.DeleteIngestion$)
|
|
1091
221
|
.build() {
|
|
1092
222
|
}
|
|
1093
223
|
|
|
@@ -1099,7 +229,7 @@ class DeleteIngestionDestinationCommand extends smithyClient.Command
|
|
|
1099
229
|
})
|
|
1100
230
|
.s("FabricFrontEndService", "DeleteIngestionDestination", {})
|
|
1101
231
|
.n("AppFabricClient", "DeleteIngestionDestinationCommand")
|
|
1102
|
-
.sc(DeleteIngestionDestination$)
|
|
232
|
+
.sc(schemas_0.DeleteIngestionDestination$)
|
|
1103
233
|
.build() {
|
|
1104
234
|
}
|
|
1105
235
|
|
|
@@ -1111,7 +241,7 @@ class GetAppAuthorizationCommand extends smithyClient.Command
|
|
|
1111
241
|
})
|
|
1112
242
|
.s("FabricFrontEndService", "GetAppAuthorization", {})
|
|
1113
243
|
.n("AppFabricClient", "GetAppAuthorizationCommand")
|
|
1114
|
-
.sc(GetAppAuthorization$)
|
|
244
|
+
.sc(schemas_0.GetAppAuthorization$)
|
|
1115
245
|
.build() {
|
|
1116
246
|
}
|
|
1117
247
|
|
|
@@ -1123,7 +253,7 @@ class GetAppBundleCommand extends smithyClient.Command
|
|
|
1123
253
|
})
|
|
1124
254
|
.s("FabricFrontEndService", "GetAppBundle", {})
|
|
1125
255
|
.n("AppFabricClient", "GetAppBundleCommand")
|
|
1126
|
-
.sc(GetAppBundle$)
|
|
256
|
+
.sc(schemas_0.GetAppBundle$)
|
|
1127
257
|
.build() {
|
|
1128
258
|
}
|
|
1129
259
|
|
|
@@ -1135,7 +265,7 @@ class GetIngestionCommand extends smithyClient.Command
|
|
|
1135
265
|
})
|
|
1136
266
|
.s("FabricFrontEndService", "GetIngestion", {})
|
|
1137
267
|
.n("AppFabricClient", "GetIngestionCommand")
|
|
1138
|
-
.sc(GetIngestion$)
|
|
268
|
+
.sc(schemas_0.GetIngestion$)
|
|
1139
269
|
.build() {
|
|
1140
270
|
}
|
|
1141
271
|
|
|
@@ -1147,7 +277,7 @@ class GetIngestionDestinationCommand extends smithyClient.Command
|
|
|
1147
277
|
})
|
|
1148
278
|
.s("FabricFrontEndService", "GetIngestionDestination", {})
|
|
1149
279
|
.n("AppFabricClient", "GetIngestionDestinationCommand")
|
|
1150
|
-
.sc(GetIngestionDestination$)
|
|
280
|
+
.sc(schemas_0.GetIngestionDestination$)
|
|
1151
281
|
.build() {
|
|
1152
282
|
}
|
|
1153
283
|
|
|
@@ -1159,7 +289,7 @@ class ListAppAuthorizationsCommand extends smithyClient.Command
|
|
|
1159
289
|
})
|
|
1160
290
|
.s("FabricFrontEndService", "ListAppAuthorizations", {})
|
|
1161
291
|
.n("AppFabricClient", "ListAppAuthorizationsCommand")
|
|
1162
|
-
.sc(ListAppAuthorizations$)
|
|
292
|
+
.sc(schemas_0.ListAppAuthorizations$)
|
|
1163
293
|
.build() {
|
|
1164
294
|
}
|
|
1165
295
|
|
|
@@ -1171,7 +301,7 @@ class ListAppBundlesCommand extends smithyClient.Command
|
|
|
1171
301
|
})
|
|
1172
302
|
.s("FabricFrontEndService", "ListAppBundles", {})
|
|
1173
303
|
.n("AppFabricClient", "ListAppBundlesCommand")
|
|
1174
|
-
.sc(ListAppBundles$)
|
|
304
|
+
.sc(schemas_0.ListAppBundles$)
|
|
1175
305
|
.build() {
|
|
1176
306
|
}
|
|
1177
307
|
|
|
@@ -1183,7 +313,7 @@ class ListIngestionDestinationsCommand extends smithyClient.Command
|
|
|
1183
313
|
})
|
|
1184
314
|
.s("FabricFrontEndService", "ListIngestionDestinations", {})
|
|
1185
315
|
.n("AppFabricClient", "ListIngestionDestinationsCommand")
|
|
1186
|
-
.sc(ListIngestionDestinations$)
|
|
316
|
+
.sc(schemas_0.ListIngestionDestinations$)
|
|
1187
317
|
.build() {
|
|
1188
318
|
}
|
|
1189
319
|
|
|
@@ -1195,7 +325,7 @@ class ListIngestionsCommand extends smithyClient.Command
|
|
|
1195
325
|
})
|
|
1196
326
|
.s("FabricFrontEndService", "ListIngestions", {})
|
|
1197
327
|
.n("AppFabricClient", "ListIngestionsCommand")
|
|
1198
|
-
.sc(ListIngestions$)
|
|
328
|
+
.sc(schemas_0.ListIngestions$)
|
|
1199
329
|
.build() {
|
|
1200
330
|
}
|
|
1201
331
|
|
|
@@ -1207,7 +337,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1207
337
|
})
|
|
1208
338
|
.s("FabricFrontEndService", "ListTagsForResource", {})
|
|
1209
339
|
.n("AppFabricClient", "ListTagsForResourceCommand")
|
|
1210
|
-
.sc(ListTagsForResource$)
|
|
340
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1211
341
|
.build() {
|
|
1212
342
|
}
|
|
1213
343
|
|
|
@@ -1219,7 +349,7 @@ class StartIngestionCommand extends smithyClient.Command
|
|
|
1219
349
|
})
|
|
1220
350
|
.s("FabricFrontEndService", "StartIngestion", {})
|
|
1221
351
|
.n("AppFabricClient", "StartIngestionCommand")
|
|
1222
|
-
.sc(StartIngestion$)
|
|
352
|
+
.sc(schemas_0.StartIngestion$)
|
|
1223
353
|
.build() {
|
|
1224
354
|
}
|
|
1225
355
|
|
|
@@ -1231,7 +361,7 @@ class StartUserAccessTasksCommand extends smithyClient.Command
|
|
|
1231
361
|
})
|
|
1232
362
|
.s("FabricFrontEndService", "StartUserAccessTasks", {})
|
|
1233
363
|
.n("AppFabricClient", "StartUserAccessTasksCommand")
|
|
1234
|
-
.sc(StartUserAccessTasks$)
|
|
364
|
+
.sc(schemas_0.StartUserAccessTasks$)
|
|
1235
365
|
.build() {
|
|
1236
366
|
}
|
|
1237
367
|
|
|
@@ -1243,7 +373,7 @@ class StopIngestionCommand extends smithyClient.Command
|
|
|
1243
373
|
})
|
|
1244
374
|
.s("FabricFrontEndService", "StopIngestion", {})
|
|
1245
375
|
.n("AppFabricClient", "StopIngestionCommand")
|
|
1246
|
-
.sc(StopIngestion$)
|
|
376
|
+
.sc(schemas_0.StopIngestion$)
|
|
1247
377
|
.build() {
|
|
1248
378
|
}
|
|
1249
379
|
|
|
@@ -1255,7 +385,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1255
385
|
})
|
|
1256
386
|
.s("FabricFrontEndService", "TagResource", {})
|
|
1257
387
|
.n("AppFabricClient", "TagResourceCommand")
|
|
1258
|
-
.sc(TagResource$)
|
|
388
|
+
.sc(schemas_0.TagResource$)
|
|
1259
389
|
.build() {
|
|
1260
390
|
}
|
|
1261
391
|
|
|
@@ -1267,7 +397,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1267
397
|
})
|
|
1268
398
|
.s("FabricFrontEndService", "UntagResource", {})
|
|
1269
399
|
.n("AppFabricClient", "UntagResourceCommand")
|
|
1270
|
-
.sc(UntagResource$)
|
|
400
|
+
.sc(schemas_0.UntagResource$)
|
|
1271
401
|
.build() {
|
|
1272
402
|
}
|
|
1273
403
|
|
|
@@ -1279,7 +409,7 @@ class UpdateAppAuthorizationCommand extends smithyClient.Command
|
|
|
1279
409
|
})
|
|
1280
410
|
.s("FabricFrontEndService", "UpdateAppAuthorization", {})
|
|
1281
411
|
.n("AppFabricClient", "UpdateAppAuthorizationCommand")
|
|
1282
|
-
.sc(UpdateAppAuthorization$)
|
|
412
|
+
.sc(schemas_0.UpdateAppAuthorization$)
|
|
1283
413
|
.build() {
|
|
1284
414
|
}
|
|
1285
415
|
|
|
@@ -1291,7 +421,7 @@ class UpdateIngestionDestinationCommand extends smithyClient.Command
|
|
|
1291
421
|
})
|
|
1292
422
|
.s("FabricFrontEndService", "UpdateIngestionDestination", {})
|
|
1293
423
|
.n("AppFabricClient", "UpdateIngestionDestinationCommand")
|
|
1294
|
-
.sc(UpdateIngestionDestination$)
|
|
424
|
+
.sc(schemas_0.UpdateIngestionDestination$)
|
|
1295
425
|
.build() {
|
|
1296
426
|
}
|
|
1297
427
|
|
|
@@ -1395,164 +525,61 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1395
525
|
enumerable: true,
|
|
1396
526
|
get: function () { return smithyClient.Client; }
|
|
1397
527
|
});
|
|
1398
|
-
exports
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
528
|
+
Object.defineProperty(exports, "AppFabricServiceException", {
|
|
529
|
+
enumerable: true,
|
|
530
|
+
get: function () { return AppFabricServiceException.AppFabricServiceException; }
|
|
531
|
+
});
|
|
1402
532
|
exports.AppAuthorizationStatus = AppAuthorizationStatus;
|
|
1403
|
-
exports.AppAuthorizationSummary$ = AppAuthorizationSummary$;
|
|
1404
|
-
exports.AppBundle$ = AppBundle$;
|
|
1405
|
-
exports.AppBundleSummary$ = AppBundleSummary$;
|
|
1406
533
|
exports.AppFabric = AppFabric;
|
|
1407
534
|
exports.AppFabricClient = AppFabricClient;
|
|
1408
|
-
exports.AppFabricServiceException = AppFabricServiceException;
|
|
1409
|
-
exports.AppFabricServiceException$ = AppFabricServiceException$;
|
|
1410
|
-
exports.AuditLogDestinationConfiguration$ = AuditLogDestinationConfiguration$;
|
|
1411
|
-
exports.AuditLogProcessingConfiguration$ = AuditLogProcessingConfiguration$;
|
|
1412
|
-
exports.AuthRequest$ = AuthRequest$;
|
|
1413
535
|
exports.AuthType = AuthType;
|
|
1414
|
-
exports.BatchGetUserAccessTasks$ = BatchGetUserAccessTasks$;
|
|
1415
536
|
exports.BatchGetUserAccessTasksCommand = BatchGetUserAccessTasksCommand;
|
|
1416
|
-
exports.BatchGetUserAccessTasksRequest$ = BatchGetUserAccessTasksRequest$;
|
|
1417
|
-
exports.BatchGetUserAccessTasksResponse$ = BatchGetUserAccessTasksResponse$;
|
|
1418
|
-
exports.ConflictException = ConflictException;
|
|
1419
|
-
exports.ConflictException$ = ConflictException$;
|
|
1420
|
-
exports.ConnectAppAuthorization$ = ConnectAppAuthorization$;
|
|
1421
537
|
exports.ConnectAppAuthorizationCommand = ConnectAppAuthorizationCommand;
|
|
1422
|
-
exports.ConnectAppAuthorizationRequest$ = ConnectAppAuthorizationRequest$;
|
|
1423
|
-
exports.ConnectAppAuthorizationResponse$ = ConnectAppAuthorizationResponse$;
|
|
1424
|
-
exports.CreateAppAuthorization$ = CreateAppAuthorization$;
|
|
1425
538
|
exports.CreateAppAuthorizationCommand = CreateAppAuthorizationCommand;
|
|
1426
|
-
exports.CreateAppAuthorizationRequest$ = CreateAppAuthorizationRequest$;
|
|
1427
|
-
exports.CreateAppAuthorizationResponse$ = CreateAppAuthorizationResponse$;
|
|
1428
|
-
exports.CreateAppBundle$ = CreateAppBundle$;
|
|
1429
539
|
exports.CreateAppBundleCommand = CreateAppBundleCommand;
|
|
1430
|
-
exports.CreateAppBundleRequest$ = CreateAppBundleRequest$;
|
|
1431
|
-
exports.CreateAppBundleResponse$ = CreateAppBundleResponse$;
|
|
1432
|
-
exports.CreateIngestion$ = CreateIngestion$;
|
|
1433
540
|
exports.CreateIngestionCommand = CreateIngestionCommand;
|
|
1434
|
-
exports.CreateIngestionDestination$ = CreateIngestionDestination$;
|
|
1435
541
|
exports.CreateIngestionDestinationCommand = CreateIngestionDestinationCommand;
|
|
1436
|
-
exports.CreateIngestionDestinationRequest$ = CreateIngestionDestinationRequest$;
|
|
1437
|
-
exports.CreateIngestionDestinationResponse$ = CreateIngestionDestinationResponse$;
|
|
1438
|
-
exports.CreateIngestionRequest$ = CreateIngestionRequest$;
|
|
1439
|
-
exports.CreateIngestionResponse$ = CreateIngestionResponse$;
|
|
1440
|
-
exports.Credential$ = Credential$;
|
|
1441
|
-
exports.DeleteAppAuthorization$ = DeleteAppAuthorization$;
|
|
1442
542
|
exports.DeleteAppAuthorizationCommand = DeleteAppAuthorizationCommand;
|
|
1443
|
-
exports.DeleteAppAuthorizationRequest$ = DeleteAppAuthorizationRequest$;
|
|
1444
|
-
exports.DeleteAppAuthorizationResponse$ = DeleteAppAuthorizationResponse$;
|
|
1445
|
-
exports.DeleteAppBundle$ = DeleteAppBundle$;
|
|
1446
543
|
exports.DeleteAppBundleCommand = DeleteAppBundleCommand;
|
|
1447
|
-
exports.DeleteAppBundleRequest$ = DeleteAppBundleRequest$;
|
|
1448
|
-
exports.DeleteAppBundleResponse$ = DeleteAppBundleResponse$;
|
|
1449
|
-
exports.DeleteIngestion$ = DeleteIngestion$;
|
|
1450
544
|
exports.DeleteIngestionCommand = DeleteIngestionCommand;
|
|
1451
|
-
exports.DeleteIngestionDestination$ = DeleteIngestionDestination$;
|
|
1452
545
|
exports.DeleteIngestionDestinationCommand = DeleteIngestionDestinationCommand;
|
|
1453
|
-
exports.DeleteIngestionDestinationRequest$ = DeleteIngestionDestinationRequest$;
|
|
1454
|
-
exports.DeleteIngestionDestinationResponse$ = DeleteIngestionDestinationResponse$;
|
|
1455
|
-
exports.DeleteIngestionRequest$ = DeleteIngestionRequest$;
|
|
1456
|
-
exports.DeleteIngestionResponse$ = DeleteIngestionResponse$;
|
|
1457
|
-
exports.Destination$ = Destination$;
|
|
1458
|
-
exports.DestinationConfiguration$ = DestinationConfiguration$;
|
|
1459
|
-
exports.FirehoseStream$ = FirehoseStream$;
|
|
1460
546
|
exports.Format = Format;
|
|
1461
|
-
exports.GetAppAuthorization$ = GetAppAuthorization$;
|
|
1462
547
|
exports.GetAppAuthorizationCommand = GetAppAuthorizationCommand;
|
|
1463
|
-
exports.GetAppAuthorizationRequest$ = GetAppAuthorizationRequest$;
|
|
1464
|
-
exports.GetAppAuthorizationResponse$ = GetAppAuthorizationResponse$;
|
|
1465
|
-
exports.GetAppBundle$ = GetAppBundle$;
|
|
1466
548
|
exports.GetAppBundleCommand = GetAppBundleCommand;
|
|
1467
|
-
exports.GetAppBundleRequest$ = GetAppBundleRequest$;
|
|
1468
|
-
exports.GetAppBundleResponse$ = GetAppBundleResponse$;
|
|
1469
|
-
exports.GetIngestion$ = GetIngestion$;
|
|
1470
549
|
exports.GetIngestionCommand = GetIngestionCommand;
|
|
1471
|
-
exports.GetIngestionDestination$ = GetIngestionDestination$;
|
|
1472
550
|
exports.GetIngestionDestinationCommand = GetIngestionDestinationCommand;
|
|
1473
|
-
exports.GetIngestionDestinationRequest$ = GetIngestionDestinationRequest$;
|
|
1474
|
-
exports.GetIngestionDestinationResponse$ = GetIngestionDestinationResponse$;
|
|
1475
|
-
exports.GetIngestionRequest$ = GetIngestionRequest$;
|
|
1476
|
-
exports.GetIngestionResponse$ = GetIngestionResponse$;
|
|
1477
|
-
exports.Ingestion$ = Ingestion$;
|
|
1478
|
-
exports.IngestionDestination$ = IngestionDestination$;
|
|
1479
551
|
exports.IngestionDestinationStatus = IngestionDestinationStatus;
|
|
1480
|
-
exports.IngestionDestinationSummary$ = IngestionDestinationSummary$;
|
|
1481
552
|
exports.IngestionState = IngestionState;
|
|
1482
|
-
exports.IngestionSummary$ = IngestionSummary$;
|
|
1483
553
|
exports.IngestionType = IngestionType;
|
|
1484
|
-
exports.InternalServerException = InternalServerException;
|
|
1485
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1486
|
-
exports.ListAppAuthorizations$ = ListAppAuthorizations$;
|
|
1487
554
|
exports.ListAppAuthorizationsCommand = ListAppAuthorizationsCommand;
|
|
1488
|
-
exports.ListAppAuthorizationsRequest$ = ListAppAuthorizationsRequest$;
|
|
1489
|
-
exports.ListAppAuthorizationsResponse$ = ListAppAuthorizationsResponse$;
|
|
1490
|
-
exports.ListAppBundles$ = ListAppBundles$;
|
|
1491
555
|
exports.ListAppBundlesCommand = ListAppBundlesCommand;
|
|
1492
|
-
exports.ListAppBundlesRequest$ = ListAppBundlesRequest$;
|
|
1493
|
-
exports.ListAppBundlesResponse$ = ListAppBundlesResponse$;
|
|
1494
|
-
exports.ListIngestionDestinations$ = ListIngestionDestinations$;
|
|
1495
556
|
exports.ListIngestionDestinationsCommand = ListIngestionDestinationsCommand;
|
|
1496
|
-
exports.ListIngestionDestinationsRequest$ = ListIngestionDestinationsRequest$;
|
|
1497
|
-
exports.ListIngestionDestinationsResponse$ = ListIngestionDestinationsResponse$;
|
|
1498
|
-
exports.ListIngestions$ = ListIngestions$;
|
|
1499
557
|
exports.ListIngestionsCommand = ListIngestionsCommand;
|
|
1500
|
-
exports.ListIngestionsRequest$ = ListIngestionsRequest$;
|
|
1501
|
-
exports.ListIngestionsResponse$ = ListIngestionsResponse$;
|
|
1502
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1503
558
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1504
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1505
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1506
|
-
exports.Oauth2Credential$ = Oauth2Credential$;
|
|
1507
559
|
exports.Persona = Persona;
|
|
1508
|
-
exports.ProcessingConfiguration$ = ProcessingConfiguration$;
|
|
1509
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1510
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1511
560
|
exports.ResultStatus = ResultStatus;
|
|
1512
|
-
exports.S3Bucket$ = S3Bucket$;
|
|
1513
561
|
exports.Schema = Schema;
|
|
1514
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1515
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1516
|
-
exports.StartIngestion$ = StartIngestion$;
|
|
1517
562
|
exports.StartIngestionCommand = StartIngestionCommand;
|
|
1518
|
-
exports.StartIngestionRequest$ = StartIngestionRequest$;
|
|
1519
|
-
exports.StartIngestionResponse$ = StartIngestionResponse$;
|
|
1520
|
-
exports.StartUserAccessTasks$ = StartUserAccessTasks$;
|
|
1521
563
|
exports.StartUserAccessTasksCommand = StartUserAccessTasksCommand;
|
|
1522
|
-
exports.StartUserAccessTasksRequest$ = StartUserAccessTasksRequest$;
|
|
1523
|
-
exports.StartUserAccessTasksResponse$ = StartUserAccessTasksResponse$;
|
|
1524
|
-
exports.StopIngestion$ = StopIngestion$;
|
|
1525
564
|
exports.StopIngestionCommand = StopIngestionCommand;
|
|
1526
|
-
exports.StopIngestionRequest$ = StopIngestionRequest$;
|
|
1527
|
-
exports.StopIngestionResponse$ = StopIngestionResponse$;
|
|
1528
|
-
exports.Tag$ = Tag$;
|
|
1529
|
-
exports.TagResource$ = TagResource$;
|
|
1530
565
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1531
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1532
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1533
|
-
exports.TaskError$ = TaskError$;
|
|
1534
|
-
exports.Tenant$ = Tenant$;
|
|
1535
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1536
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1537
|
-
exports.UntagResource$ = UntagResource$;
|
|
1538
566
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1539
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1540
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1541
|
-
exports.UpdateAppAuthorization$ = UpdateAppAuthorization$;
|
|
1542
567
|
exports.UpdateAppAuthorizationCommand = UpdateAppAuthorizationCommand;
|
|
1543
|
-
exports.UpdateAppAuthorizationRequest$ = UpdateAppAuthorizationRequest$;
|
|
1544
|
-
exports.UpdateAppAuthorizationResponse$ = UpdateAppAuthorizationResponse$;
|
|
1545
|
-
exports.UpdateIngestionDestination$ = UpdateIngestionDestination$;
|
|
1546
568
|
exports.UpdateIngestionDestinationCommand = UpdateIngestionDestinationCommand;
|
|
1547
|
-
exports.UpdateIngestionDestinationRequest$ = UpdateIngestionDestinationRequest$;
|
|
1548
|
-
exports.UpdateIngestionDestinationResponse$ = UpdateIngestionDestinationResponse$;
|
|
1549
|
-
exports.UserAccessResultItem$ = UserAccessResultItem$;
|
|
1550
|
-
exports.UserAccessTaskItem$ = UserAccessTaskItem$;
|
|
1551
|
-
exports.ValidationException = ValidationException;
|
|
1552
|
-
exports.ValidationException$ = ValidationException$;
|
|
1553
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1554
569
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1555
570
|
exports.paginateListAppAuthorizations = paginateListAppAuthorizations;
|
|
1556
571
|
exports.paginateListAppBundles = paginateListAppBundles;
|
|
1557
572
|
exports.paginateListIngestionDestinations = paginateListIngestionDestinations;
|
|
1558
573
|
exports.paginateListIngestions = paginateListIngestions;
|
|
574
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
575
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
576
|
+
enumerable: true,
|
|
577
|
+
get: function () { return schemas_0[k]; }
|
|
578
|
+
});
|
|
579
|
+
});
|
|
580
|
+
Object.keys(errors).forEach(function (k) {
|
|
581
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
582
|
+
enumerable: true,
|
|
583
|
+
get: function () { return errors[k]; }
|
|
584
|
+
});
|
|
585
|
+
});
|