@aws-sdk/client-securitylake 3.987.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +50 -1127
- package/dist-cjs/models/SecurityLakeServiceException.js +12 -0
- package/dist-cjs/models/errors.js +102 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +879 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +55 -49
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SecurityLakeServiceException = require('./models/SecurityLakeServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,967 +113,6 @@ class SecurityLakeClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SecurityLakeServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SecurityLakeServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends SecurityLakeServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
errorCode;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.errorCode = opts.errorCode;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class BadRequestException extends SecurityLakeServiceException {
|
|
135
|
-
name = "BadRequestException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "BadRequestException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class ConflictException extends SecurityLakeServiceException {
|
|
147
|
-
name = "ConflictException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
resourceName;
|
|
150
|
-
resourceType;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "ConflictException",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
158
|
-
this.resourceName = opts.resourceName;
|
|
159
|
-
this.resourceType = opts.resourceType;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class InternalServerException extends SecurityLakeServiceException {
|
|
163
|
-
name = "InternalServerException";
|
|
164
|
-
$fault = "server";
|
|
165
|
-
$retryable = {};
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "InternalServerException",
|
|
169
|
-
$fault: "server",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
class ResourceNotFoundException extends SecurityLakeServiceException {
|
|
176
|
-
name = "ResourceNotFoundException";
|
|
177
|
-
$fault = "client";
|
|
178
|
-
resourceName;
|
|
179
|
-
resourceType;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ResourceNotFoundException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
|
-
this.resourceName = opts.resourceName;
|
|
188
|
-
this.resourceType = opts.resourceType;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
class ThrottlingException extends SecurityLakeServiceException {
|
|
192
|
-
name = "ThrottlingException";
|
|
193
|
-
$fault = "client";
|
|
194
|
-
$retryable = {
|
|
195
|
-
throttling: true,
|
|
196
|
-
};
|
|
197
|
-
serviceCode;
|
|
198
|
-
quotaCode;
|
|
199
|
-
retryAfterSeconds;
|
|
200
|
-
constructor(opts) {
|
|
201
|
-
super({
|
|
202
|
-
name: "ThrottlingException",
|
|
203
|
-
$fault: "client",
|
|
204
|
-
...opts,
|
|
205
|
-
});
|
|
206
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
207
|
-
this.serviceCode = opts.serviceCode;
|
|
208
|
-
this.quotaCode = opts.quotaCode;
|
|
209
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
const _ADE = "AccessDeniedException";
|
|
214
|
-
const _AI = "AwsIdentity";
|
|
215
|
-
const _ALSC = "AwsLogSourceConfiguration";
|
|
216
|
-
const _ALSCL = "AwsLogSourceConfigurationList";
|
|
217
|
-
const _ALSR = "AwsLogSourceResource";
|
|
218
|
-
const _ALSRL = "AwsLogSourceResourceList";
|
|
219
|
-
const _BRE = "BadRequestException";
|
|
220
|
-
const _CALS = "CreateAwsLogSource";
|
|
221
|
-
const _CALSR = "CreateAwsLogSourceRequest";
|
|
222
|
-
const _CALSRr = "CreateAwsLogSourceResponse";
|
|
223
|
-
const _CCLS = "CreateCustomLogSource";
|
|
224
|
-
const _CCLSR = "CreateCustomLogSourceRequest";
|
|
225
|
-
const _CCLSRr = "CreateCustomLogSourceResponse";
|
|
226
|
-
const _CDL = "CreateDataLake";
|
|
227
|
-
const _CDLES = "CreateDataLakeExceptionSubscription";
|
|
228
|
-
const _CDLESR = "CreateDataLakeExceptionSubscriptionRequest";
|
|
229
|
-
const _CDLESRr = "CreateDataLakeExceptionSubscriptionResponse";
|
|
230
|
-
const _CDLOC = "CreateDataLakeOrganizationConfiguration";
|
|
231
|
-
const _CDLOCR = "CreateDataLakeOrganizationConfigurationRequest";
|
|
232
|
-
const _CDLOCRr = "CreateDataLakeOrganizationConfigurationResponse";
|
|
233
|
-
const _CDLR = "CreateDataLakeRequest";
|
|
234
|
-
const _CDLRr = "CreateDataLakeResponse";
|
|
235
|
-
const _CE = "ConflictException";
|
|
236
|
-
const _CLSA = "CustomLogSourceAttributes";
|
|
237
|
-
const _CLSC = "CustomLogSourceConfiguration";
|
|
238
|
-
const _CLSCC = "CustomLogSourceCrawlerConfiguration";
|
|
239
|
-
const _CLSP = "CustomLogSourceProvider";
|
|
240
|
-
const _CLSR = "CustomLogSourceResource";
|
|
241
|
-
const _CS = "CreateSubscriber";
|
|
242
|
-
const _CSN = "CreateSubscriberNotification";
|
|
243
|
-
const _CSNR = "CreateSubscriberNotificationRequest";
|
|
244
|
-
const _CSNRr = "CreateSubscriberNotificationResponse";
|
|
245
|
-
const _CSR = "CreateSubscriberRequest";
|
|
246
|
-
const _CSRr = "CreateSubscriberResponse";
|
|
247
|
-
const _DALS = "DeleteAwsLogSource";
|
|
248
|
-
const _DALSR = "DeleteAwsLogSourceRequest";
|
|
249
|
-
const _DALSRe = "DeleteAwsLogSourceResponse";
|
|
250
|
-
const _DCLS = "DeleteCustomLogSource";
|
|
251
|
-
const _DCLSR = "DeleteCustomLogSourceRequest";
|
|
252
|
-
const _DCLSRe = "DeleteCustomLogSourceResponse";
|
|
253
|
-
const _DDL = "DeleteDataLake";
|
|
254
|
-
const _DDLDA = "DeregisterDataLakeDelegatedAdministrator";
|
|
255
|
-
const _DDLDAR = "DeregisterDataLakeDelegatedAdministratorRequest";
|
|
256
|
-
const _DDLDARe = "DeregisterDataLakeDelegatedAdministratorResponse";
|
|
257
|
-
const _DDLES = "DeleteDataLakeExceptionSubscription";
|
|
258
|
-
const _DDLESR = "DeleteDataLakeExceptionSubscriptionRequest";
|
|
259
|
-
const _DDLESRe = "DeleteDataLakeExceptionSubscriptionResponse";
|
|
260
|
-
const _DDLOC = "DeleteDataLakeOrganizationConfiguration";
|
|
261
|
-
const _DDLOCR = "DeleteDataLakeOrganizationConfigurationRequest";
|
|
262
|
-
const _DDLOCRe = "DeleteDataLakeOrganizationConfigurationResponse";
|
|
263
|
-
const _DDLR = "DeleteDataLakeRequest";
|
|
264
|
-
const _DDLRe = "DeleteDataLakeResponse";
|
|
265
|
-
const _DLAENAC = "DataLakeAutoEnableNewAccountConfiguration";
|
|
266
|
-
const _DLAENACL = "DataLakeAutoEnableNewAccountConfigurationList";
|
|
267
|
-
const _DLC = "DataLakeConfiguration";
|
|
268
|
-
const _DLCL = "DataLakeConfigurationList";
|
|
269
|
-
const _DLE = "DataLakeException";
|
|
270
|
-
const _DLEC = "DataLakeEncryptionConfiguration";
|
|
271
|
-
const _DLEL = "DataLakeExceptionList";
|
|
272
|
-
const _DLLC = "DataLakeLifecycleConfiguration";
|
|
273
|
-
const _DLLE = "DataLakeLifecycleExpiration";
|
|
274
|
-
const _DLLT = "DataLakeLifecycleTransition";
|
|
275
|
-
const _DLLTL = "DataLakeLifecycleTransitionList";
|
|
276
|
-
const _DLR = "DataLakeResource";
|
|
277
|
-
const _DLRC = "DataLakeReplicationConfiguration";
|
|
278
|
-
const _DLRL = "DataLakeResourceList";
|
|
279
|
-
const _DLS = "DataLakeSource";
|
|
280
|
-
const _DLSL = "DataLakeSourceList";
|
|
281
|
-
const _DLSS = "DataLakeSourceStatus";
|
|
282
|
-
const _DLSSL = "DataLakeSourceStatusList";
|
|
283
|
-
const _DLUE = "DataLakeUpdateException";
|
|
284
|
-
const _DLUS = "DataLakeUpdateStatus";
|
|
285
|
-
const _DS = "DeleteSubscriber";
|
|
286
|
-
const _DSN = "DeleteSubscriberNotification";
|
|
287
|
-
const _DSNR = "DeleteSubscriberNotificationRequest";
|
|
288
|
-
const _DSNRe = "DeleteSubscriberNotificationResponse";
|
|
289
|
-
const _DSR = "DeleteSubscriberRequest";
|
|
290
|
-
const _DSRe = "DeleteSubscriberResponse";
|
|
291
|
-
const _GDLES = "GetDataLakeExceptionSubscription";
|
|
292
|
-
const _GDLESR = "GetDataLakeExceptionSubscriptionRequest";
|
|
293
|
-
const _GDLESRe = "GetDataLakeExceptionSubscriptionResponse";
|
|
294
|
-
const _GDLOC = "GetDataLakeOrganizationConfiguration";
|
|
295
|
-
const _GDLOCR = "GetDataLakeOrganizationConfigurationRequest";
|
|
296
|
-
const _GDLOCRe = "GetDataLakeOrganizationConfigurationResponse";
|
|
297
|
-
const _GDLS = "GetDataLakeSources";
|
|
298
|
-
const _GDLSR = "GetDataLakeSourcesRequest";
|
|
299
|
-
const _GDLSRe = "GetDataLakeSourcesResponse";
|
|
300
|
-
const _GS = "GetSubscriber";
|
|
301
|
-
const _GSR = "GetSubscriberRequest";
|
|
302
|
-
const _GSRe = "GetSubscriberResponse";
|
|
303
|
-
const _HNC = "HttpsNotificationConfiguration";
|
|
304
|
-
const _ISE = "InternalServerException";
|
|
305
|
-
const _LDL = "ListDataLakes";
|
|
306
|
-
const _LDLE = "ListDataLakeExceptions";
|
|
307
|
-
const _LDLER = "ListDataLakeExceptionsRequest";
|
|
308
|
-
const _LDLERi = "ListDataLakeExceptionsResponse";
|
|
309
|
-
const _LDLR = "ListDataLakesRequest";
|
|
310
|
-
const _LDLRi = "ListDataLakesResponse";
|
|
311
|
-
const _LLS = "ListLogSources";
|
|
312
|
-
const _LLSR = "ListLogSourcesRequest";
|
|
313
|
-
const _LLSRi = "ListLogSourcesResponse";
|
|
314
|
-
const _LS = "LogSource";
|
|
315
|
-
const _LSL = "LogSourceList";
|
|
316
|
-
const _LSR = "ListSubscribersRequest";
|
|
317
|
-
const _LSRL = "LogSourceResourceList";
|
|
318
|
-
const _LSRi = "ListSubscribersResponse";
|
|
319
|
-
const _LSRo = "LogSourceResource";
|
|
320
|
-
const _LSi = "ListSubscribers";
|
|
321
|
-
const _LTFR = "ListTagsForResource";
|
|
322
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
323
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
324
|
-
const _NC = "NotificationConfiguration";
|
|
325
|
-
const _RA = "Retry-After";
|
|
326
|
-
const _RDLDA = "RegisterDataLakeDelegatedAdministrator";
|
|
327
|
-
const _RDLDAR = "RegisterDataLakeDelegatedAdministratorRequest";
|
|
328
|
-
const _RDLDARe = "RegisterDataLakeDelegatedAdministratorResponse";
|
|
329
|
-
const _RNFE = "ResourceNotFoundException";
|
|
330
|
-
const _SNC = "SqsNotificationConfiguration";
|
|
331
|
-
const _SR = "SubscriberResource";
|
|
332
|
-
const _SRL = "SubscriberResourceList";
|
|
333
|
-
const _T = "Tag";
|
|
334
|
-
const _TE = "ThrottlingException";
|
|
335
|
-
const _TL = "TagList";
|
|
336
|
-
const _TR = "TagResource";
|
|
337
|
-
const _TRR = "TagResourceRequest";
|
|
338
|
-
const _TRRa = "TagResourceResponse";
|
|
339
|
-
const _UDL = "UpdateDataLake";
|
|
340
|
-
const _UDLES = "UpdateDataLakeExceptionSubscription";
|
|
341
|
-
const _UDLESR = "UpdateDataLakeExceptionSubscriptionRequest";
|
|
342
|
-
const _UDLESRp = "UpdateDataLakeExceptionSubscriptionResponse";
|
|
343
|
-
const _UDLR = "UpdateDataLakeRequest";
|
|
344
|
-
const _UDLRp = "UpdateDataLakeResponse";
|
|
345
|
-
const _UR = "UntagResource";
|
|
346
|
-
const _URR = "UntagResourceRequest";
|
|
347
|
-
const _URRn = "UntagResourceResponse";
|
|
348
|
-
const _US = "UpdateSubscriber";
|
|
349
|
-
const _USN = "UpdateSubscriberNotification";
|
|
350
|
-
const _USNR = "UpdateSubscriberNotificationRequest";
|
|
351
|
-
const _USNRp = "UpdateSubscriberNotificationResponse";
|
|
352
|
-
const _USR = "UpdateSubscriberRequest";
|
|
353
|
-
const _USRp = "UpdateSubscriberResponse";
|
|
354
|
-
const _a = "accounts";
|
|
355
|
-
const _aAKN = "authorizationApiKeyName";
|
|
356
|
-
const _aAKV = "authorizationApiKeyValue";
|
|
357
|
-
const _aENA = "autoEnableNewAccount";
|
|
358
|
-
const _aI = "accountId";
|
|
359
|
-
const _aLS = "awsLogSource";
|
|
360
|
-
const _aT = "accessTypes";
|
|
361
|
-
const _ac = "account";
|
|
362
|
-
const _at = "attributes";
|
|
363
|
-
const _c = "client";
|
|
364
|
-
const _cA = "crawlerArn";
|
|
365
|
-
const _cAr = "createdAt";
|
|
366
|
-
const _cC = "crawlerConfiguration";
|
|
367
|
-
const _cLS = "customLogSource";
|
|
368
|
-
const _cS = "createStatus";
|
|
369
|
-
const _co = "configuration";
|
|
370
|
-
const _cod = "code";
|
|
371
|
-
const _con = "configurations";
|
|
372
|
-
const _d = "days";
|
|
373
|
-
const _dA = "databaseArn";
|
|
374
|
-
const _dL = "dataLakes";
|
|
375
|
-
const _dLA = "dataLakeArn";
|
|
376
|
-
const _dLS = "dataLakeSources";
|
|
377
|
-
const _e = "error";
|
|
378
|
-
const _eC = "errorCode";
|
|
379
|
-
const _eCn = "encryptionConfiguration";
|
|
380
|
-
const _eCv = "eventClasses";
|
|
381
|
-
const _eI = "externalId";
|
|
382
|
-
const _eTTL = "exceptionTimeToLive";
|
|
383
|
-
const _en = "endpoint";
|
|
384
|
-
const _ex = "exception";
|
|
385
|
-
const _exc = "exceptions";
|
|
386
|
-
const _exp = "expiration";
|
|
387
|
-
const _f = "failed";
|
|
388
|
-
const _h = "http";
|
|
389
|
-
const _hE = "httpError";
|
|
390
|
-
const _hH = "httpHeader";
|
|
391
|
-
const _hM = "httpMethod";
|
|
392
|
-
const _hNC = "httpsNotificationConfiguration";
|
|
393
|
-
const _hQ = "httpQuery";
|
|
394
|
-
const _k = "key";
|
|
395
|
-
const _kKI = "kmsKeyId";
|
|
396
|
-
const _l = "location";
|
|
397
|
-
const _lC = "lifecycleConfiguration";
|
|
398
|
-
const _m = "message";
|
|
399
|
-
const _mR = "maxResults";
|
|
400
|
-
const _mSMRA = "metaStoreManagerRoleArn";
|
|
401
|
-
const _nE = "notificationEndpoint";
|
|
402
|
-
const _nT = "nextToken";
|
|
403
|
-
const _p = "principal";
|
|
404
|
-
const _pI = "providerIdentity";
|
|
405
|
-
const _pr = "provider";
|
|
406
|
-
const _qC = "quotaCode";
|
|
407
|
-
const _r = "regions";
|
|
408
|
-
const _rA = "roleArn";
|
|
409
|
-
const _rAS = "retryAfterSeconds";
|
|
410
|
-
const _rAe = "resourceArn";
|
|
411
|
-
const _rC = "replicationConfiguration";
|
|
412
|
-
const _rI = "requestId";
|
|
413
|
-
const _rN = "resourceName";
|
|
414
|
-
const _rSA = "resourceShareArn";
|
|
415
|
-
const _rSN = "resourceShareName";
|
|
416
|
-
const _rT = "resourceType";
|
|
417
|
-
const _re = "region";
|
|
418
|
-
const _rea = "reason";
|
|
419
|
-
const _rem = "remediation";
|
|
420
|
-
const _res = "resource";
|
|
421
|
-
const _s = "sources";
|
|
422
|
-
const _sA = "subscriberArn";
|
|
423
|
-
const _sBA = "s3BucketArn";
|
|
424
|
-
const _sC = "storageClass";
|
|
425
|
-
const _sCe = "serviceCode";
|
|
426
|
-
const _sD = "subscriberDescription";
|
|
427
|
-
const _sE = "subscriberEndpoint";
|
|
428
|
-
const _sI = "subscriberId";
|
|
429
|
-
const _sIu = "subscriberIdentity";
|
|
430
|
-
const _sN = "sourceName";
|
|
431
|
-
const _sNC = "sqsNotificationConfiguration";
|
|
432
|
-
const _sNu = "subscriberName";
|
|
433
|
-
const _sP = "subscriptionProtocol";
|
|
434
|
-
const _sS = "sourceStatuses";
|
|
435
|
-
const _sSu = "subscriberStatus";
|
|
436
|
-
const _sV = "sourceVersion";
|
|
437
|
-
const _se = "server";
|
|
438
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.securitylake";
|
|
439
|
-
const _so = "source";
|
|
440
|
-
const _st = "status";
|
|
441
|
-
const _su = "subscriber";
|
|
442
|
-
const _sub = "subscribers";
|
|
443
|
-
const _t = "tags";
|
|
444
|
-
const _tA = "tableArn";
|
|
445
|
-
const _tK = "tagKeys";
|
|
446
|
-
const _tRA = "targetRoleArn";
|
|
447
|
-
const _ti = "timestamp";
|
|
448
|
-
const _tr = "transitions";
|
|
449
|
-
const _uA = "updatedAt";
|
|
450
|
-
const _uS = "updateStatus";
|
|
451
|
-
const _v = "value";
|
|
452
|
-
const n0 = "com.amazonaws.securitylake";
|
|
453
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
454
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
455
|
-
[_m, _eC],
|
|
456
|
-
[0, 0]
|
|
457
|
-
];
|
|
458
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
459
|
-
var AwsIdentity$ = [3, n0, _AI,
|
|
460
|
-
0,
|
|
461
|
-
[_p, _eI],
|
|
462
|
-
[0, 0], 2
|
|
463
|
-
];
|
|
464
|
-
var AwsLogSourceConfiguration$ = [3, n0, _ALSC,
|
|
465
|
-
0,
|
|
466
|
-
[_r, _sN, _a, _sV],
|
|
467
|
-
[64 | 0, 0, 64 | 0, 0], 2
|
|
468
|
-
];
|
|
469
|
-
var AwsLogSourceResource$ = [3, n0, _ALSR,
|
|
470
|
-
0,
|
|
471
|
-
[_sN, _sV],
|
|
472
|
-
[0, 0]
|
|
473
|
-
];
|
|
474
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
475
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
476
|
-
[_m],
|
|
477
|
-
[0]
|
|
478
|
-
];
|
|
479
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
480
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
481
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
482
|
-
[_m, _rN, _rT],
|
|
483
|
-
[0, 0, 0]
|
|
484
|
-
];
|
|
485
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
486
|
-
var CreateAwsLogSourceRequest$ = [3, n0, _CALSR,
|
|
487
|
-
0,
|
|
488
|
-
[_s],
|
|
489
|
-
[() => AwsLogSourceConfigurationList], 1
|
|
490
|
-
];
|
|
491
|
-
var CreateAwsLogSourceResponse$ = [3, n0, _CALSRr,
|
|
492
|
-
0,
|
|
493
|
-
[_f],
|
|
494
|
-
[64 | 0]
|
|
495
|
-
];
|
|
496
|
-
var CreateCustomLogSourceRequest$ = [3, n0, _CCLSR,
|
|
497
|
-
0,
|
|
498
|
-
[_sN, _co, _sV, _eCv],
|
|
499
|
-
[0, () => CustomLogSourceConfiguration$, 0, 64 | 0], 2
|
|
500
|
-
];
|
|
501
|
-
var CreateCustomLogSourceResponse$ = [3, n0, _CCLSRr,
|
|
502
|
-
0,
|
|
503
|
-
[_so],
|
|
504
|
-
[() => CustomLogSourceResource$]
|
|
505
|
-
];
|
|
506
|
-
var CreateDataLakeExceptionSubscriptionRequest$ = [3, n0, _CDLESR,
|
|
507
|
-
0,
|
|
508
|
-
[_sP, _nE, _eTTL],
|
|
509
|
-
[0, 0, 1], 2
|
|
510
|
-
];
|
|
511
|
-
var CreateDataLakeExceptionSubscriptionResponse$ = [3, n0, _CDLESRr,
|
|
512
|
-
0,
|
|
513
|
-
[],
|
|
514
|
-
[]
|
|
515
|
-
];
|
|
516
|
-
var CreateDataLakeOrganizationConfigurationRequest$ = [3, n0, _CDLOCR,
|
|
517
|
-
0,
|
|
518
|
-
[_aENA],
|
|
519
|
-
[() => DataLakeAutoEnableNewAccountConfigurationList]
|
|
520
|
-
];
|
|
521
|
-
var CreateDataLakeOrganizationConfigurationResponse$ = [3, n0, _CDLOCRr,
|
|
522
|
-
0,
|
|
523
|
-
[],
|
|
524
|
-
[]
|
|
525
|
-
];
|
|
526
|
-
var CreateDataLakeRequest$ = [3, n0, _CDLR,
|
|
527
|
-
0,
|
|
528
|
-
[_con, _mSMRA, _t],
|
|
529
|
-
[() => DataLakeConfigurationList, 0, () => TagList], 2
|
|
530
|
-
];
|
|
531
|
-
var CreateDataLakeResponse$ = [3, n0, _CDLRr,
|
|
532
|
-
0,
|
|
533
|
-
[_dL],
|
|
534
|
-
[() => DataLakeResourceList]
|
|
535
|
-
];
|
|
536
|
-
var CreateSubscriberNotificationRequest$ = [3, n0, _CSNR,
|
|
537
|
-
0,
|
|
538
|
-
[_sI, _co],
|
|
539
|
-
[[0, 1], () => NotificationConfiguration$], 2
|
|
540
|
-
];
|
|
541
|
-
var CreateSubscriberNotificationResponse$ = [3, n0, _CSNRr,
|
|
542
|
-
0,
|
|
543
|
-
[_sE],
|
|
544
|
-
[0]
|
|
545
|
-
];
|
|
546
|
-
var CreateSubscriberRequest$ = [3, n0, _CSR,
|
|
547
|
-
0,
|
|
548
|
-
[_sIu, _sNu, _s, _sD, _aT, _t],
|
|
549
|
-
[() => AwsIdentity$, 0, () => LogSourceResourceList, 0, 64 | 0, () => TagList], 3
|
|
550
|
-
];
|
|
551
|
-
var CreateSubscriberResponse$ = [3, n0, _CSRr,
|
|
552
|
-
0,
|
|
553
|
-
[_su],
|
|
554
|
-
[() => SubscriberResource$]
|
|
555
|
-
];
|
|
556
|
-
var CustomLogSourceAttributes$ = [3, n0, _CLSA,
|
|
557
|
-
0,
|
|
558
|
-
[_cA, _dA, _tA],
|
|
559
|
-
[0, 0, 0]
|
|
560
|
-
];
|
|
561
|
-
var CustomLogSourceConfiguration$ = [3, n0, _CLSC,
|
|
562
|
-
0,
|
|
563
|
-
[_cC, _pI],
|
|
564
|
-
[() => CustomLogSourceCrawlerConfiguration$, () => AwsIdentity$], 2
|
|
565
|
-
];
|
|
566
|
-
var CustomLogSourceCrawlerConfiguration$ = [3, n0, _CLSCC,
|
|
567
|
-
0,
|
|
568
|
-
[_rA],
|
|
569
|
-
[0], 1
|
|
570
|
-
];
|
|
571
|
-
var CustomLogSourceProvider$ = [3, n0, _CLSP,
|
|
572
|
-
0,
|
|
573
|
-
[_rA, _l],
|
|
574
|
-
[0, 0]
|
|
575
|
-
];
|
|
576
|
-
var CustomLogSourceResource$ = [3, n0, _CLSR,
|
|
577
|
-
0,
|
|
578
|
-
[_sN, _sV, _pr, _at],
|
|
579
|
-
[0, 0, () => CustomLogSourceProvider$, () => CustomLogSourceAttributes$]
|
|
580
|
-
];
|
|
581
|
-
var DataLakeAutoEnableNewAccountConfiguration$ = [3, n0, _DLAENAC,
|
|
582
|
-
0,
|
|
583
|
-
[_re, _s],
|
|
584
|
-
[0, () => AwsLogSourceResourceList], 2
|
|
585
|
-
];
|
|
586
|
-
var DataLakeConfiguration$ = [3, n0, _DLC,
|
|
587
|
-
0,
|
|
588
|
-
[_re, _eCn, _lC, _rC],
|
|
589
|
-
[0, () => DataLakeEncryptionConfiguration$, () => DataLakeLifecycleConfiguration$, () => DataLakeReplicationConfiguration$], 1
|
|
590
|
-
];
|
|
591
|
-
var DataLakeEncryptionConfiguration$ = [3, n0, _DLEC,
|
|
592
|
-
0,
|
|
593
|
-
[_kKI],
|
|
594
|
-
[0]
|
|
595
|
-
];
|
|
596
|
-
var DataLakeException$ = [3, n0, _DLE,
|
|
597
|
-
0,
|
|
598
|
-
[_re, _ex, _rem, _ti],
|
|
599
|
-
[0, 0, 0, 5]
|
|
600
|
-
];
|
|
601
|
-
var DataLakeLifecycleConfiguration$ = [3, n0, _DLLC,
|
|
602
|
-
0,
|
|
603
|
-
[_exp, _tr],
|
|
604
|
-
[() => DataLakeLifecycleExpiration$, () => DataLakeLifecycleTransitionList]
|
|
605
|
-
];
|
|
606
|
-
var DataLakeLifecycleExpiration$ = [3, n0, _DLLE,
|
|
607
|
-
0,
|
|
608
|
-
[_d],
|
|
609
|
-
[1]
|
|
610
|
-
];
|
|
611
|
-
var DataLakeLifecycleTransition$ = [3, n0, _DLLT,
|
|
612
|
-
0,
|
|
613
|
-
[_sC, _d],
|
|
614
|
-
[0, 1]
|
|
615
|
-
];
|
|
616
|
-
var DataLakeReplicationConfiguration$ = [3, n0, _DLRC,
|
|
617
|
-
0,
|
|
618
|
-
[_r, _rA],
|
|
619
|
-
[64 | 0, 0]
|
|
620
|
-
];
|
|
621
|
-
var DataLakeResource$ = [3, n0, _DLR,
|
|
622
|
-
0,
|
|
623
|
-
[_dLA, _re, _sBA, _eCn, _lC, _rC, _cS, _uS],
|
|
624
|
-
[0, 0, 0, () => DataLakeEncryptionConfiguration$, () => DataLakeLifecycleConfiguration$, () => DataLakeReplicationConfiguration$, 0, () => DataLakeUpdateStatus$], 2
|
|
625
|
-
];
|
|
626
|
-
var DataLakeSource$ = [3, n0, _DLS,
|
|
627
|
-
0,
|
|
628
|
-
[_ac, _sN, _eCv, _sS],
|
|
629
|
-
[0, 0, 64 | 0, () => DataLakeSourceStatusList]
|
|
630
|
-
];
|
|
631
|
-
var DataLakeSourceStatus$ = [3, n0, _DLSS,
|
|
632
|
-
0,
|
|
633
|
-
[_res, _st],
|
|
634
|
-
[0, 0]
|
|
635
|
-
];
|
|
636
|
-
var DataLakeUpdateException$ = [3, n0, _DLUE,
|
|
637
|
-
0,
|
|
638
|
-
[_rea, _cod],
|
|
639
|
-
[0, 0]
|
|
640
|
-
];
|
|
641
|
-
var DataLakeUpdateStatus$ = [3, n0, _DLUS,
|
|
642
|
-
0,
|
|
643
|
-
[_rI, _st, _ex],
|
|
644
|
-
[0, 0, () => DataLakeUpdateException$]
|
|
645
|
-
];
|
|
646
|
-
var DeleteAwsLogSourceRequest$ = [3, n0, _DALSR,
|
|
647
|
-
0,
|
|
648
|
-
[_s],
|
|
649
|
-
[() => AwsLogSourceConfigurationList], 1
|
|
650
|
-
];
|
|
651
|
-
var DeleteAwsLogSourceResponse$ = [3, n0, _DALSRe,
|
|
652
|
-
0,
|
|
653
|
-
[_f],
|
|
654
|
-
[64 | 0]
|
|
655
|
-
];
|
|
656
|
-
var DeleteCustomLogSourceRequest$ = [3, n0, _DCLSR,
|
|
657
|
-
0,
|
|
658
|
-
[_sN, _sV],
|
|
659
|
-
[[0, 1], [0, { [_hQ]: _sV }]], 1
|
|
660
|
-
];
|
|
661
|
-
var DeleteCustomLogSourceResponse$ = [3, n0, _DCLSRe,
|
|
662
|
-
0,
|
|
663
|
-
[],
|
|
664
|
-
[]
|
|
665
|
-
];
|
|
666
|
-
var DeleteDataLakeExceptionSubscriptionRequest$ = [3, n0, _DDLESR,
|
|
667
|
-
0,
|
|
668
|
-
[],
|
|
669
|
-
[]
|
|
670
|
-
];
|
|
671
|
-
var DeleteDataLakeExceptionSubscriptionResponse$ = [3, n0, _DDLESRe,
|
|
672
|
-
0,
|
|
673
|
-
[],
|
|
674
|
-
[]
|
|
675
|
-
];
|
|
676
|
-
var DeleteDataLakeOrganizationConfigurationRequest$ = [3, n0, _DDLOCR,
|
|
677
|
-
0,
|
|
678
|
-
[_aENA],
|
|
679
|
-
[() => DataLakeAutoEnableNewAccountConfigurationList]
|
|
680
|
-
];
|
|
681
|
-
var DeleteDataLakeOrganizationConfigurationResponse$ = [3, n0, _DDLOCRe,
|
|
682
|
-
0,
|
|
683
|
-
[],
|
|
684
|
-
[]
|
|
685
|
-
];
|
|
686
|
-
var DeleteDataLakeRequest$ = [3, n0, _DDLR,
|
|
687
|
-
0,
|
|
688
|
-
[_r],
|
|
689
|
-
[64 | 0], 1
|
|
690
|
-
];
|
|
691
|
-
var DeleteDataLakeResponse$ = [3, n0, _DDLRe,
|
|
692
|
-
0,
|
|
693
|
-
[],
|
|
694
|
-
[]
|
|
695
|
-
];
|
|
696
|
-
var DeleteSubscriberNotificationRequest$ = [3, n0, _DSNR,
|
|
697
|
-
0,
|
|
698
|
-
[_sI],
|
|
699
|
-
[[0, 1]], 1
|
|
700
|
-
];
|
|
701
|
-
var DeleteSubscriberNotificationResponse$ = [3, n0, _DSNRe,
|
|
702
|
-
0,
|
|
703
|
-
[],
|
|
704
|
-
[]
|
|
705
|
-
];
|
|
706
|
-
var DeleteSubscriberRequest$ = [3, n0, _DSR,
|
|
707
|
-
0,
|
|
708
|
-
[_sI],
|
|
709
|
-
[[0, 1]], 1
|
|
710
|
-
];
|
|
711
|
-
var DeleteSubscriberResponse$ = [3, n0, _DSRe,
|
|
712
|
-
0,
|
|
713
|
-
[],
|
|
714
|
-
[]
|
|
715
|
-
];
|
|
716
|
-
var DeregisterDataLakeDelegatedAdministratorRequest$ = [3, n0, _DDLDAR,
|
|
717
|
-
0,
|
|
718
|
-
[],
|
|
719
|
-
[]
|
|
720
|
-
];
|
|
721
|
-
var DeregisterDataLakeDelegatedAdministratorResponse$ = [3, n0, _DDLDARe,
|
|
722
|
-
0,
|
|
723
|
-
[],
|
|
724
|
-
[]
|
|
725
|
-
];
|
|
726
|
-
var GetDataLakeExceptionSubscriptionRequest$ = [3, n0, _GDLESR,
|
|
727
|
-
0,
|
|
728
|
-
[],
|
|
729
|
-
[]
|
|
730
|
-
];
|
|
731
|
-
var GetDataLakeExceptionSubscriptionResponse$ = [3, n0, _GDLESRe,
|
|
732
|
-
0,
|
|
733
|
-
[_sP, _nE, _eTTL],
|
|
734
|
-
[0, 0, 1]
|
|
735
|
-
];
|
|
736
|
-
var GetDataLakeOrganizationConfigurationRequest$ = [3, n0, _GDLOCR,
|
|
737
|
-
0,
|
|
738
|
-
[],
|
|
739
|
-
[]
|
|
740
|
-
];
|
|
741
|
-
var GetDataLakeOrganizationConfigurationResponse$ = [3, n0, _GDLOCRe,
|
|
742
|
-
0,
|
|
743
|
-
[_aENA],
|
|
744
|
-
[() => DataLakeAutoEnableNewAccountConfigurationList]
|
|
745
|
-
];
|
|
746
|
-
var GetDataLakeSourcesRequest$ = [3, n0, _GDLSR,
|
|
747
|
-
0,
|
|
748
|
-
[_a, _mR, _nT],
|
|
749
|
-
[64 | 0, 1, 0]
|
|
750
|
-
];
|
|
751
|
-
var GetDataLakeSourcesResponse$ = [3, n0, _GDLSRe,
|
|
752
|
-
0,
|
|
753
|
-
[_dLA, _dLS, _nT],
|
|
754
|
-
[0, () => DataLakeSourceList, 0]
|
|
755
|
-
];
|
|
756
|
-
var GetSubscriberRequest$ = [3, n0, _GSR,
|
|
757
|
-
0,
|
|
758
|
-
[_sI],
|
|
759
|
-
[[0, 1]], 1
|
|
760
|
-
];
|
|
761
|
-
var GetSubscriberResponse$ = [3, n0, _GSRe,
|
|
762
|
-
0,
|
|
763
|
-
[_su],
|
|
764
|
-
[() => SubscriberResource$]
|
|
765
|
-
];
|
|
766
|
-
var HttpsNotificationConfiguration$ = [3, n0, _HNC,
|
|
767
|
-
0,
|
|
768
|
-
[_en, _tRA, _aAKN, _aAKV, _hM],
|
|
769
|
-
[0, 0, 0, 0, 0], 2
|
|
770
|
-
];
|
|
771
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
772
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
773
|
-
[_m],
|
|
774
|
-
[0]
|
|
775
|
-
];
|
|
776
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
777
|
-
var ListDataLakeExceptionsRequest$ = [3, n0, _LDLER,
|
|
778
|
-
0,
|
|
779
|
-
[_r, _mR, _nT],
|
|
780
|
-
[64 | 0, 1, 0]
|
|
781
|
-
];
|
|
782
|
-
var ListDataLakeExceptionsResponse$ = [3, n0, _LDLERi,
|
|
783
|
-
0,
|
|
784
|
-
[_exc, _nT],
|
|
785
|
-
[() => DataLakeExceptionList, 0]
|
|
786
|
-
];
|
|
787
|
-
var ListDataLakesRequest$ = [3, n0, _LDLR,
|
|
788
|
-
0,
|
|
789
|
-
[_r],
|
|
790
|
-
[[64 | 0, { [_hQ]: _r }]]
|
|
791
|
-
];
|
|
792
|
-
var ListDataLakesResponse$ = [3, n0, _LDLRi,
|
|
793
|
-
0,
|
|
794
|
-
[_dL],
|
|
795
|
-
[() => DataLakeResourceList]
|
|
796
|
-
];
|
|
797
|
-
var ListLogSourcesRequest$ = [3, n0, _LLSR,
|
|
798
|
-
0,
|
|
799
|
-
[_a, _r, _s, _mR, _nT],
|
|
800
|
-
[64 | 0, 64 | 0, () => LogSourceResourceList, 1, 0]
|
|
801
|
-
];
|
|
802
|
-
var ListLogSourcesResponse$ = [3, n0, _LLSRi,
|
|
803
|
-
0,
|
|
804
|
-
[_s, _nT],
|
|
805
|
-
[() => LogSourceList, 0]
|
|
806
|
-
];
|
|
807
|
-
var ListSubscribersRequest$ = [3, n0, _LSR,
|
|
808
|
-
0,
|
|
809
|
-
[_nT, _mR],
|
|
810
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
811
|
-
];
|
|
812
|
-
var ListSubscribersResponse$ = [3, n0, _LSRi,
|
|
813
|
-
0,
|
|
814
|
-
[_sub, _nT],
|
|
815
|
-
[() => SubscriberResourceList, 0]
|
|
816
|
-
];
|
|
817
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
818
|
-
0,
|
|
819
|
-
[_rAe],
|
|
820
|
-
[[0, 1]], 1
|
|
821
|
-
];
|
|
822
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
823
|
-
0,
|
|
824
|
-
[_t],
|
|
825
|
-
[() => TagList]
|
|
826
|
-
];
|
|
827
|
-
var LogSource$ = [3, n0, _LS,
|
|
828
|
-
0,
|
|
829
|
-
[_ac, _re, _s],
|
|
830
|
-
[0, 0, () => LogSourceResourceList]
|
|
831
|
-
];
|
|
832
|
-
var RegisterDataLakeDelegatedAdministratorRequest$ = [3, n0, _RDLDAR,
|
|
833
|
-
0,
|
|
834
|
-
[_aI],
|
|
835
|
-
[0], 1
|
|
836
|
-
];
|
|
837
|
-
var RegisterDataLakeDelegatedAdministratorResponse$ = [3, n0, _RDLDARe,
|
|
838
|
-
0,
|
|
839
|
-
[],
|
|
840
|
-
[]
|
|
841
|
-
];
|
|
842
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
843
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
844
|
-
[_m, _rN, _rT],
|
|
845
|
-
[0, 0, 0]
|
|
846
|
-
];
|
|
847
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
848
|
-
var SqsNotificationConfiguration$ = [3, n0, _SNC,
|
|
849
|
-
0,
|
|
850
|
-
[],
|
|
851
|
-
[]
|
|
852
|
-
];
|
|
853
|
-
var SubscriberResource$ = [3, n0, _SR,
|
|
854
|
-
0,
|
|
855
|
-
[_sI, _sA, _sIu, _sNu, _s, _sD, _aT, _rA, _sBA, _sE, _sSu, _rSA, _rSN, _cAr, _uA],
|
|
856
|
-
[0, 0, () => AwsIdentity$, 0, () => LogSourceResourceList, 0, 64 | 0, 0, 0, 0, 0, 0, 0, 5, 5], 5
|
|
857
|
-
];
|
|
858
|
-
var Tag$ = [3, n0, _T,
|
|
859
|
-
0,
|
|
860
|
-
[_k, _v],
|
|
861
|
-
[0, 0], 2
|
|
862
|
-
];
|
|
863
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
864
|
-
0,
|
|
865
|
-
[_rAe, _t],
|
|
866
|
-
[[0, 1], () => TagList], 2
|
|
867
|
-
];
|
|
868
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
869
|
-
0,
|
|
870
|
-
[],
|
|
871
|
-
[]
|
|
872
|
-
];
|
|
873
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
874
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
875
|
-
[_m, _sCe, _qC, _rAS],
|
|
876
|
-
[0, 0, 0, [1, { [_hH]: _RA }]]
|
|
877
|
-
];
|
|
878
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
879
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
880
|
-
0,
|
|
881
|
-
[_rAe, _tK],
|
|
882
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
883
|
-
];
|
|
884
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
885
|
-
0,
|
|
886
|
-
[],
|
|
887
|
-
[]
|
|
888
|
-
];
|
|
889
|
-
var UpdateDataLakeExceptionSubscriptionRequest$ = [3, n0, _UDLESR,
|
|
890
|
-
0,
|
|
891
|
-
[_sP, _nE, _eTTL],
|
|
892
|
-
[0, 0, 1], 2
|
|
893
|
-
];
|
|
894
|
-
var UpdateDataLakeExceptionSubscriptionResponse$ = [3, n0, _UDLESRp,
|
|
895
|
-
0,
|
|
896
|
-
[],
|
|
897
|
-
[]
|
|
898
|
-
];
|
|
899
|
-
var UpdateDataLakeRequest$ = [3, n0, _UDLR,
|
|
900
|
-
0,
|
|
901
|
-
[_con, _mSMRA],
|
|
902
|
-
[() => DataLakeConfigurationList, 0], 1
|
|
903
|
-
];
|
|
904
|
-
var UpdateDataLakeResponse$ = [3, n0, _UDLRp,
|
|
905
|
-
0,
|
|
906
|
-
[_dL],
|
|
907
|
-
[() => DataLakeResourceList]
|
|
908
|
-
];
|
|
909
|
-
var UpdateSubscriberNotificationRequest$ = [3, n0, _USNR,
|
|
910
|
-
0,
|
|
911
|
-
[_sI, _co],
|
|
912
|
-
[[0, 1], () => NotificationConfiguration$], 2
|
|
913
|
-
];
|
|
914
|
-
var UpdateSubscriberNotificationResponse$ = [3, n0, _USNRp,
|
|
915
|
-
0,
|
|
916
|
-
[_sE],
|
|
917
|
-
[0]
|
|
918
|
-
];
|
|
919
|
-
var UpdateSubscriberRequest$ = [3, n0, _USR,
|
|
920
|
-
0,
|
|
921
|
-
[_sI, _sIu, _sNu, _sD, _s],
|
|
922
|
-
[[0, 1], () => AwsIdentity$, 0, 0, () => LogSourceResourceList], 1
|
|
923
|
-
];
|
|
924
|
-
var UpdateSubscriberResponse$ = [3, n0, _USRp,
|
|
925
|
-
0,
|
|
926
|
-
[_su],
|
|
927
|
-
[() => SubscriberResource$]
|
|
928
|
-
];
|
|
929
|
-
var SecurityLakeServiceException$ = [-3, _sm, "SecurityLakeServiceException", 0, [], []];
|
|
930
|
-
schema.TypeRegistry.for(_sm).registerError(SecurityLakeServiceException$, SecurityLakeServiceException);
|
|
931
|
-
var AwsLogSourceConfigurationList = [1, n0, _ALSCL,
|
|
932
|
-
0, () => AwsLogSourceConfiguration$
|
|
933
|
-
];
|
|
934
|
-
var AwsLogSourceResourceList = [1, n0, _ALSRL,
|
|
935
|
-
0, () => AwsLogSourceResource$
|
|
936
|
-
];
|
|
937
|
-
var DataLakeAutoEnableNewAccountConfigurationList = [1, n0, _DLAENACL,
|
|
938
|
-
0, () => DataLakeAutoEnableNewAccountConfiguration$
|
|
939
|
-
];
|
|
940
|
-
var DataLakeConfigurationList = [1, n0, _DLCL,
|
|
941
|
-
0, () => DataLakeConfiguration$
|
|
942
|
-
];
|
|
943
|
-
var DataLakeExceptionList = [1, n0, _DLEL,
|
|
944
|
-
0, () => DataLakeException$
|
|
945
|
-
];
|
|
946
|
-
var DataLakeLifecycleTransitionList = [1, n0, _DLLTL,
|
|
947
|
-
0, () => DataLakeLifecycleTransition$
|
|
948
|
-
];
|
|
949
|
-
var DataLakeResourceList = [1, n0, _DLRL,
|
|
950
|
-
0, () => DataLakeResource$
|
|
951
|
-
];
|
|
952
|
-
var DataLakeSourceList = [1, n0, _DLSL,
|
|
953
|
-
0, () => DataLakeSource$
|
|
954
|
-
];
|
|
955
|
-
var DataLakeSourceStatusList = [1, n0, _DLSSL,
|
|
956
|
-
0, () => DataLakeSourceStatus$
|
|
957
|
-
];
|
|
958
|
-
var LogSourceList = [1, n0, _LSL,
|
|
959
|
-
0, () => LogSource$
|
|
960
|
-
];
|
|
961
|
-
var LogSourceResourceList = [1, n0, _LSRL,
|
|
962
|
-
0, () => LogSourceResource$
|
|
963
|
-
];
|
|
964
|
-
var SubscriberResourceList = [1, n0, _SRL,
|
|
965
|
-
0, () => SubscriberResource$
|
|
966
|
-
];
|
|
967
|
-
var TagList = [1, n0, _TL,
|
|
968
|
-
0, () => Tag$
|
|
969
|
-
];
|
|
970
|
-
var LogSourceResource$ = [4, n0, _LSRo,
|
|
971
|
-
0,
|
|
972
|
-
[_aLS, _cLS],
|
|
973
|
-
[() => AwsLogSourceResource$, () => CustomLogSourceResource$]
|
|
974
|
-
];
|
|
975
|
-
var NotificationConfiguration$ = [4, n0, _NC,
|
|
976
|
-
0,
|
|
977
|
-
[_sNC, _hNC],
|
|
978
|
-
[() => SqsNotificationConfiguration$, () => HttpsNotificationConfiguration$]
|
|
979
|
-
];
|
|
980
|
-
var CreateAwsLogSource$ = [9, n0, _CALS,
|
|
981
|
-
{ [_h]: ["POST", "/v1/datalake/logsources/aws", 200] }, () => CreateAwsLogSourceRequest$, () => CreateAwsLogSourceResponse$
|
|
982
|
-
];
|
|
983
|
-
var CreateCustomLogSource$ = [9, n0, _CCLS,
|
|
984
|
-
{ [_h]: ["POST", "/v1/datalake/logsources/custom", 200] }, () => CreateCustomLogSourceRequest$, () => CreateCustomLogSourceResponse$
|
|
985
|
-
];
|
|
986
|
-
var CreateDataLake$ = [9, n0, _CDL,
|
|
987
|
-
{ [_h]: ["POST", "/v1/datalake", 200] }, () => CreateDataLakeRequest$, () => CreateDataLakeResponse$
|
|
988
|
-
];
|
|
989
|
-
var CreateDataLakeExceptionSubscription$ = [9, n0, _CDLES,
|
|
990
|
-
{ [_h]: ["POST", "/v1/datalake/exceptions/subscription", 200] }, () => CreateDataLakeExceptionSubscriptionRequest$, () => CreateDataLakeExceptionSubscriptionResponse$
|
|
991
|
-
];
|
|
992
|
-
var CreateDataLakeOrganizationConfiguration$ = [9, n0, _CDLOC,
|
|
993
|
-
{ [_h]: ["POST", "/v1/datalake/organization/configuration", 200] }, () => CreateDataLakeOrganizationConfigurationRequest$, () => CreateDataLakeOrganizationConfigurationResponse$
|
|
994
|
-
];
|
|
995
|
-
var CreateSubscriber$ = [9, n0, _CS,
|
|
996
|
-
{ [_h]: ["POST", "/v1/subscribers", 200] }, () => CreateSubscriberRequest$, () => CreateSubscriberResponse$
|
|
997
|
-
];
|
|
998
|
-
var CreateSubscriberNotification$ = [9, n0, _CSN,
|
|
999
|
-
{ [_h]: ["POST", "/v1/subscribers/{subscriberId}/notification", 200] }, () => CreateSubscriberNotificationRequest$, () => CreateSubscriberNotificationResponse$
|
|
1000
|
-
];
|
|
1001
|
-
var DeleteAwsLogSource$ = [9, n0, _DALS,
|
|
1002
|
-
{ [_h]: ["POST", "/v1/datalake/logsources/aws/delete", 200] }, () => DeleteAwsLogSourceRequest$, () => DeleteAwsLogSourceResponse$
|
|
1003
|
-
];
|
|
1004
|
-
var DeleteCustomLogSource$ = [9, n0, _DCLS,
|
|
1005
|
-
{ [_h]: ["DELETE", "/v1/datalake/logsources/custom/{sourceName}", 200] }, () => DeleteCustomLogSourceRequest$, () => DeleteCustomLogSourceResponse$
|
|
1006
|
-
];
|
|
1007
|
-
var DeleteDataLake$ = [9, n0, _DDL,
|
|
1008
|
-
{ [_h]: ["POST", "/v1/datalake/delete", 200] }, () => DeleteDataLakeRequest$, () => DeleteDataLakeResponse$
|
|
1009
|
-
];
|
|
1010
|
-
var DeleteDataLakeExceptionSubscription$ = [9, n0, _DDLES,
|
|
1011
|
-
{ [_h]: ["DELETE", "/v1/datalake/exceptions/subscription", 200] }, () => DeleteDataLakeExceptionSubscriptionRequest$, () => DeleteDataLakeExceptionSubscriptionResponse$
|
|
1012
|
-
];
|
|
1013
|
-
var DeleteDataLakeOrganizationConfiguration$ = [9, n0, _DDLOC,
|
|
1014
|
-
{ [_h]: ["POST", "/v1/datalake/organization/configuration/delete", 200] }, () => DeleteDataLakeOrganizationConfigurationRequest$, () => DeleteDataLakeOrganizationConfigurationResponse$
|
|
1015
|
-
];
|
|
1016
|
-
var DeleteSubscriber$ = [9, n0, _DS,
|
|
1017
|
-
{ [_h]: ["DELETE", "/v1/subscribers/{subscriberId}", 200] }, () => DeleteSubscriberRequest$, () => DeleteSubscriberResponse$
|
|
1018
|
-
];
|
|
1019
|
-
var DeleteSubscriberNotification$ = [9, n0, _DSN,
|
|
1020
|
-
{ [_h]: ["DELETE", "/v1/subscribers/{subscriberId}/notification", 200] }, () => DeleteSubscriberNotificationRequest$, () => DeleteSubscriberNotificationResponse$
|
|
1021
|
-
];
|
|
1022
|
-
var DeregisterDataLakeDelegatedAdministrator$ = [9, n0, _DDLDA,
|
|
1023
|
-
{ [_h]: ["DELETE", "/v1/datalake/delegate", 200] }, () => DeregisterDataLakeDelegatedAdministratorRequest$, () => DeregisterDataLakeDelegatedAdministratorResponse$
|
|
1024
|
-
];
|
|
1025
|
-
var GetDataLakeExceptionSubscription$ = [9, n0, _GDLES,
|
|
1026
|
-
{ [_h]: ["GET", "/v1/datalake/exceptions/subscription", 200] }, () => GetDataLakeExceptionSubscriptionRequest$, () => GetDataLakeExceptionSubscriptionResponse$
|
|
1027
|
-
];
|
|
1028
|
-
var GetDataLakeOrganizationConfiguration$ = [9, n0, _GDLOC,
|
|
1029
|
-
{ [_h]: ["GET", "/v1/datalake/organization/configuration", 200] }, () => GetDataLakeOrganizationConfigurationRequest$, () => GetDataLakeOrganizationConfigurationResponse$
|
|
1030
|
-
];
|
|
1031
|
-
var GetDataLakeSources$ = [9, n0, _GDLS,
|
|
1032
|
-
{ [_h]: ["POST", "/v1/datalake/sources", 200] }, () => GetDataLakeSourcesRequest$, () => GetDataLakeSourcesResponse$
|
|
1033
|
-
];
|
|
1034
|
-
var GetSubscriber$ = [9, n0, _GS,
|
|
1035
|
-
{ [_h]: ["GET", "/v1/subscribers/{subscriberId}", 200] }, () => GetSubscriberRequest$, () => GetSubscriberResponse$
|
|
1036
|
-
];
|
|
1037
|
-
var ListDataLakeExceptions$ = [9, n0, _LDLE,
|
|
1038
|
-
{ [_h]: ["POST", "/v1/datalake/exceptions", 200] }, () => ListDataLakeExceptionsRequest$, () => ListDataLakeExceptionsResponse$
|
|
1039
|
-
];
|
|
1040
|
-
var ListDataLakes$ = [9, n0, _LDL,
|
|
1041
|
-
{ [_h]: ["GET", "/v1/datalakes", 200] }, () => ListDataLakesRequest$, () => ListDataLakesResponse$
|
|
1042
|
-
];
|
|
1043
|
-
var ListLogSources$ = [9, n0, _LLS,
|
|
1044
|
-
{ [_h]: ["POST", "/v1/datalake/logsources/list", 200] }, () => ListLogSourcesRequest$, () => ListLogSourcesResponse$
|
|
1045
|
-
];
|
|
1046
|
-
var ListSubscribers$ = [9, n0, _LSi,
|
|
1047
|
-
{ [_h]: ["GET", "/v1/subscribers", 200] }, () => ListSubscribersRequest$, () => ListSubscribersResponse$
|
|
1048
|
-
];
|
|
1049
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1050
|
-
{ [_h]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1051
|
-
];
|
|
1052
|
-
var RegisterDataLakeDelegatedAdministrator$ = [9, n0, _RDLDA,
|
|
1053
|
-
{ [_h]: ["POST", "/v1/datalake/delegate", 200] }, () => RegisterDataLakeDelegatedAdministratorRequest$, () => RegisterDataLakeDelegatedAdministratorResponse$
|
|
1054
|
-
];
|
|
1055
|
-
var TagResource$ = [9, n0, _TR,
|
|
1056
|
-
{ [_h]: ["POST", "/v1/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1057
|
-
];
|
|
1058
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1059
|
-
{ [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1060
|
-
];
|
|
1061
|
-
var UpdateDataLake$ = [9, n0, _UDL,
|
|
1062
|
-
{ [_h]: ["PUT", "/v1/datalake", 200] }, () => UpdateDataLakeRequest$, () => UpdateDataLakeResponse$
|
|
1063
|
-
];
|
|
1064
|
-
var UpdateDataLakeExceptionSubscription$ = [9, n0, _UDLES,
|
|
1065
|
-
{ [_h]: ["PUT", "/v1/datalake/exceptions/subscription", 200] }, () => UpdateDataLakeExceptionSubscriptionRequest$, () => UpdateDataLakeExceptionSubscriptionResponse$
|
|
1066
|
-
];
|
|
1067
|
-
var UpdateSubscriber$ = [9, n0, _US,
|
|
1068
|
-
{ [_h]: ["PUT", "/v1/subscribers/{subscriberId}", 200] }, () => UpdateSubscriberRequest$, () => UpdateSubscriberResponse$
|
|
1069
|
-
];
|
|
1070
|
-
var UpdateSubscriberNotification$ = [9, n0, _USN,
|
|
1071
|
-
{ [_h]: ["PUT", "/v1/subscribers/{subscriberId}/notification", 200] }, () => UpdateSubscriberNotificationRequest$, () => UpdateSubscriberNotificationResponse$
|
|
1072
|
-
];
|
|
1073
|
-
|
|
1074
116
|
class CreateAwsLogSourceCommand extends smithyClient.Command
|
|
1075
117
|
.classBuilder()
|
|
1076
118
|
.ep(commonParams)
|
|
@@ -1079,7 +121,7 @@ class CreateAwsLogSourceCommand extends smithyClient.Command
|
|
|
1079
121
|
})
|
|
1080
122
|
.s("SecurityLake", "CreateAwsLogSource", {})
|
|
1081
123
|
.n("SecurityLakeClient", "CreateAwsLogSourceCommand")
|
|
1082
|
-
.sc(CreateAwsLogSource$)
|
|
124
|
+
.sc(schemas_0.CreateAwsLogSource$)
|
|
1083
125
|
.build() {
|
|
1084
126
|
}
|
|
1085
127
|
|
|
@@ -1091,7 +133,7 @@ class CreateCustomLogSourceCommand extends smithyClient.Command
|
|
|
1091
133
|
})
|
|
1092
134
|
.s("SecurityLake", "CreateCustomLogSource", {})
|
|
1093
135
|
.n("SecurityLakeClient", "CreateCustomLogSourceCommand")
|
|
1094
|
-
.sc(CreateCustomLogSource$)
|
|
136
|
+
.sc(schemas_0.CreateCustomLogSource$)
|
|
1095
137
|
.build() {
|
|
1096
138
|
}
|
|
1097
139
|
|
|
@@ -1103,7 +145,7 @@ class CreateDataLakeCommand extends smithyClient.Command
|
|
|
1103
145
|
})
|
|
1104
146
|
.s("SecurityLake", "CreateDataLake", {})
|
|
1105
147
|
.n("SecurityLakeClient", "CreateDataLakeCommand")
|
|
1106
|
-
.sc(CreateDataLake$)
|
|
148
|
+
.sc(schemas_0.CreateDataLake$)
|
|
1107
149
|
.build() {
|
|
1108
150
|
}
|
|
1109
151
|
|
|
@@ -1115,7 +157,7 @@ class CreateDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1115
157
|
})
|
|
1116
158
|
.s("SecurityLake", "CreateDataLakeExceptionSubscription", {})
|
|
1117
159
|
.n("SecurityLakeClient", "CreateDataLakeExceptionSubscriptionCommand")
|
|
1118
|
-
.sc(CreateDataLakeExceptionSubscription$)
|
|
160
|
+
.sc(schemas_0.CreateDataLakeExceptionSubscription$)
|
|
1119
161
|
.build() {
|
|
1120
162
|
}
|
|
1121
163
|
|
|
@@ -1127,7 +169,7 @@ class CreateDataLakeOrganizationConfigurationCommand extends smithyClient.Comman
|
|
|
1127
169
|
})
|
|
1128
170
|
.s("SecurityLake", "CreateDataLakeOrganizationConfiguration", {})
|
|
1129
171
|
.n("SecurityLakeClient", "CreateDataLakeOrganizationConfigurationCommand")
|
|
1130
|
-
.sc(CreateDataLakeOrganizationConfiguration$)
|
|
172
|
+
.sc(schemas_0.CreateDataLakeOrganizationConfiguration$)
|
|
1131
173
|
.build() {
|
|
1132
174
|
}
|
|
1133
175
|
|
|
@@ -1139,7 +181,7 @@ class CreateSubscriberCommand extends smithyClient.Command
|
|
|
1139
181
|
})
|
|
1140
182
|
.s("SecurityLake", "CreateSubscriber", {})
|
|
1141
183
|
.n("SecurityLakeClient", "CreateSubscriberCommand")
|
|
1142
|
-
.sc(CreateSubscriber$)
|
|
184
|
+
.sc(schemas_0.CreateSubscriber$)
|
|
1143
185
|
.build() {
|
|
1144
186
|
}
|
|
1145
187
|
|
|
@@ -1151,7 +193,7 @@ class CreateSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1151
193
|
})
|
|
1152
194
|
.s("SecurityLake", "CreateSubscriberNotification", {})
|
|
1153
195
|
.n("SecurityLakeClient", "CreateSubscriberNotificationCommand")
|
|
1154
|
-
.sc(CreateSubscriberNotification$)
|
|
196
|
+
.sc(schemas_0.CreateSubscriberNotification$)
|
|
1155
197
|
.build() {
|
|
1156
198
|
}
|
|
1157
199
|
|
|
@@ -1163,7 +205,7 @@ class DeleteAwsLogSourceCommand extends smithyClient.Command
|
|
|
1163
205
|
})
|
|
1164
206
|
.s("SecurityLake", "DeleteAwsLogSource", {})
|
|
1165
207
|
.n("SecurityLakeClient", "DeleteAwsLogSourceCommand")
|
|
1166
|
-
.sc(DeleteAwsLogSource$)
|
|
208
|
+
.sc(schemas_0.DeleteAwsLogSource$)
|
|
1167
209
|
.build() {
|
|
1168
210
|
}
|
|
1169
211
|
|
|
@@ -1175,7 +217,7 @@ class DeleteCustomLogSourceCommand extends smithyClient.Command
|
|
|
1175
217
|
})
|
|
1176
218
|
.s("SecurityLake", "DeleteCustomLogSource", {})
|
|
1177
219
|
.n("SecurityLakeClient", "DeleteCustomLogSourceCommand")
|
|
1178
|
-
.sc(DeleteCustomLogSource$)
|
|
220
|
+
.sc(schemas_0.DeleteCustomLogSource$)
|
|
1179
221
|
.build() {
|
|
1180
222
|
}
|
|
1181
223
|
|
|
@@ -1187,7 +229,7 @@ class DeleteDataLakeCommand extends smithyClient.Command
|
|
|
1187
229
|
})
|
|
1188
230
|
.s("SecurityLake", "DeleteDataLake", {})
|
|
1189
231
|
.n("SecurityLakeClient", "DeleteDataLakeCommand")
|
|
1190
|
-
.sc(DeleteDataLake$)
|
|
232
|
+
.sc(schemas_0.DeleteDataLake$)
|
|
1191
233
|
.build() {
|
|
1192
234
|
}
|
|
1193
235
|
|
|
@@ -1199,7 +241,7 @@ class DeleteDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1199
241
|
})
|
|
1200
242
|
.s("SecurityLake", "DeleteDataLakeExceptionSubscription", {})
|
|
1201
243
|
.n("SecurityLakeClient", "DeleteDataLakeExceptionSubscriptionCommand")
|
|
1202
|
-
.sc(DeleteDataLakeExceptionSubscription$)
|
|
244
|
+
.sc(schemas_0.DeleteDataLakeExceptionSubscription$)
|
|
1203
245
|
.build() {
|
|
1204
246
|
}
|
|
1205
247
|
|
|
@@ -1211,7 +253,7 @@ class DeleteDataLakeOrganizationConfigurationCommand extends smithyClient.Comman
|
|
|
1211
253
|
})
|
|
1212
254
|
.s("SecurityLake", "DeleteDataLakeOrganizationConfiguration", {})
|
|
1213
255
|
.n("SecurityLakeClient", "DeleteDataLakeOrganizationConfigurationCommand")
|
|
1214
|
-
.sc(DeleteDataLakeOrganizationConfiguration$)
|
|
256
|
+
.sc(schemas_0.DeleteDataLakeOrganizationConfiguration$)
|
|
1215
257
|
.build() {
|
|
1216
258
|
}
|
|
1217
259
|
|
|
@@ -1223,7 +265,7 @@ class DeleteSubscriberCommand extends smithyClient.Command
|
|
|
1223
265
|
})
|
|
1224
266
|
.s("SecurityLake", "DeleteSubscriber", {})
|
|
1225
267
|
.n("SecurityLakeClient", "DeleteSubscriberCommand")
|
|
1226
|
-
.sc(DeleteSubscriber$)
|
|
268
|
+
.sc(schemas_0.DeleteSubscriber$)
|
|
1227
269
|
.build() {
|
|
1228
270
|
}
|
|
1229
271
|
|
|
@@ -1235,7 +277,7 @@ class DeleteSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1235
277
|
})
|
|
1236
278
|
.s("SecurityLake", "DeleteSubscriberNotification", {})
|
|
1237
279
|
.n("SecurityLakeClient", "DeleteSubscriberNotificationCommand")
|
|
1238
|
-
.sc(DeleteSubscriberNotification$)
|
|
280
|
+
.sc(schemas_0.DeleteSubscriberNotification$)
|
|
1239
281
|
.build() {
|
|
1240
282
|
}
|
|
1241
283
|
|
|
@@ -1247,7 +289,7 @@ class DeregisterDataLakeDelegatedAdministratorCommand extends smithyClient.Comma
|
|
|
1247
289
|
})
|
|
1248
290
|
.s("SecurityLake", "DeregisterDataLakeDelegatedAdministrator", {})
|
|
1249
291
|
.n("SecurityLakeClient", "DeregisterDataLakeDelegatedAdministratorCommand")
|
|
1250
|
-
.sc(DeregisterDataLakeDelegatedAdministrator$)
|
|
292
|
+
.sc(schemas_0.DeregisterDataLakeDelegatedAdministrator$)
|
|
1251
293
|
.build() {
|
|
1252
294
|
}
|
|
1253
295
|
|
|
@@ -1259,7 +301,7 @@ class GetDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1259
301
|
})
|
|
1260
302
|
.s("SecurityLake", "GetDataLakeExceptionSubscription", {})
|
|
1261
303
|
.n("SecurityLakeClient", "GetDataLakeExceptionSubscriptionCommand")
|
|
1262
|
-
.sc(GetDataLakeExceptionSubscription$)
|
|
304
|
+
.sc(schemas_0.GetDataLakeExceptionSubscription$)
|
|
1263
305
|
.build() {
|
|
1264
306
|
}
|
|
1265
307
|
|
|
@@ -1271,7 +313,7 @@ class GetDataLakeOrganizationConfigurationCommand extends smithyClient.Command
|
|
|
1271
313
|
})
|
|
1272
314
|
.s("SecurityLake", "GetDataLakeOrganizationConfiguration", {})
|
|
1273
315
|
.n("SecurityLakeClient", "GetDataLakeOrganizationConfigurationCommand")
|
|
1274
|
-
.sc(GetDataLakeOrganizationConfiguration$)
|
|
316
|
+
.sc(schemas_0.GetDataLakeOrganizationConfiguration$)
|
|
1275
317
|
.build() {
|
|
1276
318
|
}
|
|
1277
319
|
|
|
@@ -1283,7 +325,7 @@ class GetDataLakeSourcesCommand extends smithyClient.Command
|
|
|
1283
325
|
})
|
|
1284
326
|
.s("SecurityLake", "GetDataLakeSources", {})
|
|
1285
327
|
.n("SecurityLakeClient", "GetDataLakeSourcesCommand")
|
|
1286
|
-
.sc(GetDataLakeSources$)
|
|
328
|
+
.sc(schemas_0.GetDataLakeSources$)
|
|
1287
329
|
.build() {
|
|
1288
330
|
}
|
|
1289
331
|
|
|
@@ -1295,7 +337,7 @@ class GetSubscriberCommand extends smithyClient.Command
|
|
|
1295
337
|
})
|
|
1296
338
|
.s("SecurityLake", "GetSubscriber", {})
|
|
1297
339
|
.n("SecurityLakeClient", "GetSubscriberCommand")
|
|
1298
|
-
.sc(GetSubscriber$)
|
|
340
|
+
.sc(schemas_0.GetSubscriber$)
|
|
1299
341
|
.build() {
|
|
1300
342
|
}
|
|
1301
343
|
|
|
@@ -1307,7 +349,7 @@ class ListDataLakeExceptionsCommand extends smithyClient.Command
|
|
|
1307
349
|
})
|
|
1308
350
|
.s("SecurityLake", "ListDataLakeExceptions", {})
|
|
1309
351
|
.n("SecurityLakeClient", "ListDataLakeExceptionsCommand")
|
|
1310
|
-
.sc(ListDataLakeExceptions$)
|
|
352
|
+
.sc(schemas_0.ListDataLakeExceptions$)
|
|
1311
353
|
.build() {
|
|
1312
354
|
}
|
|
1313
355
|
|
|
@@ -1319,7 +361,7 @@ class ListDataLakesCommand extends smithyClient.Command
|
|
|
1319
361
|
})
|
|
1320
362
|
.s("SecurityLake", "ListDataLakes", {})
|
|
1321
363
|
.n("SecurityLakeClient", "ListDataLakesCommand")
|
|
1322
|
-
.sc(ListDataLakes$)
|
|
364
|
+
.sc(schemas_0.ListDataLakes$)
|
|
1323
365
|
.build() {
|
|
1324
366
|
}
|
|
1325
367
|
|
|
@@ -1331,7 +373,7 @@ class ListLogSourcesCommand extends smithyClient.Command
|
|
|
1331
373
|
})
|
|
1332
374
|
.s("SecurityLake", "ListLogSources", {})
|
|
1333
375
|
.n("SecurityLakeClient", "ListLogSourcesCommand")
|
|
1334
|
-
.sc(ListLogSources$)
|
|
376
|
+
.sc(schemas_0.ListLogSources$)
|
|
1335
377
|
.build() {
|
|
1336
378
|
}
|
|
1337
379
|
|
|
@@ -1343,7 +385,7 @@ class ListSubscribersCommand extends smithyClient.Command
|
|
|
1343
385
|
})
|
|
1344
386
|
.s("SecurityLake", "ListSubscribers", {})
|
|
1345
387
|
.n("SecurityLakeClient", "ListSubscribersCommand")
|
|
1346
|
-
.sc(ListSubscribers$)
|
|
388
|
+
.sc(schemas_0.ListSubscribers$)
|
|
1347
389
|
.build() {
|
|
1348
390
|
}
|
|
1349
391
|
|
|
@@ -1355,7 +397,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1355
397
|
})
|
|
1356
398
|
.s("SecurityLake", "ListTagsForResource", {})
|
|
1357
399
|
.n("SecurityLakeClient", "ListTagsForResourceCommand")
|
|
1358
|
-
.sc(ListTagsForResource$)
|
|
400
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1359
401
|
.build() {
|
|
1360
402
|
}
|
|
1361
403
|
|
|
@@ -1367,7 +409,7 @@ class RegisterDataLakeDelegatedAdministratorCommand extends smithyClient.Command
|
|
|
1367
409
|
})
|
|
1368
410
|
.s("SecurityLake", "RegisterDataLakeDelegatedAdministrator", {})
|
|
1369
411
|
.n("SecurityLakeClient", "RegisterDataLakeDelegatedAdministratorCommand")
|
|
1370
|
-
.sc(RegisterDataLakeDelegatedAdministrator$)
|
|
412
|
+
.sc(schemas_0.RegisterDataLakeDelegatedAdministrator$)
|
|
1371
413
|
.build() {
|
|
1372
414
|
}
|
|
1373
415
|
|
|
@@ -1379,7 +421,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1379
421
|
})
|
|
1380
422
|
.s("SecurityLake", "TagResource", {})
|
|
1381
423
|
.n("SecurityLakeClient", "TagResourceCommand")
|
|
1382
|
-
.sc(TagResource$)
|
|
424
|
+
.sc(schemas_0.TagResource$)
|
|
1383
425
|
.build() {
|
|
1384
426
|
}
|
|
1385
427
|
|
|
@@ -1391,7 +433,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1391
433
|
})
|
|
1392
434
|
.s("SecurityLake", "UntagResource", {})
|
|
1393
435
|
.n("SecurityLakeClient", "UntagResourceCommand")
|
|
1394
|
-
.sc(UntagResource$)
|
|
436
|
+
.sc(schemas_0.UntagResource$)
|
|
1395
437
|
.build() {
|
|
1396
438
|
}
|
|
1397
439
|
|
|
@@ -1403,7 +445,7 @@ class UpdateDataLakeCommand extends smithyClient.Command
|
|
|
1403
445
|
})
|
|
1404
446
|
.s("SecurityLake", "UpdateDataLake", {})
|
|
1405
447
|
.n("SecurityLakeClient", "UpdateDataLakeCommand")
|
|
1406
|
-
.sc(UpdateDataLake$)
|
|
448
|
+
.sc(schemas_0.UpdateDataLake$)
|
|
1407
449
|
.build() {
|
|
1408
450
|
}
|
|
1409
451
|
|
|
@@ -1415,7 +457,7 @@ class UpdateDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1415
457
|
})
|
|
1416
458
|
.s("SecurityLake", "UpdateDataLakeExceptionSubscription", {})
|
|
1417
459
|
.n("SecurityLakeClient", "UpdateDataLakeExceptionSubscriptionCommand")
|
|
1418
|
-
.sc(UpdateDataLakeExceptionSubscription$)
|
|
460
|
+
.sc(schemas_0.UpdateDataLakeExceptionSubscription$)
|
|
1419
461
|
.build() {
|
|
1420
462
|
}
|
|
1421
463
|
|
|
@@ -1427,7 +469,7 @@ class UpdateSubscriberCommand extends smithyClient.Command
|
|
|
1427
469
|
})
|
|
1428
470
|
.s("SecurityLake", "UpdateSubscriber", {})
|
|
1429
471
|
.n("SecurityLakeClient", "UpdateSubscriberCommand")
|
|
1430
|
-
.sc(UpdateSubscriber$)
|
|
472
|
+
.sc(schemas_0.UpdateSubscriber$)
|
|
1431
473
|
.build() {
|
|
1432
474
|
}
|
|
1433
475
|
|
|
@@ -1439,7 +481,7 @@ class UpdateSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1439
481
|
})
|
|
1440
482
|
.s("SecurityLake", "UpdateSubscriberNotification", {})
|
|
1441
483
|
.n("SecurityLakeClient", "UpdateSubscriberNotificationCommand")
|
|
1442
|
-
.sc(UpdateSubscriberNotification$)
|
|
484
|
+
.sc(schemas_0.UpdateSubscriberNotification$)
|
|
1443
485
|
.build() {
|
|
1444
486
|
}
|
|
1445
487
|
|
|
@@ -1538,181 +580,62 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1538
580
|
enumerable: true,
|
|
1539
581
|
get: function () { return smithyClient.Client; }
|
|
1540
582
|
});
|
|
1541
|
-
exports
|
|
1542
|
-
|
|
583
|
+
Object.defineProperty(exports, "SecurityLakeServiceException", {
|
|
584
|
+
enumerable: true,
|
|
585
|
+
get: function () { return SecurityLakeServiceException.SecurityLakeServiceException; }
|
|
586
|
+
});
|
|
1543
587
|
exports.AccessType = AccessType;
|
|
1544
|
-
exports.AwsIdentity$ = AwsIdentity$;
|
|
1545
|
-
exports.AwsLogSourceConfiguration$ = AwsLogSourceConfiguration$;
|
|
1546
588
|
exports.AwsLogSourceName = AwsLogSourceName;
|
|
1547
|
-
exports.AwsLogSourceResource$ = AwsLogSourceResource$;
|
|
1548
|
-
exports.BadRequestException = BadRequestException;
|
|
1549
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
1550
|
-
exports.ConflictException = ConflictException;
|
|
1551
|
-
exports.ConflictException$ = ConflictException$;
|
|
1552
|
-
exports.CreateAwsLogSource$ = CreateAwsLogSource$;
|
|
1553
589
|
exports.CreateAwsLogSourceCommand = CreateAwsLogSourceCommand;
|
|
1554
|
-
exports.CreateAwsLogSourceRequest$ = CreateAwsLogSourceRequest$;
|
|
1555
|
-
exports.CreateAwsLogSourceResponse$ = CreateAwsLogSourceResponse$;
|
|
1556
|
-
exports.CreateCustomLogSource$ = CreateCustomLogSource$;
|
|
1557
590
|
exports.CreateCustomLogSourceCommand = CreateCustomLogSourceCommand;
|
|
1558
|
-
exports.CreateCustomLogSourceRequest$ = CreateCustomLogSourceRequest$;
|
|
1559
|
-
exports.CreateCustomLogSourceResponse$ = CreateCustomLogSourceResponse$;
|
|
1560
|
-
exports.CreateDataLake$ = CreateDataLake$;
|
|
1561
591
|
exports.CreateDataLakeCommand = CreateDataLakeCommand;
|
|
1562
|
-
exports.CreateDataLakeExceptionSubscription$ = CreateDataLakeExceptionSubscription$;
|
|
1563
592
|
exports.CreateDataLakeExceptionSubscriptionCommand = CreateDataLakeExceptionSubscriptionCommand;
|
|
1564
|
-
exports.CreateDataLakeExceptionSubscriptionRequest$ = CreateDataLakeExceptionSubscriptionRequest$;
|
|
1565
|
-
exports.CreateDataLakeExceptionSubscriptionResponse$ = CreateDataLakeExceptionSubscriptionResponse$;
|
|
1566
|
-
exports.CreateDataLakeOrganizationConfiguration$ = CreateDataLakeOrganizationConfiguration$;
|
|
1567
593
|
exports.CreateDataLakeOrganizationConfigurationCommand = CreateDataLakeOrganizationConfigurationCommand;
|
|
1568
|
-
exports.CreateDataLakeOrganizationConfigurationRequest$ = CreateDataLakeOrganizationConfigurationRequest$;
|
|
1569
|
-
exports.CreateDataLakeOrganizationConfigurationResponse$ = CreateDataLakeOrganizationConfigurationResponse$;
|
|
1570
|
-
exports.CreateDataLakeRequest$ = CreateDataLakeRequest$;
|
|
1571
|
-
exports.CreateDataLakeResponse$ = CreateDataLakeResponse$;
|
|
1572
|
-
exports.CreateSubscriber$ = CreateSubscriber$;
|
|
1573
594
|
exports.CreateSubscriberCommand = CreateSubscriberCommand;
|
|
1574
|
-
exports.CreateSubscriberNotification$ = CreateSubscriberNotification$;
|
|
1575
595
|
exports.CreateSubscriberNotificationCommand = CreateSubscriberNotificationCommand;
|
|
1576
|
-
exports.CreateSubscriberNotificationRequest$ = CreateSubscriberNotificationRequest$;
|
|
1577
|
-
exports.CreateSubscriberNotificationResponse$ = CreateSubscriberNotificationResponse$;
|
|
1578
|
-
exports.CreateSubscriberRequest$ = CreateSubscriberRequest$;
|
|
1579
|
-
exports.CreateSubscriberResponse$ = CreateSubscriberResponse$;
|
|
1580
|
-
exports.CustomLogSourceAttributes$ = CustomLogSourceAttributes$;
|
|
1581
|
-
exports.CustomLogSourceConfiguration$ = CustomLogSourceConfiguration$;
|
|
1582
|
-
exports.CustomLogSourceCrawlerConfiguration$ = CustomLogSourceCrawlerConfiguration$;
|
|
1583
|
-
exports.CustomLogSourceProvider$ = CustomLogSourceProvider$;
|
|
1584
|
-
exports.CustomLogSourceResource$ = CustomLogSourceResource$;
|
|
1585
|
-
exports.DataLakeAutoEnableNewAccountConfiguration$ = DataLakeAutoEnableNewAccountConfiguration$;
|
|
1586
|
-
exports.DataLakeConfiguration$ = DataLakeConfiguration$;
|
|
1587
|
-
exports.DataLakeEncryptionConfiguration$ = DataLakeEncryptionConfiguration$;
|
|
1588
|
-
exports.DataLakeException$ = DataLakeException$;
|
|
1589
|
-
exports.DataLakeLifecycleConfiguration$ = DataLakeLifecycleConfiguration$;
|
|
1590
|
-
exports.DataLakeLifecycleExpiration$ = DataLakeLifecycleExpiration$;
|
|
1591
|
-
exports.DataLakeLifecycleTransition$ = DataLakeLifecycleTransition$;
|
|
1592
|
-
exports.DataLakeReplicationConfiguration$ = DataLakeReplicationConfiguration$;
|
|
1593
|
-
exports.DataLakeResource$ = DataLakeResource$;
|
|
1594
|
-
exports.DataLakeSource$ = DataLakeSource$;
|
|
1595
|
-
exports.DataLakeSourceStatus$ = DataLakeSourceStatus$;
|
|
1596
596
|
exports.DataLakeStatus = DataLakeStatus;
|
|
1597
|
-
exports.DataLakeUpdateException$ = DataLakeUpdateException$;
|
|
1598
|
-
exports.DataLakeUpdateStatus$ = DataLakeUpdateStatus$;
|
|
1599
|
-
exports.DeleteAwsLogSource$ = DeleteAwsLogSource$;
|
|
1600
597
|
exports.DeleteAwsLogSourceCommand = DeleteAwsLogSourceCommand;
|
|
1601
|
-
exports.DeleteAwsLogSourceRequest$ = DeleteAwsLogSourceRequest$;
|
|
1602
|
-
exports.DeleteAwsLogSourceResponse$ = DeleteAwsLogSourceResponse$;
|
|
1603
|
-
exports.DeleteCustomLogSource$ = DeleteCustomLogSource$;
|
|
1604
598
|
exports.DeleteCustomLogSourceCommand = DeleteCustomLogSourceCommand;
|
|
1605
|
-
exports.DeleteCustomLogSourceRequest$ = DeleteCustomLogSourceRequest$;
|
|
1606
|
-
exports.DeleteCustomLogSourceResponse$ = DeleteCustomLogSourceResponse$;
|
|
1607
|
-
exports.DeleteDataLake$ = DeleteDataLake$;
|
|
1608
599
|
exports.DeleteDataLakeCommand = DeleteDataLakeCommand;
|
|
1609
|
-
exports.DeleteDataLakeExceptionSubscription$ = DeleteDataLakeExceptionSubscription$;
|
|
1610
600
|
exports.DeleteDataLakeExceptionSubscriptionCommand = DeleteDataLakeExceptionSubscriptionCommand;
|
|
1611
|
-
exports.DeleteDataLakeExceptionSubscriptionRequest$ = DeleteDataLakeExceptionSubscriptionRequest$;
|
|
1612
|
-
exports.DeleteDataLakeExceptionSubscriptionResponse$ = DeleteDataLakeExceptionSubscriptionResponse$;
|
|
1613
|
-
exports.DeleteDataLakeOrganizationConfiguration$ = DeleteDataLakeOrganizationConfiguration$;
|
|
1614
601
|
exports.DeleteDataLakeOrganizationConfigurationCommand = DeleteDataLakeOrganizationConfigurationCommand;
|
|
1615
|
-
exports.DeleteDataLakeOrganizationConfigurationRequest$ = DeleteDataLakeOrganizationConfigurationRequest$;
|
|
1616
|
-
exports.DeleteDataLakeOrganizationConfigurationResponse$ = DeleteDataLakeOrganizationConfigurationResponse$;
|
|
1617
|
-
exports.DeleteDataLakeRequest$ = DeleteDataLakeRequest$;
|
|
1618
|
-
exports.DeleteDataLakeResponse$ = DeleteDataLakeResponse$;
|
|
1619
|
-
exports.DeleteSubscriber$ = DeleteSubscriber$;
|
|
1620
602
|
exports.DeleteSubscriberCommand = DeleteSubscriberCommand;
|
|
1621
|
-
exports.DeleteSubscriberNotification$ = DeleteSubscriberNotification$;
|
|
1622
603
|
exports.DeleteSubscriberNotificationCommand = DeleteSubscriberNotificationCommand;
|
|
1623
|
-
exports.DeleteSubscriberNotificationRequest$ = DeleteSubscriberNotificationRequest$;
|
|
1624
|
-
exports.DeleteSubscriberNotificationResponse$ = DeleteSubscriberNotificationResponse$;
|
|
1625
|
-
exports.DeleteSubscriberRequest$ = DeleteSubscriberRequest$;
|
|
1626
|
-
exports.DeleteSubscriberResponse$ = DeleteSubscriberResponse$;
|
|
1627
|
-
exports.DeregisterDataLakeDelegatedAdministrator$ = DeregisterDataLakeDelegatedAdministrator$;
|
|
1628
604
|
exports.DeregisterDataLakeDelegatedAdministratorCommand = DeregisterDataLakeDelegatedAdministratorCommand;
|
|
1629
|
-
exports.DeregisterDataLakeDelegatedAdministratorRequest$ = DeregisterDataLakeDelegatedAdministratorRequest$;
|
|
1630
|
-
exports.DeregisterDataLakeDelegatedAdministratorResponse$ = DeregisterDataLakeDelegatedAdministratorResponse$;
|
|
1631
|
-
exports.GetDataLakeExceptionSubscription$ = GetDataLakeExceptionSubscription$;
|
|
1632
605
|
exports.GetDataLakeExceptionSubscriptionCommand = GetDataLakeExceptionSubscriptionCommand;
|
|
1633
|
-
exports.GetDataLakeExceptionSubscriptionRequest$ = GetDataLakeExceptionSubscriptionRequest$;
|
|
1634
|
-
exports.GetDataLakeExceptionSubscriptionResponse$ = GetDataLakeExceptionSubscriptionResponse$;
|
|
1635
|
-
exports.GetDataLakeOrganizationConfiguration$ = GetDataLakeOrganizationConfiguration$;
|
|
1636
606
|
exports.GetDataLakeOrganizationConfigurationCommand = GetDataLakeOrganizationConfigurationCommand;
|
|
1637
|
-
exports.GetDataLakeOrganizationConfigurationRequest$ = GetDataLakeOrganizationConfigurationRequest$;
|
|
1638
|
-
exports.GetDataLakeOrganizationConfigurationResponse$ = GetDataLakeOrganizationConfigurationResponse$;
|
|
1639
|
-
exports.GetDataLakeSources$ = GetDataLakeSources$;
|
|
1640
607
|
exports.GetDataLakeSourcesCommand = GetDataLakeSourcesCommand;
|
|
1641
|
-
exports.GetDataLakeSourcesRequest$ = GetDataLakeSourcesRequest$;
|
|
1642
|
-
exports.GetDataLakeSourcesResponse$ = GetDataLakeSourcesResponse$;
|
|
1643
|
-
exports.GetSubscriber$ = GetSubscriber$;
|
|
1644
608
|
exports.GetSubscriberCommand = GetSubscriberCommand;
|
|
1645
|
-
exports.GetSubscriberRequest$ = GetSubscriberRequest$;
|
|
1646
|
-
exports.GetSubscriberResponse$ = GetSubscriberResponse$;
|
|
1647
609
|
exports.HttpMethod = HttpMethod;
|
|
1648
|
-
exports.HttpsNotificationConfiguration$ = HttpsNotificationConfiguration$;
|
|
1649
|
-
exports.InternalServerException = InternalServerException;
|
|
1650
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1651
|
-
exports.ListDataLakeExceptions$ = ListDataLakeExceptions$;
|
|
1652
610
|
exports.ListDataLakeExceptionsCommand = ListDataLakeExceptionsCommand;
|
|
1653
|
-
exports.ListDataLakeExceptionsRequest$ = ListDataLakeExceptionsRequest$;
|
|
1654
|
-
exports.ListDataLakeExceptionsResponse$ = ListDataLakeExceptionsResponse$;
|
|
1655
|
-
exports.ListDataLakes$ = ListDataLakes$;
|
|
1656
611
|
exports.ListDataLakesCommand = ListDataLakesCommand;
|
|
1657
|
-
exports.ListDataLakesRequest$ = ListDataLakesRequest$;
|
|
1658
|
-
exports.ListDataLakesResponse$ = ListDataLakesResponse$;
|
|
1659
|
-
exports.ListLogSources$ = ListLogSources$;
|
|
1660
612
|
exports.ListLogSourcesCommand = ListLogSourcesCommand;
|
|
1661
|
-
exports.ListLogSourcesRequest$ = ListLogSourcesRequest$;
|
|
1662
|
-
exports.ListLogSourcesResponse$ = ListLogSourcesResponse$;
|
|
1663
|
-
exports.ListSubscribers$ = ListSubscribers$;
|
|
1664
613
|
exports.ListSubscribersCommand = ListSubscribersCommand;
|
|
1665
|
-
exports.ListSubscribersRequest$ = ListSubscribersRequest$;
|
|
1666
|
-
exports.ListSubscribersResponse$ = ListSubscribersResponse$;
|
|
1667
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1668
614
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1669
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1670
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1671
|
-
exports.LogSource$ = LogSource$;
|
|
1672
|
-
exports.LogSourceResource$ = LogSourceResource$;
|
|
1673
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
1674
|
-
exports.RegisterDataLakeDelegatedAdministrator$ = RegisterDataLakeDelegatedAdministrator$;
|
|
1675
615
|
exports.RegisterDataLakeDelegatedAdministratorCommand = RegisterDataLakeDelegatedAdministratorCommand;
|
|
1676
|
-
exports.RegisterDataLakeDelegatedAdministratorRequest$ = RegisterDataLakeDelegatedAdministratorRequest$;
|
|
1677
|
-
exports.RegisterDataLakeDelegatedAdministratorResponse$ = RegisterDataLakeDelegatedAdministratorResponse$;
|
|
1678
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1679
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1680
616
|
exports.SecurityLake = SecurityLake;
|
|
1681
617
|
exports.SecurityLakeClient = SecurityLakeClient;
|
|
1682
|
-
exports.SecurityLakeServiceException = SecurityLakeServiceException;
|
|
1683
|
-
exports.SecurityLakeServiceException$ = SecurityLakeServiceException$;
|
|
1684
618
|
exports.SourceCollectionStatus = SourceCollectionStatus;
|
|
1685
|
-
exports.SqsNotificationConfiguration$ = SqsNotificationConfiguration$;
|
|
1686
|
-
exports.SubscriberResource$ = SubscriberResource$;
|
|
1687
619
|
exports.SubscriberStatus = SubscriberStatus;
|
|
1688
|
-
exports.Tag$ = Tag$;
|
|
1689
|
-
exports.TagResource$ = TagResource$;
|
|
1690
620
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1691
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1692
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1693
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1694
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1695
|
-
exports.UntagResource$ = UntagResource$;
|
|
1696
621
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1697
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1698
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1699
|
-
exports.UpdateDataLake$ = UpdateDataLake$;
|
|
1700
622
|
exports.UpdateDataLakeCommand = UpdateDataLakeCommand;
|
|
1701
|
-
exports.UpdateDataLakeExceptionSubscription$ = UpdateDataLakeExceptionSubscription$;
|
|
1702
623
|
exports.UpdateDataLakeExceptionSubscriptionCommand = UpdateDataLakeExceptionSubscriptionCommand;
|
|
1703
|
-
exports.UpdateDataLakeExceptionSubscriptionRequest$ = UpdateDataLakeExceptionSubscriptionRequest$;
|
|
1704
|
-
exports.UpdateDataLakeExceptionSubscriptionResponse$ = UpdateDataLakeExceptionSubscriptionResponse$;
|
|
1705
|
-
exports.UpdateDataLakeRequest$ = UpdateDataLakeRequest$;
|
|
1706
|
-
exports.UpdateDataLakeResponse$ = UpdateDataLakeResponse$;
|
|
1707
|
-
exports.UpdateSubscriber$ = UpdateSubscriber$;
|
|
1708
624
|
exports.UpdateSubscriberCommand = UpdateSubscriberCommand;
|
|
1709
|
-
exports.UpdateSubscriberNotification$ = UpdateSubscriberNotification$;
|
|
1710
625
|
exports.UpdateSubscriberNotificationCommand = UpdateSubscriberNotificationCommand;
|
|
1711
|
-
exports.UpdateSubscriberNotificationRequest$ = UpdateSubscriberNotificationRequest$;
|
|
1712
|
-
exports.UpdateSubscriberNotificationResponse$ = UpdateSubscriberNotificationResponse$;
|
|
1713
|
-
exports.UpdateSubscriberRequest$ = UpdateSubscriberRequest$;
|
|
1714
|
-
exports.UpdateSubscriberResponse$ = UpdateSubscriberResponse$;
|
|
1715
626
|
exports.paginateGetDataLakeSources = paginateGetDataLakeSources;
|
|
1716
627
|
exports.paginateListDataLakeExceptions = paginateListDataLakeExceptions;
|
|
1717
628
|
exports.paginateListLogSources = paginateListLogSources;
|
|
1718
629
|
exports.paginateListSubscribers = paginateListSubscribers;
|
|
630
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
631
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
632
|
+
enumerable: true,
|
|
633
|
+
get: function () { return schemas_0[k]; }
|
|
634
|
+
});
|
|
635
|
+
});
|
|
636
|
+
Object.keys(errors).forEach(function (k) {
|
|
637
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
638
|
+
enumerable: true,
|
|
639
|
+
get: function () { return errors[k]; }
|
|
640
|
+
});
|
|
641
|
+
});
|