@aws-sdk/client-kafka 3.183.0 → 3.185.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/Kafka.js +149 -142
  4. package/dist-es/KafkaClient.js +28 -22
  5. package/dist-es/commands/BatchAssociateScramSecretCommand.js +28 -21
  6. package/dist-es/commands/BatchDisassociateScramSecretCommand.js +28 -21
  7. package/dist-es/commands/CreateClusterCommand.js +28 -21
  8. package/dist-es/commands/CreateClusterV2Command.js +28 -21
  9. package/dist-es/commands/CreateConfigurationCommand.js +28 -21
  10. package/dist-es/commands/DeleteClusterCommand.js +28 -21
  11. package/dist-es/commands/DeleteConfigurationCommand.js +28 -21
  12. package/dist-es/commands/DescribeClusterCommand.js +28 -21
  13. package/dist-es/commands/DescribeClusterOperationCommand.js +28 -21
  14. package/dist-es/commands/DescribeClusterV2Command.js +28 -21
  15. package/dist-es/commands/DescribeConfigurationCommand.js +28 -21
  16. package/dist-es/commands/DescribeConfigurationRevisionCommand.js +28 -21
  17. package/dist-es/commands/GetBootstrapBrokersCommand.js +28 -21
  18. package/dist-es/commands/GetCompatibleKafkaVersionsCommand.js +28 -21
  19. package/dist-es/commands/ListClusterOperationsCommand.js +28 -21
  20. package/dist-es/commands/ListClustersCommand.js +28 -21
  21. package/dist-es/commands/ListClustersV2Command.js +28 -21
  22. package/dist-es/commands/ListConfigurationRevisionsCommand.js +28 -21
  23. package/dist-es/commands/ListConfigurationsCommand.js +28 -21
  24. package/dist-es/commands/ListKafkaVersionsCommand.js +28 -21
  25. package/dist-es/commands/ListNodesCommand.js +28 -21
  26. package/dist-es/commands/ListScramSecretsCommand.js +28 -21
  27. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  28. package/dist-es/commands/RebootBrokerCommand.js +28 -21
  29. package/dist-es/commands/TagResourceCommand.js +29 -22
  30. package/dist-es/commands/UntagResourceCommand.js +29 -22
  31. package/dist-es/commands/UpdateBrokerCountCommand.js +28 -21
  32. package/dist-es/commands/UpdateBrokerStorageCommand.js +28 -21
  33. package/dist-es/commands/UpdateBrokerTypeCommand.js +28 -21
  34. package/dist-es/commands/UpdateClusterConfigurationCommand.js +28 -21
  35. package/dist-es/commands/UpdateClusterKafkaVersionCommand.js +28 -21
  36. package/dist-es/commands/UpdateConfigurationCommand.js +28 -21
  37. package/dist-es/commands/UpdateConnectivityCommand.js +28 -21
  38. package/dist-es/commands/UpdateMonitoringCommand.js +28 -21
  39. package/dist-es/commands/UpdateSecurityCommand.js +28 -21
  40. package/dist-es/endpoints.js +8 -8
  41. package/dist-es/models/KafkaServiceException.js +10 -5
  42. package/dist-es/models/models_0.js +227 -470
  43. package/dist-es/pagination/ListClusterOperationsPaginator.js +68 -25
  44. package/dist-es/pagination/ListClustersPaginator.js +68 -25
  45. package/dist-es/pagination/ListClustersV2Paginator.js +68 -25
  46. package/dist-es/pagination/ListConfigurationRevisionsPaginator.js +68 -25
  47. package/dist-es/pagination/ListConfigurationsPaginator.js +68 -25
  48. package/dist-es/pagination/ListKafkaVersionsPaginator.js +68 -25
  49. package/dist-es/pagination/ListNodesPaginator.js +68 -25
  50. package/dist-es/pagination/ListScramSecretsPaginator.js +68 -25
  51. package/dist-es/protocols/Aws_restJson1.js +3995 -2968
  52. package/dist-es/runtimeConfig.browser.js +12 -26
  53. package/dist-es/runtimeConfig.js +12 -30
  54. package/dist-es/runtimeConfig.native.js +5 -8
  55. package/dist-es/runtimeConfig.shared.js +11 -8
  56. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { KafkaServiceException as __BaseException } from "./KafkaServiceException";
