@aws-sdk/client-kafkaconnect 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 +37 -1066
- package/dist-cjs/models/KafkaConnectServiceException.js +12 -0
- package/dist-cjs/models/errors.js +108 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +833 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +65 -58
- package/dist-types/commands/CreateConnectorCommand.d.ts +1 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +1 -0
- package/dist-types/commands/DescribeConnectorOperationCommand.d.ts +2 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +21 -6
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- 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 KafkaConnectServiceException = require('./models/KafkaConnectServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,926 +113,6 @@ class KafkaConnectClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class KafkaConnectServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, KafkaConnectServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class BadRequestException extends KafkaConnectServiceException {
|
|
121
|
-
name = "BadRequestException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "BadRequestException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends KafkaConnectServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ConflictException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ForbiddenException extends KafkaConnectServiceException {
|
|
145
|
-
name = "ForbiddenException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ForbiddenException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class InternalServerErrorException extends KafkaConnectServiceException {
|
|
157
|
-
name = "InternalServerErrorException";
|
|
158
|
-
$fault = "server";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "InternalServerErrorException",
|
|
162
|
-
$fault: "server",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class NotFoundException extends KafkaConnectServiceException {
|
|
169
|
-
name = "NotFoundException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "NotFoundException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ServiceUnavailableException extends KafkaConnectServiceException {
|
|
181
|
-
name = "ServiceUnavailableException";
|
|
182
|
-
$fault = "server";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "ServiceUnavailableException",
|
|
186
|
-
$fault: "server",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class TooManyRequestsException extends KafkaConnectServiceException {
|
|
193
|
-
name = "TooManyRequestsException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "TooManyRequestsException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class UnauthorizedException extends KafkaConnectServiceException {
|
|
205
|
-
name = "UnauthorizedException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "UnauthorizedException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
const _AKC = "ApacheKafkaCluster";
|
|
218
|
-
const _AKCD = "ApacheKafkaClusterDescription";
|
|
219
|
-
const _AS = "AutoScaling";
|
|
220
|
-
const _ASD = "AutoScalingDescription";
|
|
221
|
-
const _ASU = "AutoScalingUpdate";
|
|
222
|
-
const _BRE = "BadRequestException";
|
|
223
|
-
const _C = "Capacity";
|
|
224
|
-
const _CC = "ConnectorConfiguration";
|
|
225
|
-
const _CCP = "CreateCustomPlugin";
|
|
226
|
-
const _CCPR = "CreateCustomPluginRequest";
|
|
227
|
-
const _CCPRr = "CreateCustomPluginResponse";
|
|
228
|
-
const _CCR = "CreateConnectorRequest";
|
|
229
|
-
const _CCRr = "CreateConnectorResponse";
|
|
230
|
-
const _CCU = "ConnectorConfigurationUpdate";
|
|
231
|
-
const _CCr = "CreateConnector";
|
|
232
|
-
const _CD = "CapacityDescription";
|
|
233
|
-
const _CE = "ConflictException";
|
|
234
|
-
const _COS = "ConnectorOperationStep";
|
|
235
|
-
const _COSo = "ConnectorOperationSummary";
|
|
236
|
-
const _CP = "CustomPlugin";
|
|
237
|
-
const _CPD = "CustomPluginDescription";
|
|
238
|
-
const _CPFD = "CustomPluginFileDescription";
|
|
239
|
-
const _CPL = "CustomPluginLocation";
|
|
240
|
-
const _CPLD = "CustomPluginLocationDescription";
|
|
241
|
-
const _CPRS = "CustomPluginRevisionSummary";
|
|
242
|
-
const _CPS = "CustomPluginSummary";
|
|
243
|
-
const _CS = "ConnectorSummary";
|
|
244
|
-
const _CU = "CapacityUpdate";
|
|
245
|
-
const _CWC = "CreateWorkerConfiguration";
|
|
246
|
-
const _CWCR = "CreateWorkerConfigurationRequest";
|
|
247
|
-
const _CWCRr = "CreateWorkerConfigurationResponse";
|
|
248
|
-
const _CWLLD = "CloudWatchLogsLogDelivery";
|
|
249
|
-
const _CWLLDD = "CloudWatchLogsLogDeliveryDescription";
|
|
250
|
-
const _DC = "DeleteConnector";
|
|
251
|
-
const _DCO = "DescribeConnectorOperation";
|
|
252
|
-
const _DCOR = "DescribeConnectorOperationRequest";
|
|
253
|
-
const _DCORe = "DescribeConnectorOperationResponse";
|
|
254
|
-
const _DCP = "DeleteCustomPlugin";
|
|
255
|
-
const _DCPR = "DeleteCustomPluginRequest";
|
|
256
|
-
const _DCPRe = "DeleteCustomPluginResponse";
|
|
257
|
-
const _DCPRes = "DescribeCustomPluginRequest";
|
|
258
|
-
const _DCPResc = "DescribeCustomPluginResponse";
|
|
259
|
-
const _DCPe = "DescribeCustomPlugin";
|
|
260
|
-
const _DCR = "DeleteConnectorRequest";
|
|
261
|
-
const _DCRe = "DeleteConnectorResponse";
|
|
262
|
-
const _DCRes = "DescribeConnectorRequest";
|
|
263
|
-
const _DCResc = "DescribeConnectorResponse";
|
|
264
|
-
const _DCe = "DescribeConnector";
|
|
265
|
-
const _DWC = "DeleteWorkerConfiguration";
|
|
266
|
-
const _DWCR = "DeleteWorkerConfigurationRequest";
|
|
267
|
-
const _DWCRe = "DeleteWorkerConfigurationResponse";
|
|
268
|
-
const _DWCRes = "DescribeWorkerConfigurationRequest";
|
|
269
|
-
const _DWCResc = "DescribeWorkerConfigurationResponse";
|
|
270
|
-
const _DWCe = "DescribeWorkerConfiguration";
|
|
271
|
-
const _FE = "ForbiddenException";
|
|
272
|
-
const _FLD = "FirehoseLogDelivery";
|
|
273
|
-
const _FLDD = "FirehoseLogDeliveryDescription";
|
|
274
|
-
const _ISEE = "InternalServerErrorException";
|
|
275
|
-
const _KC = "KafkaCluster";
|
|
276
|
-
const _KCCA = "KafkaClusterClientAuthentication";
|
|
277
|
-
const _KCCAD = "KafkaClusterClientAuthenticationDescription";
|
|
278
|
-
const _KCD = "KafkaClusterDescription";
|
|
279
|
-
const _KCEIT = "KafkaClusterEncryptionInTransit";
|
|
280
|
-
const _KCEITD = "KafkaClusterEncryptionInTransitDescription";
|
|
281
|
-
const _LC = "ListConnectors";
|
|
282
|
-
const _LCO = "ListConnectorOperations";
|
|
283
|
-
const _LCOR = "ListConnectorOperationsRequest";
|
|
284
|
-
const _LCORi = "ListConnectorOperationsResponse";
|
|
285
|
-
const _LCP = "ListCustomPlugins";
|
|
286
|
-
const _LCPR = "ListCustomPluginsRequest";
|
|
287
|
-
const _LCPRi = "ListCustomPluginsResponse";
|
|
288
|
-
const _LCR = "ListConnectorsRequest";
|
|
289
|
-
const _LCRi = "ListConnectorsResponse";
|
|
290
|
-
const _LD = "LogDelivery";
|
|
291
|
-
const _LDD = "LogDeliveryDescription";
|
|
292
|
-
const _LTFR = "ListTagsForResource";
|
|
293
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
294
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
295
|
-
const _LWC = "ListWorkerConfigurations";
|
|
296
|
-
const _LWCR = "ListWorkerConfigurationsRequest";
|
|
297
|
-
const _LWCRi = "ListWorkerConfigurationsResponse";
|
|
298
|
-
const _NFE = "NotFoundException";
|
|
299
|
-
const _P = "Plugin";
|
|
300
|
-
const _PC = "ProvisionedCapacity";
|
|
301
|
-
const _PCD = "ProvisionedCapacityDescription";
|
|
302
|
-
const _PCU = "ProvisionedCapacityUpdate";
|
|
303
|
-
const _PD = "PluginDescription";
|
|
304
|
-
const _SD = "StateDescription";
|
|
305
|
-
const _SIP = "ScaleInPolicy";
|
|
306
|
-
const _SIPD = "ScaleInPolicyDescription";
|
|
307
|
-
const _SIPU = "ScaleInPolicyUpdate";
|
|
308
|
-
const _SL = "S3Location";
|
|
309
|
-
const _SLD = "S3LocationDescription";
|
|
310
|
-
const _SLDD = "S3LogDeliveryDescription";
|
|
311
|
-
const _SLDo = "S3LogDelivery";
|
|
312
|
-
const _SOP = "ScaleOutPolicy";
|
|
313
|
-
const _SOPD = "ScaleOutPolicyDescription";
|
|
314
|
-
const _SOPU = "ScaleOutPolicyUpdate";
|
|
315
|
-
const _SUE = "ServiceUnavailableException";
|
|
316
|
-
const _TMRE = "TooManyRequestsException";
|
|
317
|
-
const _TR = "TagResource";
|
|
318
|
-
const _TRR = "TagResourceRequest";
|
|
319
|
-
const _TRRa = "TagResourceResponse";
|
|
320
|
-
const _UC = "UpdateConnector";
|
|
321
|
-
const _UCR = "UpdateConnectorRequest";
|
|
322
|
-
const _UCRp = "UpdateConnectorResponse";
|
|
323
|
-
const _UE = "UnauthorizedException";
|
|
324
|
-
const _UR = "UntagResource";
|
|
325
|
-
const _URR = "UntagResourceRequest";
|
|
326
|
-
const _URRn = "UntagResourceResponse";
|
|
327
|
-
const _V = "Vpc";
|
|
328
|
-
const _VD = "VpcDescription";
|
|
329
|
-
const _WC = "WorkerConfiguration";
|
|
330
|
-
const _WCD = "WorkerConfigurationDescription";
|
|
331
|
-
const _WCRD = "WorkerConfigurationRevisionDescription";
|
|
332
|
-
const _WCRS = "WorkerConfigurationRevisionSummary";
|
|
333
|
-
const _WCS = "WorkerConfigurationSummary";
|
|
334
|
-
const _WLD = "WorkerLogDelivery";
|
|
335
|
-
const _WLDD = "WorkerLogDeliveryDescription";
|
|
336
|
-
const _WS = "WorkerSetting";
|
|
337
|
-
const _aKC = "apacheKafkaCluster";
|
|
338
|
-
const _aS = "autoScaling";
|
|
339
|
-
const _aT = "authenticationType";
|
|
340
|
-
const _b = "bucket";
|
|
341
|
-
const _bA = "bucketArn";
|
|
342
|
-
const _bS = "bootstrapServers";
|
|
343
|
-
const _c = "client";
|
|
344
|
-
const _cA = "connectorArn";
|
|
345
|
-
const _cC = "connectorConfiguration";
|
|
346
|
-
const _cD = "connectorDescription";
|
|
347
|
-
const _cN = "connectorName";
|
|
348
|
-
const _cNP = "connectorNamePrefix";
|
|
349
|
-
const _cO = "connectorOperations";
|
|
350
|
-
const _cOA = "connectorOperationArn";
|
|
351
|
-
const _cOS = "connectorOperationState";
|
|
352
|
-
const _cOT = "connectorOperationType";
|
|
353
|
-
const _cP = "customPlugins";
|
|
354
|
-
const _cPA = "customPluginArn";
|
|
355
|
-
const _cPS = "customPluginState";
|
|
356
|
-
const _cPu = "customPlugin";
|
|
357
|
-
const _cS = "connectorState";
|
|
358
|
-
const _cT = "creationTime";
|
|
359
|
-
const _cTo = "contentType";
|
|
360
|
-
const _cUP = "cpuUtilizationPercentage";
|
|
361
|
-
const _cV = "currentVersion";
|
|
362
|
-
const _cWL = "cloudWatchLogs";
|
|
363
|
-
const _ca = "capacity";
|
|
364
|
-
const _co = "connectors";
|
|
365
|
-
const _cod = "code";
|
|
366
|
-
const _d = "description";
|
|
367
|
-
const _dS = "deliveryStream";
|
|
368
|
-
const _e = "error";
|
|
369
|
-
const _eI = "errorInfo";
|
|
370
|
-
const _eT = "endTime";
|
|
371
|
-
const _eTn = "encryptionType";
|
|
372
|
-
const _en = "enabled";
|
|
373
|
-
const _f = "firehose";
|
|
374
|
-
const _fD = "fileDescription";
|
|
375
|
-
const _fK = "fileKey";
|
|
376
|
-
const _fM = "fileMd5";
|
|
377
|
-
const _fS = "fileSize";
|
|
378
|
-
const _h = "http";
|
|
379
|
-
const _hE = "httpError";
|
|
380
|
-
const _hQ = "httpQuery";
|
|
381
|
-
const _kC = "kafkaCluster";
|
|
382
|
-
const _kCCA = "kafkaClusterClientAuthentication";
|
|
383
|
-
const _kCEIT = "kafkaClusterEncryptionInTransit";
|
|
384
|
-
const _kCV = "kafkaConnectVersion";
|
|
385
|
-
const _l = "location";
|
|
386
|
-
const _lD = "logDelivery";
|
|
387
|
-
const _lG = "logGroup";
|
|
388
|
-
const _lOCOS = "__listOfConnectorOperationStep";
|
|
389
|
-
const _lOCOSi = "__listOfConnectorOperationSummary";
|
|
390
|
-
const _lOCPS = "__listOfCustomPluginSummary";
|
|
391
|
-
const _lOCS = "__listOfConnectorSummary";
|
|
392
|
-
const _lOP = "__listOfPlugin";
|
|
393
|
-
const _lOPD = "__listOfPluginDescription";
|
|
394
|
-
const _lOWCS = "__listOfWorkerConfigurationSummary";
|
|
395
|
-
const _lR = "latestRevision";
|
|
396
|
-
const _m = "message";
|
|
397
|
-
const _mC = "mcuCount";
|
|
398
|
-
const _mR = "maxResults";
|
|
399
|
-
const _mWC = "maxWorkerCount";
|
|
400
|
-
const _mWCi = "minWorkerCount";
|
|
401
|
-
const _n = "name";
|
|
402
|
-
const _nP = "namePrefix";
|
|
403
|
-
const _nT = "networkType";
|
|
404
|
-
const _nTe = "nextToken";
|
|
405
|
-
const _oCC = "originConnectorConfiguration";
|
|
406
|
-
const _oS = "operationSteps";
|
|
407
|
-
const _oV = "objectVersion";
|
|
408
|
-
const _oWS = "originWorkerSetting";
|
|
409
|
-
const _p = "plugins";
|
|
410
|
-
const _pC = "provisionedCapacity";
|
|
411
|
-
const _pFC = "propertiesFileContent";
|
|
412
|
-
const _pr = "prefix";
|
|
413
|
-
const _r = "revision";
|
|
414
|
-
const _rA = "resourceArn";
|
|
415
|
-
const _s = "server";
|
|
416
|
-
const _sD = "stateDescription";
|
|
417
|
-
const _sERA = "serviceExecutionRoleArn";
|
|
418
|
-
const _sG = "securityGroups";
|
|
419
|
-
const _sIP = "scaleInPolicy";
|
|
420
|
-
const _sL = "s3Location";
|
|
421
|
-
const _sOP = "scaleOutPolicy";
|
|
422
|
-
const _sS = "__sensitiveString";
|
|
423
|
-
const _sSt = "stepState";
|
|
424
|
-
const _sT = "stepType";
|
|
425
|
-
const _s_ = "s3";
|
|
426
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kafkaconnect";
|
|
427
|
-
const _su = "subnets";
|
|
428
|
-
const _t = "tags";
|
|
429
|
-
const _tCC = "targetConnectorConfiguration";
|
|
430
|
-
const _tK = "tagKeys";
|
|
431
|
-
const _tWS = "targetWorkerSetting";
|
|
432
|
-
const _v = "vpc";
|
|
433
|
-
const _wC = "workerConfiguration";
|
|
434
|
-
const _wCA = "workerConfigurationArn";
|
|
435
|
-
const _wCS = "workerConfigurationState";
|
|
436
|
-
const _wCo = "workerConfigurations";
|
|
437
|
-
const _wCor = "workerCount";
|
|
438
|
-
const _wLD = "workerLogDelivery";
|
|
439
|
-
const n0 = "com.amazonaws.kafkaconnect";
|
|
440
|
-
var __sensitiveString = [0, n0, _sS, 8, 0];
|
|
441
|
-
var ApacheKafkaCluster$ = [3, n0, _AKC,
|
|
442
|
-
0,
|
|
443
|
-
[_bS, _v],
|
|
444
|
-
[0, () => Vpc$], 2
|
|
445
|
-
];
|
|
446
|
-
var ApacheKafkaClusterDescription$ = [3, n0, _AKCD,
|
|
447
|
-
0,
|
|
448
|
-
[_bS, _v],
|
|
449
|
-
[0, () => VpcDescription$]
|
|
450
|
-
];
|
|
451
|
-
var AutoScaling$ = [3, n0, _AS,
|
|
452
|
-
0,
|
|
453
|
-
[_mWC, _mC, _mWCi, _sIP, _sOP],
|
|
454
|
-
[1, 1, 1, () => ScaleInPolicy$, () => ScaleOutPolicy$], 3
|
|
455
|
-
];
|
|
456
|
-
var AutoScalingDescription$ = [3, n0, _ASD,
|
|
457
|
-
0,
|
|
458
|
-
[_mWC, _mC, _mWCi, _sIP, _sOP],
|
|
459
|
-
[1, 1, 1, () => ScaleInPolicyDescription$, () => ScaleOutPolicyDescription$]
|
|
460
|
-
];
|
|
461
|
-
var AutoScalingUpdate$ = [3, n0, _ASU,
|
|
462
|
-
0,
|
|
463
|
-
[_mWC, _mC, _mWCi, _sIP, _sOP],
|
|
464
|
-
[1, 1, 1, () => ScaleInPolicyUpdate$, () => ScaleOutPolicyUpdate$], 5
|
|
465
|
-
];
|
|
466
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
467
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
468
|
-
[_m],
|
|
469
|
-
[0]
|
|
470
|
-
];
|
|
471
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
472
|
-
var Capacity$ = [3, n0, _C,
|
|
473
|
-
0,
|
|
474
|
-
[_aS, _pC],
|
|
475
|
-
[() => AutoScaling$, () => ProvisionedCapacity$]
|
|
476
|
-
];
|
|
477
|
-
var CapacityDescription$ = [3, n0, _CD,
|
|
478
|
-
0,
|
|
479
|
-
[_aS, _pC],
|
|
480
|
-
[() => AutoScalingDescription$, () => ProvisionedCapacityDescription$]
|
|
481
|
-
];
|
|
482
|
-
var CapacityUpdate$ = [3, n0, _CU,
|
|
483
|
-
0,
|
|
484
|
-
[_aS, _pC],
|
|
485
|
-
[() => AutoScalingUpdate$, () => ProvisionedCapacityUpdate$]
|
|
486
|
-
];
|
|
487
|
-
var CloudWatchLogsLogDelivery$ = [3, n0, _CWLLD,
|
|
488
|
-
0,
|
|
489
|
-
[_en, _lG],
|
|
490
|
-
[2, 0], 1
|
|
491
|
-
];
|
|
492
|
-
var CloudWatchLogsLogDeliveryDescription$ = [3, n0, _CWLLDD,
|
|
493
|
-
0,
|
|
494
|
-
[_en, _lG],
|
|
495
|
-
[2, 0]
|
|
496
|
-
];
|
|
497
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
498
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
499
|
-
[_m],
|
|
500
|
-
[0]
|
|
501
|
-
];
|
|
502
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
503
|
-
var ConnectorOperationStep$ = [3, n0, _COS,
|
|
504
|
-
0,
|
|
505
|
-
[_sT, _sSt],
|
|
506
|
-
[0, 0]
|
|
507
|
-
];
|
|
508
|
-
var ConnectorOperationSummary$ = [3, n0, _COSo,
|
|
509
|
-
0,
|
|
510
|
-
[_cOA, _cOT, _cOS, _cT, _eT],
|
|
511
|
-
[0, 0, 0, 5, 5]
|
|
512
|
-
];
|
|
513
|
-
var ConnectorSummary$ = [3, n0, _CS,
|
|
514
|
-
0,
|
|
515
|
-
[_ca, _cA, _cD, _cN, _cS, _cT, _cV, _kC, _kCCA, _kCEIT, _kCV, _lD, _nT, _p, _sERA, _wC],
|
|
516
|
-
[() => CapacityDescription$, 0, 0, 0, 0, 5, 0, () => KafkaClusterDescription$, () => KafkaClusterClientAuthenticationDescription$, () => KafkaClusterEncryptionInTransitDescription$, 0, () => LogDeliveryDescription$, 0, () => __listOfPluginDescription, 0, () => WorkerConfigurationDescription$]
|
|
517
|
-
];
|
|
518
|
-
var CreateConnectorRequest$ = [3, n0, _CCR,
|
|
519
|
-
0,
|
|
520
|
-
[_ca, _cC, _cN, _kC, _kCCA, _kCEIT, _kCV, _p, _sERA, _cD, _lD, _nT, _wC, _t],
|
|
521
|
-
[() => Capacity$, [() => ConnectorConfiguration, 0], 0, () => KafkaCluster$, () => KafkaClusterClientAuthentication$, () => KafkaClusterEncryptionInTransit$, 0, () => __listOfPlugin, 0, 0, () => LogDelivery$, 0, () => WorkerConfiguration$, 128 | 0], 9
|
|
522
|
-
];
|
|
523
|
-
var CreateConnectorResponse$ = [3, n0, _CCRr,
|
|
524
|
-
0,
|
|
525
|
-
[_cA, _cN, _cS],
|
|
526
|
-
[0, 0, 0]
|
|
527
|
-
];
|
|
528
|
-
var CreateCustomPluginRequest$ = [3, n0, _CCPR,
|
|
529
|
-
0,
|
|
530
|
-
[_cTo, _l, _n, _d, _t],
|
|
531
|
-
[0, () => CustomPluginLocation$, 0, 0, 128 | 0], 3
|
|
532
|
-
];
|
|
533
|
-
var CreateCustomPluginResponse$ = [3, n0, _CCPRr,
|
|
534
|
-
0,
|
|
535
|
-
[_cPA, _cPS, _n, _r],
|
|
536
|
-
[0, 0, 0, 1]
|
|
537
|
-
];
|
|
538
|
-
var CreateWorkerConfigurationRequest$ = [3, n0, _CWCR,
|
|
539
|
-
0,
|
|
540
|
-
[_n, _pFC, _d, _t],
|
|
541
|
-
[0, [() => __sensitiveString, 0], 0, 128 | 0], 2
|
|
542
|
-
];
|
|
543
|
-
var CreateWorkerConfigurationResponse$ = [3, n0, _CWCRr,
|
|
544
|
-
0,
|
|
545
|
-
[_cT, _lR, _n, _wCA, _wCS],
|
|
546
|
-
[5, () => WorkerConfigurationRevisionSummary$, 0, 0, 0]
|
|
547
|
-
];
|
|
548
|
-
var CustomPlugin$ = [3, n0, _CP,
|
|
549
|
-
0,
|
|
550
|
-
[_cPA, _r],
|
|
551
|
-
[0, 1], 2
|
|
552
|
-
];
|
|
553
|
-
var CustomPluginDescription$ = [3, n0, _CPD,
|
|
554
|
-
0,
|
|
555
|
-
[_cPA, _r],
|
|
556
|
-
[0, 1]
|
|
557
|
-
];
|
|
558
|
-
var CustomPluginFileDescription$ = [3, n0, _CPFD,
|
|
559
|
-
0,
|
|
560
|
-
[_fM, _fS],
|
|
561
|
-
[0, 1]
|
|
562
|
-
];
|
|
563
|
-
var CustomPluginLocation$ = [3, n0, _CPL,
|
|
564
|
-
0,
|
|
565
|
-
[_sL],
|
|
566
|
-
[() => S3Location$], 1
|
|
567
|
-
];
|
|
568
|
-
var CustomPluginLocationDescription$ = [3, n0, _CPLD,
|
|
569
|
-
0,
|
|
570
|
-
[_sL],
|
|
571
|
-
[() => S3LocationDescription$]
|
|
572
|
-
];
|
|
573
|
-
var CustomPluginRevisionSummary$ = [3, n0, _CPRS,
|
|
574
|
-
0,
|
|
575
|
-
[_cTo, _cT, _d, _fD, _l, _r],
|
|
576
|
-
[0, 5, 0, () => CustomPluginFileDescription$, () => CustomPluginLocationDescription$, 1]
|
|
577
|
-
];
|
|
578
|
-
var CustomPluginSummary$ = [3, n0, _CPS,
|
|
579
|
-
0,
|
|
580
|
-
[_cT, _cPA, _cPS, _d, _lR, _n],
|
|
581
|
-
[5, 0, 0, 0, () => CustomPluginRevisionSummary$, 0]
|
|
582
|
-
];
|
|
583
|
-
var DeleteConnectorRequest$ = [3, n0, _DCR,
|
|
584
|
-
0,
|
|
585
|
-
[_cA, _cV],
|
|
586
|
-
[[0, 1], [0, { [_hQ]: _cV }]], 1
|
|
587
|
-
];
|
|
588
|
-
var DeleteConnectorResponse$ = [3, n0, _DCRe,
|
|
589
|
-
0,
|
|
590
|
-
[_cA, _cS],
|
|
591
|
-
[0, 0]
|
|
592
|
-
];
|
|
593
|
-
var DeleteCustomPluginRequest$ = [3, n0, _DCPR,
|
|
594
|
-
0,
|
|
595
|
-
[_cPA],
|
|
596
|
-
[[0, 1]], 1
|
|
597
|
-
];
|
|
598
|
-
var DeleteCustomPluginResponse$ = [3, n0, _DCPRe,
|
|
599
|
-
0,
|
|
600
|
-
[_cPA, _cPS],
|
|
601
|
-
[0, 0]
|
|
602
|
-
];
|
|
603
|
-
var DeleteWorkerConfigurationRequest$ = [3, n0, _DWCR,
|
|
604
|
-
0,
|
|
605
|
-
[_wCA],
|
|
606
|
-
[[0, 1]], 1
|
|
607
|
-
];
|
|
608
|
-
var DeleteWorkerConfigurationResponse$ = [3, n0, _DWCRe,
|
|
609
|
-
0,
|
|
610
|
-
[_wCA, _wCS],
|
|
611
|
-
[0, 0]
|
|
612
|
-
];
|
|
613
|
-
var DescribeConnectorOperationRequest$ = [3, n0, _DCOR,
|
|
614
|
-
0,
|
|
615
|
-
[_cOA],
|
|
616
|
-
[[0, 1]], 1
|
|
617
|
-
];
|
|
618
|
-
var DescribeConnectorOperationResponse$ = [3, n0, _DCORe,
|
|
619
|
-
0,
|
|
620
|
-
[_cA, _cOA, _cOS, _cOT, _oS, _oWS, _oCC, _tWS, _tCC, _eI, _cT, _eT],
|
|
621
|
-
[0, 0, 0, 0, () => __listOfConnectorOperationStep, () => WorkerSetting$, [() => ConnectorConfiguration, 0], () => WorkerSetting$, [() => ConnectorConfiguration, 0], () => StateDescription$, 5, 5]
|
|
622
|
-
];
|
|
623
|
-
var DescribeConnectorRequest$ = [3, n0, _DCRes,
|
|
624
|
-
0,
|
|
625
|
-
[_cA],
|
|
626
|
-
[[0, 1]], 1
|
|
627
|
-
];
|
|
628
|
-
var DescribeConnectorResponse$ = [3, n0, _DCResc,
|
|
629
|
-
0,
|
|
630
|
-
[_ca, _cA, _cC, _cD, _cN, _cS, _cT, _cV, _kC, _kCCA, _kCEIT, _kCV, _lD, _nT, _p, _sERA, _wC, _sD],
|
|
631
|
-
[() => CapacityDescription$, 0, [() => ConnectorConfiguration, 0], 0, 0, 0, 5, 0, () => KafkaClusterDescription$, () => KafkaClusterClientAuthenticationDescription$, () => KafkaClusterEncryptionInTransitDescription$, 0, () => LogDeliveryDescription$, 0, () => __listOfPluginDescription, 0, () => WorkerConfigurationDescription$, () => StateDescription$]
|
|
632
|
-
];
|
|
633
|
-
var DescribeCustomPluginRequest$ = [3, n0, _DCPRes,
|
|
634
|
-
0,
|
|
635
|
-
[_cPA],
|
|
636
|
-
[[0, 1]], 1
|
|
637
|
-
];
|
|
638
|
-
var DescribeCustomPluginResponse$ = [3, n0, _DCPResc,
|
|
639
|
-
0,
|
|
640
|
-
[_cT, _cPA, _cPS, _d, _lR, _n, _sD],
|
|
641
|
-
[5, 0, 0, 0, () => CustomPluginRevisionSummary$, 0, () => StateDescription$]
|
|
642
|
-
];
|
|
643
|
-
var DescribeWorkerConfigurationRequest$ = [3, n0, _DWCRes,
|
|
644
|
-
0,
|
|
645
|
-
[_wCA],
|
|
646
|
-
[[0, 1]], 1
|
|
647
|
-
];
|
|
648
|
-
var DescribeWorkerConfigurationResponse$ = [3, n0, _DWCResc,
|
|
649
|
-
0,
|
|
650
|
-
[_cT, _d, _lR, _n, _wCA, _wCS],
|
|
651
|
-
[5, 0, [() => WorkerConfigurationRevisionDescription$, 0], 0, 0, 0]
|
|
652
|
-
];
|
|
653
|
-
var FirehoseLogDelivery$ = [3, n0, _FLD,
|
|
654
|
-
0,
|
|
655
|
-
[_en, _dS],
|
|
656
|
-
[2, 0], 1
|
|
657
|
-
];
|
|
658
|
-
var FirehoseLogDeliveryDescription$ = [3, n0, _FLDD,
|
|
659
|
-
0,
|
|
660
|
-
[_dS, _en],
|
|
661
|
-
[0, 2]
|
|
662
|
-
];
|
|
663
|
-
var ForbiddenException$ = [-3, n0, _FE,
|
|
664
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
665
|
-
[_m],
|
|
666
|
-
[0]
|
|
667
|
-
];
|
|
668
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
669
|
-
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
670
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
671
|
-
[_m],
|
|
672
|
-
[0]
|
|
673
|
-
];
|
|
674
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
675
|
-
var KafkaCluster$ = [3, n0, _KC,
|
|
676
|
-
0,
|
|
677
|
-
[_aKC],
|
|
678
|
-
[() => ApacheKafkaCluster$], 1
|
|
679
|
-
];
|
|
680
|
-
var KafkaClusterClientAuthentication$ = [3, n0, _KCCA,
|
|
681
|
-
0,
|
|
682
|
-
[_aT],
|
|
683
|
-
[0], 1
|
|
684
|
-
];
|
|
685
|
-
var KafkaClusterClientAuthenticationDescription$ = [3, n0, _KCCAD,
|
|
686
|
-
0,
|
|
687
|
-
[_aT],
|
|
688
|
-
[0]
|
|
689
|
-
];
|
|
690
|
-
var KafkaClusterDescription$ = [3, n0, _KCD,
|
|
691
|
-
0,
|
|
692
|
-
[_aKC],
|
|
693
|
-
[() => ApacheKafkaClusterDescription$]
|
|
694
|
-
];
|
|
695
|
-
var KafkaClusterEncryptionInTransit$ = [3, n0, _KCEIT,
|
|
696
|
-
0,
|
|
697
|
-
[_eTn],
|
|
698
|
-
[0], 1
|
|
699
|
-
];
|
|
700
|
-
var KafkaClusterEncryptionInTransitDescription$ = [3, n0, _KCEITD,
|
|
701
|
-
0,
|
|
702
|
-
[_eTn],
|
|
703
|
-
[0]
|
|
704
|
-
];
|
|
705
|
-
var ListConnectorOperationsRequest$ = [3, n0, _LCOR,
|
|
706
|
-
0,
|
|
707
|
-
[_cA, _mR, _nTe],
|
|
708
|
-
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
709
|
-
];
|
|
710
|
-
var ListConnectorOperationsResponse$ = [3, n0, _LCORi,
|
|
711
|
-
0,
|
|
712
|
-
[_cO, _nTe],
|
|
713
|
-
[() => __listOfConnectorOperationSummary, 0]
|
|
714
|
-
];
|
|
715
|
-
var ListConnectorsRequest$ = [3, n0, _LCR,
|
|
716
|
-
0,
|
|
717
|
-
[_cNP, _mR, _nTe],
|
|
718
|
-
[[0, { [_hQ]: _cNP }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]]
|
|
719
|
-
];
|
|
720
|
-
var ListConnectorsResponse$ = [3, n0, _LCRi,
|
|
721
|
-
0,
|
|
722
|
-
[_co, _nTe],
|
|
723
|
-
[() => __listOfConnectorSummary, 0]
|
|
724
|
-
];
|
|
725
|
-
var ListCustomPluginsRequest$ = [3, n0, _LCPR,
|
|
726
|
-
0,
|
|
727
|
-
[_mR, _nTe, _nP],
|
|
728
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _nP }]]
|
|
729
|
-
];
|
|
730
|
-
var ListCustomPluginsResponse$ = [3, n0, _LCPRi,
|
|
731
|
-
0,
|
|
732
|
-
[_cP, _nTe],
|
|
733
|
-
[() => __listOfCustomPluginSummary, 0]
|
|
734
|
-
];
|
|
735
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
736
|
-
0,
|
|
737
|
-
[_rA],
|
|
738
|
-
[[0, 1]], 1
|
|
739
|
-
];
|
|
740
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
741
|
-
0,
|
|
742
|
-
[_t],
|
|
743
|
-
[128 | 0]
|
|
744
|
-
];
|
|
745
|
-
var ListWorkerConfigurationsRequest$ = [3, n0, _LWCR,
|
|
746
|
-
0,
|
|
747
|
-
[_mR, _nTe, _nP],
|
|
748
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _nP }]]
|
|
749
|
-
];
|
|
750
|
-
var ListWorkerConfigurationsResponse$ = [3, n0, _LWCRi,
|
|
751
|
-
0,
|
|
752
|
-
[_nTe, _wCo],
|
|
753
|
-
[0, () => __listOfWorkerConfigurationSummary]
|
|
754
|
-
];
|
|
755
|
-
var LogDelivery$ = [3, n0, _LD,
|
|
756
|
-
0,
|
|
757
|
-
[_wLD],
|
|
758
|
-
[() => WorkerLogDelivery$], 1
|
|
759
|
-
];
|
|
760
|
-
var LogDeliveryDescription$ = [3, n0, _LDD,
|
|
761
|
-
0,
|
|
762
|
-
[_wLD],
|
|
763
|
-
[() => WorkerLogDeliveryDescription$]
|
|
764
|
-
];
|
|
765
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
766
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
767
|
-
[_m],
|
|
768
|
-
[0]
|
|
769
|
-
];
|
|
770
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
771
|
-
var Plugin$ = [3, n0, _P,
|
|
772
|
-
0,
|
|
773
|
-
[_cPu],
|
|
774
|
-
[() => CustomPlugin$], 1
|
|
775
|
-
];
|
|
776
|
-
var PluginDescription$ = [3, n0, _PD,
|
|
777
|
-
0,
|
|
778
|
-
[_cPu],
|
|
779
|
-
[() => CustomPluginDescription$]
|
|
780
|
-
];
|
|
781
|
-
var ProvisionedCapacity$ = [3, n0, _PC,
|
|
782
|
-
0,
|
|
783
|
-
[_mC, _wCor],
|
|
784
|
-
[1, 1], 2
|
|
785
|
-
];
|
|
786
|
-
var ProvisionedCapacityDescription$ = [3, n0, _PCD,
|
|
787
|
-
0,
|
|
788
|
-
[_mC, _wCor],
|
|
789
|
-
[1, 1]
|
|
790
|
-
];
|
|
791
|
-
var ProvisionedCapacityUpdate$ = [3, n0, _PCU,
|
|
792
|
-
0,
|
|
793
|
-
[_mC, _wCor],
|
|
794
|
-
[1, 1], 2
|
|
795
|
-
];
|
|
796
|
-
var S3Location$ = [3, n0, _SL,
|
|
797
|
-
0,
|
|
798
|
-
[_bA, _fK, _oV],
|
|
799
|
-
[0, 0, 0], 2
|
|
800
|
-
];
|
|
801
|
-
var S3LocationDescription$ = [3, n0, _SLD,
|
|
802
|
-
0,
|
|
803
|
-
[_bA, _fK, _oV],
|
|
804
|
-
[0, 0, 0]
|
|
805
|
-
];
|
|
806
|
-
var S3LogDelivery$ = [3, n0, _SLDo,
|
|
807
|
-
0,
|
|
808
|
-
[_en, _b, _pr],
|
|
809
|
-
[2, 0, 0], 1
|
|
810
|
-
];
|
|
811
|
-
var S3LogDeliveryDescription$ = [3, n0, _SLDD,
|
|
812
|
-
0,
|
|
813
|
-
[_b, _en, _pr],
|
|
814
|
-
[0, 2, 0]
|
|
815
|
-
];
|
|
816
|
-
var ScaleInPolicy$ = [3, n0, _SIP,
|
|
817
|
-
0,
|
|
818
|
-
[_cUP],
|
|
819
|
-
[1], 1
|
|
820
|
-
];
|
|
821
|
-
var ScaleInPolicyDescription$ = [3, n0, _SIPD,
|
|
822
|
-
0,
|
|
823
|
-
[_cUP],
|
|
824
|
-
[1]
|
|
825
|
-
];
|
|
826
|
-
var ScaleInPolicyUpdate$ = [3, n0, _SIPU,
|
|
827
|
-
0,
|
|
828
|
-
[_cUP],
|
|
829
|
-
[1], 1
|
|
830
|
-
];
|
|
831
|
-
var ScaleOutPolicy$ = [3, n0, _SOP,
|
|
832
|
-
0,
|
|
833
|
-
[_cUP],
|
|
834
|
-
[1], 1
|
|
835
|
-
];
|
|
836
|
-
var ScaleOutPolicyDescription$ = [3, n0, _SOPD,
|
|
837
|
-
0,
|
|
838
|
-
[_cUP],
|
|
839
|
-
[1]
|
|
840
|
-
];
|
|
841
|
-
var ScaleOutPolicyUpdate$ = [3, n0, _SOPU,
|
|
842
|
-
0,
|
|
843
|
-
[_cUP],
|
|
844
|
-
[1], 1
|
|
845
|
-
];
|
|
846
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
847
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
848
|
-
[_m],
|
|
849
|
-
[0]
|
|
850
|
-
];
|
|
851
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
852
|
-
var StateDescription$ = [3, n0, _SD,
|
|
853
|
-
0,
|
|
854
|
-
[_cod, _m],
|
|
855
|
-
[0, 0]
|
|
856
|
-
];
|
|
857
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
858
|
-
0,
|
|
859
|
-
[_rA, _t],
|
|
860
|
-
[[0, 1], 128 | 0], 2
|
|
861
|
-
];
|
|
862
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
863
|
-
0,
|
|
864
|
-
[],
|
|
865
|
-
[]
|
|
866
|
-
];
|
|
867
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
868
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
869
|
-
[_m],
|
|
870
|
-
[0]
|
|
871
|
-
];
|
|
872
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
873
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
874
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
875
|
-
[_m],
|
|
876
|
-
[0]
|
|
877
|
-
];
|
|
878
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
879
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
880
|
-
0,
|
|
881
|
-
[_rA, _tK],
|
|
882
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
883
|
-
];
|
|
884
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
885
|
-
0,
|
|
886
|
-
[],
|
|
887
|
-
[]
|
|
888
|
-
];
|
|
889
|
-
var UpdateConnectorRequest$ = [3, n0, _UCR,
|
|
890
|
-
0,
|
|
891
|
-
[_cA, _cV, _ca, _cC],
|
|
892
|
-
[[0, 1], [0, { [_hQ]: _cV }], () => CapacityUpdate$, [() => ConnectorConfigurationUpdate, 0]], 2
|
|
893
|
-
];
|
|
894
|
-
var UpdateConnectorResponse$ = [3, n0, _UCRp,
|
|
895
|
-
0,
|
|
896
|
-
[_cA, _cS, _cOA],
|
|
897
|
-
[0, 0, 0]
|
|
898
|
-
];
|
|
899
|
-
var Vpc$ = [3, n0, _V,
|
|
900
|
-
0,
|
|
901
|
-
[_su, _sG],
|
|
902
|
-
[64 | 0, 64 | 0], 1
|
|
903
|
-
];
|
|
904
|
-
var VpcDescription$ = [3, n0, _VD,
|
|
905
|
-
0,
|
|
906
|
-
[_sG, _su],
|
|
907
|
-
[64 | 0, 64 | 0]
|
|
908
|
-
];
|
|
909
|
-
var WorkerConfiguration$ = [3, n0, _WC,
|
|
910
|
-
0,
|
|
911
|
-
[_r, _wCA],
|
|
912
|
-
[1, 0], 2
|
|
913
|
-
];
|
|
914
|
-
var WorkerConfigurationDescription$ = [3, n0, _WCD,
|
|
915
|
-
0,
|
|
916
|
-
[_r, _wCA],
|
|
917
|
-
[1, 0]
|
|
918
|
-
];
|
|
919
|
-
var WorkerConfigurationRevisionDescription$ = [3, n0, _WCRD,
|
|
920
|
-
0,
|
|
921
|
-
[_cT, _d, _pFC, _r],
|
|
922
|
-
[5, 0, [() => __sensitiveString, 0], 1]
|
|
923
|
-
];
|
|
924
|
-
var WorkerConfigurationRevisionSummary$ = [3, n0, _WCRS,
|
|
925
|
-
0,
|
|
926
|
-
[_cT, _d, _r],
|
|
927
|
-
[5, 0, 1]
|
|
928
|
-
];
|
|
929
|
-
var WorkerConfigurationSummary$ = [3, n0, _WCS,
|
|
930
|
-
0,
|
|
931
|
-
[_cT, _d, _lR, _n, _wCA, _wCS],
|
|
932
|
-
[5, 0, () => WorkerConfigurationRevisionSummary$, 0, 0, 0]
|
|
933
|
-
];
|
|
934
|
-
var WorkerLogDelivery$ = [3, n0, _WLD,
|
|
935
|
-
0,
|
|
936
|
-
[_cWL, _f, _s_],
|
|
937
|
-
[() => CloudWatchLogsLogDelivery$, () => FirehoseLogDelivery$, () => S3LogDelivery$]
|
|
938
|
-
];
|
|
939
|
-
var WorkerLogDeliveryDescription$ = [3, n0, _WLDD,
|
|
940
|
-
0,
|
|
941
|
-
[_cWL, _f, _s_],
|
|
942
|
-
[() => CloudWatchLogsLogDeliveryDescription$, () => FirehoseLogDeliveryDescription$, () => S3LogDeliveryDescription$]
|
|
943
|
-
];
|
|
944
|
-
var WorkerSetting$ = [3, n0, _WS,
|
|
945
|
-
0,
|
|
946
|
-
[_ca],
|
|
947
|
-
[() => CapacityDescription$]
|
|
948
|
-
];
|
|
949
|
-
var KafkaConnectServiceException$ = [-3, _sm, "KafkaConnectServiceException", 0, [], []];
|
|
950
|
-
schema.TypeRegistry.for(_sm).registerError(KafkaConnectServiceException$, KafkaConnectServiceException);
|
|
951
|
-
var __listOfConnectorOperationStep = [1, n0, _lOCOS,
|
|
952
|
-
0, () => ConnectorOperationStep$
|
|
953
|
-
];
|
|
954
|
-
var __listOfConnectorOperationSummary = [1, n0, _lOCOSi,
|
|
955
|
-
0, () => ConnectorOperationSummary$
|
|
956
|
-
];
|
|
957
|
-
var __listOfConnectorSummary = [1, n0, _lOCS,
|
|
958
|
-
0, () => ConnectorSummary$
|
|
959
|
-
];
|
|
960
|
-
var __listOfCustomPluginSummary = [1, n0, _lOCPS,
|
|
961
|
-
0, () => CustomPluginSummary$
|
|
962
|
-
];
|
|
963
|
-
var __listOfPlugin = [1, n0, _lOP,
|
|
964
|
-
0, () => Plugin$
|
|
965
|
-
];
|
|
966
|
-
var __listOfPluginDescription = [1, n0, _lOPD,
|
|
967
|
-
0, () => PluginDescription$
|
|
968
|
-
];
|
|
969
|
-
var __listOfWorkerConfigurationSummary = [1, n0, _lOWCS,
|
|
970
|
-
0, () => WorkerConfigurationSummary$
|
|
971
|
-
];
|
|
972
|
-
var ConnectorConfiguration = [2, n0, _CC,
|
|
973
|
-
8, 0, 0
|
|
974
|
-
];
|
|
975
|
-
var ConnectorConfigurationUpdate = [2, n0, _CCU,
|
|
976
|
-
8, 0, 0
|
|
977
|
-
];
|
|
978
|
-
var CreateConnector$ = [9, n0, _CCr,
|
|
979
|
-
{ [_h]: ["POST", "/v1/connectors", 200] }, () => CreateConnectorRequest$, () => CreateConnectorResponse$
|
|
980
|
-
];
|
|
981
|
-
var CreateCustomPlugin$ = [9, n0, _CCP,
|
|
982
|
-
{ [_h]: ["POST", "/v1/custom-plugins", 200] }, () => CreateCustomPluginRequest$, () => CreateCustomPluginResponse$
|
|
983
|
-
];
|
|
984
|
-
var CreateWorkerConfiguration$ = [9, n0, _CWC,
|
|
985
|
-
{ [_h]: ["POST", "/v1/worker-configurations", 200] }, () => CreateWorkerConfigurationRequest$, () => CreateWorkerConfigurationResponse$
|
|
986
|
-
];
|
|
987
|
-
var DeleteConnector$ = [9, n0, _DC,
|
|
988
|
-
{ [_h]: ["DELETE", "/v1/connectors/{connectorArn}", 200] }, () => DeleteConnectorRequest$, () => DeleteConnectorResponse$
|
|
989
|
-
];
|
|
990
|
-
var DeleteCustomPlugin$ = [9, n0, _DCP,
|
|
991
|
-
{ [_h]: ["DELETE", "/v1/custom-plugins/{customPluginArn}", 200] }, () => DeleteCustomPluginRequest$, () => DeleteCustomPluginResponse$
|
|
992
|
-
];
|
|
993
|
-
var DeleteWorkerConfiguration$ = [9, n0, _DWC,
|
|
994
|
-
{ [_h]: ["DELETE", "/v1/worker-configurations/{workerConfigurationArn}", 200] }, () => DeleteWorkerConfigurationRequest$, () => DeleteWorkerConfigurationResponse$
|
|
995
|
-
];
|
|
996
|
-
var DescribeConnector$ = [9, n0, _DCe,
|
|
997
|
-
{ [_h]: ["GET", "/v1/connectors/{connectorArn}", 200] }, () => DescribeConnectorRequest$, () => DescribeConnectorResponse$
|
|
998
|
-
];
|
|
999
|
-
var DescribeConnectorOperation$ = [9, n0, _DCO,
|
|
1000
|
-
{ [_h]: ["GET", "/v1/connectorOperations/{connectorOperationArn}", 200] }, () => DescribeConnectorOperationRequest$, () => DescribeConnectorOperationResponse$
|
|
1001
|
-
];
|
|
1002
|
-
var DescribeCustomPlugin$ = [9, n0, _DCPe,
|
|
1003
|
-
{ [_h]: ["GET", "/v1/custom-plugins/{customPluginArn}", 200] }, () => DescribeCustomPluginRequest$, () => DescribeCustomPluginResponse$
|
|
1004
|
-
];
|
|
1005
|
-
var DescribeWorkerConfiguration$ = [9, n0, _DWCe,
|
|
1006
|
-
{ [_h]: ["GET", "/v1/worker-configurations/{workerConfigurationArn}", 200] }, () => DescribeWorkerConfigurationRequest$, () => DescribeWorkerConfigurationResponse$
|
|
1007
|
-
];
|
|
1008
|
-
var ListConnectorOperations$ = [9, n0, _LCO,
|
|
1009
|
-
{ [_h]: ["GET", "/v1/connectors/{connectorArn}/operations", 200] }, () => ListConnectorOperationsRequest$, () => ListConnectorOperationsResponse$
|
|
1010
|
-
];
|
|
1011
|
-
var ListConnectors$ = [9, n0, _LC,
|
|
1012
|
-
{ [_h]: ["GET", "/v1/connectors", 200] }, () => ListConnectorsRequest$, () => ListConnectorsResponse$
|
|
1013
|
-
];
|
|
1014
|
-
var ListCustomPlugins$ = [9, n0, _LCP,
|
|
1015
|
-
{ [_h]: ["GET", "/v1/custom-plugins", 200] }, () => ListCustomPluginsRequest$, () => ListCustomPluginsResponse$
|
|
1016
|
-
];
|
|
1017
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1018
|
-
{ [_h]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1019
|
-
];
|
|
1020
|
-
var ListWorkerConfigurations$ = [9, n0, _LWC,
|
|
1021
|
-
{ [_h]: ["GET", "/v1/worker-configurations", 200] }, () => ListWorkerConfigurationsRequest$, () => ListWorkerConfigurationsResponse$
|
|
1022
|
-
];
|
|
1023
|
-
var TagResource$ = [9, n0, _TR,
|
|
1024
|
-
{ [_h]: ["POST", "/v1/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1025
|
-
];
|
|
1026
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1027
|
-
{ [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1028
|
-
];
|
|
1029
|
-
var UpdateConnector$ = [9, n0, _UC,
|
|
1030
|
-
{ [_h]: ["PUT", "/v1/connectors/{connectorArn}", 200] }, () => UpdateConnectorRequest$, () => UpdateConnectorResponse$
|
|
1031
|
-
];
|
|
1032
|
-
|
|
1033
116
|
class CreateConnectorCommand extends smithyClient.Command
|
|
1034
117
|
.classBuilder()
|
|
1035
118
|
.ep(commonParams)
|
|
@@ -1038,7 +121,7 @@ class CreateConnectorCommand extends smithyClient.Command
|
|
|
1038
121
|
})
|
|
1039
122
|
.s("KafkaConnect", "CreateConnector", {})
|
|
1040
123
|
.n("KafkaConnectClient", "CreateConnectorCommand")
|
|
1041
|
-
.sc(CreateConnector$)
|
|
124
|
+
.sc(schemas_0.CreateConnector$)
|
|
1042
125
|
.build() {
|
|
1043
126
|
}
|
|
1044
127
|
|
|
@@ -1050,7 +133,7 @@ class CreateCustomPluginCommand extends smithyClient.Command
|
|
|
1050
133
|
})
|
|
1051
134
|
.s("KafkaConnect", "CreateCustomPlugin", {})
|
|
1052
135
|
.n("KafkaConnectClient", "CreateCustomPluginCommand")
|
|
1053
|
-
.sc(CreateCustomPlugin$)
|
|
136
|
+
.sc(schemas_0.CreateCustomPlugin$)
|
|
1054
137
|
.build() {
|
|
1055
138
|
}
|
|
1056
139
|
|
|
@@ -1062,7 +145,7 @@ class CreateWorkerConfigurationCommand extends smithyClient.Command
|
|
|
1062
145
|
})
|
|
1063
146
|
.s("KafkaConnect", "CreateWorkerConfiguration", {})
|
|
1064
147
|
.n("KafkaConnectClient", "CreateWorkerConfigurationCommand")
|
|
1065
|
-
.sc(CreateWorkerConfiguration$)
|
|
148
|
+
.sc(schemas_0.CreateWorkerConfiguration$)
|
|
1066
149
|
.build() {
|
|
1067
150
|
}
|
|
1068
151
|
|
|
@@ -1074,7 +157,7 @@ class DeleteConnectorCommand extends smithyClient.Command
|
|
|
1074
157
|
})
|
|
1075
158
|
.s("KafkaConnect", "DeleteConnector", {})
|
|
1076
159
|
.n("KafkaConnectClient", "DeleteConnectorCommand")
|
|
1077
|
-
.sc(DeleteConnector$)
|
|
160
|
+
.sc(schemas_0.DeleteConnector$)
|
|
1078
161
|
.build() {
|
|
1079
162
|
}
|
|
1080
163
|
|
|
@@ -1086,7 +169,7 @@ class DeleteCustomPluginCommand extends smithyClient.Command
|
|
|
1086
169
|
})
|
|
1087
170
|
.s("KafkaConnect", "DeleteCustomPlugin", {})
|
|
1088
171
|
.n("KafkaConnectClient", "DeleteCustomPluginCommand")
|
|
1089
|
-
.sc(DeleteCustomPlugin$)
|
|
172
|
+
.sc(schemas_0.DeleteCustomPlugin$)
|
|
1090
173
|
.build() {
|
|
1091
174
|
}
|
|
1092
175
|
|
|
@@ -1098,7 +181,7 @@ class DeleteWorkerConfigurationCommand extends smithyClient.Command
|
|
|
1098
181
|
})
|
|
1099
182
|
.s("KafkaConnect", "DeleteWorkerConfiguration", {})
|
|
1100
183
|
.n("KafkaConnectClient", "DeleteWorkerConfigurationCommand")
|
|
1101
|
-
.sc(DeleteWorkerConfiguration$)
|
|
184
|
+
.sc(schemas_0.DeleteWorkerConfiguration$)
|
|
1102
185
|
.build() {
|
|
1103
186
|
}
|
|
1104
187
|
|
|
@@ -1110,7 +193,7 @@ class DescribeConnectorCommand extends smithyClient.Command
|
|
|
1110
193
|
})
|
|
1111
194
|
.s("KafkaConnect", "DescribeConnector", {})
|
|
1112
195
|
.n("KafkaConnectClient", "DescribeConnectorCommand")
|
|
1113
|
-
.sc(DescribeConnector$)
|
|
196
|
+
.sc(schemas_0.DescribeConnector$)
|
|
1114
197
|
.build() {
|
|
1115
198
|
}
|
|
1116
199
|
|
|
@@ -1122,7 +205,7 @@ class DescribeConnectorOperationCommand extends smithyClient.Command
|
|
|
1122
205
|
})
|
|
1123
206
|
.s("KafkaConnect", "DescribeConnectorOperation", {})
|
|
1124
207
|
.n("KafkaConnectClient", "DescribeConnectorOperationCommand")
|
|
1125
|
-
.sc(DescribeConnectorOperation$)
|
|
208
|
+
.sc(schemas_0.DescribeConnectorOperation$)
|
|
1126
209
|
.build() {
|
|
1127
210
|
}
|
|
1128
211
|
|
|
@@ -1134,7 +217,7 @@ class DescribeCustomPluginCommand extends smithyClient.Command
|
|
|
1134
217
|
})
|
|
1135
218
|
.s("KafkaConnect", "DescribeCustomPlugin", {})
|
|
1136
219
|
.n("KafkaConnectClient", "DescribeCustomPluginCommand")
|
|
1137
|
-
.sc(DescribeCustomPlugin$)
|
|
220
|
+
.sc(schemas_0.DescribeCustomPlugin$)
|
|
1138
221
|
.build() {
|
|
1139
222
|
}
|
|
1140
223
|
|
|
@@ -1146,7 +229,7 @@ class DescribeWorkerConfigurationCommand extends smithyClient.Command
|
|
|
1146
229
|
})
|
|
1147
230
|
.s("KafkaConnect", "DescribeWorkerConfiguration", {})
|
|
1148
231
|
.n("KafkaConnectClient", "DescribeWorkerConfigurationCommand")
|
|
1149
|
-
.sc(DescribeWorkerConfiguration$)
|
|
232
|
+
.sc(schemas_0.DescribeWorkerConfiguration$)
|
|
1150
233
|
.build() {
|
|
1151
234
|
}
|
|
1152
235
|
|
|
@@ -1158,7 +241,7 @@ class ListConnectorOperationsCommand extends smithyClient.Command
|
|
|
1158
241
|
})
|
|
1159
242
|
.s("KafkaConnect", "ListConnectorOperations", {})
|
|
1160
243
|
.n("KafkaConnectClient", "ListConnectorOperationsCommand")
|
|
1161
|
-
.sc(ListConnectorOperations$)
|
|
244
|
+
.sc(schemas_0.ListConnectorOperations$)
|
|
1162
245
|
.build() {
|
|
1163
246
|
}
|
|
1164
247
|
|
|
@@ -1170,7 +253,7 @@ class ListConnectorsCommand extends smithyClient.Command
|
|
|
1170
253
|
})
|
|
1171
254
|
.s("KafkaConnect", "ListConnectors", {})
|
|
1172
255
|
.n("KafkaConnectClient", "ListConnectorsCommand")
|
|
1173
|
-
.sc(ListConnectors$)
|
|
256
|
+
.sc(schemas_0.ListConnectors$)
|
|
1174
257
|
.build() {
|
|
1175
258
|
}
|
|
1176
259
|
|
|
@@ -1182,7 +265,7 @@ class ListCustomPluginsCommand extends smithyClient.Command
|
|
|
1182
265
|
})
|
|
1183
266
|
.s("KafkaConnect", "ListCustomPlugins", {})
|
|
1184
267
|
.n("KafkaConnectClient", "ListCustomPluginsCommand")
|
|
1185
|
-
.sc(ListCustomPlugins$)
|
|
268
|
+
.sc(schemas_0.ListCustomPlugins$)
|
|
1186
269
|
.build() {
|
|
1187
270
|
}
|
|
1188
271
|
|
|
@@ -1194,7 +277,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1194
277
|
})
|
|
1195
278
|
.s("KafkaConnect", "ListTagsForResource", {})
|
|
1196
279
|
.n("KafkaConnectClient", "ListTagsForResourceCommand")
|
|
1197
|
-
.sc(ListTagsForResource$)
|
|
280
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1198
281
|
.build() {
|
|
1199
282
|
}
|
|
1200
283
|
|
|
@@ -1206,7 +289,7 @@ class ListWorkerConfigurationsCommand extends smithyClient.Command
|
|
|
1206
289
|
})
|
|
1207
290
|
.s("KafkaConnect", "ListWorkerConfigurations", {})
|
|
1208
291
|
.n("KafkaConnectClient", "ListWorkerConfigurationsCommand")
|
|
1209
|
-
.sc(ListWorkerConfigurations$)
|
|
292
|
+
.sc(schemas_0.ListWorkerConfigurations$)
|
|
1210
293
|
.build() {
|
|
1211
294
|
}
|
|
1212
295
|
|
|
@@ -1218,7 +301,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1218
301
|
})
|
|
1219
302
|
.s("KafkaConnect", "TagResource", {})
|
|
1220
303
|
.n("KafkaConnectClient", "TagResourceCommand")
|
|
1221
|
-
.sc(TagResource$)
|
|
304
|
+
.sc(schemas_0.TagResource$)
|
|
1222
305
|
.build() {
|
|
1223
306
|
}
|
|
1224
307
|
|
|
@@ -1230,7 +313,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1230
313
|
})
|
|
1231
314
|
.s("KafkaConnect", "UntagResource", {})
|
|
1232
315
|
.n("KafkaConnectClient", "UntagResourceCommand")
|
|
1233
|
-
.sc(UntagResource$)
|
|
316
|
+
.sc(schemas_0.UntagResource$)
|
|
1234
317
|
.build() {
|
|
1235
318
|
}
|
|
1236
319
|
|
|
@@ -1242,7 +325,7 @@ class UpdateConnectorCommand extends smithyClient.Command
|
|
|
1242
325
|
})
|
|
1243
326
|
.s("KafkaConnect", "UpdateConnector", {})
|
|
1244
327
|
.n("KafkaConnectClient", "UpdateConnectorCommand")
|
|
1245
|
-
.sc(UpdateConnector$)
|
|
328
|
+
.sc(schemas_0.UpdateConnector$)
|
|
1246
329
|
.build() {
|
|
1247
330
|
}
|
|
1248
331
|
|
|
@@ -1357,166 +440,54 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1357
440
|
enumerable: true,
|
|
1358
441
|
get: function () { return smithyClient.Client; }
|
|
1359
442
|
});
|
|
1360
|
-
exports
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
exports.AutoScalingUpdate$ = AutoScalingUpdate$;
|
|
1365
|
-
exports.BadRequestException = BadRequestException;
|
|
1366
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
1367
|
-
exports.Capacity$ = Capacity$;
|
|
1368
|
-
exports.CapacityDescription$ = CapacityDescription$;
|
|
1369
|
-
exports.CapacityUpdate$ = CapacityUpdate$;
|
|
1370
|
-
exports.CloudWatchLogsLogDelivery$ = CloudWatchLogsLogDelivery$;
|
|
1371
|
-
exports.CloudWatchLogsLogDeliveryDescription$ = CloudWatchLogsLogDeliveryDescription$;
|
|
1372
|
-
exports.ConflictException = ConflictException;
|
|
1373
|
-
exports.ConflictException$ = ConflictException$;
|
|
443
|
+
Object.defineProperty(exports, "KafkaConnectServiceException", {
|
|
444
|
+
enumerable: true,
|
|
445
|
+
get: function () { return KafkaConnectServiceException.KafkaConnectServiceException; }
|
|
446
|
+
});
|
|
1374
447
|
exports.ConnectorOperationState = ConnectorOperationState;
|
|
1375
|
-
exports.ConnectorOperationStep$ = ConnectorOperationStep$;
|
|
1376
448
|
exports.ConnectorOperationStepState = ConnectorOperationStepState;
|
|
1377
449
|
exports.ConnectorOperationStepType = ConnectorOperationStepType;
|
|
1378
|
-
exports.ConnectorOperationSummary$ = ConnectorOperationSummary$;
|
|
1379
450
|
exports.ConnectorOperationType = ConnectorOperationType;
|
|
1380
451
|
exports.ConnectorState = ConnectorState;
|
|
1381
|
-
exports.ConnectorSummary$ = ConnectorSummary$;
|
|
1382
|
-
exports.CreateConnector$ = CreateConnector$;
|
|
1383
452
|
exports.CreateConnectorCommand = CreateConnectorCommand;
|
|
1384
|
-
exports.CreateConnectorRequest$ = CreateConnectorRequest$;
|
|
1385
|
-
exports.CreateConnectorResponse$ = CreateConnectorResponse$;
|
|
1386
|
-
exports.CreateCustomPlugin$ = CreateCustomPlugin$;
|
|
1387
453
|
exports.CreateCustomPluginCommand = CreateCustomPluginCommand;
|
|
1388
|
-
exports.CreateCustomPluginRequest$ = CreateCustomPluginRequest$;
|
|
1389
|
-
exports.CreateCustomPluginResponse$ = CreateCustomPluginResponse$;
|
|
1390
|
-
exports.CreateWorkerConfiguration$ = CreateWorkerConfiguration$;
|
|
1391
454
|
exports.CreateWorkerConfigurationCommand = CreateWorkerConfigurationCommand;
|
|
1392
|
-
exports.CreateWorkerConfigurationRequest$ = CreateWorkerConfigurationRequest$;
|
|
1393
|
-
exports.CreateWorkerConfigurationResponse$ = CreateWorkerConfigurationResponse$;
|
|
1394
|
-
exports.CustomPlugin$ = CustomPlugin$;
|
|
1395
455
|
exports.CustomPluginContentType = CustomPluginContentType;
|
|
1396
|
-
exports.CustomPluginDescription$ = CustomPluginDescription$;
|
|
1397
|
-
exports.CustomPluginFileDescription$ = CustomPluginFileDescription$;
|
|
1398
|
-
exports.CustomPluginLocation$ = CustomPluginLocation$;
|
|
1399
|
-
exports.CustomPluginLocationDescription$ = CustomPluginLocationDescription$;
|
|
1400
|
-
exports.CustomPluginRevisionSummary$ = CustomPluginRevisionSummary$;
|
|
1401
456
|
exports.CustomPluginState = CustomPluginState;
|
|
1402
|
-
exports.CustomPluginSummary$ = CustomPluginSummary$;
|
|
1403
|
-
exports.DeleteConnector$ = DeleteConnector$;
|
|
1404
457
|
exports.DeleteConnectorCommand = DeleteConnectorCommand;
|
|
1405
|
-
exports.DeleteConnectorRequest$ = DeleteConnectorRequest$;
|
|
1406
|
-
exports.DeleteConnectorResponse$ = DeleteConnectorResponse$;
|
|
1407
|
-
exports.DeleteCustomPlugin$ = DeleteCustomPlugin$;
|
|
1408
458
|
exports.DeleteCustomPluginCommand = DeleteCustomPluginCommand;
|
|
1409
|
-
exports.DeleteCustomPluginRequest$ = DeleteCustomPluginRequest$;
|
|
1410
|
-
exports.DeleteCustomPluginResponse$ = DeleteCustomPluginResponse$;
|
|
1411
|
-
exports.DeleteWorkerConfiguration$ = DeleteWorkerConfiguration$;
|
|
1412
459
|
exports.DeleteWorkerConfigurationCommand = DeleteWorkerConfigurationCommand;
|
|
1413
|
-
exports.DeleteWorkerConfigurationRequest$ = DeleteWorkerConfigurationRequest$;
|
|
1414
|
-
exports.DeleteWorkerConfigurationResponse$ = DeleteWorkerConfigurationResponse$;
|
|
1415
|
-
exports.DescribeConnector$ = DescribeConnector$;
|
|
1416
460
|
exports.DescribeConnectorCommand = DescribeConnectorCommand;
|
|
1417
|
-
exports.DescribeConnectorOperation$ = DescribeConnectorOperation$;
|
|
1418
461
|
exports.DescribeConnectorOperationCommand = DescribeConnectorOperationCommand;
|
|
1419
|
-
exports.DescribeConnectorOperationRequest$ = DescribeConnectorOperationRequest$;
|
|
1420
|
-
exports.DescribeConnectorOperationResponse$ = DescribeConnectorOperationResponse$;
|
|
1421
|
-
exports.DescribeConnectorRequest$ = DescribeConnectorRequest$;
|
|
1422
|
-
exports.DescribeConnectorResponse$ = DescribeConnectorResponse$;
|
|
1423
|
-
exports.DescribeCustomPlugin$ = DescribeCustomPlugin$;
|
|
1424
462
|
exports.DescribeCustomPluginCommand = DescribeCustomPluginCommand;
|
|
1425
|
-
exports.DescribeCustomPluginRequest$ = DescribeCustomPluginRequest$;
|
|
1426
|
-
exports.DescribeCustomPluginResponse$ = DescribeCustomPluginResponse$;
|
|
1427
|
-
exports.DescribeWorkerConfiguration$ = DescribeWorkerConfiguration$;
|
|
1428
463
|
exports.DescribeWorkerConfigurationCommand = DescribeWorkerConfigurationCommand;
|
|
1429
|
-
exports.DescribeWorkerConfigurationRequest$ = DescribeWorkerConfigurationRequest$;
|
|
1430
|
-
exports.DescribeWorkerConfigurationResponse$ = DescribeWorkerConfigurationResponse$;
|
|
1431
|
-
exports.FirehoseLogDelivery$ = FirehoseLogDelivery$;
|
|
1432
|
-
exports.FirehoseLogDeliveryDescription$ = FirehoseLogDeliveryDescription$;
|
|
1433
|
-
exports.ForbiddenException = ForbiddenException;
|
|
1434
|
-
exports.ForbiddenException$ = ForbiddenException$;
|
|
1435
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
1436
|
-
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
1437
|
-
exports.KafkaCluster$ = KafkaCluster$;
|
|
1438
|
-
exports.KafkaClusterClientAuthentication$ = KafkaClusterClientAuthentication$;
|
|
1439
|
-
exports.KafkaClusterClientAuthenticationDescription$ = KafkaClusterClientAuthenticationDescription$;
|
|
1440
464
|
exports.KafkaClusterClientAuthenticationType = KafkaClusterClientAuthenticationType;
|
|
1441
|
-
exports.KafkaClusterDescription$ = KafkaClusterDescription$;
|
|
1442
|
-
exports.KafkaClusterEncryptionInTransit$ = KafkaClusterEncryptionInTransit$;
|
|
1443
|
-
exports.KafkaClusterEncryptionInTransitDescription$ = KafkaClusterEncryptionInTransitDescription$;
|
|
1444
465
|
exports.KafkaClusterEncryptionInTransitType = KafkaClusterEncryptionInTransitType;
|
|
1445
466
|
exports.KafkaConnect = KafkaConnect;
|
|
1446
467
|
exports.KafkaConnectClient = KafkaConnectClient;
|
|
1447
|
-
exports.KafkaConnectServiceException = KafkaConnectServiceException;
|
|
1448
|
-
exports.KafkaConnectServiceException$ = KafkaConnectServiceException$;
|
|
1449
|
-
exports.ListConnectorOperations$ = ListConnectorOperations$;
|
|
1450
468
|
exports.ListConnectorOperationsCommand = ListConnectorOperationsCommand;
|
|
1451
|
-
exports.ListConnectorOperationsRequest$ = ListConnectorOperationsRequest$;
|
|
1452
|
-
exports.ListConnectorOperationsResponse$ = ListConnectorOperationsResponse$;
|
|
1453
|
-
exports.ListConnectors$ = ListConnectors$;
|
|
1454
469
|
exports.ListConnectorsCommand = ListConnectorsCommand;
|
|
1455
|
-
exports.ListConnectorsRequest$ = ListConnectorsRequest$;
|
|
1456
|
-
exports.ListConnectorsResponse$ = ListConnectorsResponse$;
|
|
1457
|
-
exports.ListCustomPlugins$ = ListCustomPlugins$;
|
|
1458
470
|
exports.ListCustomPluginsCommand = ListCustomPluginsCommand;
|
|
1459
|
-
exports.ListCustomPluginsRequest$ = ListCustomPluginsRequest$;
|
|
1460
|
-
exports.ListCustomPluginsResponse$ = ListCustomPluginsResponse$;
|
|
1461
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1462
471
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1463
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1464
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1465
|
-
exports.ListWorkerConfigurations$ = ListWorkerConfigurations$;
|
|
1466
472
|
exports.ListWorkerConfigurationsCommand = ListWorkerConfigurationsCommand;
|
|
1467
|
-
exports.ListWorkerConfigurationsRequest$ = ListWorkerConfigurationsRequest$;
|
|
1468
|
-
exports.ListWorkerConfigurationsResponse$ = ListWorkerConfigurationsResponse$;
|
|
1469
|
-
exports.LogDelivery$ = LogDelivery$;
|
|
1470
|
-
exports.LogDeliveryDescription$ = LogDeliveryDescription$;
|
|
1471
473
|
exports.NetworkType = NetworkType;
|
|
1472
|
-
exports.NotFoundException = NotFoundException;
|
|
1473
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1474
|
-
exports.Plugin$ = Plugin$;
|
|
1475
|
-
exports.PluginDescription$ = PluginDescription$;
|
|
1476
|
-
exports.ProvisionedCapacity$ = ProvisionedCapacity$;
|
|
1477
|
-
exports.ProvisionedCapacityDescription$ = ProvisionedCapacityDescription$;
|
|
1478
|
-
exports.ProvisionedCapacityUpdate$ = ProvisionedCapacityUpdate$;
|
|
1479
|
-
exports.S3Location$ = S3Location$;
|
|
1480
|
-
exports.S3LocationDescription$ = S3LocationDescription$;
|
|
1481
|
-
exports.S3LogDelivery$ = S3LogDelivery$;
|
|
1482
|
-
exports.S3LogDeliveryDescription$ = S3LogDeliveryDescription$;
|
|
1483
|
-
exports.ScaleInPolicy$ = ScaleInPolicy$;
|
|
1484
|
-
exports.ScaleInPolicyDescription$ = ScaleInPolicyDescription$;
|
|
1485
|
-
exports.ScaleInPolicyUpdate$ = ScaleInPolicyUpdate$;
|
|
1486
|
-
exports.ScaleOutPolicy$ = ScaleOutPolicy$;
|
|
1487
|
-
exports.ScaleOutPolicyDescription$ = ScaleOutPolicyDescription$;
|
|
1488
|
-
exports.ScaleOutPolicyUpdate$ = ScaleOutPolicyUpdate$;
|
|
1489
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1490
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1491
|
-
exports.StateDescription$ = StateDescription$;
|
|
1492
|
-
exports.TagResource$ = TagResource$;
|
|
1493
474
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1494
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1495
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1496
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1497
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1498
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1499
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1500
|
-
exports.UntagResource$ = UntagResource$;
|
|
1501
475
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1502
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1503
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1504
|
-
exports.UpdateConnector$ = UpdateConnector$;
|
|
1505
476
|
exports.UpdateConnectorCommand = UpdateConnectorCommand;
|
|
1506
|
-
exports.UpdateConnectorRequest$ = UpdateConnectorRequest$;
|
|
1507
|
-
exports.UpdateConnectorResponse$ = UpdateConnectorResponse$;
|
|
1508
|
-
exports.Vpc$ = Vpc$;
|
|
1509
|
-
exports.VpcDescription$ = VpcDescription$;
|
|
1510
|
-
exports.WorkerConfiguration$ = WorkerConfiguration$;
|
|
1511
|
-
exports.WorkerConfigurationDescription$ = WorkerConfigurationDescription$;
|
|
1512
|
-
exports.WorkerConfigurationRevisionDescription$ = WorkerConfigurationRevisionDescription$;
|
|
1513
|
-
exports.WorkerConfigurationRevisionSummary$ = WorkerConfigurationRevisionSummary$;
|
|
1514
477
|
exports.WorkerConfigurationState = WorkerConfigurationState;
|
|
1515
|
-
exports.WorkerConfigurationSummary$ = WorkerConfigurationSummary$;
|
|
1516
|
-
exports.WorkerLogDelivery$ = WorkerLogDelivery$;
|
|
1517
|
-
exports.WorkerLogDeliveryDescription$ = WorkerLogDeliveryDescription$;
|
|
1518
|
-
exports.WorkerSetting$ = WorkerSetting$;
|
|
1519
478
|
exports.paginateListConnectorOperations = paginateListConnectorOperations;
|
|
1520
479
|
exports.paginateListConnectors = paginateListConnectors;
|
|
1521
480
|
exports.paginateListCustomPlugins = paginateListCustomPlugins;
|
|
1522
481
|
exports.paginateListWorkerConfigurations = paginateListWorkerConfigurations;
|
|
482
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
483
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
484
|
+
enumerable: true,
|
|
485
|
+
get: function () { return schemas_0[k]; }
|
|
486
|
+
});
|
|
487
|
+
});
|
|
488
|
+
Object.keys(errors).forEach(function (k) {
|
|
489
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
490
|
+
enumerable: true,
|
|
491
|
+
get: function () { return errors[k]; }
|
|
492
|
+
});
|
|
493
|
+
});
|