@aws-sdk/client-kafka 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Kafka.d.ts +0 -35
- package/dist-types/ts3.4/KafkaClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/BatchAssociateScramSecretCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchDisassociateScramSecretCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateClusterV2Command.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeClusterOperationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeClusterV2Command.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeConfigurationRevisionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetBootstrapBrokersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetCompatibleKafkaVersionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListClusterOperationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListClustersV2Command.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListConfigurationRevisionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListKafkaVersionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListScramSecretsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RebootBrokerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateBrokerCountCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateBrokerStorageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateBrokerTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateClusterConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateClusterKafkaVersionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateConnectivityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateMonitoringCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSecurityCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/KafkaServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -421
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { KafkaServiceException as __BaseException } from "./KafkaServiceException";
|
|
3
|
-
|
|
4
3
|
export interface ProvisionedThroughput {
|
|
5
4
|
Enabled?: boolean;
|
|
6
|
-
|
|
7
5
|
VolumeThroughput?: number;
|
|
8
6
|
}
|
|
9
|
-
|
|
10
7
|
export interface BrokerEBSVolumeInfo {
|
|
11
8
|
KafkaBrokerNodeId: string | undefined;
|
|
12
|
-
|
|
13
9
|
ProvisionedThroughput?: ProvisionedThroughput;
|
|
14
|
-
|
|
15
10
|
VolumeSizeGB?: number;
|
|
16
11
|
}
|
|
17
12
|
export declare enum ClusterType {
|
|
@@ -21,78 +16,54 @@ export declare enum ClusterType {
|
|
|
21
16
|
export declare enum BrokerAZDistribution {
|
|
22
17
|
DEFAULT = "DEFAULT",
|
|
23
18
|
}
|
|
24
|
-
|
|
25
19
|
export interface PublicAccess {
|
|
26
20
|
Type?: string;
|
|
27
21
|
}
|
|
28
|
-
|
|
29
22
|
export interface ConnectivityInfo {
|
|
30
23
|
PublicAccess?: PublicAccess;
|
|
31
24
|
}
|
|
32
|
-
|
|
33
25
|
export interface EBSStorageInfo {
|
|
34
26
|
ProvisionedThroughput?: ProvisionedThroughput;
|
|
35
|
-
|
|
36
27
|
VolumeSize?: number;
|
|
37
28
|
}
|
|
38
|
-
|
|
39
29
|
export interface StorageInfo {
|
|
40
30
|
EbsStorageInfo?: EBSStorageInfo;
|
|
41
31
|
}
|
|
42
|
-
|
|
43
32
|
export interface BrokerNodeGroupInfo {
|
|
44
33
|
BrokerAZDistribution?: BrokerAZDistribution | string;
|
|
45
|
-
|
|
46
34
|
ClientSubnets: string[] | undefined;
|
|
47
|
-
|
|
48
35
|
InstanceType: string | undefined;
|
|
49
|
-
|
|
50
36
|
SecurityGroups?: string[];
|
|
51
|
-
|
|
52
37
|
StorageInfo?: StorageInfo;
|
|
53
|
-
|
|
54
38
|
ConnectivityInfo?: ConnectivityInfo;
|
|
55
39
|
}
|
|
56
|
-
|
|
57
40
|
export interface Iam {
|
|
58
41
|
Enabled?: boolean;
|
|
59
42
|
}
|
|
60
|
-
|
|
61
43
|
export interface Scram {
|
|
62
44
|
Enabled?: boolean;
|
|
63
45
|
}
|
|
64
|
-
|
|
65
46
|
export interface Sasl {
|
|
66
47
|
Scram?: Scram;
|
|
67
|
-
|
|
68
48
|
Iam?: Iam;
|
|
69
49
|
}
|
|
70
|
-
|
|
71
50
|
export interface Tls {
|
|
72
51
|
CertificateAuthorityArnList?: string[];
|
|
73
|
-
|
|
74
52
|
Enabled?: boolean;
|
|
75
53
|
}
|
|
76
54
|
export interface Unauthenticated {
|
|
77
55
|
Enabled?: boolean;
|
|
78
56
|
}
|
|
79
|
-
|
|
80
57
|
export interface ClientAuthentication {
|
|
81
58
|
Sasl?: Sasl;
|
|
82
|
-
|
|
83
59
|
Tls?: Tls;
|
|
84
|
-
|
|
85
60
|
Unauthenticated?: Unauthenticated;
|
|
86
61
|
}
|
|
87
|
-
|
|
88
62
|
export interface BrokerSoftwareInfo {
|
|
89
63
|
ConfigurationArn?: string;
|
|
90
|
-
|
|
91
64
|
ConfigurationRevision?: number;
|
|
92
|
-
|
|
93
65
|
KafkaVersion?: string;
|
|
94
66
|
}
|
|
95
|
-
|
|
96
67
|
export interface EncryptionAtRest {
|
|
97
68
|
DataVolumeKMSKeyId: string | undefined;
|
|
98
69
|
}
|
|
@@ -101,16 +72,12 @@ export declare enum ClientBroker {
|
|
|
101
72
|
TLS = "TLS",
|
|
102
73
|
TLS_PLAINTEXT = "TLS_PLAINTEXT",
|
|
103
74
|
}
|
|
104
|
-
|
|
105
75
|
export interface EncryptionInTransit {
|
|
106
76
|
ClientBroker?: ClientBroker | string;
|
|
107
|
-
|
|
108
77
|
InCluster?: boolean;
|
|
109
78
|
}
|
|
110
|
-
|
|
111
79
|
export interface EncryptionInfo {
|
|
112
80
|
EncryptionAtRest?: EncryptionAtRest;
|
|
113
|
-
|
|
114
81
|
EncryptionInTransit?: EncryptionInTransit;
|
|
115
82
|
}
|
|
116
83
|
export declare enum EnhancedMonitoring {
|
|
@@ -140,64 +107,43 @@ export interface BrokerLogs {
|
|
|
140
107
|
export interface LoggingInfo {
|
|
141
108
|
BrokerLogs: BrokerLogs | undefined;
|
|
142
109
|
}
|
|
143
|
-
|
|
144
110
|
export interface JmxExporterInfo {
|
|
145
111
|
EnabledInBroker: boolean | undefined;
|
|
146
112
|
}
|
|
147
|
-
|
|
148
113
|
export interface NodeExporterInfo {
|
|
149
114
|
EnabledInBroker: boolean | undefined;
|
|
150
115
|
}
|
|
151
|
-
|
|
152
116
|
export interface PrometheusInfo {
|
|
153
117
|
JmxExporter?: JmxExporterInfo;
|
|
154
|
-
|
|
155
118
|
NodeExporter?: NodeExporterInfo;
|
|
156
119
|
}
|
|
157
|
-
|
|
158
120
|
export interface OpenMonitoringInfo {
|
|
159
121
|
Prometheus: PrometheusInfo | undefined;
|
|
160
122
|
}
|
|
161
|
-
|
|
162
123
|
export interface Provisioned {
|
|
163
124
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
164
|
-
|
|
165
125
|
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
166
|
-
|
|
167
126
|
ClientAuthentication?: ClientAuthentication;
|
|
168
|
-
|
|
169
127
|
EncryptionInfo?: EncryptionInfo;
|
|
170
|
-
|
|
171
128
|
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
172
|
-
|
|
173
129
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
174
|
-
|
|
175
130
|
LoggingInfo?: LoggingInfo;
|
|
176
|
-
|
|
177
131
|
NumberOfBrokerNodes: number | undefined;
|
|
178
|
-
|
|
179
132
|
ZookeeperConnectString?: string;
|
|
180
|
-
|
|
181
133
|
ZookeeperConnectStringTls?: string;
|
|
182
134
|
}
|
|
183
|
-
|
|
184
135
|
export interface ServerlessSasl {
|
|
185
136
|
Iam?: Iam;
|
|
186
137
|
}
|
|
187
|
-
|
|
188
138
|
export interface ServerlessClientAuthentication {
|
|
189
139
|
Sasl?: ServerlessSasl;
|
|
190
140
|
}
|
|
191
|
-
|
|
192
141
|
export interface VpcConfig {
|
|
193
142
|
SubnetIds: string[] | undefined;
|
|
194
|
-
|
|
195
143
|
SecurityGroupIds?: string[];
|
|
196
144
|
}
|
|
197
|
-
|
|
198
145
|
export interface Serverless {
|
|
199
146
|
VpcConfigs: VpcConfig[] | undefined;
|
|
200
|
-
|
|
201
147
|
ClientAuthentication?: ServerlessClientAuthentication;
|
|
202
148
|
}
|
|
203
149
|
export declare enum ClusterState {
|
|
@@ -214,166 +160,100 @@ export interface StateInfo {
|
|
|
214
160
|
Code?: string;
|
|
215
161
|
Message?: string;
|
|
216
162
|
}
|
|
217
|
-
|
|
218
163
|
export interface Cluster {
|
|
219
164
|
ActiveOperationArn?: string;
|
|
220
|
-
|
|
221
165
|
ClusterType?: ClusterType | string;
|
|
222
|
-
|
|
223
166
|
ClusterArn?: string;
|
|
224
|
-
|
|
225
167
|
ClusterName?: string;
|
|
226
|
-
|
|
227
168
|
CreationTime?: Date;
|
|
228
|
-
|
|
229
169
|
CurrentVersion?: string;
|
|
230
|
-
|
|
231
170
|
State?: ClusterState | string;
|
|
232
|
-
|
|
233
171
|
StateInfo?: StateInfo;
|
|
234
|
-
|
|
235
172
|
Tags?: Record<string, string>;
|
|
236
|
-
|
|
237
173
|
Provisioned?: Provisioned;
|
|
238
|
-
|
|
239
174
|
Serverless?: Serverless;
|
|
240
175
|
}
|
|
241
|
-
|
|
242
176
|
export interface JmxExporter {
|
|
243
177
|
EnabledInBroker: boolean | undefined;
|
|
244
178
|
}
|
|
245
|
-
|
|
246
179
|
export interface NodeExporter {
|
|
247
180
|
EnabledInBroker: boolean | undefined;
|
|
248
181
|
}
|
|
249
|
-
|
|
250
182
|
export interface Prometheus {
|
|
251
183
|
JmxExporter?: JmxExporter;
|
|
252
|
-
|
|
253
184
|
NodeExporter?: NodeExporter;
|
|
254
185
|
}
|
|
255
|
-
|
|
256
186
|
export interface OpenMonitoring {
|
|
257
187
|
Prometheus: Prometheus | undefined;
|
|
258
188
|
}
|
|
259
|
-
|
|
260
189
|
export interface ClusterInfo {
|
|
261
190
|
ActiveOperationArn?: string;
|
|
262
|
-
|
|
263
191
|
BrokerNodeGroupInfo?: BrokerNodeGroupInfo;
|
|
264
|
-
|
|
265
192
|
ClientAuthentication?: ClientAuthentication;
|
|
266
|
-
|
|
267
193
|
ClusterArn?: string;
|
|
268
|
-
|
|
269
194
|
ClusterName?: string;
|
|
270
|
-
|
|
271
195
|
CreationTime?: Date;
|
|
272
|
-
|
|
273
196
|
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
274
|
-
|
|
275
197
|
CurrentVersion?: string;
|
|
276
|
-
|
|
277
198
|
EncryptionInfo?: EncryptionInfo;
|
|
278
|
-
|
|
279
199
|
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
280
|
-
|
|
281
200
|
OpenMonitoring?: OpenMonitoring;
|
|
282
201
|
LoggingInfo?: LoggingInfo;
|
|
283
|
-
|
|
284
202
|
NumberOfBrokerNodes?: number;
|
|
285
|
-
|
|
286
203
|
State?: ClusterState | string;
|
|
287
204
|
StateInfo?: StateInfo;
|
|
288
|
-
|
|
289
205
|
Tags?: Record<string, string>;
|
|
290
|
-
|
|
291
206
|
ZookeeperConnectString?: string;
|
|
292
|
-
|
|
293
207
|
ZookeeperConnectStringTls?: string;
|
|
294
208
|
}
|
|
295
|
-
|
|
296
209
|
export interface ErrorInfo {
|
|
297
210
|
ErrorCode?: string;
|
|
298
|
-
|
|
299
211
|
ErrorString?: string;
|
|
300
212
|
}
|
|
301
|
-
|
|
302
213
|
export interface ClusterOperationStepInfo {
|
|
303
214
|
StepStatus?: string;
|
|
304
215
|
}
|
|
305
|
-
|
|
306
216
|
export interface ClusterOperationStep {
|
|
307
217
|
StepInfo?: ClusterOperationStepInfo;
|
|
308
|
-
|
|
309
218
|
StepName?: string;
|
|
310
219
|
}
|
|
311
|
-
|
|
312
220
|
export interface ConfigurationInfo {
|
|
313
221
|
Arn: string | undefined;
|
|
314
|
-
|
|
315
222
|
Revision: number | undefined;
|
|
316
223
|
}
|
|
317
|
-
|
|
318
224
|
export interface MutableClusterInfo {
|
|
319
225
|
BrokerEBSVolumeInfo?: BrokerEBSVolumeInfo[];
|
|
320
|
-
|
|
321
226
|
ConfigurationInfo?: ConfigurationInfo;
|
|
322
|
-
|
|
323
227
|
NumberOfBrokerNodes?: number;
|
|
324
|
-
|
|
325
228
|
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
326
|
-
|
|
327
229
|
OpenMonitoring?: OpenMonitoring;
|
|
328
|
-
|
|
329
230
|
KafkaVersion?: string;
|
|
330
|
-
|
|
331
231
|
LoggingInfo?: LoggingInfo;
|
|
332
|
-
|
|
333
232
|
InstanceType?: string;
|
|
334
|
-
|
|
335
233
|
ClientAuthentication?: ClientAuthentication;
|
|
336
|
-
|
|
337
234
|
EncryptionInfo?: EncryptionInfo;
|
|
338
|
-
|
|
339
235
|
ConnectivityInfo?: ConnectivityInfo;
|
|
340
236
|
}
|
|
341
|
-
|
|
342
237
|
export interface ClusterOperationInfo {
|
|
343
238
|
ClientRequestId?: string;
|
|
344
|
-
|
|
345
239
|
ClusterArn?: string;
|
|
346
|
-
|
|
347
240
|
CreationTime?: Date;
|
|
348
|
-
|
|
349
241
|
EndTime?: Date;
|
|
350
|
-
|
|
351
242
|
ErrorInfo?: ErrorInfo;
|
|
352
|
-
|
|
353
243
|
OperationArn?: string;
|
|
354
|
-
|
|
355
244
|
OperationState?: string;
|
|
356
|
-
|
|
357
245
|
OperationSteps?: ClusterOperationStep[];
|
|
358
|
-
|
|
359
246
|
OperationType?: string;
|
|
360
|
-
|
|
361
247
|
SourceClusterInfo?: MutableClusterInfo;
|
|
362
|
-
|
|
363
248
|
TargetClusterInfo?: MutableClusterInfo;
|
|
364
249
|
}
|
|
365
|
-
|
|
366
250
|
export interface CompatibleKafkaVersion {
|
|
367
251
|
SourceVersion?: string;
|
|
368
|
-
|
|
369
252
|
TargetVersions?: string[];
|
|
370
253
|
}
|
|
371
|
-
|
|
372
254
|
export interface ConfigurationRevision {
|
|
373
255
|
CreationTime: Date | undefined;
|
|
374
|
-
|
|
375
256
|
Description?: string;
|
|
376
|
-
|
|
377
257
|
Revision: number | undefined;
|
|
378
258
|
}
|
|
379
259
|
export declare enum ConfigurationState {
|
|
@@ -381,20 +261,13 @@ export declare enum ConfigurationState {
|
|
|
381
261
|
DELETE_FAILED = "DELETE_FAILED",
|
|
382
262
|
DELETING = "DELETING",
|
|
383
263
|
}
|
|
384
|
-
|
|
385
264
|
export interface Configuration {
|
|
386
265
|
Arn: string | undefined;
|
|
387
|
-
|
|
388
266
|
CreationTime: Date | undefined;
|
|
389
|
-
|
|
390
267
|
Description: string | undefined;
|
|
391
|
-
|
|
392
268
|
KafkaVersions: string[] | undefined;
|
|
393
|
-
|
|
394
269
|
LatestRevision: ConfigurationRevision | undefined;
|
|
395
|
-
|
|
396
270
|
Name: string | undefined;
|
|
397
|
-
|
|
398
271
|
State: ConfigurationState | string | undefined;
|
|
399
272
|
}
|
|
400
273
|
export declare enum KafkaVersionStatus {
|
|
@@ -405,278 +278,183 @@ export interface KafkaVersion {
|
|
|
405
278
|
Version?: string;
|
|
406
279
|
Status?: KafkaVersionStatus | string;
|
|
407
280
|
}
|
|
408
|
-
|
|
409
281
|
export interface BrokerNodeInfo {
|
|
410
282
|
AttachedENIId?: string;
|
|
411
|
-
|
|
412
283
|
BrokerId?: number;
|
|
413
|
-
|
|
414
284
|
ClientSubnet?: string;
|
|
415
|
-
|
|
416
285
|
ClientVpcIpAddress?: string;
|
|
417
|
-
|
|
418
286
|
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
419
|
-
|
|
420
287
|
Endpoints?: string[];
|
|
421
288
|
}
|
|
422
289
|
export declare enum NodeType {
|
|
423
290
|
BROKER = "BROKER",
|
|
424
291
|
}
|
|
425
|
-
|
|
426
292
|
export interface ZookeeperNodeInfo {
|
|
427
293
|
AttachedENIId?: string;
|
|
428
|
-
|
|
429
294
|
ClientVpcIpAddress?: string;
|
|
430
|
-
|
|
431
295
|
Endpoints?: string[];
|
|
432
|
-
|
|
433
296
|
ZookeeperId?: number;
|
|
434
|
-
|
|
435
297
|
ZookeeperVersion?: string;
|
|
436
298
|
}
|
|
437
|
-
|
|
438
299
|
export interface NodeInfo {
|
|
439
300
|
AddedToClusterTime?: string;
|
|
440
|
-
|
|
441
301
|
BrokerNodeInfo?: BrokerNodeInfo;
|
|
442
|
-
|
|
443
302
|
InstanceType?: string;
|
|
444
|
-
|
|
445
303
|
NodeARN?: string;
|
|
446
|
-
|
|
447
304
|
NodeType?: NodeType | string;
|
|
448
|
-
|
|
449
305
|
ZookeeperNodeInfo?: ZookeeperNodeInfo;
|
|
450
306
|
}
|
|
451
|
-
|
|
452
307
|
export interface UnprocessedScramSecret {
|
|
453
308
|
ErrorCode?: string;
|
|
454
|
-
|
|
455
309
|
ErrorMessage?: string;
|
|
456
|
-
|
|
457
310
|
SecretArn?: string;
|
|
458
311
|
}
|
|
459
|
-
|
|
460
312
|
export declare class BadRequestException extends __BaseException {
|
|
461
313
|
readonly name: "BadRequestException";
|
|
462
314
|
readonly $fault: "client";
|
|
463
|
-
|
|
464
315
|
InvalidParameter?: string;
|
|
465
|
-
|
|
466
316
|
Message?: string;
|
|
467
|
-
|
|
468
317
|
constructor(
|
|
469
318
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
470
319
|
);
|
|
471
320
|
}
|
|
472
|
-
|
|
473
321
|
export interface BatchAssociateScramSecretRequest {
|
|
474
322
|
ClusterArn: string | undefined;
|
|
475
|
-
|
|
476
323
|
SecretArnList: string[] | undefined;
|
|
477
324
|
}
|
|
478
325
|
export interface BatchAssociateScramSecretResponse {
|
|
479
326
|
ClusterArn?: string;
|
|
480
|
-
|
|
481
327
|
UnprocessedScramSecrets?: UnprocessedScramSecret[];
|
|
482
328
|
}
|
|
483
|
-
|
|
484
329
|
export declare class ForbiddenException extends __BaseException {
|
|
485
330
|
readonly name: "ForbiddenException";
|
|
486
331
|
readonly $fault: "client";
|
|
487
|
-
|
|
488
332
|
InvalidParameter?: string;
|
|
489
|
-
|
|
490
333
|
Message?: string;
|
|
491
|
-
|
|
492
334
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
493
335
|
}
|
|
494
|
-
|
|
495
336
|
export declare class InternalServerErrorException extends __BaseException {
|
|
496
337
|
readonly name: "InternalServerErrorException";
|
|
497
338
|
readonly $fault: "server";
|
|
498
|
-
|
|
499
339
|
InvalidParameter?: string;
|
|
500
|
-
|
|
501
340
|
Message?: string;
|
|
502
|
-
|
|
503
341
|
constructor(
|
|
504
342
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
505
343
|
);
|
|
506
344
|
}
|
|
507
|
-
|
|
508
345
|
export declare class NotFoundException extends __BaseException {
|
|
509
346
|
readonly name: "NotFoundException";
|
|
510
347
|
readonly $fault: "client";
|
|
511
|
-
|
|
512
348
|
InvalidParameter?: string;
|
|
513
|
-
|
|
514
349
|
Message?: string;
|
|
515
|
-
|
|
516
350
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
517
351
|
}
|
|
518
|
-
|
|
519
352
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
520
353
|
readonly name: "ServiceUnavailableException";
|
|
521
354
|
readonly $fault: "server";
|
|
522
|
-
|
|
523
355
|
InvalidParameter?: string;
|
|
524
|
-
|
|
525
356
|
Message?: string;
|
|
526
|
-
|
|
527
357
|
constructor(
|
|
528
358
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
529
359
|
);
|
|
530
360
|
}
|
|
531
|
-
|
|
532
361
|
export declare class TooManyRequestsException extends __BaseException {
|
|
533
362
|
readonly name: "TooManyRequestsException";
|
|
534
363
|
readonly $fault: "client";
|
|
535
|
-
|
|
536
364
|
InvalidParameter?: string;
|
|
537
|
-
|
|
538
365
|
Message?: string;
|
|
539
|
-
|
|
540
366
|
constructor(
|
|
541
367
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
542
368
|
);
|
|
543
369
|
}
|
|
544
|
-
|
|
545
370
|
export declare class UnauthorizedException extends __BaseException {
|
|
546
371
|
readonly name: "UnauthorizedException";
|
|
547
372
|
readonly $fault: "client";
|
|
548
|
-
|
|
549
373
|
InvalidParameter?: string;
|
|
550
|
-
|
|
551
374
|
Message?: string;
|
|
552
|
-
|
|
553
375
|
constructor(
|
|
554
376
|
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
555
377
|
);
|
|
556
378
|
}
|
|
557
|
-
|
|
558
379
|
export interface BatchDisassociateScramSecretRequest {
|
|
559
380
|
ClusterArn: string | undefined;
|
|
560
|
-
|
|
561
381
|
SecretArnList: string[] | undefined;
|
|
562
382
|
}
|
|
563
383
|
export interface BatchDisassociateScramSecretResponse {
|
|
564
384
|
ClusterArn?: string;
|
|
565
|
-
|
|
566
385
|
UnprocessedScramSecrets?: UnprocessedScramSecret[];
|
|
567
386
|
}
|
|
568
|
-
|
|
569
387
|
export declare class ConflictException extends __BaseException {
|
|
570
388
|
readonly name: "ConflictException";
|
|
571
389
|
readonly $fault: "client";
|
|
572
|
-
|
|
573
390
|
InvalidParameter?: string;
|
|
574
|
-
|
|
575
391
|
Message?: string;
|
|
576
|
-
|
|
577
392
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
578
393
|
}
|
|
579
394
|
export interface CreateClusterRequest {
|
|
580
395
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
581
|
-
|
|
582
396
|
ClientAuthentication?: ClientAuthentication;
|
|
583
|
-
|
|
584
397
|
ClusterName: string | undefined;
|
|
585
|
-
|
|
586
398
|
ConfigurationInfo?: ConfigurationInfo;
|
|
587
|
-
|
|
588
399
|
EncryptionInfo?: EncryptionInfo;
|
|
589
|
-
|
|
590
400
|
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
591
|
-
|
|
592
401
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
593
|
-
|
|
594
402
|
KafkaVersion: string | undefined;
|
|
595
403
|
LoggingInfo?: LoggingInfo;
|
|
596
|
-
|
|
597
404
|
NumberOfBrokerNodes: number | undefined;
|
|
598
|
-
|
|
599
405
|
Tags?: Record<string, string>;
|
|
600
406
|
}
|
|
601
407
|
export interface CreateClusterResponse {
|
|
602
408
|
ClusterArn?: string;
|
|
603
|
-
|
|
604
409
|
ClusterName?: string;
|
|
605
|
-
|
|
606
410
|
State?: ClusterState | string;
|
|
607
411
|
}
|
|
608
|
-
|
|
609
412
|
export interface ProvisionedRequest {
|
|
610
413
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
611
|
-
|
|
612
414
|
ClientAuthentication?: ClientAuthentication;
|
|
613
|
-
|
|
614
415
|
ConfigurationInfo?: ConfigurationInfo;
|
|
615
|
-
|
|
616
416
|
EncryptionInfo?: EncryptionInfo;
|
|
617
|
-
|
|
618
417
|
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
619
|
-
|
|
620
418
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
621
|
-
|
|
622
419
|
KafkaVersion: string | undefined;
|
|
623
|
-
|
|
624
420
|
LoggingInfo?: LoggingInfo;
|
|
625
|
-
|
|
626
421
|
NumberOfBrokerNodes: number | undefined;
|
|
627
422
|
}
|
|
628
|
-
|
|
629
423
|
export interface ServerlessRequest {
|
|
630
424
|
VpcConfigs: VpcConfig[] | undefined;
|
|
631
|
-
|
|
632
425
|
ClientAuthentication?: ServerlessClientAuthentication;
|
|
633
426
|
}
|
|
634
427
|
export interface CreateClusterV2Request {
|
|
635
428
|
ClusterName: string | undefined;
|
|
636
|
-
|
|
637
429
|
Tags?: Record<string, string>;
|
|
638
|
-
|
|
639
430
|
Provisioned?: ProvisionedRequest;
|
|
640
|
-
|
|
641
431
|
Serverless?: ServerlessRequest;
|
|
642
432
|
}
|
|
643
433
|
export interface CreateClusterV2Response {
|
|
644
434
|
ClusterArn?: string;
|
|
645
|
-
|
|
646
435
|
ClusterName?: string;
|
|
647
|
-
|
|
648
436
|
State?: ClusterState | string;
|
|
649
|
-
|
|
650
437
|
ClusterType?: ClusterType | string;
|
|
651
438
|
}
|
|
652
439
|
export interface CreateConfigurationRequest {
|
|
653
440
|
Description?: string;
|
|
654
|
-
|
|
655
441
|
KafkaVersions?: string[];
|
|
656
|
-
|
|
657
442
|
Name: string | undefined;
|
|
658
|
-
|
|
659
443
|
ServerProperties: Uint8Array | undefined;
|
|
660
444
|
}
|
|
661
445
|
export interface CreateConfigurationResponse {
|
|
662
446
|
Arn?: string;
|
|
663
|
-
|
|
664
447
|
CreationTime?: Date;
|
|
665
|
-
|
|
666
448
|
LatestRevision?: ConfigurationRevision;
|
|
667
|
-
|
|
668
449
|
Name?: string;
|
|
669
|
-
|
|
670
450
|
State?: ConfigurationState | string;
|
|
671
451
|
}
|
|
672
452
|
export interface DeleteClusterRequest {
|
|
673
453
|
ClusterArn: string | undefined;
|
|
674
|
-
|
|
675
454
|
CurrentVersion?: string;
|
|
676
455
|
}
|
|
677
456
|
export interface DeleteClusterResponse {
|
|
678
457
|
ClusterArn?: string;
|
|
679
|
-
|
|
680
458
|
State?: ClusterState | string;
|
|
681
459
|
}
|
|
682
460
|
export interface DeleteConfigurationRequest {
|
|
@@ -684,7 +462,6 @@ export interface DeleteConfigurationRequest {
|
|
|
684
462
|
}
|
|
685
463
|
export interface DeleteConfigurationResponse {
|
|
686
464
|
Arn?: string;
|
|
687
|
-
|
|
688
465
|
State?: ConfigurationState | string;
|
|
689
466
|
}
|
|
690
467
|
export interface DescribeClusterRequest {
|
|
@@ -710,33 +487,22 @@ export interface DescribeConfigurationRequest {
|
|
|
710
487
|
}
|
|
711
488
|
export interface DescribeConfigurationResponse {
|
|
712
489
|
Arn?: string;
|
|
713
|
-
|
|
714
490
|
CreationTime?: Date;
|
|
715
|
-
|
|
716
491
|
Description?: string;
|
|
717
|
-
|
|
718
492
|
KafkaVersions?: string[];
|
|
719
|
-
|
|
720
493
|
LatestRevision?: ConfigurationRevision;
|
|
721
|
-
|
|
722
494
|
Name?: string;
|
|
723
|
-
|
|
724
495
|
State?: ConfigurationState | string;
|
|
725
496
|
}
|
|
726
497
|
export interface DescribeConfigurationRevisionRequest {
|
|
727
498
|
Arn: string | undefined;
|
|
728
|
-
|
|
729
499
|
Revision: number | undefined;
|
|
730
500
|
}
|
|
731
501
|
export interface DescribeConfigurationRevisionResponse {
|
|
732
502
|
Arn?: string;
|
|
733
|
-
|
|
734
503
|
CreationTime?: Date;
|
|
735
|
-
|
|
736
504
|
Description?: string;
|
|
737
|
-
|
|
738
505
|
Revision?: number;
|
|
739
|
-
|
|
740
506
|
ServerProperties?: Uint8Array;
|
|
741
507
|
}
|
|
742
508
|
export interface GetBootstrapBrokersRequest {
|
|
@@ -744,17 +510,11 @@ export interface GetBootstrapBrokersRequest {
|
|
|
744
510
|
}
|
|
745
511
|
export interface GetBootstrapBrokersResponse {
|
|
746
512
|
BootstrapBrokerString?: string;
|
|
747
|
-
|
|
748
513
|
BootstrapBrokerStringTls?: string;
|
|
749
|
-
|
|
750
514
|
BootstrapBrokerStringSaslScram?: string;
|
|
751
|
-
|
|
752
515
|
BootstrapBrokerStringSaslIam?: string;
|
|
753
|
-
|
|
754
516
|
BootstrapBrokerStringPublicTls?: string;
|
|
755
|
-
|
|
756
517
|
BootstrapBrokerStringPublicSaslScram?: string;
|
|
757
|
-
|
|
758
518
|
BootstrapBrokerStringPublicSaslIam?: string;
|
|
759
519
|
}
|
|
760
520
|
export interface GetCompatibleKafkaVersionsRequest {
|
|
@@ -765,67 +525,51 @@ export interface GetCompatibleKafkaVersionsResponse {
|
|
|
765
525
|
}
|
|
766
526
|
export interface ListClusterOperationsRequest {
|
|
767
527
|
ClusterArn: string | undefined;
|
|
768
|
-
|
|
769
528
|
MaxResults?: number;
|
|
770
|
-
|
|
771
529
|
NextToken?: string;
|
|
772
530
|
}
|
|
773
531
|
export interface ListClusterOperationsResponse {
|
|
774
532
|
ClusterOperationInfoList?: ClusterOperationInfo[];
|
|
775
|
-
|
|
776
533
|
NextToken?: string;
|
|
777
534
|
}
|
|
778
535
|
export interface ListClustersRequest {
|
|
779
536
|
ClusterNameFilter?: string;
|
|
780
|
-
|
|
781
537
|
MaxResults?: number;
|
|
782
|
-
|
|
783
538
|
NextToken?: string;
|
|
784
539
|
}
|
|
785
540
|
export interface ListClustersResponse {
|
|
786
541
|
ClusterInfoList?: ClusterInfo[];
|
|
787
|
-
|
|
788
542
|
NextToken?: string;
|
|
789
543
|
}
|
|
790
544
|
export interface ListClustersV2Request {
|
|
791
545
|
ClusterNameFilter?: string;
|
|
792
|
-
|
|
793
546
|
ClusterTypeFilter?: string;
|
|
794
|
-
|
|
795
547
|
MaxResults?: number;
|
|
796
|
-
|
|
797
548
|
NextToken?: string;
|
|
798
549
|
}
|
|
799
550
|
export interface ListClustersV2Response {
|
|
800
551
|
ClusterInfoList?: Cluster[];
|
|
801
|
-
|
|
802
552
|
NextToken?: string;
|
|
803
553
|
}
|
|
804
554
|
export interface ListConfigurationRevisionsRequest {
|
|
805
555
|
Arn: string | undefined;
|
|
806
|
-
|
|
807
556
|
MaxResults?: number;
|
|
808
|
-
|
|
809
557
|
NextToken?: string;
|
|
810
558
|
}
|
|
811
559
|
export interface ListConfigurationRevisionsResponse {
|
|
812
560
|
NextToken?: string;
|
|
813
|
-
|
|
814
561
|
Revisions?: ConfigurationRevision[];
|
|
815
562
|
}
|
|
816
563
|
export interface ListConfigurationsRequest {
|
|
817
564
|
MaxResults?: number;
|
|
818
|
-
|
|
819
565
|
NextToken?: string;
|
|
820
566
|
}
|
|
821
567
|
export interface ListConfigurationsResponse {
|
|
822
568
|
Configurations?: Configuration[];
|
|
823
|
-
|
|
824
569
|
NextToken?: string;
|
|
825
570
|
}
|
|
826
571
|
export interface ListKafkaVersionsRequest {
|
|
827
572
|
MaxResults?: number;
|
|
828
|
-
|
|
829
573
|
NextToken?: string;
|
|
830
574
|
}
|
|
831
575
|
export interface ListKafkaVersionsResponse {
|
|
@@ -834,26 +578,20 @@ export interface ListKafkaVersionsResponse {
|
|
|
834
578
|
}
|
|
835
579
|
export interface ListNodesRequest {
|
|
836
580
|
ClusterArn: string | undefined;
|
|
837
|
-
|
|
838
581
|
MaxResults?: number;
|
|
839
|
-
|
|
840
582
|
NextToken?: string;
|
|
841
583
|
}
|
|
842
584
|
export interface ListNodesResponse {
|
|
843
585
|
NextToken?: string;
|
|
844
|
-
|
|
845
586
|
NodeInfoList?: NodeInfo[];
|
|
846
587
|
}
|
|
847
588
|
export interface ListScramSecretsRequest {
|
|
848
589
|
ClusterArn: string | undefined;
|
|
849
|
-
|
|
850
590
|
MaxResults?: number;
|
|
851
|
-
|
|
852
591
|
NextToken?: string;
|
|
853
592
|
}
|
|
854
593
|
export interface ListScramSecretsResponse {
|
|
855
594
|
NextToken?: string;
|
|
856
|
-
|
|
857
595
|
SecretArnList?: string[];
|
|
858
596
|
}
|
|
859
597
|
export interface ListTagsForResourceRequest {
|
|
@@ -862,585 +600,426 @@ export interface ListTagsForResourceRequest {
|
|
|
862
600
|
export interface ListTagsForResourceResponse {
|
|
863
601
|
Tags?: Record<string, string>;
|
|
864
602
|
}
|
|
865
|
-
|
|
866
603
|
export interface RebootBrokerRequest {
|
|
867
604
|
BrokerIds: string[] | undefined;
|
|
868
|
-
|
|
869
605
|
ClusterArn: string | undefined;
|
|
870
606
|
}
|
|
871
607
|
export interface RebootBrokerResponse {
|
|
872
608
|
ClusterArn?: string;
|
|
873
|
-
|
|
874
609
|
ClusterOperationArn?: string;
|
|
875
610
|
}
|
|
876
611
|
export interface TagResourceRequest {
|
|
877
612
|
ResourceArn: string | undefined;
|
|
878
|
-
|
|
879
613
|
Tags: Record<string, string> | undefined;
|
|
880
614
|
}
|
|
881
615
|
export interface UntagResourceRequest {
|
|
882
616
|
ResourceArn: string | undefined;
|
|
883
|
-
|
|
884
617
|
TagKeys: string[] | undefined;
|
|
885
618
|
}
|
|
886
619
|
export interface UpdateBrokerCountRequest {
|
|
887
620
|
ClusterArn: string | undefined;
|
|
888
|
-
|
|
889
621
|
CurrentVersion: string | undefined;
|
|
890
|
-
|
|
891
622
|
TargetNumberOfBrokerNodes: number | undefined;
|
|
892
623
|
}
|
|
893
624
|
export interface UpdateBrokerCountResponse {
|
|
894
625
|
ClusterArn?: string;
|
|
895
|
-
|
|
896
626
|
ClusterOperationArn?: string;
|
|
897
627
|
}
|
|
898
628
|
export interface UpdateBrokerStorageRequest {
|
|
899
629
|
ClusterArn: string | undefined;
|
|
900
|
-
|
|
901
630
|
CurrentVersion: string | undefined;
|
|
902
|
-
|
|
903
631
|
TargetBrokerEBSVolumeInfo: BrokerEBSVolumeInfo[] | undefined;
|
|
904
632
|
}
|
|
905
633
|
export interface UpdateBrokerStorageResponse {
|
|
906
634
|
ClusterArn?: string;
|
|
907
|
-
|
|
908
635
|
ClusterOperationArn?: string;
|
|
909
636
|
}
|
|
910
637
|
export interface UpdateBrokerTypeRequest {
|
|
911
638
|
ClusterArn: string | undefined;
|
|
912
|
-
|
|
913
639
|
CurrentVersion: string | undefined;
|
|
914
|
-
|
|
915
640
|
TargetInstanceType: string | undefined;
|
|
916
641
|
}
|
|
917
642
|
export interface UpdateBrokerTypeResponse {
|
|
918
643
|
ClusterArn?: string;
|
|
919
|
-
|
|
920
644
|
ClusterOperationArn?: string;
|
|
921
645
|
}
|
|
922
646
|
export interface UpdateClusterConfigurationRequest {
|
|
923
647
|
ClusterArn: string | undefined;
|
|
924
|
-
|
|
925
648
|
ConfigurationInfo: ConfigurationInfo | undefined;
|
|
926
|
-
|
|
927
649
|
CurrentVersion: string | undefined;
|
|
928
650
|
}
|
|
929
651
|
export interface UpdateClusterConfigurationResponse {
|
|
930
652
|
ClusterArn?: string;
|
|
931
|
-
|
|
932
653
|
ClusterOperationArn?: string;
|
|
933
654
|
}
|
|
934
655
|
export interface UpdateClusterKafkaVersionRequest {
|
|
935
656
|
ClusterArn: string | undefined;
|
|
936
|
-
|
|
937
657
|
ConfigurationInfo?: ConfigurationInfo;
|
|
938
|
-
|
|
939
658
|
CurrentVersion: string | undefined;
|
|
940
|
-
|
|
941
659
|
TargetKafkaVersion: string | undefined;
|
|
942
660
|
}
|
|
943
661
|
export interface UpdateClusterKafkaVersionResponse {
|
|
944
662
|
ClusterArn?: string;
|
|
945
|
-
|
|
946
663
|
ClusterOperationArn?: string;
|
|
947
664
|
}
|
|
948
665
|
export interface UpdateConfigurationRequest {
|
|
949
666
|
Arn: string | undefined;
|
|
950
|
-
|
|
951
667
|
Description?: string;
|
|
952
|
-
|
|
953
668
|
ServerProperties: Uint8Array | undefined;
|
|
954
669
|
}
|
|
955
670
|
export interface UpdateConfigurationResponse {
|
|
956
671
|
Arn?: string;
|
|
957
|
-
|
|
958
672
|
LatestRevision?: ConfigurationRevision;
|
|
959
673
|
}
|
|
960
|
-
|
|
961
674
|
export interface UpdateConnectivityRequest {
|
|
962
675
|
ClusterArn: string | undefined;
|
|
963
|
-
|
|
964
676
|
ConnectivityInfo: ConnectivityInfo | undefined;
|
|
965
|
-
|
|
966
677
|
CurrentVersion: string | undefined;
|
|
967
678
|
}
|
|
968
679
|
export interface UpdateConnectivityResponse {
|
|
969
680
|
ClusterArn?: string;
|
|
970
|
-
|
|
971
681
|
ClusterOperationArn?: string;
|
|
972
682
|
}
|
|
973
|
-
|
|
974
683
|
export interface UpdateMonitoringRequest {
|
|
975
684
|
ClusterArn: string | undefined;
|
|
976
|
-
|
|
977
685
|
CurrentVersion: string | undefined;
|
|
978
|
-
|
|
979
686
|
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
980
|
-
|
|
981
687
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
982
688
|
LoggingInfo?: LoggingInfo;
|
|
983
689
|
}
|
|
984
690
|
export interface UpdateMonitoringResponse {
|
|
985
691
|
ClusterArn?: string;
|
|
986
|
-
|
|
987
692
|
ClusterOperationArn?: string;
|
|
988
693
|
}
|
|
989
694
|
export interface UpdateSecurityRequest {
|
|
990
695
|
ClientAuthentication?: ClientAuthentication;
|
|
991
|
-
|
|
992
696
|
ClusterArn: string | undefined;
|
|
993
|
-
|
|
994
697
|
CurrentVersion: string | undefined;
|
|
995
|
-
|
|
996
698
|
EncryptionInfo?: EncryptionInfo;
|
|
997
699
|
}
|
|
998
700
|
export interface UpdateSecurityResponse {
|
|
999
701
|
ClusterArn?: string;
|
|
1000
|
-
|
|
1001
702
|
ClusterOperationArn?: string;
|
|
1002
703
|
}
|
|
1003
|
-
|
|
1004
704
|
export declare const ProvisionedThroughputFilterSensitiveLog: (
|
|
1005
705
|
obj: ProvisionedThroughput
|
|
1006
706
|
) => any;
|
|
1007
|
-
|
|
1008
707
|
export declare const BrokerEBSVolumeInfoFilterSensitiveLog: (
|
|
1009
708
|
obj: BrokerEBSVolumeInfo
|
|
1010
709
|
) => any;
|
|
1011
|
-
|
|
1012
710
|
export declare const PublicAccessFilterSensitiveLog: (obj: PublicAccess) => any;
|
|
1013
|
-
|
|
1014
711
|
export declare const ConnectivityInfoFilterSensitiveLog: (
|
|
1015
712
|
obj: ConnectivityInfo
|
|
1016
713
|
) => any;
|
|
1017
|
-
|
|
1018
714
|
export declare const EBSStorageInfoFilterSensitiveLog: (
|
|
1019
715
|
obj: EBSStorageInfo
|
|
1020
716
|
) => any;
|
|
1021
|
-
|
|
1022
717
|
export declare const StorageInfoFilterSensitiveLog: (obj: StorageInfo) => any;
|
|
1023
|
-
|
|
1024
718
|
export declare const BrokerNodeGroupInfoFilterSensitiveLog: (
|
|
1025
719
|
obj: BrokerNodeGroupInfo
|
|
1026
720
|
) => any;
|
|
1027
|
-
|
|
1028
721
|
export declare const IamFilterSensitiveLog: (obj: Iam) => any;
|
|
1029
|
-
|
|
1030
722
|
export declare const ScramFilterSensitiveLog: (obj: Scram) => any;
|
|
1031
|
-
|
|
1032
723
|
export declare const SaslFilterSensitiveLog: (obj: Sasl) => any;
|
|
1033
|
-
|
|
1034
724
|
export declare const TlsFilterSensitiveLog: (obj: Tls) => any;
|
|
1035
|
-
|
|
1036
725
|
export declare const UnauthenticatedFilterSensitiveLog: (
|
|
1037
726
|
obj: Unauthenticated
|
|
1038
727
|
) => any;
|
|
1039
|
-
|
|
1040
728
|
export declare const ClientAuthenticationFilterSensitiveLog: (
|
|
1041
729
|
obj: ClientAuthentication
|
|
1042
730
|
) => any;
|
|
1043
|
-
|
|
1044
731
|
export declare const BrokerSoftwareInfoFilterSensitiveLog: (
|
|
1045
732
|
obj: BrokerSoftwareInfo
|
|
1046
733
|
) => any;
|
|
1047
|
-
|
|
1048
734
|
export declare const EncryptionAtRestFilterSensitiveLog: (
|
|
1049
735
|
obj: EncryptionAtRest
|
|
1050
736
|
) => any;
|
|
1051
|
-
|
|
1052
737
|
export declare const EncryptionInTransitFilterSensitiveLog: (
|
|
1053
738
|
obj: EncryptionInTransit
|
|
1054
739
|
) => any;
|
|
1055
|
-
|
|
1056
740
|
export declare const EncryptionInfoFilterSensitiveLog: (
|
|
1057
741
|
obj: EncryptionInfo
|
|
1058
742
|
) => any;
|
|
1059
|
-
|
|
1060
743
|
export declare const CloudWatchLogsFilterSensitiveLog: (
|
|
1061
744
|
obj: CloudWatchLogs
|
|
1062
745
|
) => any;
|
|
1063
|
-
|
|
1064
746
|
export declare const FirehoseFilterSensitiveLog: (obj: Firehose) => any;
|
|
1065
|
-
|
|
1066
747
|
export declare const S3FilterSensitiveLog: (obj: S3) => any;
|
|
1067
|
-
|
|
1068
748
|
export declare const BrokerLogsFilterSensitiveLog: (obj: BrokerLogs) => any;
|
|
1069
|
-
|
|
1070
749
|
export declare const LoggingInfoFilterSensitiveLog: (obj: LoggingInfo) => any;
|
|
1071
|
-
|
|
1072
750
|
export declare const JmxExporterInfoFilterSensitiveLog: (
|
|
1073
751
|
obj: JmxExporterInfo
|
|
1074
752
|
) => any;
|
|
1075
|
-
|
|
1076
753
|
export declare const NodeExporterInfoFilterSensitiveLog: (
|
|
1077
754
|
obj: NodeExporterInfo
|
|
1078
755
|
) => any;
|
|
1079
|
-
|
|
1080
756
|
export declare const PrometheusInfoFilterSensitiveLog: (
|
|
1081
757
|
obj: PrometheusInfo
|
|
1082
758
|
) => any;
|
|
1083
|
-
|
|
1084
759
|
export declare const OpenMonitoringInfoFilterSensitiveLog: (
|
|
1085
760
|
obj: OpenMonitoringInfo
|
|
1086
761
|
) => any;
|
|
1087
|
-
|
|
1088
762
|
export declare const ProvisionedFilterSensitiveLog: (obj: Provisioned) => any;
|
|
1089
|
-
|
|
1090
763
|
export declare const ServerlessSaslFilterSensitiveLog: (
|
|
1091
764
|
obj: ServerlessSasl
|
|
1092
765
|
) => any;
|
|
1093
|
-
|
|
1094
766
|
export declare const ServerlessClientAuthenticationFilterSensitiveLog: (
|
|
1095
767
|
obj: ServerlessClientAuthentication
|
|
1096
768
|
) => any;
|
|
1097
|
-
|
|
1098
769
|
export declare const VpcConfigFilterSensitiveLog: (obj: VpcConfig) => any;
|
|
1099
|
-
|
|
1100
770
|
export declare const ServerlessFilterSensitiveLog: (obj: Serverless) => any;
|
|
1101
|
-
|
|
1102
771
|
export declare const StateInfoFilterSensitiveLog: (obj: StateInfo) => any;
|
|
1103
|
-
|
|
1104
772
|
export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
|
|
1105
|
-
|
|
1106
773
|
export declare const JmxExporterFilterSensitiveLog: (obj: JmxExporter) => any;
|
|
1107
|
-
|
|
1108
774
|
export declare const NodeExporterFilterSensitiveLog: (obj: NodeExporter) => any;
|
|
1109
|
-
|
|
1110
775
|
export declare const PrometheusFilterSensitiveLog: (obj: Prometheus) => any;
|
|
1111
|
-
|
|
1112
776
|
export declare const OpenMonitoringFilterSensitiveLog: (
|
|
1113
777
|
obj: OpenMonitoring
|
|
1114
778
|
) => any;
|
|
1115
|
-
|
|
1116
779
|
export declare const ClusterInfoFilterSensitiveLog: (obj: ClusterInfo) => any;
|
|
1117
|
-
|
|
1118
780
|
export declare const ErrorInfoFilterSensitiveLog: (obj: ErrorInfo) => any;
|
|
1119
|
-
|
|
1120
781
|
export declare const ClusterOperationStepInfoFilterSensitiveLog: (
|
|
1121
782
|
obj: ClusterOperationStepInfo
|
|
1122
783
|
) => any;
|
|
1123
|
-
|
|
1124
784
|
export declare const ClusterOperationStepFilterSensitiveLog: (
|
|
1125
785
|
obj: ClusterOperationStep
|
|
1126
786
|
) => any;
|
|
1127
|
-
|
|
1128
787
|
export declare const ConfigurationInfoFilterSensitiveLog: (
|
|
1129
788
|
obj: ConfigurationInfo
|
|
1130
789
|
) => any;
|
|
1131
|
-
|
|
1132
790
|
export declare const MutableClusterInfoFilterSensitiveLog: (
|
|
1133
791
|
obj: MutableClusterInfo
|
|
1134
792
|
) => any;
|
|
1135
|
-
|
|
1136
793
|
export declare const ClusterOperationInfoFilterSensitiveLog: (
|
|
1137
794
|
obj: ClusterOperationInfo
|
|
1138
795
|
) => any;
|
|
1139
|
-
|
|
1140
796
|
export declare const CompatibleKafkaVersionFilterSensitiveLog: (
|
|
1141
797
|
obj: CompatibleKafkaVersion
|
|
1142
798
|
) => any;
|
|
1143
|
-
|
|
1144
799
|
export declare const ConfigurationRevisionFilterSensitiveLog: (
|
|
1145
800
|
obj: ConfigurationRevision
|
|
1146
801
|
) => any;
|
|
1147
|
-
|
|
1148
802
|
export declare const ConfigurationFilterSensitiveLog: (
|
|
1149
803
|
obj: Configuration
|
|
1150
804
|
) => any;
|
|
1151
|
-
|
|
1152
805
|
export declare const KafkaVersionFilterSensitiveLog: (obj: KafkaVersion) => any;
|
|
1153
|
-
|
|
1154
806
|
export declare const BrokerNodeInfoFilterSensitiveLog: (
|
|
1155
807
|
obj: BrokerNodeInfo
|
|
1156
808
|
) => any;
|
|
1157
|
-
|
|
1158
809
|
export declare const ZookeeperNodeInfoFilterSensitiveLog: (
|
|
1159
810
|
obj: ZookeeperNodeInfo
|
|
1160
811
|
) => any;
|
|
1161
|
-
|
|
1162
812
|
export declare const NodeInfoFilterSensitiveLog: (obj: NodeInfo) => any;
|
|
1163
|
-
|
|
1164
813
|
export declare const UnprocessedScramSecretFilterSensitiveLog: (
|
|
1165
814
|
obj: UnprocessedScramSecret
|
|
1166
815
|
) => any;
|
|
1167
|
-
|
|
1168
816
|
export declare const BatchAssociateScramSecretRequestFilterSensitiveLog: (
|
|
1169
817
|
obj: BatchAssociateScramSecretRequest
|
|
1170
818
|
) => any;
|
|
1171
|
-
|
|
1172
819
|
export declare const BatchAssociateScramSecretResponseFilterSensitiveLog: (
|
|
1173
820
|
obj: BatchAssociateScramSecretResponse
|
|
1174
821
|
) => any;
|
|
1175
|
-
|
|
1176
822
|
export declare const BatchDisassociateScramSecretRequestFilterSensitiveLog: (
|
|
1177
823
|
obj: BatchDisassociateScramSecretRequest
|
|
1178
824
|
) => any;
|
|
1179
|
-
|
|
1180
825
|
export declare const BatchDisassociateScramSecretResponseFilterSensitiveLog: (
|
|
1181
826
|
obj: BatchDisassociateScramSecretResponse
|
|
1182
827
|
) => any;
|
|
1183
|
-
|
|
1184
828
|
export declare const CreateClusterRequestFilterSensitiveLog: (
|
|
1185
829
|
obj: CreateClusterRequest
|
|
1186
830
|
) => any;
|
|
1187
|
-
|
|
1188
831
|
export declare const CreateClusterResponseFilterSensitiveLog: (
|
|
1189
832
|
obj: CreateClusterResponse
|
|
1190
833
|
) => any;
|
|
1191
|
-
|
|
1192
834
|
export declare const ProvisionedRequestFilterSensitiveLog: (
|
|
1193
835
|
obj: ProvisionedRequest
|
|
1194
836
|
) => any;
|
|
1195
|
-
|
|
1196
837
|
export declare const ServerlessRequestFilterSensitiveLog: (
|
|
1197
838
|
obj: ServerlessRequest
|
|
1198
839
|
) => any;
|
|
1199
|
-
|
|
1200
840
|
export declare const CreateClusterV2RequestFilterSensitiveLog: (
|
|
1201
841
|
obj: CreateClusterV2Request
|
|
1202
842
|
) => any;
|
|
1203
|
-
|
|
1204
843
|
export declare const CreateClusterV2ResponseFilterSensitiveLog: (
|
|
1205
844
|
obj: CreateClusterV2Response
|
|
1206
845
|
) => any;
|
|
1207
|
-
|
|
1208
846
|
export declare const CreateConfigurationRequestFilterSensitiveLog: (
|
|
1209
847
|
obj: CreateConfigurationRequest
|
|
1210
848
|
) => any;
|
|
1211
|
-
|
|
1212
849
|
export declare const CreateConfigurationResponseFilterSensitiveLog: (
|
|
1213
850
|
obj: CreateConfigurationResponse
|
|
1214
851
|
) => any;
|
|
1215
|
-
|
|
1216
852
|
export declare const DeleteClusterRequestFilterSensitiveLog: (
|
|
1217
853
|
obj: DeleteClusterRequest
|
|
1218
854
|
) => any;
|
|
1219
|
-
|
|
1220
855
|
export declare const DeleteClusterResponseFilterSensitiveLog: (
|
|
1221
856
|
obj: DeleteClusterResponse
|
|
1222
857
|
) => any;
|
|
1223
|
-
|
|
1224
858
|
export declare const DeleteConfigurationRequestFilterSensitiveLog: (
|
|
1225
859
|
obj: DeleteConfigurationRequest
|
|
1226
860
|
) => any;
|
|
1227
|
-
|
|
1228
861
|
export declare const DeleteConfigurationResponseFilterSensitiveLog: (
|
|
1229
862
|
obj: DeleteConfigurationResponse
|
|
1230
863
|
) => any;
|
|
1231
|
-
|
|
1232
864
|
export declare const DescribeClusterRequestFilterSensitiveLog: (
|
|
1233
865
|
obj: DescribeClusterRequest
|
|
1234
866
|
) => any;
|
|
1235
|
-
|
|
1236
867
|
export declare const DescribeClusterResponseFilterSensitiveLog: (
|
|
1237
868
|
obj: DescribeClusterResponse
|
|
1238
869
|
) => any;
|
|
1239
|
-
|
|
1240
870
|
export declare const DescribeClusterOperationRequestFilterSensitiveLog: (
|
|
1241
871
|
obj: DescribeClusterOperationRequest
|
|
1242
872
|
) => any;
|
|
1243
|
-
|
|
1244
873
|
export declare const DescribeClusterOperationResponseFilterSensitiveLog: (
|
|
1245
874
|
obj: DescribeClusterOperationResponse
|
|
1246
875
|
) => any;
|
|
1247
|
-
|
|
1248
876
|
export declare const DescribeClusterV2RequestFilterSensitiveLog: (
|
|
1249
877
|
obj: DescribeClusterV2Request
|
|
1250
878
|
) => any;
|
|
1251
|
-
|
|
1252
879
|
export declare const DescribeClusterV2ResponseFilterSensitiveLog: (
|
|
1253
880
|
obj: DescribeClusterV2Response
|
|
1254
881
|
) => any;
|
|
1255
|
-
|
|
1256
882
|
export declare const DescribeConfigurationRequestFilterSensitiveLog: (
|
|
1257
883
|
obj: DescribeConfigurationRequest
|
|
1258
884
|
) => any;
|
|
1259
|
-
|
|
1260
885
|
export declare const DescribeConfigurationResponseFilterSensitiveLog: (
|
|
1261
886
|
obj: DescribeConfigurationResponse
|
|
1262
887
|
) => any;
|
|
1263
|
-
|
|
1264
888
|
export declare const DescribeConfigurationRevisionRequestFilterSensitiveLog: (
|
|
1265
889
|
obj: DescribeConfigurationRevisionRequest
|
|
1266
890
|
) => any;
|
|
1267
|
-
|
|
1268
891
|
export declare const DescribeConfigurationRevisionResponseFilterSensitiveLog: (
|
|
1269
892
|
obj: DescribeConfigurationRevisionResponse
|
|
1270
893
|
) => any;
|
|
1271
|
-
|
|
1272
894
|
export declare const GetBootstrapBrokersRequestFilterSensitiveLog: (
|
|
1273
895
|
obj: GetBootstrapBrokersRequest
|
|
1274
896
|
) => any;
|
|
1275
|
-
|
|
1276
897
|
export declare const GetBootstrapBrokersResponseFilterSensitiveLog: (
|
|
1277
898
|
obj: GetBootstrapBrokersResponse
|
|
1278
899
|
) => any;
|
|
1279
|
-
|
|
1280
900
|
export declare const GetCompatibleKafkaVersionsRequestFilterSensitiveLog: (
|
|
1281
901
|
obj: GetCompatibleKafkaVersionsRequest
|
|
1282
902
|
) => any;
|
|
1283
|
-
|
|
1284
903
|
export declare const GetCompatibleKafkaVersionsResponseFilterSensitiveLog: (
|
|
1285
904
|
obj: GetCompatibleKafkaVersionsResponse
|
|
1286
905
|
) => any;
|
|
1287
|
-
|
|
1288
906
|
export declare const ListClusterOperationsRequestFilterSensitiveLog: (
|
|
1289
907
|
obj: ListClusterOperationsRequest
|
|
1290
908
|
) => any;
|
|
1291
|
-
|
|
1292
909
|
export declare const ListClusterOperationsResponseFilterSensitiveLog: (
|
|
1293
910
|
obj: ListClusterOperationsResponse
|
|
1294
911
|
) => any;
|
|
1295
|
-
|
|
1296
912
|
export declare const ListClustersRequestFilterSensitiveLog: (
|
|
1297
913
|
obj: ListClustersRequest
|
|
1298
914
|
) => any;
|
|
1299
|
-
|
|
1300
915
|
export declare const ListClustersResponseFilterSensitiveLog: (
|
|
1301
916
|
obj: ListClustersResponse
|
|
1302
917
|
) => any;
|
|
1303
|
-
|
|
1304
918
|
export declare const ListClustersV2RequestFilterSensitiveLog: (
|
|
1305
919
|
obj: ListClustersV2Request
|
|
1306
920
|
) => any;
|
|
1307
|
-
|
|
1308
921
|
export declare const ListClustersV2ResponseFilterSensitiveLog: (
|
|
1309
922
|
obj: ListClustersV2Response
|
|
1310
923
|
) => any;
|
|
1311
|
-
|
|
1312
924
|
export declare const ListConfigurationRevisionsRequestFilterSensitiveLog: (
|
|
1313
925
|
obj: ListConfigurationRevisionsRequest
|
|
1314
926
|
) => any;
|
|
1315
|
-
|
|
1316
927
|
export declare const ListConfigurationRevisionsResponseFilterSensitiveLog: (
|
|
1317
928
|
obj: ListConfigurationRevisionsResponse
|
|
1318
929
|
) => any;
|
|
1319
|
-
|
|
1320
930
|
export declare const ListConfigurationsRequestFilterSensitiveLog: (
|
|
1321
931
|
obj: ListConfigurationsRequest
|
|
1322
932
|
) => any;
|
|
1323
|
-
|
|
1324
933
|
export declare const ListConfigurationsResponseFilterSensitiveLog: (
|
|
1325
934
|
obj: ListConfigurationsResponse
|
|
1326
935
|
) => any;
|
|
1327
|
-
|
|
1328
936
|
export declare const ListKafkaVersionsRequestFilterSensitiveLog: (
|
|
1329
937
|
obj: ListKafkaVersionsRequest
|
|
1330
938
|
) => any;
|
|
1331
|
-
|
|
1332
939
|
export declare const ListKafkaVersionsResponseFilterSensitiveLog: (
|
|
1333
940
|
obj: ListKafkaVersionsResponse
|
|
1334
941
|
) => any;
|
|
1335
|
-
|
|
1336
942
|
export declare const ListNodesRequestFilterSensitiveLog: (
|
|
1337
943
|
obj: ListNodesRequest
|
|
1338
944
|
) => any;
|
|
1339
|
-
|
|
1340
945
|
export declare const ListNodesResponseFilterSensitiveLog: (
|
|
1341
946
|
obj: ListNodesResponse
|
|
1342
947
|
) => any;
|
|
1343
|
-
|
|
1344
948
|
export declare const ListScramSecretsRequestFilterSensitiveLog: (
|
|
1345
949
|
obj: ListScramSecretsRequest
|
|
1346
950
|
) => any;
|
|
1347
|
-
|
|
1348
951
|
export declare const ListScramSecretsResponseFilterSensitiveLog: (
|
|
1349
952
|
obj: ListScramSecretsResponse
|
|
1350
953
|
) => any;
|
|
1351
|
-
|
|
1352
954
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1353
955
|
obj: ListTagsForResourceRequest
|
|
1354
956
|
) => any;
|
|
1355
|
-
|
|
1356
957
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1357
958
|
obj: ListTagsForResourceResponse
|
|
1358
959
|
) => any;
|
|
1359
|
-
|
|
1360
960
|
export declare const RebootBrokerRequestFilterSensitiveLog: (
|
|
1361
961
|
obj: RebootBrokerRequest
|
|
1362
962
|
) => any;
|
|
1363
|
-
|
|
1364
963
|
export declare const RebootBrokerResponseFilterSensitiveLog: (
|
|
1365
964
|
obj: RebootBrokerResponse
|
|
1366
965
|
) => any;
|
|
1367
|
-
|
|
1368
966
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1369
967
|
obj: TagResourceRequest
|
|
1370
968
|
) => any;
|
|
1371
|
-
|
|
1372
969
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1373
970
|
obj: UntagResourceRequest
|
|
1374
971
|
) => any;
|
|
1375
|
-
|
|
1376
972
|
export declare const UpdateBrokerCountRequestFilterSensitiveLog: (
|
|
1377
973
|
obj: UpdateBrokerCountRequest
|
|
1378
974
|
) => any;
|
|
1379
|
-
|
|
1380
975
|
export declare const UpdateBrokerCountResponseFilterSensitiveLog: (
|
|
1381
976
|
obj: UpdateBrokerCountResponse
|
|
1382
977
|
) => any;
|
|
1383
|
-
|
|
1384
978
|
export declare const UpdateBrokerStorageRequestFilterSensitiveLog: (
|
|
1385
979
|
obj: UpdateBrokerStorageRequest
|
|
1386
980
|
) => any;
|
|
1387
|
-
|
|
1388
981
|
export declare const UpdateBrokerStorageResponseFilterSensitiveLog: (
|
|
1389
982
|
obj: UpdateBrokerStorageResponse
|
|
1390
983
|
) => any;
|
|
1391
|
-
|
|
1392
984
|
export declare const UpdateBrokerTypeRequestFilterSensitiveLog: (
|
|
1393
985
|
obj: UpdateBrokerTypeRequest
|
|
1394
986
|
) => any;
|
|
1395
|
-
|
|
1396
987
|
export declare const UpdateBrokerTypeResponseFilterSensitiveLog: (
|
|
1397
988
|
obj: UpdateBrokerTypeResponse
|
|
1398
989
|
) => any;
|
|
1399
|
-
|
|
1400
990
|
export declare const UpdateClusterConfigurationRequestFilterSensitiveLog: (
|
|
1401
991
|
obj: UpdateClusterConfigurationRequest
|
|
1402
992
|
) => any;
|
|
1403
|
-
|
|
1404
993
|
export declare const UpdateClusterConfigurationResponseFilterSensitiveLog: (
|
|
1405
994
|
obj: UpdateClusterConfigurationResponse
|
|
1406
995
|
) => any;
|
|
1407
|
-
|
|
1408
996
|
export declare const UpdateClusterKafkaVersionRequestFilterSensitiveLog: (
|
|
1409
997
|
obj: UpdateClusterKafkaVersionRequest
|
|
1410
998
|
) => any;
|
|
1411
|
-
|
|
1412
999
|
export declare const UpdateClusterKafkaVersionResponseFilterSensitiveLog: (
|
|
1413
1000
|
obj: UpdateClusterKafkaVersionResponse
|
|
1414
1001
|
) => any;
|
|
1415
|
-
|
|
1416
1002
|
export declare const UpdateConfigurationRequestFilterSensitiveLog: (
|
|
1417
1003
|
obj: UpdateConfigurationRequest
|
|
1418
1004
|
) => any;
|
|
1419
|
-
|
|
1420
1005
|
export declare const UpdateConfigurationResponseFilterSensitiveLog: (
|
|
1421
1006
|
obj: UpdateConfigurationResponse
|
|
1422
1007
|
) => any;
|
|
1423
|
-
|
|
1424
1008
|
export declare const UpdateConnectivityRequestFilterSensitiveLog: (
|
|
1425
1009
|
obj: UpdateConnectivityRequest
|
|
1426
1010
|
) => any;
|
|
1427
|
-
|
|
1428
1011
|
export declare const UpdateConnectivityResponseFilterSensitiveLog: (
|
|
1429
1012
|
obj: UpdateConnectivityResponse
|
|
1430
1013
|
) => any;
|
|
1431
|
-
|
|
1432
1014
|
export declare const UpdateMonitoringRequestFilterSensitiveLog: (
|
|
1433
1015
|
obj: UpdateMonitoringRequest
|
|
1434
1016
|
) => any;
|
|
1435
|
-
|
|
1436
1017
|
export declare const UpdateMonitoringResponseFilterSensitiveLog: (
|
|
1437
1018
|
obj: UpdateMonitoringResponse
|
|
1438
1019
|
) => any;
|
|
1439
|
-
|
|
1440
1020
|
export declare const UpdateSecurityRequestFilterSensitiveLog: (
|
|
1441
1021
|
obj: UpdateSecurityRequest
|
|
1442
1022
|
) => any;
|
|
1443
|
-
|
|
1444
1023
|
export declare const UpdateSecurityResponseFilterSensitiveLog: (
|
|
1445
1024
|
obj: UpdateSecurityResponse
|
|
1446
1025
|
) => any;
|