2
3
  export var ClusterType;
3
4
  (function (ClusterType) {
@@ -47,481 +48,237 @@ export var NodeType;
47
48
  (function (NodeType) {
48
49
  NodeType["BROKER"] = "BROKER";
49
50
  })(NodeType || (NodeType = {}));
50
- export class BadRequestException extends __BaseException {
51
- constructor(opts) {
52
- super({
53
- name: "BadRequestException",
54
- $fault: "client",
55
- ...opts,
56
- });
57
- this.name = "BadRequestException";
58
- this.$fault = "client";
59
- Object.setPrototypeOf(this, BadRequestException.prototype);
60
- this.InvalidParameter = opts.InvalidParameter;
61
- this.Message = opts.Message;
51
+ var BadRequestException = (function (_super) {
52
+ __extends(BadRequestException, _super);
53
+ function BadRequestException(opts) {
54
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
55
+ _this.name = "BadRequestException";
56
+ _this.$fault = "client";
57
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
58
+ _this.InvalidParameter = opts.InvalidParameter;
59
+ _this.Message = opts.Message;
60
+ return _this;
62
61
  }
63
- }
64
- export class ForbiddenException extends __BaseException {
65
- constructor(opts) {
66
- super({
67
- name: "ForbiddenException",
68
- $fault: "client",
69
- ...opts,
70
- });
71
- this.name = "ForbiddenException";
72
- this.$fault = "client";
73
- Object.setPrototypeOf(this, ForbiddenException.prototype);
74
- this.InvalidParameter = opts.InvalidParameter;
75
- this.Message = opts.Message;
62
+ return BadRequestException;
63
+ }(__BaseException));
64
+ export { BadRequestException };
65
+ var ForbiddenException = (function (_super) {
66
+ __extends(ForbiddenException, _super);
67
+ function ForbiddenException(opts) {
68
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
69
+ _this.name = "ForbiddenException";
70
+ _this.$fault = "client";
71
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
72
+ _this.InvalidParameter = opts.InvalidParameter;
73
+ _this.Message = opts.Message;
74
+ return _this;
76
75
  }
77
- }
78
- export class InternalServerErrorException extends __BaseException {
79
- constructor(opts) {
80
- super({
81
- name: "InternalServerErrorException",
82
- $fault: "server",
83
- ...opts,
84
- });
85
- this.name = "InternalServerErrorException";
86
- this.$fault = "server";
87
- Object.setPrototypeOf(this, InternalServerErrorException.prototype);
88
- this.InvalidParameter = opts.InvalidParameter;
89
- this.Message = opts.Message;
76
+ return ForbiddenException;
77
+ }(__BaseException));
78
+ export { ForbiddenException };
79
+ var InternalServerErrorException = (function (_super) {
80
+ __extends(InternalServerErrorException, _super);
81
+ function InternalServerErrorException(opts) {
82
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
83
+ _this.name = "InternalServerErrorException";
84
+ _this.$fault = "server";
85
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
86
+ _this.InvalidParameter = opts.InvalidParameter;
87
+ _this.Message = opts.Message;
88
+ return _this;
90
89
  }
91
- }
92
- export class NotFoundException extends __BaseException {
93
- constructor(opts) {
94
- super({
95
- name: "NotFoundException",
96
- $fault: "client",
97
- ...opts,
98
- });
99
- this.name = "NotFoundException";
100
- this.$fault = "client";
101
- Object.setPrototypeOf(this, NotFoundException.prototype);
102
- this.InvalidParameter = opts.InvalidParameter;
103
- this.Message = opts.Message;
90
+ return InternalServerErrorException;
91
+ }(__BaseException));
92
+ export { InternalServerErrorException };
93
+ var NotFoundException = (function (_super) {
94
+ __extends(NotFoundException, _super);
95
+ function NotFoundException(opts) {
96
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
97
+ _this.name = "NotFoundException";
98
+ _this.$fault = "client";
99
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
100
+ _this.InvalidParameter = opts.InvalidParameter;
101
+ _this.Message = opts.Message;
102
+ return _this;
104
103
  }
105
- }
106
- export class ServiceUnavailableException extends __BaseException {
107
- constructor(opts) {
108
- super({
109
- name: "ServiceUnavailableException",
110
- $fault: "server",
111
- ...opts,
112
- });
113
- this.name = "ServiceUnavailableException";
114
- this.$fault = "server";
115
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
116
- this.InvalidParameter = opts.InvalidParameter;
117
- this.Message = opts.Message;
104
+ return NotFoundException;
105
+ }(__BaseException));
106
+ export { NotFoundException };
107
+ var ServiceUnavailableException = (function (_super) {
108
+ __extends(ServiceUnavailableException, _super);
109
+ function ServiceUnavailableException(opts) {
110
+ var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
111
+ _this.name = "ServiceUnavailableException";
112
+ _this.$fault = "server";
113
+ Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
114
+ _this.InvalidParameter = opts.InvalidParameter;
115
+ _this.Message = opts.Message;
116
+ return _this;
118
117
  }
119
- }
120
- export class TooManyRequestsException extends __BaseException {
121
- constructor(opts) {
122
- super({
123
- name: "TooManyRequestsException",
124
- $fault: "client",
125
- ...opts,
126
- });
127
- this.name = "TooManyRequestsException";
128
- this.$fault = "client";
129
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
130
- this.InvalidParameter = opts.InvalidParameter;
131
- this.Message = opts.Message;
118
+ return ServiceUnavailableException;
119
+ }(__BaseException));
120
+ export { ServiceUnavailableException };
121
+ var TooManyRequestsException = (function (_super) {
122
+ __extends(TooManyRequestsException, _super);
123
+ function TooManyRequestsException(opts) {
124
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
125
+ _this.name = "TooManyRequestsException";
126
+ _this.$fault = "client";
127
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
128
+ _this.InvalidParameter = opts.InvalidParameter;
129
+ _this.Message = opts.Message;
130
+ return _this;
132
131
  }
133
- }
134
- export class UnauthorizedException extends __BaseException {
135
- constructor(opts) {
136
- super({
137
- name: "UnauthorizedException",
138
- $fault: "client",
139
- ...opts,
140
- });
141
- this.name = "UnauthorizedException";
142
- this.$fault = "client";
143
- Object.setPrototypeOf(this, UnauthorizedException.prototype);
144
- this.InvalidParameter = opts.InvalidParameter;
145
- this.Message = opts.Message;
132
+ return TooManyRequestsException;
133
+ }(__BaseException));
134
+ export { TooManyRequestsException };
135
+ var UnauthorizedException = (function (_super) {
136
+ __extends(UnauthorizedException, _super);
137
+ function UnauthorizedException(opts) {
138
+ var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
139
+ _this.name = "UnauthorizedException";
140
+ _this.$fault = "client";
141
+ Object.setPrototypeOf(_this, UnauthorizedException.prototype);
142
+ _this.InvalidParameter = opts.InvalidParameter;
143
+ _this.Message = opts.Message;
144
+ return _this;
146
145
  }
147
- }
148
- export class ConflictException extends __BaseException {
149
- constructor(opts) {
150
- super({
151
- name: "ConflictException",
152
- $fault: "client",
153
- ...opts,
154
- });
155
- this.name = "ConflictException";
156
- this.$fault = "client";
157
- Object.setPrototypeOf(this, ConflictException.prototype);
158
- this.InvalidParameter = opts.InvalidParameter;
159
- this.Message = opts.Message;
146
+ return UnauthorizedException;
147
+ }(__BaseException));
148
+ export { UnauthorizedException };
149
+ var ConflictException = (function (_super) {
150
+ __extends(ConflictException, _super);
151
+ function ConflictException(opts) {
152
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
153
+ _this.name = "ConflictException";
154
+ _this.$fault = "client";
155
+ Object.setPrototypeOf(_this, ConflictException.prototype);
156
+ _this.InvalidParameter = opts.InvalidParameter;
157
+ _this.Message = opts.Message;
158
+ return _this;
160
159
  }
161
- }
162
- export const ProvisionedThroughputFilterSensitiveLog = (obj) => ({
163
- ...obj,
164
- });
165
- export const BrokerEBSVolumeInfoFilterSensitiveLog = (obj) => ({
166
- ...obj,
167
- });
168
- export const PublicAccessFilterSensitiveLog = (obj) => ({
169
- ...obj,
170
- });
171
- export const ConnectivityInfoFilterSensitiveLog = (obj) => ({
172
- ...obj,
173
- });
174
- export const EBSStorageInfoFilterSensitiveLog = (obj) => ({
175
- ...obj,
176
- });
177
- export const StorageInfoFilterSensitiveLog = (obj) => ({
178
- ...obj,
179
- });
180
- export const BrokerNodeGroupInfoFilterSensitiveLog = (obj) => ({
181
- ...obj,
182
- });
183
- export const IamFilterSensitiveLog = (obj) => ({
184
- ...obj,
185
- });
186
- export const ScramFilterSensitiveLog = (obj) => ({
187
- ...obj,
188
- });
189
- export const SaslFilterSensitiveLog = (obj) => ({
190
- ...obj,
191
- });
192
- export const TlsFilterSensitiveLog = (obj) => ({
193
- ...obj,
194
- });
195
- export const UnauthenticatedFilterSensitiveLog = (obj) => ({
196
- ...obj,
197
- });
198
- export const ClientAuthenticationFilterSensitiveLog = (obj) => ({
199
- ...obj,
200
- });
201
- export const BrokerSoftwareInfoFilterSensitiveLog = (obj) => ({
202
- ...obj,
203
- });
204
- export const EncryptionAtRestFilterSensitiveLog = (obj) => ({
205
- ...obj,
206
- });
207
- export const EncryptionInTransitFilterSensitiveLog = (obj) => ({
208
- ...obj,
209
- });
210
- export const EncryptionInfoFilterSensitiveLog = (obj) => ({
211
- ...obj,
212
- });
213
- export const CloudWatchLogsFilterSensitiveLog = (obj) => ({
214
- ...obj,
215
- });
216
- export const FirehoseFilterSensitiveLog = (obj) => ({
217
- ...obj,
218
- });
219
- export const S3FilterSensitiveLog = (obj) => ({
220
- ...obj,
221
- });
222
- export const BrokerLogsFilterSensitiveLog = (obj) => ({
223
- ...obj,
224
- });
225
- export const LoggingInfoFilterSensitiveLog = (obj) => ({
226
- ...obj,
227
- });
228
- export const JmxExporterInfoFilterSensitiveLog = (obj) => ({
229
- ...obj,
230
- });
231
- export const NodeExporterInfoFilterSensitiveLog = (obj) => ({
232
- ...obj,
233
- });
234
- export const PrometheusInfoFilterSensitiveLog = (obj) => ({
235
- ...obj,
236
- });
237
- export const OpenMonitoringInfoFilterSensitiveLog = (obj) => ({
238
- ...obj,
239
- });
240
- export const ProvisionedFilterSensitiveLog = (obj) => ({
241
- ...obj,
242
- });
243
- export const ServerlessSaslFilterSensitiveLog = (obj) => ({
244
- ...obj,
245
- });
246
- export const ServerlessClientAuthenticationFilterSensitiveLog = (obj) => ({
247
- ...obj,
248
- });
249
- export const VpcConfigFilterSensitiveLog = (obj) => ({
250
- ...obj,
251
- });
252
- export const ServerlessFilterSensitiveLog = (obj) => ({
253
- ...obj,
254
- });
255
- export const StateInfoFilterSensitiveLog = (obj) => ({
256
- ...obj,
257
- });
258
- export const ClusterFilterSensitiveLog = (obj) => ({
259
- ...obj,
260
- });
261
- export const JmxExporterFilterSensitiveLog = (obj) => ({
262
- ...obj,
263
- });
264
- export const NodeExporterFilterSensitiveLog = (obj) => ({
265
- ...obj,
266
- });
267
- export const PrometheusFilterSensitiveLog = (obj) => ({
268
- ...obj,
269
- });
270
- export const OpenMonitoringFilterSensitiveLog = (obj) => ({
271
- ...obj,
272
- });
273
- export const ClusterInfoFilterSensitiveLog = (obj) => ({
274
- ...obj,
275
- });
276
- export const ErrorInfoFilterSensitiveLog = (obj) => ({
277
- ...obj,
278
- });
279
- export const ClusterOperationStepInfoFilterSensitiveLog = (obj) => ({
280
- ...obj,
281
- });
282
- export const ClusterOperationStepFilterSensitiveLog = (obj) => ({
283
- ...obj,
284
- });
285
- export const ConfigurationInfoFilterSensitiveLog = (obj) => ({
286
- ...obj,
287
- });
288
- export const MutableClusterInfoFilterSensitiveLog = (obj) => ({
289
- ...obj,
290
- });
291
- export const ClusterOperationInfoFilterSensitiveLog = (obj) => ({
292
- ...obj,
293
- });
294
- export const CompatibleKafkaVersionFilterSensitiveLog = (obj) => ({
295
- ...obj,
296
- });
297
- export const ConfigurationRevisionFilterSensitiveLog = (obj) => ({
298
- ...obj,
299
- });
300
- export const ConfigurationFilterSensitiveLog = (obj) => ({
301
- ...obj,
302
- });
303
- export const KafkaVersionFilterSensitiveLog = (obj) => ({
304
- ...obj,
305
- });
306
- export const BrokerNodeInfoFilterSensitiveLog = (obj) => ({
307
- ...obj,
308
- });
309
- export const ZookeeperNodeInfoFilterSensitiveLog = (obj) => ({
310
- ...obj,
311
- });
312
- export const NodeInfoFilterSensitiveLog = (obj) => ({
313
- ...obj,
314
- });
315
- export const UnprocessedScramSecretFilterSensitiveLog = (obj) => ({
316
- ...obj,
317
- });
318
- export const BatchAssociateScramSecretRequestFilterSensitiveLog = (obj) => ({
319
- ...obj,
320
- });
321
- export const BatchAssociateScramSecretResponseFilterSensitiveLog = (obj) => ({
322
- ...obj,
323
- });
324
- export const BatchDisassociateScramSecretRequestFilterSensitiveLog = (obj) => ({
325
- ...obj,
326
- });
327
- export const BatchDisassociateScramSecretResponseFilterSensitiveLog = (obj) => ({
328
- ...obj,
329
- });
330
- export const CreateClusterRequestFilterSensitiveLog = (obj) => ({
331
- ...obj,
332
- });
333
- export const CreateClusterResponseFilterSensitiveLog = (obj) => ({
334
- ...obj,
335
- });
336
- export const ProvisionedRequestFilterSensitiveLog = (obj) => ({
337
- ...obj,
338
- });
339
- export const ServerlessRequestFilterSensitiveLog = (obj) => ({
340
- ...obj,
341
- });
342
- export const CreateClusterV2RequestFilterSensitiveLog = (obj) => ({
343
- ...obj,
344
- });
345
- export const CreateClusterV2ResponseFilterSensitiveLog = (obj) => ({
346
- ...obj,
347
- });
348
- export const CreateConfigurationRequestFilterSensitiveLog = (obj) => ({
349
- ...obj,
350
- });
351
- export const CreateConfigurationResponseFilterSensitiveLog = (obj) => ({
352
- ...obj,
353
- });
354
- export const DeleteClusterRequestFilterSensitiveLog = (obj) => ({
355
- ...obj,
356
- });
357
- export const DeleteClusterResponseFilterSensitiveLog = (obj) => ({
358
- ...obj,
359
- });
360
- export const DeleteConfigurationRequestFilterSensitiveLog = (obj) => ({
361
- ...obj,
362
- });
363
- export const DeleteConfigurationResponseFilterSensitiveLog = (obj) => ({
364
- ...obj,
365
- });
366
- export const DescribeClusterRequestFilterSensitiveLog = (obj) => ({
367
- ...obj,
368
- });
369
- export const DescribeClusterResponseFilterSensitiveLog = (obj) => ({
370
- ...obj,
371
- });
372
- export const DescribeClusterOperationRequestFilterSensitiveLog = (obj) => ({
373
- ...obj,
374
- });
375
- export const DescribeClusterOperationResponseFilterSensitiveLog = (obj) => ({
376
- ...obj,
377
- });
378
- export const DescribeClusterV2RequestFilterSensitiveLog = (obj) => ({
379
- ...obj,
380
- });
381
- export const DescribeClusterV2ResponseFilterSensitiveLog = (obj) => ({
382
- ...obj,
383
- });
384
- export const DescribeConfigurationRequestFilterSensitiveLog = (obj) => ({
385
- ...obj,
386
- });
387
- export const DescribeConfigurationResponseFilterSensitiveLog = (obj) => ({
388
- ...obj,
389
- });
390
- export const DescribeConfigurationRevisionRequestFilterSensitiveLog = (obj) => ({
391
- ...obj,
392
- });
393
- export const DescribeConfigurationRevisionResponseFilterSensitiveLog = (obj) => ({
394
- ...obj,
395
- });
396
- export const GetBootstrapBrokersRequestFilterSensitiveLog = (obj) => ({
397
- ...obj,
398
- });
399
- export const GetBootstrapBrokersResponseFilterSensitiveLog = (obj) => ({
400
- ...obj,
401
- });
402
- export const GetCompatibleKafkaVersionsRequestFilterSensitiveLog = (obj) => ({
403
- ...obj,
404
- });
405
- export const GetCompatibleKafkaVersionsResponseFilterSensitiveLog = (obj) => ({
406
- ...obj,
407
- });
408
- export const ListClusterOperationsRequestFilterSensitiveLog = (obj) => ({
409
- ...obj,
410
- });
411
- export const ListClusterOperationsResponseFilterSensitiveLog = (obj) => ({
412
- ...obj,
413
- });
414
- export const ListClustersRequestFilterSensitiveLog = (obj) => ({
415
- ...obj,
416
- });
417
- export const ListClustersResponseFilterSensitiveLog = (obj) => ({
418
- ...obj,
419
- });
420
- export const ListClustersV2RequestFilterSensitiveLog = (obj) => ({
421
- ...obj,
422
- });
423
- export const ListClustersV2ResponseFilterSensitiveLog = (obj) => ({
424
- ...obj,
425
- });
426
- export const ListConfigurationRevisionsRequestFilterSensitiveLog = (obj) => ({
427
- ...obj,
428
- });
429
- export const ListConfigurationRevisionsResponseFilterSensitiveLog = (obj) => ({
430
- ...obj,
431
- });
432
- export const ListConfigurationsRequestFilterSensitiveLog = (obj) => ({
433
- ...obj,
434
- });
435
- export const ListConfigurationsResponseFilterSensitiveLog = (obj) => ({
436
- ...obj,
437
- });
438
- export const ListKafkaVersionsRequestFilterSensitiveLog = (obj) => ({
439
- ...obj,
440
- });
441
- export const ListKafkaVersionsResponseFilterSensitiveLog = (obj) => ({
442
- ...obj,
443
- });
444
- export const ListNodesRequestFilterSensitiveLog = (obj) => ({
445
- ...obj,
446
- });
447
- export const ListNodesResponseFilterSensitiveLog = (obj) => ({
448
- ...obj,
449
- });
450
- export const ListScramSecretsRequestFilterSensitiveLog = (obj) => ({
451
- ...obj,
452
- });
453
- export const ListScramSecretsResponseFilterSensitiveLog = (obj) => ({
454
- ...obj,
455
- });
456
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
457
- ...obj,
458
- });
459
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
460
- ...obj,
461
- });
462
- export const RebootBrokerRequestFilterSensitiveLog = (obj) => ({
463
- ...obj,
464
- });
465
- export const RebootBrokerResponseFilterSensitiveLog = (obj) => ({
466
- ...obj,
467
- });
468
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
469
- ...obj,
470
- });
471
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
472
- ...obj,
473
- });
474
- export const UpdateBrokerCountRequestFilterSensitiveLog = (obj) => ({
475
- ...obj,
476
- });
477
- export const UpdateBrokerCountResponseFilterSensitiveLog = (obj) => ({
478
- ...obj,
479
- });
480
- export const UpdateBrokerStorageRequestFilterSensitiveLog = (obj) => ({
481
- ...obj,
482
- });
483
- export const UpdateBrokerStorageResponseFilterSensitiveLog = (obj) => ({
484
- ...obj,
485
- });
486
- export const UpdateBrokerTypeRequestFilterSensitiveLog = (obj) => ({
487
- ...obj,
488
- });
489
- export const UpdateBrokerTypeResponseFilterSensitiveLog = (obj) => ({
490
- ...obj,
491
- });
492
- export const UpdateClusterConfigurationRequestFilterSensitiveLog = (obj) => ({
493
- ...obj,
494
- });
495
- export const UpdateClusterConfigurationResponseFilterSensitiveLog = (obj) => ({
496
- ...obj,
497
- });
498
- export const UpdateClusterKafkaVersionRequestFilterSensitiveLog = (obj) => ({
499
- ...obj,
500
- });
501
- export const UpdateClusterKafkaVersionResponseFilterSensitiveLog = (obj) => ({
502
- ...obj,
503
- });
504
- export const UpdateConfigurationRequestFilterSensitiveLog = (obj) => ({
505
- ...obj,
506
- });
507
- export const UpdateConfigurationResponseFilterSensitiveLog = (obj) => ({
508
- ...obj,
509
- });
510
- export const UpdateConnectivityRequestFilterSensitiveLog = (obj) => ({
511
- ...obj,
512
- });
513
- export const UpdateConnectivityResponseFilterSensitiveLog = (obj) => ({
514
- ...obj,
515
- });
516
- export const UpdateMonitoringRequestFilterSensitiveLog = (obj) => ({
517
- ...obj,
518
- });
519
- export const UpdateMonitoringResponseFilterSensitiveLog = (obj) => ({
520
- ...obj,
521
- });
522
- export const UpdateSecurityRequestFilterSensitiveLog = (obj) => ({
523
- ...obj,
524
- });
525
- export const UpdateSecurityResponseFilterSensitiveLog = (obj) => ({
526
- ...obj,
527
- });
160
+ return ConflictException;
161
+ }(__BaseException));
162
+ export { ConflictException };
163
+ export var ProvisionedThroughputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
164
+ export var BrokerEBSVolumeInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
165
+ export var PublicAccessFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
166
+ export var ConnectivityInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
+ export var EBSStorageInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
+ export var StorageInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
+ export var BrokerNodeGroupInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
+ export var IamFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
+ export var ScramFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
+ export var SaslFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
+ export var TlsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
+ export var UnauthenticatedFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
+ export var ClientAuthenticationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
+ export var BrokerSoftwareInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
+ export var EncryptionAtRestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
+ export var EncryptionInTransitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
+ export var EncryptionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
+ export var CloudWatchLogsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
+ export var FirehoseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
+ export var S3FilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
+ export var BrokerLogsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
+ export var LoggingInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
+ export var JmxExporterInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
+ export var NodeExporterInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
+ export var PrometheusInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
+ export var OpenMonitoringInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
+ export var ProvisionedFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
+ export var ServerlessSaslFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
+ export var ServerlessClientAuthenticationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
+ export var VpcConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
+ export var ServerlessFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
+ export var StateInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
+ export var ClusterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
+ export var JmxExporterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
+ export var NodeExporterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
+ export var PrometheusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
+ export var OpenMonitoringFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
+ export var ClusterInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
+ export var ErrorInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
+ export var ClusterOperationStepInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
+ export var ClusterOperationStepFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
+ export var ConfigurationInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
+ export var MutableClusterInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
+ export var ClusterOperationInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
+ export var CompatibleKafkaVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
+ export var ConfigurationRevisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
+ export var ConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
+ export var KafkaVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
+ export var BrokerNodeInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
+ export var ZookeeperNodeInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
+ export var NodeInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
+ export var UnprocessedScramSecretFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
+ export var BatchAssociateScramSecretRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
+ export var BatchAssociateScramSecretResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
+ export var BatchDisassociateScramSecretRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
+ export var BatchDisassociateScramSecretResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
+ export var CreateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
+ export var CreateClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
+ export var ProvisionedRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
+ export var ServerlessRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
+ export var CreateClusterV2RequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
+ export var CreateClusterV2ResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
+ export var CreateConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
+ export var CreateConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
+ export var DeleteClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
+ export var DeleteClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
+ export var DeleteConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
+ export var DeleteConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
+ export var DescribeClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
+ export var DescribeClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
+ export var DescribeClusterOperationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
234
+ export var DescribeClusterOperationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
+ export var DescribeClusterV2RequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
236
+ export var DescribeClusterV2ResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
+ export var DescribeConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
+ export var DescribeConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
+ export var DescribeConfigurationRevisionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
+ export var DescribeConfigurationRevisionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
241
+ export var GetBootstrapBrokersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
242
+ export var GetBootstrapBrokersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
+ export var GetCompatibleKafkaVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
+ export var GetCompatibleKafkaVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
+ export var ListClusterOperationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
+ export var ListClusterOperationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
+ export var ListClustersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
+ export var ListClustersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
+ export var ListClustersV2RequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
+ export var ListClustersV2ResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
+ export var ListConfigurationRevisionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
+ export var ListConfigurationRevisionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
+ export var ListConfigurationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
+ export var ListConfigurationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
+ export var ListKafkaVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
+ export var ListKafkaVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
+ export var ListNodesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
+ export var ListNodesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
+ export var ListScramSecretsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
+ export var ListScramSecretsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
+ export var RebootBrokerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
+ export var RebootBrokerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
+ export var UpdateBrokerCountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
+ export var UpdateBrokerCountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
+ export var UpdateBrokerStorageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
+ export var UpdateBrokerStorageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
+ export var UpdateBrokerTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
+ export var UpdateBrokerTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
+ export var UpdateClusterConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
+ export var UpdateClusterConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
+ export var UpdateClusterKafkaVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
+ export var UpdateClusterKafkaVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
+ export var UpdateConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
+ export var UpdateConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
+ export var UpdateConnectivityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
+ export var UpdateConnectivityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
+ export var UpdateMonitoringRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
+ export var UpdateMonitoringResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
+ export var UpdateSecurityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
+ export var UpdateSecurityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };