@aws-sdk/client-appfabric 3.928.0 → 3.930.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 +1127 -1181
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppFabricClient.js +2 -0
- package/dist-es/commands/BatchGetUserAccessTasksCommand.js +3 -10
- package/dist-es/commands/ConnectAppAuthorizationCommand.js +3 -10
- package/dist-es/commands/CreateAppAuthorizationCommand.js +3 -10
- package/dist-es/commands/CreateAppBundleCommand.js +3 -9
- package/dist-es/commands/CreateIngestionCommand.js +3 -9
- package/dist-es/commands/CreateIngestionDestinationCommand.js +3 -9
- package/dist-es/commands/DeleteAppAuthorizationCommand.js +3 -9
- package/dist-es/commands/DeleteAppBundleCommand.js +3 -9
- package/dist-es/commands/DeleteIngestionCommand.js +3 -9
- package/dist-es/commands/DeleteIngestionDestinationCommand.js +3 -9
- package/dist-es/commands/GetAppAuthorizationCommand.js +3 -9
- package/dist-es/commands/GetAppBundleCommand.js +3 -9
- package/dist-es/commands/GetIngestionCommand.js +3 -9
- package/dist-es/commands/GetIngestionDestinationCommand.js +3 -9
- package/dist-es/commands/ListAppAuthorizationsCommand.js +3 -9
- package/dist-es/commands/ListAppBundlesCommand.js +3 -9
- package/dist-es/commands/ListIngestionDestinationsCommand.js +3 -9
- package/dist-es/commands/ListIngestionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartIngestionCommand.js +3 -9
- package/dist-es/commands/StartUserAccessTasksCommand.js +3 -10
- package/dist-es/commands/StopIngestionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAppAuthorizationCommand.js +3 -10
- package/dist-es/commands/UpdateIngestionDestinationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -87
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1059 -0
- package/dist-types/AppFabricClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +16 -44
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +125 -0
- package/dist-types/ts3.4/AppFabricClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -30
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +131 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -887
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -317
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class AppFabricClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class AppFabricClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class AppFabricServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let AppFabricServiceException$1 = class AppFabricServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, AppFabricServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends AppFabricServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends AppFabricServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,7 +128,7 @@ class AccessDeniedException extends AppFabricServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
131
|
+
};
|
|
133
132
|
const AuthType = {
|
|
134
133
|
API_KEY: "apiKey",
|
|
135
134
|
OAUTH2: "oauth2",
|
|
@@ -144,16 +143,6 @@ const AppAuthorizationStatus = {
|
|
|
144
143
|
PENDING_CONNECT: "PendingConnect",
|
|
145
144
|
TOKEN_AUTO_ROTATION_FAILED: "TokenAutoRotationFailed",
|
|
146
145
|
};
|
|
147
|
-
exports.Destination = void 0;
|
|
148
|
-
(function (Destination) {
|
|
149
|
-
Destination.visit = (value, visitor) => {
|
|
150
|
-
if (value.s3Bucket !== undefined)
|
|
151
|
-
return visitor.s3Bucket(value.s3Bucket);
|
|
152
|
-
if (value.firehoseStream !== undefined)
|
|
153
|
-
return visitor.firehoseStream(value.firehoseStream);
|
|
154
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
155
|
-
};
|
|
156
|
-
})(exports.Destination || (exports.Destination = {}));
|
|
157
146
|
const Format = {
|
|
158
147
|
JSON: "json",
|
|
159
148
|
PARQUET: "parquet",
|
|
@@ -168,7 +157,7 @@ const ResultStatus = {
|
|
|
168
157
|
FAILED: "FAILED",
|
|
169
158
|
IN_PROGRESS: "IN_PROGRESS",
|
|
170
159
|
};
|
|
171
|
-
class InternalServerException extends AppFabricServiceException {
|
|
160
|
+
let InternalServerException$1 = class InternalServerException extends AppFabricServiceException$1 {
|
|
172
161
|
name = "InternalServerException";
|
|
173
162
|
$fault = "server";
|
|
174
163
|
$retryable = {};
|
|
@@ -182,8 +171,8 @@ class InternalServerException extends AppFabricServiceException {
|
|
|
182
171
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
183
172
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
184
173
|
}
|
|
185
|
-
}
|
|
186
|
-
class ResourceNotFoundException extends AppFabricServiceException {
|
|
174
|
+
};
|
|
175
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppFabricServiceException$1 {
|
|
187
176
|
name = "ResourceNotFoundException";
|
|
188
177
|
$fault = "client";
|
|
189
178
|
resourceId;
|
|
@@ -198,8 +187,8 @@ class ResourceNotFoundException extends AppFabricServiceException {
|
|
|
198
187
|
this.resourceId = opts.resourceId;
|
|
199
188
|
this.resourceType = opts.resourceType;
|
|
200
189
|
}
|
|
201
|
-
}
|
|
202
|
-
class ThrottlingException extends AppFabricServiceException {
|
|
190
|
+
};
|
|
191
|
+
let ThrottlingException$1 = class ThrottlingException extends AppFabricServiceException$1 {
|
|
203
192
|
name = "ThrottlingException";
|
|
204
193
|
$fault = "client";
|
|
205
194
|
$retryable = {
|
|
@@ -219,14 +208,14 @@ class ThrottlingException extends AppFabricServiceException {
|
|
|
219
208
|
this.quotaCode = opts.quotaCode;
|
|
220
209
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
221
210
|
}
|
|
222
|
-
}
|
|
211
|
+
};
|
|
223
212
|
const ValidationExceptionReason = {
|
|
224
213
|
CANNOT_PARSE: "cannotParse",
|
|
225
214
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
226
215
|
OTHER: "other",
|
|
227
216
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
228
217
|
};
|
|
229
|
-
class ValidationException extends AppFabricServiceException {
|
|
218
|
+
let ValidationException$1 = class ValidationException extends AppFabricServiceException$1 {
|
|
230
219
|
name = "ValidationException";
|
|
231
220
|
$fault = "client";
|
|
232
221
|
reason;
|
|
@@ -241,8 +230,8 @@ class ValidationException extends AppFabricServiceException {
|
|
|
241
230
|
this.reason = opts.reason;
|
|
242
231
|
this.fieldList = opts.fieldList;
|
|
243
232
|
}
|
|
244
|
-
}
|
|
245
|
-
class ConflictException extends AppFabricServiceException {
|
|
233
|
+
};
|
|
234
|
+
let ConflictException$1 = class ConflictException extends AppFabricServiceException$1 {
|
|
246
235
|
name = "ConflictException";
|
|
247
236
|
$fault = "client";
|
|
248
237
|
resourceId;
|
|
@@ -257,18 +246,8 @@ class ConflictException extends AppFabricServiceException {
|
|
|
257
246
|
this.resourceId = opts.resourceId;
|
|
258
247
|
this.resourceType = opts.resourceType;
|
|
259
248
|
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
(function (Credential) {
|
|
263
|
-
Credential.visit = (value, visitor) => {
|
|
264
|
-
if (value.oauth2Credential !== undefined)
|
|
265
|
-
return visitor.oauth2Credential(value.oauth2Credential);
|
|
266
|
-
if (value.apiKeyCredential !== undefined)
|
|
267
|
-
return visitor.apiKeyCredential(value.apiKeyCredential);
|
|
268
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
269
|
-
};
|
|
270
|
-
})(exports.Credential || (exports.Credential = {}));
|
|
271
|
-
class ServiceQuotaExceededException extends AppFabricServiceException {
|
|
249
|
+
};
|
|
250
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends AppFabricServiceException$1 {
|
|
272
251
|
name = "ServiceQuotaExceededException";
|
|
273
252
|
$fault = "client";
|
|
274
253
|
resourceId;
|
|
@@ -287,7 +266,7 @@ class ServiceQuotaExceededException extends AppFabricServiceException {
|
|
|
287
266
|
this.serviceCode = opts.serviceCode;
|
|
288
267
|
this.quotaCode = opts.quotaCode;
|
|
289
268
|
}
|
|
290
|
-
}
|
|
269
|
+
};
|
|
291
270
|
const IngestionType = {
|
|
292
271
|
AUDIT_LOG: "auditLog",
|
|
293
272
|
};
|
|
@@ -295,972 +274,1074 @@ const IngestionState = {
|
|
|
295
274
|
DISABLED: "disabled",
|
|
296
275
|
ENABLED: "enabled",
|
|
297
276
|
};
|
|
298
|
-
exports.DestinationConfiguration = void 0;
|
|
299
|
-
(function (DestinationConfiguration) {
|
|
300
|
-
DestinationConfiguration.visit = (value, visitor) => {
|
|
301
|
-
if (value.auditLog !== undefined)
|
|
302
|
-
return visitor.auditLog(value.auditLog);
|
|
303
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
304
|
-
};
|
|
305
|
-
})(exports.DestinationConfiguration || (exports.DestinationConfiguration = {}));
|
|
306
|
-
exports.ProcessingConfiguration = void 0;
|
|
307
|
-
(function (ProcessingConfiguration) {
|
|
308
|
-
ProcessingConfiguration.visit = (value, visitor) => {
|
|
309
|
-
if (value.auditLog !== undefined)
|
|
310
|
-
return visitor.auditLog(value.auditLog);
|
|
311
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
312
|
-
};
|
|
313
|
-
})(exports.ProcessingConfiguration || (exports.ProcessingConfiguration = {}));
|
|
314
277
|
const IngestionDestinationStatus = {
|
|
315
278
|
ACTIVE: "Active",
|
|
316
279
|
FAILED: "Failed",
|
|
317
280
|
};
|
|
318
|
-
const ApiKeyCredentialFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
...(obj.apiKey && { apiKey: smithyClient.SENSITIVE_STRING }),
|
|
321
|
-
});
|
|
322
|
-
const AuthRequestFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
...(obj.code && { code: smithyClient.SENSITIVE_STRING }),
|
|
325
|
-
});
|
|
326
|
-
const UserAccessResultItemFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
...(obj.email && { email: smithyClient.SENSITIVE_STRING }),
|
|
329
|
-
...(obj.userId && { userId: smithyClient.SENSITIVE_STRING }),
|
|
330
|
-
...(obj.userFullName && { userFullName: smithyClient.SENSITIVE_STRING }),
|
|
331
|
-
...(obj.userFirstName && { userFirstName: smithyClient.SENSITIVE_STRING }),
|
|
332
|
-
...(obj.userLastName && { userLastName: smithyClient.SENSITIVE_STRING }),
|
|
333
|
-
});
|
|
334
|
-
const BatchGetUserAccessTasksResponseFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
...(obj.userAccessResultsList && {
|
|
337
|
-
userAccessResultsList: obj.userAccessResultsList.map((item) => UserAccessResultItemFilterSensitiveLog(item)),
|
|
338
|
-
}),
|
|
339
|
-
});
|
|
340
|
-
const ConnectAppAuthorizationRequestFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
...(obj.authRequest && { authRequest: AuthRequestFilterSensitiveLog(obj.authRequest) }),
|
|
343
|
-
});
|
|
344
|
-
const Oauth2CredentialFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
|
|
347
|
-
});
|
|
348
|
-
const CredentialFilterSensitiveLog = (obj) => {
|
|
349
|
-
if (obj.oauth2Credential !== undefined)
|
|
350
|
-
return { oauth2Credential: Oauth2CredentialFilterSensitiveLog(obj.oauth2Credential) };
|
|
351
|
-
if (obj.apiKeyCredential !== undefined)
|
|
352
|
-
return { apiKeyCredential: ApiKeyCredentialFilterSensitiveLog(obj.apiKeyCredential) };
|
|
353
|
-
if (obj.$unknown !== undefined)
|
|
354
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
355
|
-
};
|
|
356
|
-
const CreateAppAuthorizationRequestFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
...(obj.credential && { credential: CredentialFilterSensitiveLog(obj.credential) }),
|
|
359
|
-
});
|
|
360
|
-
const StartUserAccessTasksRequestFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
...(obj.email && { email: smithyClient.SENSITIVE_STRING }),
|
|
363
|
-
});
|
|
364
|
-
const UpdateAppAuthorizationRequestFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
...(obj.credential && { credential: CredentialFilterSensitiveLog(obj.credential) }),
|
|
367
|
-
});
|
|
368
281
|
|
|
369
|
-
const
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
const
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
const
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
const
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
const
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
const
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
const
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
const
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
const
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
const
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
const
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
const
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
const
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
const
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
b.bp("/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}");
|
|
541
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
542
|
-
b.p("ingestionIdentifier", () => input.ingestionIdentifier, "{ingestionIdentifier}", false);
|
|
543
|
-
b.p("ingestionDestinationIdentifier", () => input.ingestionDestinationIdentifier, "{ingestionDestinationIdentifier}", false);
|
|
544
|
-
let body;
|
|
545
|
-
b.m("GET").h(headers).b(body);
|
|
546
|
-
return b.build();
|
|
547
|
-
};
|
|
548
|
-
const se_ListAppAuthorizationsCommand = async (input, context) => {
|
|
549
|
-
const b = core.requestBuilder(input, context);
|
|
550
|
-
const headers = {};
|
|
551
|
-
b.bp("/appbundles/{appBundleIdentifier}/appauthorizations");
|
|
552
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
553
|
-
const query = smithyClient.map({
|
|
554
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
555
|
-
[_nT]: [, input[_nT]],
|
|
556
|
-
});
|
|
557
|
-
let body;
|
|
558
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
559
|
-
return b.build();
|
|
560
|
-
};
|
|
561
|
-
const se_ListAppBundlesCommand = async (input, context) => {
|
|
562
|
-
const b = core.requestBuilder(input, context);
|
|
563
|
-
const headers = {};
|
|
564
|
-
b.bp("/appbundles");
|
|
565
|
-
const query = smithyClient.map({
|
|
566
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
567
|
-
[_nT]: [, input[_nT]],
|
|
568
|
-
});
|
|
569
|
-
let body;
|
|
570
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
571
|
-
return b.build();
|
|
572
|
-
};
|
|
573
|
-
const se_ListIngestionDestinationsCommand = async (input, context) => {
|
|
574
|
-
const b = core.requestBuilder(input, context);
|
|
575
|
-
const headers = {};
|
|
576
|
-
b.bp("/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations");
|
|
577
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
578
|
-
b.p("ingestionIdentifier", () => input.ingestionIdentifier, "{ingestionIdentifier}", false);
|
|
579
|
-
const query = smithyClient.map({
|
|
580
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
581
|
-
[_nT]: [, input[_nT]],
|
|
582
|
-
});
|
|
583
|
-
let body;
|
|
584
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
585
|
-
return b.build();
|
|
586
|
-
};
|
|
587
|
-
const se_ListIngestionsCommand = async (input, context) => {
|
|
588
|
-
const b = core.requestBuilder(input, context);
|
|
589
|
-
const headers = {};
|
|
590
|
-
b.bp("/appbundles/{appBundleIdentifier}/ingestions");
|
|
591
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
592
|
-
const query = smithyClient.map({
|
|
593
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
594
|
-
[_nT]: [, input[_nT]],
|
|
595
|
-
});
|
|
596
|
-
let body;
|
|
597
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
598
|
-
return b.build();
|
|
599
|
-
};
|
|
600
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
601
|
-
const b = core.requestBuilder(input, context);
|
|
602
|
-
const headers = {};
|
|
603
|
-
b.bp("/tags/{resourceArn}");
|
|
604
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
605
|
-
let body;
|
|
606
|
-
b.m("GET").h(headers).b(body);
|
|
607
|
-
return b.build();
|
|
608
|
-
};
|
|
609
|
-
const se_StartIngestionCommand = async (input, context) => {
|
|
610
|
-
const b = core.requestBuilder(input, context);
|
|
611
|
-
const headers = {};
|
|
612
|
-
b.bp("/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/start");
|
|
613
|
-
b.p("ingestionIdentifier", () => input.ingestionIdentifier, "{ingestionIdentifier}", false);
|
|
614
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
615
|
-
let body;
|
|
616
|
-
b.m("POST").h(headers).b(body);
|
|
617
|
-
return b.build();
|
|
618
|
-
};
|
|
619
|
-
const se_StartUserAccessTasksCommand = async (input, context) => {
|
|
620
|
-
const b = core.requestBuilder(input, context);
|
|
621
|
-
const headers = {
|
|
622
|
-
"content-type": "application/json",
|
|
623
|
-
};
|
|
624
|
-
b.bp("/useraccess/start");
|
|
625
|
-
let body;
|
|
626
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
627
|
-
appBundleIdentifier: [],
|
|
628
|
-
email: [],
|
|
629
|
-
}));
|
|
630
|
-
b.m("POST").h(headers).b(body);
|
|
631
|
-
return b.build();
|
|
632
|
-
};
|
|
633
|
-
const se_StopIngestionCommand = async (input, context) => {
|
|
634
|
-
const b = core.requestBuilder(input, context);
|
|
635
|
-
const headers = {};
|
|
636
|
-
b.bp("/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/stop");
|
|
637
|
-
b.p("ingestionIdentifier", () => input.ingestionIdentifier, "{ingestionIdentifier}", false);
|
|
638
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
639
|
-
let body;
|
|
640
|
-
b.m("POST").h(headers).b(body);
|
|
641
|
-
return b.build();
|
|
642
|
-
};
|
|
643
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
644
|
-
const b = core.requestBuilder(input, context);
|
|
645
|
-
const headers = {
|
|
646
|
-
"content-type": "application/json",
|
|
647
|
-
};
|
|
648
|
-
b.bp("/tags/{resourceArn}");
|
|
649
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
650
|
-
let body;
|
|
651
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
652
|
-
tags: (_) => smithyClient._json(_),
|
|
653
|
-
}));
|
|
654
|
-
b.m("POST").h(headers).b(body);
|
|
655
|
-
return b.build();
|
|
656
|
-
};
|
|
657
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
658
|
-
const b = core.requestBuilder(input, context);
|
|
659
|
-
const headers = {};
|
|
660
|
-
b.bp("/tags/{resourceArn}");
|
|
661
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
662
|
-
const query = smithyClient.map({
|
|
663
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
664
|
-
});
|
|
665
|
-
let body;
|
|
666
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
667
|
-
return b.build();
|
|
668
|
-
};
|
|
669
|
-
const se_UpdateAppAuthorizationCommand = async (input, context) => {
|
|
670
|
-
const b = core.requestBuilder(input, context);
|
|
671
|
-
const headers = {
|
|
672
|
-
"content-type": "application/json",
|
|
673
|
-
};
|
|
674
|
-
b.bp("/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}");
|
|
675
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
676
|
-
b.p("appAuthorizationIdentifier", () => input.appAuthorizationIdentifier, "{appAuthorizationIdentifier}", false);
|
|
677
|
-
let body;
|
|
678
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
679
|
-
credential: (_) => smithyClient._json(_),
|
|
680
|
-
tenant: (_) => smithyClient._json(_),
|
|
681
|
-
}));
|
|
682
|
-
b.m("PATCH").h(headers).b(body);
|
|
683
|
-
return b.build();
|
|
684
|
-
};
|
|
685
|
-
const se_UpdateIngestionDestinationCommand = async (input, context) => {
|
|
686
|
-
const b = core.requestBuilder(input, context);
|
|
687
|
-
const headers = {
|
|
688
|
-
"content-type": "application/json",
|
|
689
|
-
};
|
|
690
|
-
b.bp("/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}");
|
|
691
|
-
b.p("appBundleIdentifier", () => input.appBundleIdentifier, "{appBundleIdentifier}", false);
|
|
692
|
-
b.p("ingestionIdentifier", () => input.ingestionIdentifier, "{ingestionIdentifier}", false);
|
|
693
|
-
b.p("ingestionDestinationIdentifier", () => input.ingestionDestinationIdentifier, "{ingestionDestinationIdentifier}", false);
|
|
694
|
-
let body;
|
|
695
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
696
|
-
destinationConfiguration: (_) => smithyClient._json(_),
|
|
697
|
-
}));
|
|
698
|
-
b.m("PATCH").h(headers).b(body);
|
|
699
|
-
return b.build();
|
|
700
|
-
};
|
|
701
|
-
const de_BatchGetUserAccessTasksCommand = async (output, context) => {
|
|
702
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
703
|
-
return de_CommandError(output, context);
|
|
704
|
-
}
|
|
705
|
-
const contents = smithyClient.map({
|
|
706
|
-
$metadata: deserializeMetadata(output),
|
|
707
|
-
});
|
|
708
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
709
|
-
const doc = smithyClient.take(data, {
|
|
710
|
-
userAccessResultsList: smithyClient._json,
|
|
711
|
-
});
|
|
712
|
-
Object.assign(contents, doc);
|
|
713
|
-
return contents;
|
|
714
|
-
};
|
|
715
|
-
const de_ConnectAppAuthorizationCommand = async (output, context) => {
|
|
716
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
717
|
-
return de_CommandError(output, context);
|
|
718
|
-
}
|
|
719
|
-
const contents = smithyClient.map({
|
|
720
|
-
$metadata: deserializeMetadata(output),
|
|
721
|
-
});
|
|
722
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
723
|
-
const doc = smithyClient.take(data, {
|
|
724
|
-
appAuthorizationSummary: (_) => de_AppAuthorizationSummary(_),
|
|
725
|
-
});
|
|
726
|
-
Object.assign(contents, doc);
|
|
727
|
-
return contents;
|
|
728
|
-
};
|
|
729
|
-
const de_CreateAppAuthorizationCommand = async (output, context) => {
|
|
730
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
731
|
-
return de_CommandError(output, context);
|
|
732
|
-
}
|
|
733
|
-
const contents = smithyClient.map({
|
|
734
|
-
$metadata: deserializeMetadata(output),
|
|
735
|
-
});
|
|
736
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
737
|
-
const doc = smithyClient.take(data, {
|
|
738
|
-
appAuthorization: (_) => de_AppAuthorization(_),
|
|
739
|
-
});
|
|
740
|
-
Object.assign(contents, doc);
|
|
741
|
-
return contents;
|
|
742
|
-
};
|
|
743
|
-
const de_CreateAppBundleCommand = async (output, context) => {
|
|
744
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
745
|
-
return de_CommandError(output, context);
|
|
746
|
-
}
|
|
747
|
-
const contents = smithyClient.map({
|
|
748
|
-
$metadata: deserializeMetadata(output),
|
|
749
|
-
});
|
|
750
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
751
|
-
const doc = smithyClient.take(data, {
|
|
752
|
-
appBundle: smithyClient._json,
|
|
753
|
-
});
|
|
754
|
-
Object.assign(contents, doc);
|
|
755
|
-
return contents;
|
|
756
|
-
};
|
|
757
|
-
const de_CreateIngestionCommand = async (output, context) => {
|
|
758
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
759
|
-
return de_CommandError(output, context);
|
|
760
|
-
}
|
|
761
|
-
const contents = smithyClient.map({
|
|
762
|
-
$metadata: deserializeMetadata(output),
|
|
763
|
-
});
|
|
764
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
765
|
-
const doc = smithyClient.take(data, {
|
|
766
|
-
ingestion: (_) => de_Ingestion(_),
|
|
767
|
-
});
|
|
768
|
-
Object.assign(contents, doc);
|
|
769
|
-
return contents;
|
|
770
|
-
};
|
|
771
|
-
const de_CreateIngestionDestinationCommand = async (output, context) => {
|
|
772
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
773
|
-
return de_CommandError(output, context);
|
|
774
|
-
}
|
|
775
|
-
const contents = smithyClient.map({
|
|
776
|
-
$metadata: deserializeMetadata(output),
|
|
777
|
-
});
|
|
778
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
779
|
-
const doc = smithyClient.take(data, {
|
|
780
|
-
ingestionDestination: (_) => de_IngestionDestination(_),
|
|
781
|
-
});
|
|
782
|
-
Object.assign(contents, doc);
|
|
783
|
-
return contents;
|
|
784
|
-
};
|
|
785
|
-
const de_DeleteAppAuthorizationCommand = async (output, context) => {
|
|
786
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
787
|
-
return de_CommandError(output, context);
|
|
788
|
-
}
|
|
789
|
-
const contents = smithyClient.map({
|
|
790
|
-
$metadata: deserializeMetadata(output),
|
|
791
|
-
});
|
|
792
|
-
await smithyClient.collectBody(output.body, context);
|
|
793
|
-
return contents;
|
|
794
|
-
};
|
|
795
|
-
const de_DeleteAppBundleCommand = async (output, context) => {
|
|
796
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
797
|
-
return de_CommandError(output, context);
|
|
798
|
-
}
|
|
799
|
-
const contents = smithyClient.map({
|
|
800
|
-
$metadata: deserializeMetadata(output),
|
|
801
|
-
});
|
|
802
|
-
await smithyClient.collectBody(output.body, context);
|
|
803
|
-
return contents;
|
|
804
|
-
};
|
|
805
|
-
const de_DeleteIngestionCommand = async (output, context) => {
|
|
806
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
807
|
-
return de_CommandError(output, context);
|
|
808
|
-
}
|
|
809
|
-
const contents = smithyClient.map({
|
|
810
|
-
$metadata: deserializeMetadata(output),
|
|
811
|
-
});
|
|
812
|
-
await smithyClient.collectBody(output.body, context);
|
|
813
|
-
return contents;
|
|
814
|
-
};
|
|
815
|
-
const de_DeleteIngestionDestinationCommand = async (output, context) => {
|
|
816
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
817
|
-
return de_CommandError(output, context);
|
|
818
|
-
}
|
|
819
|
-
const contents = smithyClient.map({
|
|
820
|
-
$metadata: deserializeMetadata(output),
|
|
821
|
-
});
|
|
822
|
-
await smithyClient.collectBody(output.body, context);
|
|
823
|
-
return contents;
|
|
824
|
-
};
|
|
825
|
-
const de_GetAppAuthorizationCommand = async (output, context) => {
|
|
826
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
827
|
-
return de_CommandError(output, context);
|
|
828
|
-
}
|
|
829
|
-
const contents = smithyClient.map({
|
|
830
|
-
$metadata: deserializeMetadata(output),
|
|
831
|
-
});
|
|
832
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
833
|
-
const doc = smithyClient.take(data, {
|
|
834
|
-
appAuthorization: (_) => de_AppAuthorization(_),
|
|
835
|
-
});
|
|
836
|
-
Object.assign(contents, doc);
|
|
837
|
-
return contents;
|
|
838
|
-
};
|
|
839
|
-
const de_GetAppBundleCommand = async (output, context) => {
|
|
840
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
841
|
-
return de_CommandError(output, context);
|
|
842
|
-
}
|
|
843
|
-
const contents = smithyClient.map({
|
|
844
|
-
$metadata: deserializeMetadata(output),
|
|
845
|
-
});
|
|
846
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
847
|
-
const doc = smithyClient.take(data, {
|
|
848
|
-
appBundle: smithyClient._json,
|
|
849
|
-
});
|
|
850
|
-
Object.assign(contents, doc);
|
|
851
|
-
return contents;
|
|
852
|
-
};
|
|
853
|
-
const de_GetIngestionCommand = async (output, context) => {
|
|
854
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
855
|
-
return de_CommandError(output, context);
|
|
856
|
-
}
|
|
857
|
-
const contents = smithyClient.map({
|
|
858
|
-
$metadata: deserializeMetadata(output),
|
|
859
|
-
});
|
|
860
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
861
|
-
const doc = smithyClient.take(data, {
|
|
862
|
-
ingestion: (_) => de_Ingestion(_),
|
|
863
|
-
});
|
|
864
|
-
Object.assign(contents, doc);
|
|
865
|
-
return contents;
|
|
866
|
-
};
|
|
867
|
-
const de_GetIngestionDestinationCommand = async (output, context) => {
|
|
868
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
869
|
-
return de_CommandError(output, context);
|
|
870
|
-
}
|
|
871
|
-
const contents = smithyClient.map({
|
|
872
|
-
$metadata: deserializeMetadata(output),
|
|
873
|
-
});
|
|
874
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
875
|
-
const doc = smithyClient.take(data, {
|
|
876
|
-
ingestionDestination: (_) => de_IngestionDestination(_),
|
|
877
|
-
});
|
|
878
|
-
Object.assign(contents, doc);
|
|
879
|
-
return contents;
|
|
880
|
-
};
|
|
881
|
-
const de_ListAppAuthorizationsCommand = async (output, context) => {
|
|
882
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
883
|
-
return de_CommandError(output, context);
|
|
884
|
-
}
|
|
885
|
-
const contents = smithyClient.map({
|
|
886
|
-
$metadata: deserializeMetadata(output),
|
|
887
|
-
});
|
|
888
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
889
|
-
const doc = smithyClient.take(data, {
|
|
890
|
-
appAuthorizationSummaryList: (_) => de_AppAuthorizationSummaryList(_),
|
|
891
|
-
nextToken: smithyClient.expectString,
|
|
892
|
-
});
|
|
893
|
-
Object.assign(contents, doc);
|
|
894
|
-
return contents;
|
|
895
|
-
};
|
|
896
|
-
const de_ListAppBundlesCommand = async (output, context) => {
|
|
897
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
898
|
-
return de_CommandError(output, context);
|
|
899
|
-
}
|
|
900
|
-
const contents = smithyClient.map({
|
|
901
|
-
$metadata: deserializeMetadata(output),
|
|
902
|
-
});
|
|
903
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
904
|
-
const doc = smithyClient.take(data, {
|
|
905
|
-
appBundleSummaryList: smithyClient._json,
|
|
906
|
-
nextToken: smithyClient.expectString,
|
|
907
|
-
});
|
|
908
|
-
Object.assign(contents, doc);
|
|
909
|
-
return contents;
|
|
910
|
-
};
|
|
911
|
-
const de_ListIngestionDestinationsCommand = async (output, context) => {
|
|
912
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
913
|
-
return de_CommandError(output, context);
|
|
914
|
-
}
|
|
915
|
-
const contents = smithyClient.map({
|
|
916
|
-
$metadata: deserializeMetadata(output),
|
|
917
|
-
});
|
|
918
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
919
|
-
const doc = smithyClient.take(data, {
|
|
920
|
-
ingestionDestinations: smithyClient._json,
|
|
921
|
-
nextToken: smithyClient.expectString,
|
|
922
|
-
});
|
|
923
|
-
Object.assign(contents, doc);
|
|
924
|
-
return contents;
|
|
925
|
-
};
|
|
926
|
-
const de_ListIngestionsCommand = async (output, context) => {
|
|
927
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
928
|
-
return de_CommandError(output, context);
|
|
929
|
-
}
|
|
930
|
-
const contents = smithyClient.map({
|
|
931
|
-
$metadata: deserializeMetadata(output),
|
|
932
|
-
});
|
|
933
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
934
|
-
const doc = smithyClient.take(data, {
|
|
935
|
-
ingestions: smithyClient._json,
|
|
936
|
-
nextToken: smithyClient.expectString,
|
|
937
|
-
});
|
|
938
|
-
Object.assign(contents, doc);
|
|
939
|
-
return contents;
|
|
940
|
-
};
|
|
941
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
942
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
943
|
-
return de_CommandError(output, context);
|
|
944
|
-
}
|
|
945
|
-
const contents = smithyClient.map({
|
|
946
|
-
$metadata: deserializeMetadata(output),
|
|
947
|
-
});
|
|
948
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
949
|
-
const doc = smithyClient.take(data, {
|
|
950
|
-
tags: smithyClient._json,
|
|
951
|
-
});
|
|
952
|
-
Object.assign(contents, doc);
|
|
953
|
-
return contents;
|
|
954
|
-
};
|
|
955
|
-
const de_StartIngestionCommand = async (output, context) => {
|
|
956
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
957
|
-
return de_CommandError(output, context);
|
|
958
|
-
}
|
|
959
|
-
const contents = smithyClient.map({
|
|
960
|
-
$metadata: deserializeMetadata(output),
|
|
961
|
-
});
|
|
962
|
-
await smithyClient.collectBody(output.body, context);
|
|
963
|
-
return contents;
|
|
964
|
-
};
|
|
965
|
-
const de_StartUserAccessTasksCommand = async (output, context) => {
|
|
966
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
967
|
-
return de_CommandError(output, context);
|
|
968
|
-
}
|
|
969
|
-
const contents = smithyClient.map({
|
|
970
|
-
$metadata: deserializeMetadata(output),
|
|
971
|
-
});
|
|
972
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
973
|
-
const doc = smithyClient.take(data, {
|
|
974
|
-
userAccessTasksList: smithyClient._json,
|
|
975
|
-
});
|
|
976
|
-
Object.assign(contents, doc);
|
|
977
|
-
return contents;
|
|
978
|
-
};
|
|
979
|
-
const de_StopIngestionCommand = async (output, context) => {
|
|
980
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
981
|
-
return de_CommandError(output, context);
|
|
982
|
-
}
|
|
983
|
-
const contents = smithyClient.map({
|
|
984
|
-
$metadata: deserializeMetadata(output),
|
|
985
|
-
});
|
|
986
|
-
await smithyClient.collectBody(output.body, context);
|
|
987
|
-
return contents;
|
|
988
|
-
};
|
|
989
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
990
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
991
|
-
return de_CommandError(output, context);
|
|
992
|
-
}
|
|
993
|
-
const contents = smithyClient.map({
|
|
994
|
-
$metadata: deserializeMetadata(output),
|
|
995
|
-
});
|
|
996
|
-
await smithyClient.collectBody(output.body, context);
|
|
997
|
-
return contents;
|
|
998
|
-
};
|
|
999
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1000
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1001
|
-
return de_CommandError(output, context);
|
|
1002
|
-
}
|
|
1003
|
-
const contents = smithyClient.map({
|
|
1004
|
-
$metadata: deserializeMetadata(output),
|
|
1005
|
-
});
|
|
1006
|
-
await smithyClient.collectBody(output.body, context);
|
|
1007
|
-
return contents;
|
|
1008
|
-
};
|
|
1009
|
-
const de_UpdateAppAuthorizationCommand = async (output, context) => {
|
|
1010
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1011
|
-
return de_CommandError(output, context);
|
|
1012
|
-
}
|
|
1013
|
-
const contents = smithyClient.map({
|
|
1014
|
-
$metadata: deserializeMetadata(output),
|
|
1015
|
-
});
|
|
1016
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1017
|
-
const doc = smithyClient.take(data, {
|
|
1018
|
-
appAuthorization: (_) => de_AppAuthorization(_),
|
|
1019
|
-
});
|
|
1020
|
-
Object.assign(contents, doc);
|
|
1021
|
-
return contents;
|
|
1022
|
-
};
|
|
1023
|
-
const de_UpdateIngestionDestinationCommand = async (output, context) => {
|
|
1024
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1025
|
-
return de_CommandError(output, context);
|
|
1026
|
-
}
|
|
1027
|
-
const contents = smithyClient.map({
|
|
1028
|
-
$metadata: deserializeMetadata(output),
|
|
1029
|
-
});
|
|
1030
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1031
|
-
const doc = smithyClient.take(data, {
|
|
1032
|
-
ingestionDestination: (_) => de_IngestionDestination(_),
|
|
1033
|
-
});
|
|
1034
|
-
Object.assign(contents, doc);
|
|
1035
|
-
return contents;
|
|
1036
|
-
};
|
|
1037
|
-
const de_CommandError = async (output, context) => {
|
|
1038
|
-
const parsedOutput = {
|
|
1039
|
-
...output,
|
|
1040
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1041
|
-
};
|
|
1042
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1043
|
-
switch (errorCode) {
|
|
1044
|
-
case "AccessDeniedException":
|
|
1045
|
-
case "com.amazonaws.appfabric#AccessDeniedException":
|
|
1046
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1047
|
-
case "InternalServerException":
|
|
1048
|
-
case "com.amazonaws.appfabric#InternalServerException":
|
|
1049
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1050
|
-
case "ResourceNotFoundException":
|
|
1051
|
-
case "com.amazonaws.appfabric#ResourceNotFoundException":
|
|
1052
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1053
|
-
case "ThrottlingException":
|
|
1054
|
-
case "com.amazonaws.appfabric#ThrottlingException":
|
|
1055
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1056
|
-
case "ValidationException":
|
|
1057
|
-
case "com.amazonaws.appfabric#ValidationException":
|
|
1058
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1059
|
-
case "ConflictException":
|
|
1060
|
-
case "com.amazonaws.appfabric#ConflictException":
|
|
1061
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1062
|
-
case "ServiceQuotaExceededException":
|
|
1063
|
-
case "com.amazonaws.appfabric#ServiceQuotaExceededException":
|
|
1064
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1065
|
-
default:
|
|
1066
|
-
const parsedBody = parsedOutput.body;
|
|
1067
|
-
return throwDefaultError({
|
|
1068
|
-
output,
|
|
1069
|
-
parsedBody,
|
|
1070
|
-
errorCode,
|
|
1071
|
-
});
|
|
1072
|
-
}
|
|
1073
|
-
};
|
|
1074
|
-
const throwDefaultError = smithyClient.withBaseException(AppFabricServiceException);
|
|
1075
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1076
|
-
const contents = smithyClient.map({});
|
|
1077
|
-
const data = parsedOutput.body;
|
|
1078
|
-
const doc = smithyClient.take(data, {
|
|
1079
|
-
message: smithyClient.expectString,
|
|
1080
|
-
});
|
|
1081
|
-
Object.assign(contents, doc);
|
|
1082
|
-
const exception = new AccessDeniedException({
|
|
1083
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1084
|
-
...contents,
|
|
1085
|
-
});
|
|
1086
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1087
|
-
};
|
|
1088
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1089
|
-
const contents = smithyClient.map({});
|
|
1090
|
-
const data = parsedOutput.body;
|
|
1091
|
-
const doc = smithyClient.take(data, {
|
|
1092
|
-
message: smithyClient.expectString,
|
|
1093
|
-
resourceId: smithyClient.expectString,
|
|
1094
|
-
resourceType: smithyClient.expectString,
|
|
1095
|
-
});
|
|
1096
|
-
Object.assign(contents, doc);
|
|
1097
|
-
const exception = new ConflictException({
|
|
1098
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1099
|
-
...contents,
|
|
1100
|
-
});
|
|
1101
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1102
|
-
};
|
|
1103
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1104
|
-
const contents = smithyClient.map({
|
|
1105
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1106
|
-
});
|
|
1107
|
-
const data = parsedOutput.body;
|
|
1108
|
-
const doc = smithyClient.take(data, {
|
|
1109
|
-
message: smithyClient.expectString,
|
|
1110
|
-
});
|
|
1111
|
-
Object.assign(contents, doc);
|
|
1112
|
-
const exception = new InternalServerException({
|
|
1113
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1114
|
-
...contents,
|
|
1115
|
-
});
|
|
1116
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1117
|
-
};
|
|
1118
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1119
|
-
const contents = smithyClient.map({});
|
|
1120
|
-
const data = parsedOutput.body;
|
|
1121
|
-
const doc = smithyClient.take(data, {
|
|
1122
|
-
message: smithyClient.expectString,
|
|
1123
|
-
resourceId: smithyClient.expectString,
|
|
1124
|
-
resourceType: smithyClient.expectString,
|
|
1125
|
-
});
|
|
1126
|
-
Object.assign(contents, doc);
|
|
1127
|
-
const exception = new ResourceNotFoundException({
|
|
1128
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1129
|
-
...contents,
|
|
1130
|
-
});
|
|
1131
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1132
|
-
};
|
|
1133
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1134
|
-
const contents = smithyClient.map({});
|
|
1135
|
-
const data = parsedOutput.body;
|
|
1136
|
-
const doc = smithyClient.take(data, {
|
|
1137
|
-
message: smithyClient.expectString,
|
|
1138
|
-
quotaCode: smithyClient.expectString,
|
|
1139
|
-
resourceId: smithyClient.expectString,
|
|
1140
|
-
resourceType: smithyClient.expectString,
|
|
1141
|
-
serviceCode: smithyClient.expectString,
|
|
1142
|
-
});
|
|
1143
|
-
Object.assign(contents, doc);
|
|
1144
|
-
const exception = new ServiceQuotaExceededException({
|
|
1145
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1146
|
-
...contents,
|
|
1147
|
-
});
|
|
1148
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1149
|
-
};
|
|
1150
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1151
|
-
const contents = smithyClient.map({
|
|
1152
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1153
|
-
});
|
|
1154
|
-
const data = parsedOutput.body;
|
|
1155
|
-
const doc = smithyClient.take(data, {
|
|
1156
|
-
message: smithyClient.expectString,
|
|
1157
|
-
quotaCode: smithyClient.expectString,
|
|
1158
|
-
serviceCode: smithyClient.expectString,
|
|
1159
|
-
});
|
|
1160
|
-
Object.assign(contents, doc);
|
|
1161
|
-
const exception = new ThrottlingException({
|
|
1162
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1163
|
-
...contents,
|
|
1164
|
-
});
|
|
1165
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1166
|
-
};
|
|
1167
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1168
|
-
const contents = smithyClient.map({});
|
|
1169
|
-
const data = parsedOutput.body;
|
|
1170
|
-
const doc = smithyClient.take(data, {
|
|
1171
|
-
fieldList: smithyClient._json,
|
|
1172
|
-
message: smithyClient.expectString,
|
|
1173
|
-
reason: smithyClient.expectString,
|
|
1174
|
-
});
|
|
1175
|
-
Object.assign(contents, doc);
|
|
1176
|
-
const exception = new ValidationException({
|
|
1177
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1178
|
-
...contents,
|
|
1179
|
-
});
|
|
1180
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1181
|
-
};
|
|
1182
|
-
const de_AppAuthorization = (output, context) => {
|
|
1183
|
-
return smithyClient.take(output, {
|
|
1184
|
-
app: smithyClient.expectString,
|
|
1185
|
-
appAuthorizationArn: smithyClient.expectString,
|
|
1186
|
-
appBundleArn: smithyClient.expectString,
|
|
1187
|
-
authType: smithyClient.expectString,
|
|
1188
|
-
authUrl: smithyClient.expectString,
|
|
1189
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1190
|
-
persona: smithyClient.expectString,
|
|
1191
|
-
status: smithyClient.expectString,
|
|
1192
|
-
tenant: smithyClient._json,
|
|
1193
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1194
|
-
});
|
|
1195
|
-
};
|
|
1196
|
-
const de_AppAuthorizationSummary = (output, context) => {
|
|
1197
|
-
return smithyClient.take(output, {
|
|
1198
|
-
app: smithyClient.expectString,
|
|
1199
|
-
appAuthorizationArn: smithyClient.expectString,
|
|
1200
|
-
appBundleArn: smithyClient.expectString,
|
|
1201
|
-
status: smithyClient.expectString,
|
|
1202
|
-
tenant: smithyClient._json,
|
|
1203
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1204
|
-
});
|
|
1205
|
-
};
|
|
1206
|
-
const de_AppAuthorizationSummaryList = (output, context) => {
|
|
1207
|
-
const retVal = (output || [])
|
|
1208
|
-
.filter((e) => e != null)
|
|
1209
|
-
.map((entry) => {
|
|
1210
|
-
return de_AppAuthorizationSummary(entry);
|
|
1211
|
-
});
|
|
1212
|
-
return retVal;
|
|
1213
|
-
};
|
|
1214
|
-
const de_Ingestion = (output, context) => {
|
|
1215
|
-
return smithyClient.take(output, {
|
|
1216
|
-
app: smithyClient.expectString,
|
|
1217
|
-
appBundleArn: smithyClient.expectString,
|
|
1218
|
-
arn: smithyClient.expectString,
|
|
1219
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1220
|
-
ingestionType: smithyClient.expectString,
|
|
1221
|
-
state: smithyClient.expectString,
|
|
1222
|
-
tenantId: smithyClient.expectString,
|
|
1223
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1224
|
-
});
|
|
1225
|
-
};
|
|
1226
|
-
const de_IngestionDestination = (output, context) => {
|
|
1227
|
-
return smithyClient.take(output, {
|
|
1228
|
-
arn: smithyClient.expectString,
|
|
1229
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1230
|
-
destinationConfiguration: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1231
|
-
ingestionArn: smithyClient.expectString,
|
|
1232
|
-
processingConfiguration: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1233
|
-
status: smithyClient.expectString,
|
|
1234
|
-
statusReason: smithyClient.expectString,
|
|
1235
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1236
|
-
});
|
|
1237
|
-
};
|
|
1238
|
-
const deserializeMetadata = (output) => ({
|
|
1239
|
-
httpStatusCode: output.statusCode,
|
|
1240
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1241
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1242
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1243
|
-
});
|
|
282
|
+
const _AA = "AppAuthorization";
|
|
283
|
+
const _AAS = "AppAuthorizationSummary";
|
|
284
|
+
const _AASL = "AppAuthorizationSummaryList";
|
|
285
|
+
const _AB = "AppBundle";
|
|
286
|
+
const _ABS = "AppBundleSummary";
|
|
287
|
+
const _ABSL = "AppBundleSummaryList";
|
|
288
|
+
const _ADE = "AccessDeniedException";
|
|
289
|
+
const _AKC = "ApiKeyCredential";
|
|
290
|
+
const _ALDC = "AuditLogDestinationConfiguration";
|
|
291
|
+
const _ALPC = "AuditLogProcessingConfiguration";
|
|
292
|
+
const _AR = "AuthRequest";
|
|
293
|
+
const _BGUAT = "BatchGetUserAccessTasks";
|
|
294
|
+
const _BGUATR = "BatchGetUserAccessTasksRequest";
|
|
295
|
+
const _BGUATRa = "BatchGetUserAccessTasksResponse";
|
|
296
|
+
const _C = "Credential";
|
|
297
|
+
const _CAA = "ConnectAppAuthorization";
|
|
298
|
+
const _CAAR = "ConnectAppAuthorizationRequest";
|
|
299
|
+
const _CAARo = "ConnectAppAuthorizationResponse";
|
|
300
|
+
const _CAARr = "CreateAppAuthorizationRequest";
|
|
301
|
+
const _CAARre = "CreateAppAuthorizationResponse";
|
|
302
|
+
const _CAAr = "CreateAppAuthorization";
|
|
303
|
+
const _CAB = "CreateAppBundle";
|
|
304
|
+
const _CABR = "CreateAppBundleRequest";
|
|
305
|
+
const _CABRr = "CreateAppBundleResponse";
|
|
306
|
+
const _CE = "ConflictException";
|
|
307
|
+
const _CI = "CreateIngestion";
|
|
308
|
+
const _CID = "CreateIngestionDestination";
|
|
309
|
+
const _CIDR = "CreateIngestionDestinationRequest";
|
|
310
|
+
const _CIDRr = "CreateIngestionDestinationResponse";
|
|
311
|
+
const _CIR = "CreateIngestionRequest";
|
|
312
|
+
const _CIRr = "CreateIngestionResponse";
|
|
313
|
+
const _D = "Destination";
|
|
314
|
+
const _DAA = "DeleteAppAuthorization";
|
|
315
|
+
const _DAAR = "DeleteAppAuthorizationRequest";
|
|
316
|
+
const _DAARe = "DeleteAppAuthorizationResponse";
|
|
317
|
+
const _DAB = "DeleteAppBundle";
|
|
318
|
+
const _DABR = "DeleteAppBundleRequest";
|
|
319
|
+
const _DABRe = "DeleteAppBundleResponse";
|
|
320
|
+
const _DC = "DestinationConfiguration";
|
|
321
|
+
const _DI = "DeleteIngestion";
|
|
322
|
+
const _DID = "DeleteIngestionDestination";
|
|
323
|
+
const _DIDR = "DeleteIngestionDestinationRequest";
|
|
324
|
+
const _DIDRe = "DeleteIngestionDestinationResponse";
|
|
325
|
+
const _DIR = "DeleteIngestionRequest";
|
|
326
|
+
const _DIRe = "DeleteIngestionResponse";
|
|
327
|
+
const _E = "Email";
|
|
328
|
+
const _FS = "FirehoseStream";
|
|
329
|
+
const _GAA = "GetAppAuthorization";
|
|
330
|
+
const _GAAR = "GetAppAuthorizationRequest";
|
|
331
|
+
const _GAARe = "GetAppAuthorizationResponse";
|
|
332
|
+
const _GAB = "GetAppBundle";
|
|
333
|
+
const _GABR = "GetAppBundleRequest";
|
|
334
|
+
const _GABRe = "GetAppBundleResponse";
|
|
335
|
+
const _GI = "GetIngestion";
|
|
336
|
+
const _GID = "GetIngestionDestination";
|
|
337
|
+
const _GIDR = "GetIngestionDestinationRequest";
|
|
338
|
+
const _GIDRe = "GetIngestionDestinationResponse";
|
|
339
|
+
const _GIR = "GetIngestionRequest";
|
|
340
|
+
const _GIRe = "GetIngestionResponse";
|
|
341
|
+
const _I = "Ingestion";
|
|
342
|
+
const _ID = "IngestionDestination";
|
|
343
|
+
const _IDL = "IngestionDestinationList";
|
|
344
|
+
const _IDS = "IngestionDestinationSummary";
|
|
345
|
+
const _IL = "IngestionList";
|
|
346
|
+
const _IS = "IngestionSummary";
|
|
347
|
+
const _ISE = "InternalServerException";
|
|
348
|
+
const _LAA = "ListAppAuthorizations";
|
|
349
|
+
const _LAAR = "ListAppAuthorizationsRequest";
|
|
350
|
+
const _LAARi = "ListAppAuthorizationsResponse";
|
|
351
|
+
const _LAB = "ListAppBundles";
|
|
352
|
+
const _LABR = "ListAppBundlesRequest";
|
|
353
|
+
const _LABRi = "ListAppBundlesResponse";
|
|
354
|
+
const _LI = "ListIngestions";
|
|
355
|
+
const _LID = "ListIngestionDestinations";
|
|
356
|
+
const _LIDR = "ListIngestionDestinationsRequest";
|
|
357
|
+
const _LIDRi = "ListIngestionDestinationsResponse";
|
|
358
|
+
const _LIR = "ListIngestionsRequest";
|
|
359
|
+
const _LIRi = "ListIngestionsResponse";
|
|
360
|
+
const _LTFR = "ListTagsForResource";
|
|
361
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
362
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
363
|
+
const _OC = "Oauth2Credential";
|
|
364
|
+
const _PC = "ProcessingConfiguration";
|
|
365
|
+
const _RA = "Retry-After";
|
|
366
|
+
const _RNFE = "ResourceNotFoundException";
|
|
367
|
+
const _SB = "S3Bucket";
|
|
368
|
+
const _SI = "StartIngestion";
|
|
369
|
+
const _SIR = "StartIngestionRequest";
|
|
370
|
+
const _SIRt = "StartIngestionResponse";
|
|
371
|
+
const _SIRto = "StopIngestionRequest";
|
|
372
|
+
const _SIRtop = "StopIngestionResponse";
|
|
373
|
+
const _SIt = "StopIngestion";
|
|
374
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
375
|
+
const _SS = "SensitiveString2048";
|
|
376
|
+
const _SUAT = "StartUserAccessTasks";
|
|
377
|
+
const _SUATR = "StartUserAccessTasksRequest";
|
|
378
|
+
const _SUATRt = "StartUserAccessTasksResponse";
|
|
379
|
+
const _T = "Tag";
|
|
380
|
+
const _TE = "TaskError";
|
|
381
|
+
const _TEh = "ThrottlingException";
|
|
382
|
+
const _TL = "TagList";
|
|
383
|
+
const _TR = "TagResource";
|
|
384
|
+
const _TRR = "TagResourceRequest";
|
|
385
|
+
const _TRRa = "TagResourceResponse";
|
|
386
|
+
const _Te = "Tenant";
|
|
387
|
+
const _UAA = "UpdateAppAuthorization";
|
|
388
|
+
const _UAAR = "UpdateAppAuthorizationRequest";
|
|
389
|
+
const _UAARp = "UpdateAppAuthorizationResponse";
|
|
390
|
+
const _UARI = "UserAccessResultItem";
|
|
391
|
+
const _UARL = "UserAccessResultsList";
|
|
392
|
+
const _UATI = "UserAccessTaskItem";
|
|
393
|
+
const _UATL = "UserAccessTasksList";
|
|
394
|
+
const _UID = "UpdateIngestionDestination";
|
|
395
|
+
const _UIDR = "UpdateIngestionDestinationRequest";
|
|
396
|
+
const _UIDRp = "UpdateIngestionDestinationResponse";
|
|
397
|
+
const _UR = "UntagResource";
|
|
398
|
+
const _URR = "UntagResourceRequest";
|
|
399
|
+
const _URRn = "UntagResourceResponse";
|
|
400
|
+
const _VE = "ValidationException";
|
|
401
|
+
const _VEF = "ValidationExceptionField";
|
|
402
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
403
|
+
const _a = "app";
|
|
404
|
+
const _aA = "appAuthorization";
|
|
405
|
+
const _aAA = "appAuthorizationArn";
|
|
406
|
+
const _aAI = "appAuthorizationIdentifier";
|
|
407
|
+
const _aAS = "appAuthorizationSummary";
|
|
408
|
+
const _aASL = "appAuthorizationSummaryList";
|
|
409
|
+
const _aB = "appBundle";
|
|
410
|
+
const _aBA = "appBundleArn";
|
|
411
|
+
const _aBI = "appBundleIdentifier";
|
|
412
|
+
const _aBSL = "appBundleSummaryList";
|
|
413
|
+
const _aK = "apiKey";
|
|
414
|
+
const _aKC = "apiKeyCredential";
|
|
415
|
+
const _aL = "auditLog";
|
|
416
|
+
const _aR = "authRequest";
|
|
417
|
+
const _aT = "authType";
|
|
418
|
+
const _aU = "authUrl";
|
|
419
|
+
const _ar = "arn";
|
|
420
|
+
const _bN = "bucketName";
|
|
421
|
+
const _c = "client";
|
|
422
|
+
const _cA = "createdAt";
|
|
423
|
+
const _cI = "clientId";
|
|
424
|
+
const _cMKA = "customerManagedKeyArn";
|
|
425
|
+
const _cMKI = "customerManagedKeyIdentifier";
|
|
426
|
+
const _cS = "clientSecret";
|
|
427
|
+
const _cT = "clientToken";
|
|
428
|
+
const _co = "code";
|
|
429
|
+
const _cr = "credential";
|
|
430
|
+
const _d = "destination";
|
|
431
|
+
const _dC = "destinationConfiguration";
|
|
432
|
+
const _e = "error";
|
|
433
|
+
const _eC = "errorCode";
|
|
434
|
+
const _eM = "errorMessage";
|
|
435
|
+
const _em = "email";
|
|
436
|
+
const _f = "format";
|
|
437
|
+
const _fL = "fieldList";
|
|
438
|
+
const _fS = "firehoseStream";
|
|
439
|
+
const _h = "http";
|
|
440
|
+
const _hE = "httpError";
|
|
441
|
+
const _hH = "httpHeader";
|
|
442
|
+
const _hQ = "httpQuery";
|
|
443
|
+
const _i = "ingestion";
|
|
444
|
+
const _iA = "ingestionArn";
|
|
445
|
+
const _iD = "ingestionDestination";
|
|
446
|
+
const _iDI = "ingestionDestinationIdentifier";
|
|
447
|
+
const _iDn = "ingestionDestinations";
|
|
448
|
+
const _iI = "ingestionIdentifier";
|
|
449
|
+
const _iT = "ingestionType";
|
|
450
|
+
const _in = "ingestions";
|
|
451
|
+
const _k = "key";
|
|
452
|
+
const _m = "message";
|
|
1244
453
|
const _mR = "maxResults";
|
|
454
|
+
const _n = "name";
|
|
1245
455
|
const _nT = "nextToken";
|
|
456
|
+
const _oC = "oauth2Credential";
|
|
457
|
+
const _p = "persona";
|
|
458
|
+
const _pC = "processingConfiguration";
|
|
459
|
+
const _pr = "prefix";
|
|
460
|
+
const _qC = "quotaCode";
|
|
461
|
+
const _r = "reason";
|
|
462
|
+
const _rA = "resourceArn";
|
|
1246
463
|
const _rAS = "retryAfterSeconds";
|
|
1247
|
-
const
|
|
464
|
+
const _rI = "resourceId";
|
|
465
|
+
const _rS = "resultStatus";
|
|
466
|
+
const _rT = "resourceType";
|
|
467
|
+
const _rU = "redirectUri";
|
|
468
|
+
const _s = "status";
|
|
469
|
+
const _sB = "s3Bucket";
|
|
470
|
+
const _sC = "serviceCode";
|
|
471
|
+
const _sN = "streamName";
|
|
472
|
+
const _sR = "statusReason";
|
|
473
|
+
const _sc = "schema";
|
|
474
|
+
const _se = "server";
|
|
475
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appfabric";
|
|
476
|
+
const _st = "state";
|
|
477
|
+
const _t = "tenant";
|
|
478
|
+
const _tDN = "tenantDisplayName";
|
|
479
|
+
const _tE = "taskError";
|
|
480
|
+
const _tI = "tenantId";
|
|
481
|
+
const _tIL = "taskIdList";
|
|
482
|
+
const _tIa = "taskId";
|
|
483
|
+
const _tIe = "tenantIdentifier";
|
|
1248
484
|
const _tK = "tagKeys";
|
|
485
|
+
const _ta = "tags";
|
|
486
|
+
const _uA = "updatedAt";
|
|
487
|
+
const _uARL = "userAccessResultsList";
|
|
488
|
+
const _uATL = "userAccessTasksList";
|
|
489
|
+
const _uFN = "userFullName";
|
|
490
|
+
const _uFNs = "userFirstName";
|
|
491
|
+
const _uI = "userId";
|
|
492
|
+
const _uLN = "userLastName";
|
|
493
|
+
const _uS = "userStatus";
|
|
494
|
+
const _v = "value";
|
|
495
|
+
const n0 = "com.amazonaws.appfabric";
|
|
496
|
+
var Email = [0, n0, _E, 8, 0];
|
|
497
|
+
var SensitiveString2048 = [0, n0, _SS, 8, 0];
|
|
498
|
+
var AccessDeniedException = [
|
|
499
|
+
-3,
|
|
500
|
+
n0,
|
|
501
|
+
_ADE,
|
|
502
|
+
{
|
|
503
|
+
[_e]: _c,
|
|
504
|
+
[_hE]: 403,
|
|
505
|
+
},
|
|
506
|
+
[_m],
|
|
507
|
+
[0],
|
|
508
|
+
];
|
|
509
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
510
|
+
var ApiKeyCredential = [3, n0, _AKC, 0, [_aK], [[() => SensitiveString2048, 0]]];
|
|
511
|
+
var AppAuthorization = [
|
|
512
|
+
3,
|
|
513
|
+
n0,
|
|
514
|
+
_AA,
|
|
515
|
+
0,
|
|
516
|
+
[_aAA, _aBA, _a, _t, _aT, _s, _cA, _uA, _p, _aU],
|
|
517
|
+
[0, 0, 0, () => Tenant, 0, 0, 5, 5, 0, 0],
|
|
518
|
+
];
|
|
519
|
+
var AppAuthorizationSummary = [
|
|
520
|
+
3,
|
|
521
|
+
n0,
|
|
522
|
+
_AAS,
|
|
523
|
+
0,
|
|
524
|
+
[_aAA, _aBA, _a, _t, _s, _uA],
|
|
525
|
+
[0, 0, 0, () => Tenant, 0, 5],
|
|
526
|
+
];
|
|
527
|
+
var AppBundle = [3, n0, _AB, 0, [_ar, _cMKA], [0, 0]];
|
|
528
|
+
var AppBundleSummary = [3, n0, _ABS, 0, [_ar], [0]];
|
|
529
|
+
var AuditLogDestinationConfiguration = [3, n0, _ALDC, 0, [_d], [() => Destination]];
|
|
530
|
+
var AuditLogProcessingConfiguration = [3, n0, _ALPC, 0, [_sc, _f], [0, 0]];
|
|
531
|
+
var AuthRequest = [3, n0, _AR, 0, [_rU, _co], [0, [() => SensitiveString2048, 0]]];
|
|
532
|
+
var BatchGetUserAccessTasksRequest = [3, n0, _BGUATR, 0, [_aBI, _tIL], [0, 64 | 0]];
|
|
533
|
+
var BatchGetUserAccessTasksResponse = [
|
|
534
|
+
3,
|
|
535
|
+
n0,
|
|
536
|
+
_BGUATRa,
|
|
537
|
+
0,
|
|
538
|
+
[_uARL],
|
|
539
|
+
[[() => UserAccessResultsList, 0]],
|
|
540
|
+
];
|
|
541
|
+
var ConflictException = [
|
|
542
|
+
-3,
|
|
543
|
+
n0,
|
|
544
|
+
_CE,
|
|
545
|
+
{
|
|
546
|
+
[_e]: _c,
|
|
547
|
+
[_hE]: 409,
|
|
548
|
+
},
|
|
549
|
+
[_m, _rI, _rT],
|
|
550
|
+
[0, 0, 0],
|
|
551
|
+
];
|
|
552
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
553
|
+
var ConnectAppAuthorizationRequest = [
|
|
554
|
+
3,
|
|
555
|
+
n0,
|
|
556
|
+
_CAAR,
|
|
557
|
+
0,
|
|
558
|
+
[_aBI, _aAI, _aR],
|
|
559
|
+
[
|
|
560
|
+
[0, 1],
|
|
561
|
+
[0, 1],
|
|
562
|
+
[() => AuthRequest, 0],
|
|
563
|
+
],
|
|
564
|
+
];
|
|
565
|
+
var ConnectAppAuthorizationResponse = [
|
|
566
|
+
3,
|
|
567
|
+
n0,
|
|
568
|
+
_CAARo,
|
|
569
|
+
0,
|
|
570
|
+
[_aAS],
|
|
571
|
+
[() => AppAuthorizationSummary],
|
|
572
|
+
];
|
|
573
|
+
var CreateAppAuthorizationRequest = [
|
|
574
|
+
3,
|
|
575
|
+
n0,
|
|
576
|
+
_CAARr,
|
|
577
|
+
0,
|
|
578
|
+
[_aBI, _a, _cr, _t, _aT, _cT, _ta],
|
|
579
|
+
[[0, 1], 0, [() => Credential, 0], () => Tenant, 0, [0, 4], () => TagList],
|
|
580
|
+
];
|
|
581
|
+
var CreateAppAuthorizationResponse = [3, n0, _CAARre, 0, [_aA], [() => AppAuthorization]];
|
|
582
|
+
var CreateAppBundleRequest = [
|
|
583
|
+
3,
|
|
584
|
+
n0,
|
|
585
|
+
_CABR,
|
|
586
|
+
0,
|
|
587
|
+
[_cT, _cMKI, _ta],
|
|
588
|
+
[[0, 4], 0, () => TagList],
|
|
589
|
+
];
|
|
590
|
+
var CreateAppBundleResponse = [3, n0, _CABRr, 0, [_aB], [() => AppBundle]];
|
|
591
|
+
var CreateIngestionDestinationRequest = [
|
|
592
|
+
3,
|
|
593
|
+
n0,
|
|
594
|
+
_CIDR,
|
|
595
|
+
0,
|
|
596
|
+
[_aBI, _iI, _pC, _dC, _cT, _ta],
|
|
597
|
+
[[0, 1], [0, 1], () => ProcessingConfiguration, () => DestinationConfiguration, [0, 4], () => TagList],
|
|
598
|
+
];
|
|
599
|
+
var CreateIngestionDestinationResponse = [
|
|
600
|
+
3,
|
|
601
|
+
n0,
|
|
602
|
+
_CIDRr,
|
|
603
|
+
0,
|
|
604
|
+
[_iD],
|
|
605
|
+
[() => IngestionDestination],
|
|
606
|
+
];
|
|
607
|
+
var CreateIngestionRequest = [
|
|
608
|
+
3,
|
|
609
|
+
n0,
|
|
610
|
+
_CIR,
|
|
611
|
+
0,
|
|
612
|
+
[_aBI, _a, _tI, _iT, _cT, _ta],
|
|
613
|
+
[[0, 1], 0, 0, 0, [0, 4], () => TagList],
|
|
614
|
+
];
|
|
615
|
+
var CreateIngestionResponse = [3, n0, _CIRr, 0, [_i], [() => Ingestion]];
|
|
616
|
+
var DeleteAppAuthorizationRequest = [
|
|
617
|
+
3,
|
|
618
|
+
n0,
|
|
619
|
+
_DAAR,
|
|
620
|
+
0,
|
|
621
|
+
[_aBI, _aAI],
|
|
622
|
+
[
|
|
623
|
+
[0, 1],
|
|
624
|
+
[0, 1],
|
|
625
|
+
],
|
|
626
|
+
];
|
|
627
|
+
var DeleteAppAuthorizationResponse = [3, n0, _DAARe, 0, [], []];
|
|
628
|
+
var DeleteAppBundleRequest = [3, n0, _DABR, 0, [_aBI], [[0, 1]]];
|
|
629
|
+
var DeleteAppBundleResponse = [3, n0, _DABRe, 0, [], []];
|
|
630
|
+
var DeleteIngestionDestinationRequest = [
|
|
631
|
+
3,
|
|
632
|
+
n0,
|
|
633
|
+
_DIDR,
|
|
634
|
+
0,
|
|
635
|
+
[_aBI, _iI, _iDI],
|
|
636
|
+
[
|
|
637
|
+
[0, 1],
|
|
638
|
+
[0, 1],
|
|
639
|
+
[0, 1],
|
|
640
|
+
],
|
|
641
|
+
];
|
|
642
|
+
var DeleteIngestionDestinationResponse = [3, n0, _DIDRe, 0, [], []];
|
|
643
|
+
var DeleteIngestionRequest = [
|
|
644
|
+
3,
|
|
645
|
+
n0,
|
|
646
|
+
_DIR,
|
|
647
|
+
0,
|
|
648
|
+
[_aBI, _iI],
|
|
649
|
+
[
|
|
650
|
+
[0, 1],
|
|
651
|
+
[0, 1],
|
|
652
|
+
],
|
|
653
|
+
];
|
|
654
|
+
var DeleteIngestionResponse = [3, n0, _DIRe, 0, [], []];
|
|
655
|
+
var FirehoseStream = [3, n0, _FS, 0, [_sN], [0]];
|
|
656
|
+
var GetAppAuthorizationRequest = [
|
|
657
|
+
3,
|
|
658
|
+
n0,
|
|
659
|
+
_GAAR,
|
|
660
|
+
0,
|
|
661
|
+
[_aBI, _aAI],
|
|
662
|
+
[
|
|
663
|
+
[0, 1],
|
|
664
|
+
[0, 1],
|
|
665
|
+
],
|
|
666
|
+
];
|
|
667
|
+
var GetAppAuthorizationResponse = [3, n0, _GAARe, 0, [_aA], [() => AppAuthorization]];
|
|
668
|
+
var GetAppBundleRequest = [3, n0, _GABR, 0, [_aBI], [[0, 1]]];
|
|
669
|
+
var GetAppBundleResponse = [3, n0, _GABRe, 0, [_aB], [() => AppBundle]];
|
|
670
|
+
var GetIngestionDestinationRequest = [
|
|
671
|
+
3,
|
|
672
|
+
n0,
|
|
673
|
+
_GIDR,
|
|
674
|
+
0,
|
|
675
|
+
[_aBI, _iI, _iDI],
|
|
676
|
+
[
|
|
677
|
+
[0, 1],
|
|
678
|
+
[0, 1],
|
|
679
|
+
[0, 1],
|
|
680
|
+
],
|
|
681
|
+
];
|
|
682
|
+
var GetIngestionDestinationResponse = [
|
|
683
|
+
3,
|
|
684
|
+
n0,
|
|
685
|
+
_GIDRe,
|
|
686
|
+
0,
|
|
687
|
+
[_iD],
|
|
688
|
+
[() => IngestionDestination],
|
|
689
|
+
];
|
|
690
|
+
var GetIngestionRequest = [
|
|
691
|
+
3,
|
|
692
|
+
n0,
|
|
693
|
+
_GIR,
|
|
694
|
+
0,
|
|
695
|
+
[_aBI, _iI],
|
|
696
|
+
[
|
|
697
|
+
[0, 1],
|
|
698
|
+
[0, 1],
|
|
699
|
+
],
|
|
700
|
+
];
|
|
701
|
+
var GetIngestionResponse = [3, n0, _GIRe, 0, [_i], [() => Ingestion]];
|
|
702
|
+
var Ingestion = [
|
|
703
|
+
3,
|
|
704
|
+
n0,
|
|
705
|
+
_I,
|
|
706
|
+
0,
|
|
707
|
+
[_ar, _aBA, _a, _tI, _cA, _uA, _st, _iT],
|
|
708
|
+
[0, 0, 0, 0, 5, 5, 0, 0],
|
|
709
|
+
];
|
|
710
|
+
var IngestionDestination = [
|
|
711
|
+
3,
|
|
712
|
+
n0,
|
|
713
|
+
_ID,
|
|
714
|
+
0,
|
|
715
|
+
[_ar, _iA, _pC, _dC, _s, _sR, _cA, _uA],
|
|
716
|
+
[0, 0, () => ProcessingConfiguration, () => DestinationConfiguration, 0, 0, 5, 5],
|
|
717
|
+
];
|
|
718
|
+
var IngestionDestinationSummary = [3, n0, _IDS, 0, [_ar], [0]];
|
|
719
|
+
var IngestionSummary = [3, n0, _IS, 0, [_ar, _a, _tI, _st], [0, 0, 0, 0]];
|
|
720
|
+
var InternalServerException = [
|
|
721
|
+
-3,
|
|
722
|
+
n0,
|
|
723
|
+
_ISE,
|
|
724
|
+
{
|
|
725
|
+
[_e]: _se,
|
|
726
|
+
[_hE]: 500,
|
|
727
|
+
},
|
|
728
|
+
[_m, _rAS],
|
|
729
|
+
[
|
|
730
|
+
0,
|
|
731
|
+
[
|
|
732
|
+
1,
|
|
733
|
+
{
|
|
734
|
+
[_hH]: _RA,
|
|
735
|
+
},
|
|
736
|
+
],
|
|
737
|
+
],
|
|
738
|
+
];
|
|
739
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
740
|
+
var ListAppAuthorizationsRequest = [
|
|
741
|
+
3,
|
|
742
|
+
n0,
|
|
743
|
+
_LAAR,
|
|
744
|
+
0,
|
|
745
|
+
[_aBI, _mR, _nT],
|
|
746
|
+
[
|
|
747
|
+
[0, 1],
|
|
748
|
+
[
|
|
749
|
+
1,
|
|
750
|
+
{
|
|
751
|
+
[_hQ]: _mR,
|
|
752
|
+
},
|
|
753
|
+
],
|
|
754
|
+
[
|
|
755
|
+
0,
|
|
756
|
+
{
|
|
757
|
+
[_hQ]: _nT,
|
|
758
|
+
},
|
|
759
|
+
],
|
|
760
|
+
],
|
|
761
|
+
];
|
|
762
|
+
var ListAppAuthorizationsResponse = [
|
|
763
|
+
3,
|
|
764
|
+
n0,
|
|
765
|
+
_LAARi,
|
|
766
|
+
0,
|
|
767
|
+
[_aASL, _nT],
|
|
768
|
+
[() => AppAuthorizationSummaryList, 0],
|
|
769
|
+
];
|
|
770
|
+
var ListAppBundlesRequest = [
|
|
771
|
+
3,
|
|
772
|
+
n0,
|
|
773
|
+
_LABR,
|
|
774
|
+
0,
|
|
775
|
+
[_mR, _nT],
|
|
776
|
+
[
|
|
777
|
+
[
|
|
778
|
+
1,
|
|
779
|
+
{
|
|
780
|
+
[_hQ]: _mR,
|
|
781
|
+
},
|
|
782
|
+
],
|
|
783
|
+
[
|
|
784
|
+
0,
|
|
785
|
+
{
|
|
786
|
+
[_hQ]: _nT,
|
|
787
|
+
},
|
|
788
|
+
],
|
|
789
|
+
],
|
|
790
|
+
];
|
|
791
|
+
var ListAppBundlesResponse = [
|
|
792
|
+
3,
|
|
793
|
+
n0,
|
|
794
|
+
_LABRi,
|
|
795
|
+
0,
|
|
796
|
+
[_aBSL, _nT],
|
|
797
|
+
[() => AppBundleSummaryList, 0],
|
|
798
|
+
];
|
|
799
|
+
var ListIngestionDestinationsRequest = [
|
|
800
|
+
3,
|
|
801
|
+
n0,
|
|
802
|
+
_LIDR,
|
|
803
|
+
0,
|
|
804
|
+
[_aBI, _iI, _mR, _nT],
|
|
805
|
+
[
|
|
806
|
+
[0, 1],
|
|
807
|
+
[0, 1],
|
|
808
|
+
[
|
|
809
|
+
1,
|
|
810
|
+
{
|
|
811
|
+
[_hQ]: _mR,
|
|
812
|
+
},
|
|
813
|
+
],
|
|
814
|
+
[
|
|
815
|
+
0,
|
|
816
|
+
{
|
|
817
|
+
[_hQ]: _nT,
|
|
818
|
+
},
|
|
819
|
+
],
|
|
820
|
+
],
|
|
821
|
+
];
|
|
822
|
+
var ListIngestionDestinationsResponse = [
|
|
823
|
+
3,
|
|
824
|
+
n0,
|
|
825
|
+
_LIDRi,
|
|
826
|
+
0,
|
|
827
|
+
[_iDn, _nT],
|
|
828
|
+
[() => IngestionDestinationList, 0],
|
|
829
|
+
];
|
|
830
|
+
var ListIngestionsRequest = [
|
|
831
|
+
3,
|
|
832
|
+
n0,
|
|
833
|
+
_LIR,
|
|
834
|
+
0,
|
|
835
|
+
[_aBI, _mR, _nT],
|
|
836
|
+
[
|
|
837
|
+
[0, 1],
|
|
838
|
+
[
|
|
839
|
+
1,
|
|
840
|
+
{
|
|
841
|
+
[_hQ]: _mR,
|
|
842
|
+
},
|
|
843
|
+
],
|
|
844
|
+
[
|
|
845
|
+
0,
|
|
846
|
+
{
|
|
847
|
+
[_hQ]: _nT,
|
|
848
|
+
},
|
|
849
|
+
],
|
|
850
|
+
],
|
|
851
|
+
];
|
|
852
|
+
var ListIngestionsResponse = [3, n0, _LIRi, 0, [_in, _nT], [() => IngestionList, 0]];
|
|
853
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
854
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
|
|
855
|
+
var Oauth2Credential = [3, n0, _OC, 0, [_cI, _cS], [0, [() => SensitiveString2048, 0]]];
|
|
856
|
+
var ResourceNotFoundException = [
|
|
857
|
+
-3,
|
|
858
|
+
n0,
|
|
859
|
+
_RNFE,
|
|
860
|
+
{
|
|
861
|
+
[_e]: _c,
|
|
862
|
+
[_hE]: 404,
|
|
863
|
+
},
|
|
864
|
+
[_m, _rI, _rT],
|
|
865
|
+
[0, 0, 0],
|
|
866
|
+
];
|
|
867
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
868
|
+
var S3Bucket = [3, n0, _SB, 0, [_bN, _pr], [0, 0]];
|
|
869
|
+
var ServiceQuotaExceededException = [
|
|
870
|
+
-3,
|
|
871
|
+
n0,
|
|
872
|
+
_SQEE,
|
|
873
|
+
{
|
|
874
|
+
[_e]: _c,
|
|
875
|
+
[_hE]: 402,
|
|
876
|
+
},
|
|
877
|
+
[_m, _rI, _rT, _sC, _qC],
|
|
878
|
+
[0, 0, 0, 0, 0],
|
|
879
|
+
];
|
|
880
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
881
|
+
var StartIngestionRequest = [
|
|
882
|
+
3,
|
|
883
|
+
n0,
|
|
884
|
+
_SIR,
|
|
885
|
+
0,
|
|
886
|
+
[_iI, _aBI],
|
|
887
|
+
[
|
|
888
|
+
[0, 1],
|
|
889
|
+
[0, 1],
|
|
890
|
+
],
|
|
891
|
+
];
|
|
892
|
+
var StartIngestionResponse = [3, n0, _SIRt, 0, [], []];
|
|
893
|
+
var StartUserAccessTasksRequest = [3, n0, _SUATR, 0, [_aBI, _em], [0, [() => Email, 0]]];
|
|
894
|
+
var StartUserAccessTasksResponse = [
|
|
895
|
+
3,
|
|
896
|
+
n0,
|
|
897
|
+
_SUATRt,
|
|
898
|
+
0,
|
|
899
|
+
[_uATL],
|
|
900
|
+
[() => UserAccessTasksList],
|
|
901
|
+
];
|
|
902
|
+
var StopIngestionRequest = [
|
|
903
|
+
3,
|
|
904
|
+
n0,
|
|
905
|
+
_SIRto,
|
|
906
|
+
0,
|
|
907
|
+
[_iI, _aBI],
|
|
908
|
+
[
|
|
909
|
+
[0, 1],
|
|
910
|
+
[0, 1],
|
|
911
|
+
],
|
|
912
|
+
];
|
|
913
|
+
var StopIngestionResponse = [3, n0, _SIRtop, 0, [], []];
|
|
914
|
+
var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
915
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], () => TagList]];
|
|
916
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
917
|
+
var TaskError = [3, n0, _TE, 0, [_eC, _eM], [0, 0]];
|
|
918
|
+
var Tenant = [3, n0, _Te, 0, [_tIe, _tDN], [0, 0]];
|
|
919
|
+
var ThrottlingException = [
|
|
920
|
+
-3,
|
|
921
|
+
n0,
|
|
922
|
+
_TEh,
|
|
923
|
+
{
|
|
924
|
+
[_e]: _c,
|
|
925
|
+
[_hE]: 429,
|
|
926
|
+
},
|
|
927
|
+
[_m, _sC, _qC, _rAS],
|
|
928
|
+
[
|
|
929
|
+
0,
|
|
930
|
+
0,
|
|
931
|
+
0,
|
|
932
|
+
[
|
|
933
|
+
1,
|
|
934
|
+
{
|
|
935
|
+
[_hH]: _RA,
|
|
936
|
+
},
|
|
937
|
+
],
|
|
938
|
+
],
|
|
939
|
+
];
|
|
940
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
941
|
+
var UntagResourceRequest = [
|
|
942
|
+
3,
|
|
943
|
+
n0,
|
|
944
|
+
_URR,
|
|
945
|
+
0,
|
|
946
|
+
[_rA, _tK],
|
|
947
|
+
[
|
|
948
|
+
[0, 1],
|
|
949
|
+
[
|
|
950
|
+
64 | 0,
|
|
951
|
+
{
|
|
952
|
+
[_hQ]: _tK,
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
],
|
|
956
|
+
];
|
|
957
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
958
|
+
var UpdateAppAuthorizationRequest = [
|
|
959
|
+
3,
|
|
960
|
+
n0,
|
|
961
|
+
_UAAR,
|
|
962
|
+
0,
|
|
963
|
+
[_aBI, _aAI, _cr, _t],
|
|
964
|
+
[[0, 1], [0, 1], [() => Credential, 0], () => Tenant],
|
|
965
|
+
];
|
|
966
|
+
var UpdateAppAuthorizationResponse = [3, n0, _UAARp, 0, [_aA], [() => AppAuthorization]];
|
|
967
|
+
var UpdateIngestionDestinationRequest = [
|
|
968
|
+
3,
|
|
969
|
+
n0,
|
|
970
|
+
_UIDR,
|
|
971
|
+
0,
|
|
972
|
+
[_aBI, _iI, _iDI, _dC],
|
|
973
|
+
[[0, 1], [0, 1], [0, 1], () => DestinationConfiguration],
|
|
974
|
+
];
|
|
975
|
+
var UpdateIngestionDestinationResponse = [
|
|
976
|
+
3,
|
|
977
|
+
n0,
|
|
978
|
+
_UIDRp,
|
|
979
|
+
0,
|
|
980
|
+
[_iD],
|
|
981
|
+
[() => IngestionDestination],
|
|
982
|
+
];
|
|
983
|
+
var UserAccessResultItem = [
|
|
984
|
+
3,
|
|
985
|
+
n0,
|
|
986
|
+
_UARI,
|
|
987
|
+
0,
|
|
988
|
+
[_a, _tI, _tDN, _tIa, _rS, _em, _uI, _uFN, _uFNs, _uLN, _uS, _tE],
|
|
989
|
+
[
|
|
990
|
+
0,
|
|
991
|
+
0,
|
|
992
|
+
0,
|
|
993
|
+
0,
|
|
994
|
+
0,
|
|
995
|
+
[() => Email, 0],
|
|
996
|
+
[() => SensitiveString2048, 0],
|
|
997
|
+
[() => SensitiveString2048, 0],
|
|
998
|
+
[() => SensitiveString2048, 0],
|
|
999
|
+
[() => SensitiveString2048, 0],
|
|
1000
|
+
0,
|
|
1001
|
+
() => TaskError,
|
|
1002
|
+
],
|
|
1003
|
+
];
|
|
1004
|
+
var UserAccessTaskItem = [
|
|
1005
|
+
3,
|
|
1006
|
+
n0,
|
|
1007
|
+
_UATI,
|
|
1008
|
+
0,
|
|
1009
|
+
[_a, _tI, _tIa, _e],
|
|
1010
|
+
[0, 0, 0, () => TaskError],
|
|
1011
|
+
];
|
|
1012
|
+
var ValidationException = [
|
|
1013
|
+
-3,
|
|
1014
|
+
n0,
|
|
1015
|
+
_VE,
|
|
1016
|
+
{
|
|
1017
|
+
[_e]: _c,
|
|
1018
|
+
[_hE]: 400,
|
|
1019
|
+
},
|
|
1020
|
+
[_m, _r, _fL],
|
|
1021
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
1022
|
+
];
|
|
1023
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1024
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1025
|
+
var AppFabricServiceException = [-3, _sm, "AppFabricServiceException", 0, [], []];
|
|
1026
|
+
schema.TypeRegistry.for(_sm).registerError(AppFabricServiceException, AppFabricServiceException$1);
|
|
1027
|
+
var AppAuthorizationSummaryList = [1, n0, _AASL, 0, () => AppAuthorizationSummary];
|
|
1028
|
+
var AppBundleSummaryList = [1, n0, _ABSL, 0, () => AppBundleSummary];
|
|
1029
|
+
var IngestionDestinationList = [1, n0, _IDL, 0, () => IngestionDestinationSummary];
|
|
1030
|
+
var IngestionList = [1, n0, _IL, 0, () => IngestionSummary];
|
|
1031
|
+
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1032
|
+
var UserAccessResultsList = [1, n0, _UARL, 0, [() => UserAccessResultItem, 0]];
|
|
1033
|
+
var UserAccessTasksList = [1, n0, _UATL, 0, () => UserAccessTaskItem];
|
|
1034
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1035
|
+
var Credential = [
|
|
1036
|
+
3,
|
|
1037
|
+
n0,
|
|
1038
|
+
_C,
|
|
1039
|
+
0,
|
|
1040
|
+
[_oC, _aKC],
|
|
1041
|
+
[
|
|
1042
|
+
[() => Oauth2Credential, 0],
|
|
1043
|
+
[() => ApiKeyCredential, 0],
|
|
1044
|
+
],
|
|
1045
|
+
];
|
|
1046
|
+
var Destination = [3, n0, _D, 0, [_sB, _fS], [() => S3Bucket, () => FirehoseStream]];
|
|
1047
|
+
var DestinationConfiguration = [
|
|
1048
|
+
3,
|
|
1049
|
+
n0,
|
|
1050
|
+
_DC,
|
|
1051
|
+
0,
|
|
1052
|
+
[_aL],
|
|
1053
|
+
[() => AuditLogDestinationConfiguration],
|
|
1054
|
+
];
|
|
1055
|
+
var ProcessingConfiguration = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_PC,
|
|
1059
|
+
0,
|
|
1060
|
+
[_aL],
|
|
1061
|
+
[() => AuditLogProcessingConfiguration],
|
|
1062
|
+
];
|
|
1063
|
+
var BatchGetUserAccessTasks = [
|
|
1064
|
+
9,
|
|
1065
|
+
n0,
|
|
1066
|
+
_BGUAT,
|
|
1067
|
+
{
|
|
1068
|
+
[_h]: ["POST", "/useraccess/batchget", 200],
|
|
1069
|
+
},
|
|
1070
|
+
() => BatchGetUserAccessTasksRequest,
|
|
1071
|
+
() => BatchGetUserAccessTasksResponse,
|
|
1072
|
+
];
|
|
1073
|
+
var ConnectAppAuthorization = [
|
|
1074
|
+
9,
|
|
1075
|
+
n0,
|
|
1076
|
+
_CAA,
|
|
1077
|
+
{
|
|
1078
|
+
[_h]: ["POST", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}/connect", 200],
|
|
1079
|
+
},
|
|
1080
|
+
() => ConnectAppAuthorizationRequest,
|
|
1081
|
+
() => ConnectAppAuthorizationResponse,
|
|
1082
|
+
];
|
|
1083
|
+
var CreateAppAuthorization = [
|
|
1084
|
+
9,
|
|
1085
|
+
n0,
|
|
1086
|
+
_CAAr,
|
|
1087
|
+
{
|
|
1088
|
+
[_h]: ["POST", "/appbundles/{appBundleIdentifier}/appauthorizations", 201],
|
|
1089
|
+
},
|
|
1090
|
+
() => CreateAppAuthorizationRequest,
|
|
1091
|
+
() => CreateAppAuthorizationResponse,
|
|
1092
|
+
];
|
|
1093
|
+
var CreateAppBundle = [
|
|
1094
|
+
9,
|
|
1095
|
+
n0,
|
|
1096
|
+
_CAB,
|
|
1097
|
+
{
|
|
1098
|
+
[_h]: ["POST", "/appbundles", 201],
|
|
1099
|
+
},
|
|
1100
|
+
() => CreateAppBundleRequest,
|
|
1101
|
+
() => CreateAppBundleResponse,
|
|
1102
|
+
];
|
|
1103
|
+
var CreateIngestion = [
|
|
1104
|
+
9,
|
|
1105
|
+
n0,
|
|
1106
|
+
_CI,
|
|
1107
|
+
{
|
|
1108
|
+
[_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions", 201],
|
|
1109
|
+
},
|
|
1110
|
+
() => CreateIngestionRequest,
|
|
1111
|
+
() => CreateIngestionResponse,
|
|
1112
|
+
];
|
|
1113
|
+
var CreateIngestionDestination = [
|
|
1114
|
+
9,
|
|
1115
|
+
n0,
|
|
1116
|
+
_CID,
|
|
1117
|
+
{
|
|
1118
|
+
[_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations", 201],
|
|
1119
|
+
},
|
|
1120
|
+
() => CreateIngestionDestinationRequest,
|
|
1121
|
+
() => CreateIngestionDestinationResponse,
|
|
1122
|
+
];
|
|
1123
|
+
var DeleteAppAuthorization = [
|
|
1124
|
+
9,
|
|
1125
|
+
n0,
|
|
1126
|
+
_DAA,
|
|
1127
|
+
{
|
|
1128
|
+
[_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 204],
|
|
1129
|
+
},
|
|
1130
|
+
() => DeleteAppAuthorizationRequest,
|
|
1131
|
+
() => DeleteAppAuthorizationResponse,
|
|
1132
|
+
];
|
|
1133
|
+
var DeleteAppBundle = [
|
|
1134
|
+
9,
|
|
1135
|
+
n0,
|
|
1136
|
+
_DAB,
|
|
1137
|
+
{
|
|
1138
|
+
[_h]: ["DELETE", "/appbundles/{appBundleIdentifier}", 204],
|
|
1139
|
+
},
|
|
1140
|
+
() => DeleteAppBundleRequest,
|
|
1141
|
+
() => DeleteAppBundleResponse,
|
|
1142
|
+
];
|
|
1143
|
+
var DeleteIngestion = [
|
|
1144
|
+
9,
|
|
1145
|
+
n0,
|
|
1146
|
+
_DI,
|
|
1147
|
+
{
|
|
1148
|
+
[_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}", 204],
|
|
1149
|
+
},
|
|
1150
|
+
() => DeleteIngestionRequest,
|
|
1151
|
+
() => DeleteIngestionResponse,
|
|
1152
|
+
];
|
|
1153
|
+
var DeleteIngestionDestination = [
|
|
1154
|
+
9,
|
|
1155
|
+
n0,
|
|
1156
|
+
_DID,
|
|
1157
|
+
{
|
|
1158
|
+
[_h]: [
|
|
1159
|
+
"DELETE",
|
|
1160
|
+
"/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}",
|
|
1161
|
+
204,
|
|
1162
|
+
],
|
|
1163
|
+
},
|
|
1164
|
+
() => DeleteIngestionDestinationRequest,
|
|
1165
|
+
() => DeleteIngestionDestinationResponse,
|
|
1166
|
+
];
|
|
1167
|
+
var GetAppAuthorization = [
|
|
1168
|
+
9,
|
|
1169
|
+
n0,
|
|
1170
|
+
_GAA,
|
|
1171
|
+
{
|
|
1172
|
+
[_h]: ["GET", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 200],
|
|
1173
|
+
},
|
|
1174
|
+
() => GetAppAuthorizationRequest,
|
|
1175
|
+
() => GetAppAuthorizationResponse,
|
|
1176
|
+
];
|
|
1177
|
+
var GetAppBundle = [
|
|
1178
|
+
9,
|
|
1179
|
+
n0,
|
|
1180
|
+
_GAB,
|
|
1181
|
+
{
|
|
1182
|
+
[_h]: ["GET", "/appbundles/{appBundleIdentifier}", 200],
|
|
1183
|
+
},
|
|
1184
|
+
() => GetAppBundleRequest,
|
|
1185
|
+
() => GetAppBundleResponse,
|
|
1186
|
+
];
|
|
1187
|
+
var GetIngestion = [
|
|
1188
|
+
9,
|
|
1189
|
+
n0,
|
|
1190
|
+
_GI,
|
|
1191
|
+
{
|
|
1192
|
+
[_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}", 200],
|
|
1193
|
+
},
|
|
1194
|
+
() => GetIngestionRequest,
|
|
1195
|
+
() => GetIngestionResponse,
|
|
1196
|
+
];
|
|
1197
|
+
var GetIngestionDestination = [
|
|
1198
|
+
9,
|
|
1199
|
+
n0,
|
|
1200
|
+
_GID,
|
|
1201
|
+
{
|
|
1202
|
+
[_h]: [
|
|
1203
|
+
"GET",
|
|
1204
|
+
"/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}",
|
|
1205
|
+
200,
|
|
1206
|
+
],
|
|
1207
|
+
},
|
|
1208
|
+
() => GetIngestionDestinationRequest,
|
|
1209
|
+
() => GetIngestionDestinationResponse,
|
|
1210
|
+
];
|
|
1211
|
+
var ListAppAuthorizations = [
|
|
1212
|
+
9,
|
|
1213
|
+
n0,
|
|
1214
|
+
_LAA,
|
|
1215
|
+
{
|
|
1216
|
+
[_h]: ["GET", "/appbundles/{appBundleIdentifier}/appauthorizations", 200],
|
|
1217
|
+
},
|
|
1218
|
+
() => ListAppAuthorizationsRequest,
|
|
1219
|
+
() => ListAppAuthorizationsResponse,
|
|
1220
|
+
];
|
|
1221
|
+
var ListAppBundles = [
|
|
1222
|
+
9,
|
|
1223
|
+
n0,
|
|
1224
|
+
_LAB,
|
|
1225
|
+
{
|
|
1226
|
+
[_h]: ["GET", "/appbundles", 200],
|
|
1227
|
+
},
|
|
1228
|
+
() => ListAppBundlesRequest,
|
|
1229
|
+
() => ListAppBundlesResponse,
|
|
1230
|
+
];
|
|
1231
|
+
var ListIngestionDestinations = [
|
|
1232
|
+
9,
|
|
1233
|
+
n0,
|
|
1234
|
+
_LID,
|
|
1235
|
+
{
|
|
1236
|
+
[_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations", 200],
|
|
1237
|
+
},
|
|
1238
|
+
() => ListIngestionDestinationsRequest,
|
|
1239
|
+
() => ListIngestionDestinationsResponse,
|
|
1240
|
+
];
|
|
1241
|
+
var ListIngestions = [
|
|
1242
|
+
9,
|
|
1243
|
+
n0,
|
|
1244
|
+
_LI,
|
|
1245
|
+
{
|
|
1246
|
+
[_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions", 200],
|
|
1247
|
+
},
|
|
1248
|
+
() => ListIngestionsRequest,
|
|
1249
|
+
() => ListIngestionsResponse,
|
|
1250
|
+
];
|
|
1251
|
+
var ListTagsForResource = [
|
|
1252
|
+
9,
|
|
1253
|
+
n0,
|
|
1254
|
+
_LTFR,
|
|
1255
|
+
{
|
|
1256
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1257
|
+
},
|
|
1258
|
+
() => ListTagsForResourceRequest,
|
|
1259
|
+
() => ListTagsForResourceResponse,
|
|
1260
|
+
];
|
|
1261
|
+
var StartIngestion = [
|
|
1262
|
+
9,
|
|
1263
|
+
n0,
|
|
1264
|
+
_SI,
|
|
1265
|
+
{
|
|
1266
|
+
[_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/start", 200],
|
|
1267
|
+
},
|
|
1268
|
+
() => StartIngestionRequest,
|
|
1269
|
+
() => StartIngestionResponse,
|
|
1270
|
+
];
|
|
1271
|
+
var StartUserAccessTasks = [
|
|
1272
|
+
9,
|
|
1273
|
+
n0,
|
|
1274
|
+
_SUAT,
|
|
1275
|
+
{
|
|
1276
|
+
[_h]: ["POST", "/useraccess/start", 201],
|
|
1277
|
+
},
|
|
1278
|
+
() => StartUserAccessTasksRequest,
|
|
1279
|
+
() => StartUserAccessTasksResponse,
|
|
1280
|
+
];
|
|
1281
|
+
var StopIngestion = [
|
|
1282
|
+
9,
|
|
1283
|
+
n0,
|
|
1284
|
+
_SIt,
|
|
1285
|
+
{
|
|
1286
|
+
[_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/stop", 200],
|
|
1287
|
+
},
|
|
1288
|
+
() => StopIngestionRequest,
|
|
1289
|
+
() => StopIngestionResponse,
|
|
1290
|
+
];
|
|
1291
|
+
var TagResource = [
|
|
1292
|
+
9,
|
|
1293
|
+
n0,
|
|
1294
|
+
_TR,
|
|
1295
|
+
{
|
|
1296
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1297
|
+
},
|
|
1298
|
+
() => TagResourceRequest,
|
|
1299
|
+
() => TagResourceResponse,
|
|
1300
|
+
];
|
|
1301
|
+
var UntagResource = [
|
|
1302
|
+
9,
|
|
1303
|
+
n0,
|
|
1304
|
+
_UR,
|
|
1305
|
+
{
|
|
1306
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1307
|
+
},
|
|
1308
|
+
() => UntagResourceRequest,
|
|
1309
|
+
() => UntagResourceResponse,
|
|
1310
|
+
];
|
|
1311
|
+
var UpdateAppAuthorization = [
|
|
1312
|
+
9,
|
|
1313
|
+
n0,
|
|
1314
|
+
_UAA,
|
|
1315
|
+
{
|
|
1316
|
+
[_h]: ["PATCH", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 200],
|
|
1317
|
+
},
|
|
1318
|
+
() => UpdateAppAuthorizationRequest,
|
|
1319
|
+
() => UpdateAppAuthorizationResponse,
|
|
1320
|
+
];
|
|
1321
|
+
var UpdateIngestionDestination = [
|
|
1322
|
+
9,
|
|
1323
|
+
n0,
|
|
1324
|
+
_UID,
|
|
1325
|
+
{
|
|
1326
|
+
[_h]: [
|
|
1327
|
+
"PATCH",
|
|
1328
|
+
"/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}",
|
|
1329
|
+
200,
|
|
1330
|
+
],
|
|
1331
|
+
},
|
|
1332
|
+
() => UpdateIngestionDestinationRequest,
|
|
1333
|
+
() => UpdateIngestionDestinationResponse,
|
|
1334
|
+
];
|
|
1249
1335
|
|
|
1250
1336
|
class BatchGetUserAccessTasksCommand extends smithyClient.Command
|
|
1251
1337
|
.classBuilder()
|
|
1252
1338
|
.ep(commonParams)
|
|
1253
1339
|
.m(function (Command, cs, config, o) {
|
|
1254
|
-
return [
|
|
1255
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1256
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1257
|
-
];
|
|
1340
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1258
1341
|
})
|
|
1259
1342
|
.s("FabricFrontEndService", "BatchGetUserAccessTasks", {})
|
|
1260
1343
|
.n("AppFabricClient", "BatchGetUserAccessTasksCommand")
|
|
1261
|
-
.
|
|
1262
|
-
.ser(se_BatchGetUserAccessTasksCommand)
|
|
1263
|
-
.de(de_BatchGetUserAccessTasksCommand)
|
|
1344
|
+
.sc(BatchGetUserAccessTasks)
|
|
1264
1345
|
.build() {
|
|
1265
1346
|
}
|
|
1266
1347
|
|
|
@@ -1268,16 +1349,11 @@ class ConnectAppAuthorizationCommand extends smithyClient.Command
|
|
|
1268
1349
|
.classBuilder()
|
|
1269
1350
|
.ep(commonParams)
|
|
1270
1351
|
.m(function (Command, cs, config, o) {
|
|
1271
|
-
return [
|
|
1272
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1273
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1274
|
-
];
|
|
1352
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1275
1353
|
})
|
|
1276
1354
|
.s("FabricFrontEndService", "ConnectAppAuthorization", {})
|
|
1277
1355
|
.n("AppFabricClient", "ConnectAppAuthorizationCommand")
|
|
1278
|
-
.
|
|
1279
|
-
.ser(se_ConnectAppAuthorizationCommand)
|
|
1280
|
-
.de(de_ConnectAppAuthorizationCommand)
|
|
1356
|
+
.sc(ConnectAppAuthorization)
|
|
1281
1357
|
.build() {
|
|
1282
1358
|
}
|
|
1283
1359
|
|
|
@@ -1285,16 +1361,11 @@ class CreateAppAuthorizationCommand extends smithyClient.Command
|
|
|
1285
1361
|
.classBuilder()
|
|
1286
1362
|
.ep(commonParams)
|
|
1287
1363
|
.m(function (Command, cs, config, o) {
|
|
1288
|
-
return [
|
|
1289
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1290
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1291
|
-
];
|
|
1364
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1292
1365
|
})
|
|
1293
1366
|
.s("FabricFrontEndService", "CreateAppAuthorization", {})
|
|
1294
1367
|
.n("AppFabricClient", "CreateAppAuthorizationCommand")
|
|
1295
|
-
.
|
|
1296
|
-
.ser(se_CreateAppAuthorizationCommand)
|
|
1297
|
-
.de(de_CreateAppAuthorizationCommand)
|
|
1368
|
+
.sc(CreateAppAuthorization)
|
|
1298
1369
|
.build() {
|
|
1299
1370
|
}
|
|
1300
1371
|
|
|
@@ -1302,16 +1373,11 @@ class CreateAppBundleCommand extends smithyClient.Command
|
|
|
1302
1373
|
.classBuilder()
|
|
1303
1374
|
.ep(commonParams)
|
|
1304
1375
|
.m(function (Command, cs, config, o) {
|
|
1305
|
-
return [
|
|
1306
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1307
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1308
|
-
];
|
|
1376
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1309
1377
|
})
|
|
1310
1378
|
.s("FabricFrontEndService", "CreateAppBundle", {})
|
|
1311
1379
|
.n("AppFabricClient", "CreateAppBundleCommand")
|
|
1312
|
-
.
|
|
1313
|
-
.ser(se_CreateAppBundleCommand)
|
|
1314
|
-
.de(de_CreateAppBundleCommand)
|
|
1380
|
+
.sc(CreateAppBundle)
|
|
1315
1381
|
.build() {
|
|
1316
1382
|
}
|
|
1317
1383
|
|
|
@@ -1319,16 +1385,11 @@ class CreateIngestionCommand extends smithyClient.Command
|
|
|
1319
1385
|
.classBuilder()
|
|
1320
1386
|
.ep(commonParams)
|
|
1321
1387
|
.m(function (Command, cs, config, o) {
|
|
1322
|
-
return [
|
|
1323
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1324
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1325
|
-
];
|
|
1388
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1326
1389
|
})
|
|
1327
1390
|
.s("FabricFrontEndService", "CreateIngestion", {})
|
|
1328
1391
|
.n("AppFabricClient", "CreateIngestionCommand")
|
|
1329
|
-
.
|
|
1330
|
-
.ser(se_CreateIngestionCommand)
|
|
1331
|
-
.de(de_CreateIngestionCommand)
|
|
1392
|
+
.sc(CreateIngestion)
|
|
1332
1393
|
.build() {
|
|
1333
1394
|
}
|
|
1334
1395
|
|
|
@@ -1336,16 +1397,11 @@ class CreateIngestionDestinationCommand extends smithyClient.Command
|
|
|
1336
1397
|
.classBuilder()
|
|
1337
1398
|
.ep(commonParams)
|
|
1338
1399
|
.m(function (Command, cs, config, o) {
|
|
1339
|
-
return [
|
|
1340
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1341
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1342
|
-
];
|
|
1400
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1343
1401
|
})
|
|
1344
1402
|
.s("FabricFrontEndService", "CreateIngestionDestination", {})
|
|
1345
1403
|
.n("AppFabricClient", "CreateIngestionDestinationCommand")
|
|
1346
|
-
.
|
|
1347
|
-
.ser(se_CreateIngestionDestinationCommand)
|
|
1348
|
-
.de(de_CreateIngestionDestinationCommand)
|
|
1404
|
+
.sc(CreateIngestionDestination)
|
|
1349
1405
|
.build() {
|
|
1350
1406
|
}
|
|
1351
1407
|
|
|
@@ -1353,16 +1409,11 @@ class DeleteAppAuthorizationCommand extends smithyClient.Command
|
|
|
1353
1409
|
.classBuilder()
|
|
1354
1410
|
.ep(commonParams)
|
|
1355
1411
|
.m(function (Command, cs, config, o) {
|
|
1356
|
-
return [
|
|
1357
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1358
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1359
|
-
];
|
|
1412
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1360
1413
|
})
|
|
1361
1414
|
.s("FabricFrontEndService", "DeleteAppAuthorization", {})
|
|
1362
1415
|
.n("AppFabricClient", "DeleteAppAuthorizationCommand")
|
|
1363
|
-
.
|
|
1364
|
-
.ser(se_DeleteAppAuthorizationCommand)
|
|
1365
|
-
.de(de_DeleteAppAuthorizationCommand)
|
|
1416
|
+
.sc(DeleteAppAuthorization)
|
|
1366
1417
|
.build() {
|
|
1367
1418
|
}
|
|
1368
1419
|
|
|
@@ -1370,16 +1421,11 @@ class DeleteAppBundleCommand extends smithyClient.Command
|
|
|
1370
1421
|
.classBuilder()
|
|
1371
1422
|
.ep(commonParams)
|
|
1372
1423
|
.m(function (Command, cs, config, o) {
|
|
1373
|
-
return [
|
|
1374
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1375
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1376
|
-
];
|
|
1424
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1377
1425
|
})
|
|
1378
1426
|
.s("FabricFrontEndService", "DeleteAppBundle", {})
|
|
1379
1427
|
.n("AppFabricClient", "DeleteAppBundleCommand")
|
|
1380
|
-
.
|
|
1381
|
-
.ser(se_DeleteAppBundleCommand)
|
|
1382
|
-
.de(de_DeleteAppBundleCommand)
|
|
1428
|
+
.sc(DeleteAppBundle)
|
|
1383
1429
|
.build() {
|
|
1384
1430
|
}
|
|
1385
1431
|
|
|
@@ -1387,16 +1433,11 @@ class DeleteIngestionCommand extends smithyClient.Command
|
|
|
1387
1433
|
.classBuilder()
|
|
1388
1434
|
.ep(commonParams)
|
|
1389
1435
|
.m(function (Command, cs, config, o) {
|
|
1390
|
-
return [
|
|
1391
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1392
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1393
|
-
];
|
|
1436
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1394
1437
|
})
|
|
1395
1438
|
.s("FabricFrontEndService", "DeleteIngestion", {})
|
|
1396
1439
|
.n("AppFabricClient", "DeleteIngestionCommand")
|
|
1397
|
-
.
|
|
1398
|
-
.ser(se_DeleteIngestionCommand)
|
|
1399
|
-
.de(de_DeleteIngestionCommand)
|
|
1440
|
+
.sc(DeleteIngestion)
|
|
1400
1441
|
.build() {
|
|
1401
1442
|
}
|
|
1402
1443
|
|
|
@@ -1404,16 +1445,11 @@ class DeleteIngestionDestinationCommand extends smithyClient.Command
|
|
|
1404
1445
|
.classBuilder()
|
|
1405
1446
|
.ep(commonParams)
|
|
1406
1447
|
.m(function (Command, cs, config, o) {
|
|
1407
|
-
return [
|
|
1408
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1409
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1410
|
-
];
|
|
1448
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1411
1449
|
})
|
|
1412
1450
|
.s("FabricFrontEndService", "DeleteIngestionDestination", {})
|
|
1413
1451
|
.n("AppFabricClient", "DeleteIngestionDestinationCommand")
|
|
1414
|
-
.
|
|
1415
|
-
.ser(se_DeleteIngestionDestinationCommand)
|
|
1416
|
-
.de(de_DeleteIngestionDestinationCommand)
|
|
1452
|
+
.sc(DeleteIngestionDestination)
|
|
1417
1453
|
.build() {
|
|
1418
1454
|
}
|
|
1419
1455
|
|
|
@@ -1421,16 +1457,11 @@ class GetAppAuthorizationCommand extends smithyClient.Command
|
|
|
1421
1457
|
.classBuilder()
|
|
1422
1458
|
.ep(commonParams)
|
|
1423
1459
|
.m(function (Command, cs, config, o) {
|
|
1424
|
-
return [
|
|
1425
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1426
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1427
|
-
];
|
|
1460
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1428
1461
|
})
|
|
1429
1462
|
.s("FabricFrontEndService", "GetAppAuthorization", {})
|
|
1430
1463
|
.n("AppFabricClient", "GetAppAuthorizationCommand")
|
|
1431
|
-
.
|
|
1432
|
-
.ser(se_GetAppAuthorizationCommand)
|
|
1433
|
-
.de(de_GetAppAuthorizationCommand)
|
|
1464
|
+
.sc(GetAppAuthorization)
|
|
1434
1465
|
.build() {
|
|
1435
1466
|
}
|
|
1436
1467
|
|
|
@@ -1438,16 +1469,11 @@ class GetAppBundleCommand extends smithyClient.Command
|
|
|
1438
1469
|
.classBuilder()
|
|
1439
1470
|
.ep(commonParams)
|
|
1440
1471
|
.m(function (Command, cs, config, o) {
|
|
1441
|
-
return [
|
|
1442
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1443
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1444
|
-
];
|
|
1472
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1445
1473
|
})
|
|
1446
1474
|
.s("FabricFrontEndService", "GetAppBundle", {})
|
|
1447
1475
|
.n("AppFabricClient", "GetAppBundleCommand")
|
|
1448
|
-
.
|
|
1449
|
-
.ser(se_GetAppBundleCommand)
|
|
1450
|
-
.de(de_GetAppBundleCommand)
|
|
1476
|
+
.sc(GetAppBundle)
|
|
1451
1477
|
.build() {
|
|
1452
1478
|
}
|
|
1453
1479
|
|
|
@@ -1455,16 +1481,11 @@ class GetIngestionCommand extends smithyClient.Command
|
|
|
1455
1481
|
.classBuilder()
|
|
1456
1482
|
.ep(commonParams)
|
|
1457
1483
|
.m(function (Command, cs, config, o) {
|
|
1458
|
-
return [
|
|
1459
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1460
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1461
|
-
];
|
|
1484
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1462
1485
|
})
|
|
1463
1486
|
.s("FabricFrontEndService", "GetIngestion", {})
|
|
1464
1487
|
.n("AppFabricClient", "GetIngestionCommand")
|
|
1465
|
-
.
|
|
1466
|
-
.ser(se_GetIngestionCommand)
|
|
1467
|
-
.de(de_GetIngestionCommand)
|
|
1488
|
+
.sc(GetIngestion)
|
|
1468
1489
|
.build() {
|
|
1469
1490
|
}
|
|
1470
1491
|
|
|
@@ -1472,16 +1493,11 @@ class GetIngestionDestinationCommand extends smithyClient.Command
|
|
|
1472
1493
|
.classBuilder()
|
|
1473
1494
|
.ep(commonParams)
|
|
1474
1495
|
.m(function (Command, cs, config, o) {
|
|
1475
|
-
return [
|
|
1476
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1477
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1478
|
-
];
|
|
1496
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1479
1497
|
})
|
|
1480
1498
|
.s("FabricFrontEndService", "GetIngestionDestination", {})
|
|
1481
1499
|
.n("AppFabricClient", "GetIngestionDestinationCommand")
|
|
1482
|
-
.
|
|
1483
|
-
.ser(se_GetIngestionDestinationCommand)
|
|
1484
|
-
.de(de_GetIngestionDestinationCommand)
|
|
1500
|
+
.sc(GetIngestionDestination)
|
|
1485
1501
|
.build() {
|
|
1486
1502
|
}
|
|
1487
1503
|
|
|
@@ -1489,16 +1505,11 @@ class ListAppAuthorizationsCommand extends smithyClient.Command
|
|
|
1489
1505
|
.classBuilder()
|
|
1490
1506
|
.ep(commonParams)
|
|
1491
1507
|
.m(function (Command, cs, config, o) {
|
|
1492
|
-
return [
|
|
1493
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1494
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1495
|
-
];
|
|
1508
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1496
1509
|
})
|
|
1497
1510
|
.s("FabricFrontEndService", "ListAppAuthorizations", {})
|
|
1498
1511
|
.n("AppFabricClient", "ListAppAuthorizationsCommand")
|
|
1499
|
-
.
|
|
1500
|
-
.ser(se_ListAppAuthorizationsCommand)
|
|
1501
|
-
.de(de_ListAppAuthorizationsCommand)
|
|
1512
|
+
.sc(ListAppAuthorizations)
|
|
1502
1513
|
.build() {
|
|
1503
1514
|
}
|
|
1504
1515
|
|
|
@@ -1506,16 +1517,11 @@ class ListAppBundlesCommand extends smithyClient.Command
|
|
|
1506
1517
|
.classBuilder()
|
|
1507
1518
|
.ep(commonParams)
|
|
1508
1519
|
.m(function (Command, cs, config, o) {
|
|
1509
|
-
return [
|
|
1510
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1511
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1512
|
-
];
|
|
1520
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1513
1521
|
})
|
|
1514
1522
|
.s("FabricFrontEndService", "ListAppBundles", {})
|
|
1515
1523
|
.n("AppFabricClient", "ListAppBundlesCommand")
|
|
1516
|
-
.
|
|
1517
|
-
.ser(se_ListAppBundlesCommand)
|
|
1518
|
-
.de(de_ListAppBundlesCommand)
|
|
1524
|
+
.sc(ListAppBundles)
|
|
1519
1525
|
.build() {
|
|
1520
1526
|
}
|
|
1521
1527
|
|
|
@@ -1523,16 +1529,11 @@ class ListIngestionDestinationsCommand extends smithyClient.Command
|
|
|
1523
1529
|
.classBuilder()
|
|
1524
1530
|
.ep(commonParams)
|
|
1525
1531
|
.m(function (Command, cs, config, o) {
|
|
1526
|
-
return [
|
|
1527
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1528
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1529
|
-
];
|
|
1532
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1530
1533
|
})
|
|
1531
1534
|
.s("FabricFrontEndService", "ListIngestionDestinations", {})
|
|
1532
1535
|
.n("AppFabricClient", "ListIngestionDestinationsCommand")
|
|
1533
|
-
.
|
|
1534
|
-
.ser(se_ListIngestionDestinationsCommand)
|
|
1535
|
-
.de(de_ListIngestionDestinationsCommand)
|
|
1536
|
+
.sc(ListIngestionDestinations)
|
|
1536
1537
|
.build() {
|
|
1537
1538
|
}
|
|
1538
1539
|
|
|
@@ -1540,16 +1541,11 @@ class ListIngestionsCommand extends smithyClient.Command
|
|
|
1540
1541
|
.classBuilder()
|
|
1541
1542
|
.ep(commonParams)
|
|
1542
1543
|
.m(function (Command, cs, config, o) {
|
|
1543
|
-
return [
|
|
1544
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1545
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1546
|
-
];
|
|
1544
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1547
1545
|
})
|
|
1548
1546
|
.s("FabricFrontEndService", "ListIngestions", {})
|
|
1549
1547
|
.n("AppFabricClient", "ListIngestionsCommand")
|
|
1550
|
-
.
|
|
1551
|
-
.ser(se_ListIngestionsCommand)
|
|
1552
|
-
.de(de_ListIngestionsCommand)
|
|
1548
|
+
.sc(ListIngestions)
|
|
1553
1549
|
.build() {
|
|
1554
1550
|
}
|
|
1555
1551
|
|
|
@@ -1557,16 +1553,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1557
1553
|
.classBuilder()
|
|
1558
1554
|
.ep(commonParams)
|
|
1559
1555
|
.m(function (Command, cs, config, o) {
|
|
1560
|
-
return [
|
|
1561
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1562
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1563
|
-
];
|
|
1556
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1564
1557
|
})
|
|
1565
1558
|
.s("FabricFrontEndService", "ListTagsForResource", {})
|
|
1566
1559
|
.n("AppFabricClient", "ListTagsForResourceCommand")
|
|
1567
|
-
.
|
|
1568
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1569
|
-
.de(de_ListTagsForResourceCommand)
|
|
1560
|
+
.sc(ListTagsForResource)
|
|
1570
1561
|
.build() {
|
|
1571
1562
|
}
|
|
1572
1563
|
|
|
@@ -1574,16 +1565,11 @@ class StartIngestionCommand extends smithyClient.Command
|
|
|
1574
1565
|
.classBuilder()
|
|
1575
1566
|
.ep(commonParams)
|
|
1576
1567
|
.m(function (Command, cs, config, o) {
|
|
1577
|
-
return [
|
|
1578
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1579
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1580
|
-
];
|
|
1568
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1581
1569
|
})
|
|
1582
1570
|
.s("FabricFrontEndService", "StartIngestion", {})
|
|
1583
1571
|
.n("AppFabricClient", "StartIngestionCommand")
|
|
1584
|
-
.
|
|
1585
|
-
.ser(se_StartIngestionCommand)
|
|
1586
|
-
.de(de_StartIngestionCommand)
|
|
1572
|
+
.sc(StartIngestion)
|
|
1587
1573
|
.build() {
|
|
1588
1574
|
}
|
|
1589
1575
|
|
|
@@ -1591,16 +1577,11 @@ class StartUserAccessTasksCommand extends smithyClient.Command
|
|
|
1591
1577
|
.classBuilder()
|
|
1592
1578
|
.ep(commonParams)
|
|
1593
1579
|
.m(function (Command, cs, config, o) {
|
|
1594
|
-
return [
|
|
1595
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1596
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1597
|
-
];
|
|
1580
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1598
1581
|
})
|
|
1599
1582
|
.s("FabricFrontEndService", "StartUserAccessTasks", {})
|
|
1600
1583
|
.n("AppFabricClient", "StartUserAccessTasksCommand")
|
|
1601
|
-
.
|
|
1602
|
-
.ser(se_StartUserAccessTasksCommand)
|
|
1603
|
-
.de(de_StartUserAccessTasksCommand)
|
|
1584
|
+
.sc(StartUserAccessTasks)
|
|
1604
1585
|
.build() {
|
|
1605
1586
|
}
|
|
1606
1587
|
|
|
@@ -1608,16 +1589,11 @@ class StopIngestionCommand extends smithyClient.Command
|
|
|
1608
1589
|
.classBuilder()
|
|
1609
1590
|
.ep(commonParams)
|
|
1610
1591
|
.m(function (Command, cs, config, o) {
|
|
1611
|
-
return [
|
|
1612
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1613
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1614
|
-
];
|
|
1592
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1615
1593
|
})
|
|
1616
1594
|
.s("FabricFrontEndService", "StopIngestion", {})
|
|
1617
1595
|
.n("AppFabricClient", "StopIngestionCommand")
|
|
1618
|
-
.
|
|
1619
|
-
.ser(se_StopIngestionCommand)
|
|
1620
|
-
.de(de_StopIngestionCommand)
|
|
1596
|
+
.sc(StopIngestion)
|
|
1621
1597
|
.build() {
|
|
1622
1598
|
}
|
|
1623
1599
|
|
|
@@ -1625,16 +1601,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1625
1601
|
.classBuilder()
|
|
1626
1602
|
.ep(commonParams)
|
|
1627
1603
|
.m(function (Command, cs, config, o) {
|
|
1628
|
-
return [
|
|
1629
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1630
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1631
|
-
];
|
|
1604
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1632
1605
|
})
|
|
1633
1606
|
.s("FabricFrontEndService", "TagResource", {})
|
|
1634
1607
|
.n("AppFabricClient", "TagResourceCommand")
|
|
1635
|
-
.
|
|
1636
|
-
.ser(se_TagResourceCommand)
|
|
1637
|
-
.de(de_TagResourceCommand)
|
|
1608
|
+
.sc(TagResource)
|
|
1638
1609
|
.build() {
|
|
1639
1610
|
}
|
|
1640
1611
|
|
|
@@ -1642,16 +1613,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1642
1613
|
.classBuilder()
|
|
1643
1614
|
.ep(commonParams)
|
|
1644
1615
|
.m(function (Command, cs, config, o) {
|
|
1645
|
-
return [
|
|
1646
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1647
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1648
|
-
];
|
|
1616
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1649
1617
|
})
|
|
1650
1618
|
.s("FabricFrontEndService", "UntagResource", {})
|
|
1651
1619
|
.n("AppFabricClient", "UntagResourceCommand")
|
|
1652
|
-
.
|
|
1653
|
-
.ser(se_UntagResourceCommand)
|
|
1654
|
-
.de(de_UntagResourceCommand)
|
|
1620
|
+
.sc(UntagResource)
|
|
1655
1621
|
.build() {
|
|
1656
1622
|
}
|
|
1657
1623
|
|
|
@@ -1659,16 +1625,11 @@ class UpdateAppAuthorizationCommand extends smithyClient.Command
|
|
|
1659
1625
|
.classBuilder()
|
|
1660
1626
|
.ep(commonParams)
|
|
1661
1627
|
.m(function (Command, cs, config, o) {
|
|
1662
|
-
return [
|
|
1663
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1664
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1665
|
-
];
|
|
1628
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1666
1629
|
})
|
|
1667
1630
|
.s("FabricFrontEndService", "UpdateAppAuthorization", {})
|
|
1668
1631
|
.n("AppFabricClient", "UpdateAppAuthorizationCommand")
|
|
1669
|
-
.
|
|
1670
|
-
.ser(se_UpdateAppAuthorizationCommand)
|
|
1671
|
-
.de(de_UpdateAppAuthorizationCommand)
|
|
1632
|
+
.sc(UpdateAppAuthorization)
|
|
1672
1633
|
.build() {
|
|
1673
1634
|
}
|
|
1674
1635
|
|
|
@@ -1676,16 +1637,11 @@ class UpdateIngestionDestinationCommand extends smithyClient.Command
|
|
|
1676
1637
|
.classBuilder()
|
|
1677
1638
|
.ep(commonParams)
|
|
1678
1639
|
.m(function (Command, cs, config, o) {
|
|
1679
|
-
return [
|
|
1680
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1681
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1682
|
-
];
|
|
1640
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1683
1641
|
})
|
|
1684
1642
|
.s("FabricFrontEndService", "UpdateIngestionDestination", {})
|
|
1685
1643
|
.n("AppFabricClient", "UpdateIngestionDestinationCommand")
|
|
1686
|
-
.
|
|
1687
|
-
.ser(se_UpdateIngestionDestinationCommand)
|
|
1688
|
-
.de(de_UpdateIngestionDestinationCommand)
|
|
1644
|
+
.sc(UpdateIngestionDestination)
|
|
1689
1645
|
.build() {
|
|
1690
1646
|
}
|
|
1691
1647
|
|
|
@@ -1737,25 +1693,19 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1737
1693
|
enumerable: true,
|
|
1738
1694
|
get: function () { return smithyClient.Client; }
|
|
1739
1695
|
});
|
|
1740
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1741
|
-
exports.ApiKeyCredentialFilterSensitiveLog = ApiKeyCredentialFilterSensitiveLog;
|
|
1696
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1742
1697
|
exports.AppAuthorizationStatus = AppAuthorizationStatus;
|
|
1743
1698
|
exports.AppFabric = AppFabric;
|
|
1744
1699
|
exports.AppFabricClient = AppFabricClient;
|
|
1745
|
-
exports.AppFabricServiceException = AppFabricServiceException;
|
|
1746
|
-
exports.AuthRequestFilterSensitiveLog = AuthRequestFilterSensitiveLog;
|
|
1700
|
+
exports.AppFabricServiceException = AppFabricServiceException$1;
|
|
1747
1701
|
exports.AuthType = AuthType;
|
|
1748
1702
|
exports.BatchGetUserAccessTasksCommand = BatchGetUserAccessTasksCommand;
|
|
1749
|
-
exports.
|
|
1750
|
-
exports.ConflictException = ConflictException;
|
|
1703
|
+
exports.ConflictException = ConflictException$1;
|
|
1751
1704
|
exports.ConnectAppAuthorizationCommand = ConnectAppAuthorizationCommand;
|
|
1752
|
-
exports.ConnectAppAuthorizationRequestFilterSensitiveLog = ConnectAppAuthorizationRequestFilterSensitiveLog;
|
|
1753
1705
|
exports.CreateAppAuthorizationCommand = CreateAppAuthorizationCommand;
|
|
1754
|
-
exports.CreateAppAuthorizationRequestFilterSensitiveLog = CreateAppAuthorizationRequestFilterSensitiveLog;
|
|
1755
1706
|
exports.CreateAppBundleCommand = CreateAppBundleCommand;
|
|
1756
1707
|
exports.CreateIngestionCommand = CreateIngestionCommand;
|
|
1757
1708
|
exports.CreateIngestionDestinationCommand = CreateIngestionDestinationCommand;
|
|
1758
|
-
exports.CredentialFilterSensitiveLog = CredentialFilterSensitiveLog;
|
|
1759
1709
|
exports.DeleteAppAuthorizationCommand = DeleteAppAuthorizationCommand;
|
|
1760
1710
|
exports.DeleteAppBundleCommand = DeleteAppBundleCommand;
|
|
1761
1711
|
exports.DeleteIngestionCommand = DeleteIngestionCommand;
|
|
@@ -1768,30 +1718,26 @@ exports.GetIngestionDestinationCommand = GetIngestionDestinationCommand;
|
|
|
1768
1718
|
exports.IngestionDestinationStatus = IngestionDestinationStatus;
|
|
1769
1719
|
exports.IngestionState = IngestionState;
|
|
1770
1720
|
exports.IngestionType = IngestionType;
|
|
1771
|
-
exports.InternalServerException = InternalServerException;
|
|
1721
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1772
1722
|
exports.ListAppAuthorizationsCommand = ListAppAuthorizationsCommand;
|
|
1773
1723
|
exports.ListAppBundlesCommand = ListAppBundlesCommand;
|
|
1774
1724
|
exports.ListIngestionDestinationsCommand = ListIngestionDestinationsCommand;
|
|
1775
1725
|
exports.ListIngestionsCommand = ListIngestionsCommand;
|
|
1776
1726
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1777
|
-
exports.Oauth2CredentialFilterSensitiveLog = Oauth2CredentialFilterSensitiveLog;
|
|
1778
1727
|
exports.Persona = Persona;
|
|
1779
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1728
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1780
1729
|
exports.ResultStatus = ResultStatus;
|
|
1781
1730
|
exports.Schema = Schema;
|
|
1782
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1731
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1783
1732
|
exports.StartIngestionCommand = StartIngestionCommand;
|
|
1784
1733
|
exports.StartUserAccessTasksCommand = StartUserAccessTasksCommand;
|
|
1785
|
-
exports.StartUserAccessTasksRequestFilterSensitiveLog = StartUserAccessTasksRequestFilterSensitiveLog;
|
|
1786
1734
|
exports.StopIngestionCommand = StopIngestionCommand;
|
|
1787
1735
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1788
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1736
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1789
1737
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1790
1738
|
exports.UpdateAppAuthorizationCommand = UpdateAppAuthorizationCommand;
|
|
1791
|
-
exports.UpdateAppAuthorizationRequestFilterSensitiveLog = UpdateAppAuthorizationRequestFilterSensitiveLog;
|
|
1792
1739
|
exports.UpdateIngestionDestinationCommand = UpdateIngestionDestinationCommand;
|
|
1793
|
-
exports.
|
|
1794
|
-
exports.ValidationException = ValidationException;
|
|
1740
|
+
exports.ValidationException = ValidationException$1;
|
|
1795
1741
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1796
1742
|
exports.paginateListAppAuthorizations = paginateListAppAuthorizations;
|
|
1797
1743
|
exports.paginateListAppBundles = paginateListAppBundles;
|