@aws-sdk/client-kafka 3.312.0 → 3.316.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/Kafka.js +40 -504
- package/dist-cjs/protocols/Aws_restJson1.js +798 -1024
- package/dist-es/Kafka.js +40 -504
- package/dist-es/protocols/Aws_restJson1.js +744 -970
- package/dist-types/Kafka.d.ts +43 -77
- package/dist-types/ts3.4/Kafka.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Kafka.d.ts
CHANGED
|
@@ -36,261 +36,227 @@ import { UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput } from "./c
|
|
|
36
36
|
import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "./commands/UpdateSecurityCommand";
|
|
37
37
|
import { UpdateStorageCommandInput, UpdateStorageCommandOutput } from "./commands/UpdateStorageCommand";
|
|
38
38
|
import { KafkaClient } from "./KafkaClient";
|
|
39
|
-
|
|
40
|
-
* @public
|
|
41
|
-
* <p>The operations for managing an Amazon MSK cluster.</p>
|
|
42
|
-
*/
|
|
43
|
-
export declare class Kafka extends KafkaClient {
|
|
39
|
+
export interface Kafka {
|
|
44
40
|
/**
|
|
45
|
-
* @
|
|
46
|
-
* <p>Associates one or more Scram Secrets with an Amazon MSK cluster.</p>
|
|
41
|
+
* @see {@link BatchAssociateScramSecretCommand}
|
|
47
42
|
*/
|
|
48
43
|
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateScramSecretCommandOutput>;
|
|
49
44
|
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, cb: (err: any, data?: BatchAssociateScramSecretCommandOutput) => void): void;
|
|
50
45
|
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateScramSecretCommandOutput) => void): void;
|
|
51
46
|
/**
|
|
52
|
-
* @
|
|
53
|
-
* <p>Disassociates one or more Scram Secrets from an Amazon MSK cluster.</p>
|
|
47
|
+
* @see {@link BatchDisassociateScramSecretCommand}
|
|
54
48
|
*/
|
|
55
49
|
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisassociateScramSecretCommandOutput>;
|
|
56
50
|
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, cb: (err: any, data?: BatchDisassociateScramSecretCommandOutput) => void): void;
|
|
57
51
|
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateScramSecretCommandOutput) => void): void;
|
|
58
52
|
/**
|
|
59
|
-
* @
|
|
60
|
-
* <p>Creates a new MSK cluster.</p>
|
|
53
|
+
* @see {@link CreateClusterCommand}
|
|
61
54
|
*/
|
|
62
55
|
createCluster(args: CreateClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterCommandOutput>;
|
|
63
56
|
createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
64
57
|
createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
65
58
|
/**
|
|
66
|
-
* @
|
|
67
|
-
* <p>Creates a new MSK cluster.</p>
|
|
59
|
+
* @see {@link CreateClusterV2Command}
|
|
68
60
|
*/
|
|
69
61
|
createClusterV2(args: CreateClusterV2CommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterV2CommandOutput>;
|
|
70
62
|
createClusterV2(args: CreateClusterV2CommandInput, cb: (err: any, data?: CreateClusterV2CommandOutput) => void): void;
|
|
71
63
|
createClusterV2(args: CreateClusterV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterV2CommandOutput) => void): void;
|
|
72
64
|
/**
|
|
73
|
-
* @
|
|
74
|
-
* <p>Creates a new MSK configuration.</p>
|
|
65
|
+
* @see {@link CreateConfigurationCommand}
|
|
75
66
|
*/
|
|
76
67
|
createConfiguration(args: CreateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationCommandOutput>;
|
|
77
68
|
createConfiguration(args: CreateConfigurationCommandInput, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
78
69
|
createConfiguration(args: CreateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
79
70
|
/**
|
|
80
|
-
* @
|
|
81
|
-
* <p>Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request.</p>
|
|
71
|
+
* @see {@link DeleteClusterCommand}
|
|
82
72
|
*/
|
|
83
73
|
deleteCluster(args: DeleteClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterCommandOutput>;
|
|
84
74
|
deleteCluster(args: DeleteClusterCommandInput, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
|
|
85
75
|
deleteCluster(args: DeleteClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
|
|
86
76
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* <p>Deletes an MSK Configuration.</p>
|
|
77
|
+
* @see {@link DeleteConfigurationCommand}
|
|
89
78
|
*/
|
|
90
79
|
deleteConfiguration(args: DeleteConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationCommandOutput>;
|
|
91
80
|
deleteConfiguration(args: DeleteConfigurationCommandInput, cb: (err: any, data?: DeleteConfigurationCommandOutput) => void): void;
|
|
92
81
|
deleteConfiguration(args: DeleteConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationCommandOutput) => void): void;
|
|
93
82
|
/**
|
|
94
|
-
* @
|
|
95
|
-
* <p>Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.</p>
|
|
83
|
+
* @see {@link DescribeClusterCommand}
|
|
96
84
|
*/
|
|
97
85
|
describeCluster(args: DescribeClusterCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterCommandOutput>;
|
|
98
86
|
describeCluster(args: DescribeClusterCommandInput, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
|
|
99
87
|
describeCluster(args: DescribeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
|
|
100
88
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* <p>Returns a description of the cluster operation specified by the ARN.</p>
|
|
89
|
+
* @see {@link DescribeClusterOperationCommand}
|
|
103
90
|
*/
|
|
104
91
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterOperationCommandOutput>;
|
|
105
92
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, cb: (err: any, data?: DescribeClusterOperationCommandOutput) => void): void;
|
|
106
93
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterOperationCommandOutput) => void): void;
|
|
107
94
|
/**
|
|
108
|
-
* @
|
|
109
|
-
* <p>Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.</p>
|
|
95
|
+
* @see {@link DescribeClusterV2Command}
|
|
110
96
|
*/
|
|
111
97
|
describeClusterV2(args: DescribeClusterV2CommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterV2CommandOutput>;
|
|
112
98
|
describeClusterV2(args: DescribeClusterV2CommandInput, cb: (err: any, data?: DescribeClusterV2CommandOutput) => void): void;
|
|
113
99
|
describeClusterV2(args: DescribeClusterV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterV2CommandOutput) => void): void;
|
|
114
100
|
/**
|
|
115
|
-
* @
|
|
116
|
-
* <p>Returns a description of this MSK configuration.</p>
|
|
101
|
+
* @see {@link DescribeConfigurationCommand}
|
|
117
102
|
*/
|
|
118
103
|
describeConfiguration(args: DescribeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationCommandOutput>;
|
|
119
104
|
describeConfiguration(args: DescribeConfigurationCommandInput, cb: (err: any, data?: DescribeConfigurationCommandOutput) => void): void;
|
|
120
105
|
describeConfiguration(args: DescribeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationCommandOutput) => void): void;
|
|
121
106
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* <p>Returns a description of this revision of the configuration.</p>
|
|
107
|
+
* @see {@link DescribeConfigurationRevisionCommand}
|
|
124
108
|
*/
|
|
125
109
|
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationRevisionCommandOutput>;
|
|
126
110
|
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, cb: (err: any, data?: DescribeConfigurationRevisionCommandOutput) => void): void;
|
|
127
111
|
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationRevisionCommandOutput) => void): void;
|
|
128
112
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* <p>A list of brokers that a client application can use to bootstrap.</p>
|
|
113
|
+
* @see {@link GetBootstrapBrokersCommand}
|
|
131
114
|
*/
|
|
132
115
|
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options?: __HttpHandlerOptions): Promise<GetBootstrapBrokersCommandOutput>;
|
|
133
116
|
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, cb: (err: any, data?: GetBootstrapBrokersCommandOutput) => void): void;
|
|
134
117
|
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBootstrapBrokersCommandOutput) => void): void;
|
|
135
118
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Gets the Apache Kafka versions to which you can update the MSK cluster.</p>
|
|
119
|
+
* @see {@link GetCompatibleKafkaVersionsCommand}
|
|
138
120
|
*/
|
|
139
121
|
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options?: __HttpHandlerOptions): Promise<GetCompatibleKafkaVersionsCommandOutput>;
|
|
140
122
|
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, cb: (err: any, data?: GetCompatibleKafkaVersionsCommandOutput) => void): void;
|
|
141
123
|
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCompatibleKafkaVersionsCommandOutput) => void): void;
|
|
142
124
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Returns a list of all the operations that have been performed on the specified MSK cluster.</p>
|
|
125
|
+
* @see {@link ListClusterOperationsCommand}
|
|
145
126
|
*/
|
|
146
127
|
listClusterOperations(args: ListClusterOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListClusterOperationsCommandOutput>;
|
|
147
128
|
listClusterOperations(args: ListClusterOperationsCommandInput, cb: (err: any, data?: ListClusterOperationsCommandOutput) => void): void;
|
|
148
129
|
listClusterOperations(args: ListClusterOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClusterOperationsCommandOutput) => void): void;
|
|
149
130
|
/**
|
|
150
|
-
* @
|
|
151
|
-
* <p>Returns a list of all the MSK clusters in the current Region.</p>
|
|
131
|
+
* @see {@link ListClustersCommand}
|
|
152
132
|
*/
|
|
153
133
|
listClusters(args: ListClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListClustersCommandOutput>;
|
|
154
134
|
listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
155
135
|
listClusters(args: ListClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
156
136
|
/**
|
|
157
|
-
* @
|
|
158
|
-
* <p>Returns a list of all the MSK clusters in the current Region.</p>
|
|
137
|
+
* @see {@link ListClustersV2Command}
|
|
159
138
|
*/
|
|
160
139
|
listClustersV2(args: ListClustersV2CommandInput, options?: __HttpHandlerOptions): Promise<ListClustersV2CommandOutput>;
|
|
161
140
|
listClustersV2(args: ListClustersV2CommandInput, cb: (err: any, data?: ListClustersV2CommandOutput) => void): void;
|
|
162
141
|
listClustersV2(args: ListClustersV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersV2CommandOutput) => void): void;
|
|
163
142
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* <p>Returns a list of all the MSK configurations in this Region.</p>
|
|
143
|
+
* @see {@link ListConfigurationRevisionsCommand}
|
|
166
144
|
*/
|
|
167
145
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationRevisionsCommandOutput>;
|
|
168
146
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, cb: (err: any, data?: ListConfigurationRevisionsCommandOutput) => void): void;
|
|
169
147
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationRevisionsCommandOutput) => void): void;
|
|
170
148
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p>Returns a list of all the MSK configurations in this Region.</p>
|
|
149
|
+
* @see {@link ListConfigurationsCommand}
|
|
173
150
|
*/
|
|
174
151
|
listConfigurations(args: ListConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationsCommandOutput>;
|
|
175
152
|
listConfigurations(args: ListConfigurationsCommandInput, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
176
153
|
listConfigurations(args: ListConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
177
154
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* <p>Returns a list of Apache Kafka versions.</p>
|
|
155
|
+
* @see {@link ListKafkaVersionsCommand}
|
|
180
156
|
*/
|
|
181
157
|
listKafkaVersions(args: ListKafkaVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListKafkaVersionsCommandOutput>;
|
|
182
158
|
listKafkaVersions(args: ListKafkaVersionsCommandInput, cb: (err: any, data?: ListKafkaVersionsCommandOutput) => void): void;
|
|
183
159
|
listKafkaVersions(args: ListKafkaVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKafkaVersionsCommandOutput) => void): void;
|
|
184
160
|
/**
|
|
185
|
-
* @
|
|
186
|
-
* <p>Returns a list of the broker nodes in the cluster.</p>
|
|
161
|
+
* @see {@link ListNodesCommand}
|
|
187
162
|
*/
|
|
188
163
|
listNodes(args: ListNodesCommandInput, options?: __HttpHandlerOptions): Promise<ListNodesCommandOutput>;
|
|
189
164
|
listNodes(args: ListNodesCommandInput, cb: (err: any, data?: ListNodesCommandOutput) => void): void;
|
|
190
165
|
listNodes(args: ListNodesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNodesCommandOutput) => void): void;
|
|
191
166
|
/**
|
|
192
|
-
* @
|
|
193
|
-
* <p>Returns a list of the Scram Secrets associated with an Amazon MSK cluster.</p>
|
|
167
|
+
* @see {@link ListScramSecretsCommand}
|
|
194
168
|
*/
|
|
195
169
|
listScramSecrets(args: ListScramSecretsCommandInput, options?: __HttpHandlerOptions): Promise<ListScramSecretsCommandOutput>;
|
|
196
170
|
listScramSecrets(args: ListScramSecretsCommandInput, cb: (err: any, data?: ListScramSecretsCommandOutput) => void): void;
|
|
197
171
|
listScramSecrets(args: ListScramSecretsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScramSecretsCommandOutput) => void): void;
|
|
198
172
|
/**
|
|
199
|
-
* @
|
|
200
|
-
* <p>Returns a list of the tags associated with the specified resource.</p>
|
|
173
|
+
* @see {@link ListTagsForResourceCommand}
|
|
201
174
|
*/
|
|
202
175
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
203
176
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
204
177
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
205
178
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* Reboots brokers.
|
|
179
|
+
* @see {@link RebootBrokerCommand}
|
|
208
180
|
*/
|
|
209
181
|
rebootBroker(args: RebootBrokerCommandInput, options?: __HttpHandlerOptions): Promise<RebootBrokerCommandOutput>;
|
|
210
182
|
rebootBroker(args: RebootBrokerCommandInput, cb: (err: any, data?: RebootBrokerCommandOutput) => void): void;
|
|
211
183
|
rebootBroker(args: RebootBrokerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootBrokerCommandOutput) => void): void;
|
|
212
184
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Adds tags to the specified MSK resource.</p>
|
|
185
|
+
* @see {@link TagResourceCommand}
|
|
215
186
|
*/
|
|
216
187
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
217
188
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
218
189
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
219
190
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Removes the tags associated with the keys that are provided in the query.</p>
|
|
191
|
+
* @see {@link UntagResourceCommand}
|
|
222
192
|
*/
|
|
223
193
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
224
194
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
225
195
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
226
196
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>Updates the number of broker nodes in the cluster.</p>
|
|
197
|
+
* @see {@link UpdateBrokerCountCommand}
|
|
229
198
|
*/
|
|
230
199
|
updateBrokerCount(args: UpdateBrokerCountCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrokerCountCommandOutput>;
|
|
231
200
|
updateBrokerCount(args: UpdateBrokerCountCommandInput, cb: (err: any, data?: UpdateBrokerCountCommandOutput) => void): void;
|
|
232
201
|
updateBrokerCount(args: UpdateBrokerCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrokerCountCommandOutput) => void): void;
|
|
233
202
|
/**
|
|
234
|
-
* @
|
|
235
|
-
* <p>Updates the EBS storage associated with MSK brokers.</p>
|
|
203
|
+
* @see {@link UpdateBrokerStorageCommand}
|
|
236
204
|
*/
|
|
237
205
|
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrokerStorageCommandOutput>;
|
|
238
206
|
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, cb: (err: any, data?: UpdateBrokerStorageCommandOutput) => void): void;
|
|
239
207
|
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrokerStorageCommandOutput) => void): void;
|
|
240
208
|
/**
|
|
241
|
-
* @
|
|
242
|
-
* <p>Updates EC2 instance type.</p>
|
|
209
|
+
* @see {@link UpdateBrokerTypeCommand}
|
|
243
210
|
*/
|
|
244
211
|
updateBrokerType(args: UpdateBrokerTypeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrokerTypeCommandOutput>;
|
|
245
212
|
updateBrokerType(args: UpdateBrokerTypeCommandInput, cb: (err: any, data?: UpdateBrokerTypeCommandOutput) => void): void;
|
|
246
213
|
updateBrokerType(args: UpdateBrokerTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrokerTypeCommandOutput) => void): void;
|
|
247
214
|
/**
|
|
248
|
-
* @
|
|
249
|
-
* <p>Updates the cluster with the configuration that is specified in the request body.</p>
|
|
215
|
+
* @see {@link UpdateClusterConfigurationCommand}
|
|
250
216
|
*/
|
|
251
217
|
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterConfigurationCommandOutput>;
|
|
252
218
|
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, cb: (err: any, data?: UpdateClusterConfigurationCommandOutput) => void): void;
|
|
253
219
|
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterConfigurationCommandOutput) => void): void;
|
|
254
220
|
/**
|
|
255
|
-
* @
|
|
256
|
-
* <p>Updates the Apache Kafka version for the cluster.</p>
|
|
221
|
+
* @see {@link UpdateClusterKafkaVersionCommand}
|
|
257
222
|
*/
|
|
258
223
|
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterKafkaVersionCommandOutput>;
|
|
259
224
|
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, cb: (err: any, data?: UpdateClusterKafkaVersionCommandOutput) => void): void;
|
|
260
225
|
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterKafkaVersionCommandOutput) => void): void;
|
|
261
226
|
/**
|
|
262
|
-
* @
|
|
263
|
-
* <p>Updates an MSK configuration.</p>
|
|
227
|
+
* @see {@link UpdateConfigurationCommand}
|
|
264
228
|
*/
|
|
265
229
|
updateConfiguration(args: UpdateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationCommandOutput>;
|
|
266
230
|
updateConfiguration(args: UpdateConfigurationCommandInput, cb: (err: any, data?: UpdateConfigurationCommandOutput) => void): void;
|
|
267
231
|
updateConfiguration(args: UpdateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationCommandOutput) => void): void;
|
|
268
232
|
/**
|
|
269
|
-
* @
|
|
270
|
-
* <p>Updates the cluster's connectivity configuration.</p>
|
|
233
|
+
* @see {@link UpdateConnectivityCommand}
|
|
271
234
|
*/
|
|
272
235
|
updateConnectivity(args: UpdateConnectivityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectivityCommandOutput>;
|
|
273
236
|
updateConnectivity(args: UpdateConnectivityCommandInput, cb: (err: any, data?: UpdateConnectivityCommandOutput) => void): void;
|
|
274
237
|
updateConnectivity(args: UpdateConnectivityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectivityCommandOutput) => void): void;
|
|
275
238
|
/**
|
|
276
|
-
* @
|
|
277
|
-
* <p>Updates the monitoring settings for the cluster. You can use this operation to specify which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can also specify settings for open monitoring with Prometheus.</p>
|
|
239
|
+
* @see {@link UpdateMonitoringCommand}
|
|
278
240
|
*/
|
|
279
241
|
updateMonitoring(args: UpdateMonitoringCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMonitoringCommandOutput>;
|
|
280
242
|
updateMonitoring(args: UpdateMonitoringCommandInput, cb: (err: any, data?: UpdateMonitoringCommandOutput) => void): void;
|
|
281
243
|
updateMonitoring(args: UpdateMonitoringCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMonitoringCommandOutput) => void): void;
|
|
282
244
|
/**
|
|
283
|
-
* @
|
|
284
|
-
* <p>Updates the security settings for the cluster. You can use this operation to specify encryption and authentication on existing clusters.</p>
|
|
245
|
+
* @see {@link UpdateSecurityCommand}
|
|
285
246
|
*/
|
|
286
247
|
updateSecurity(args: UpdateSecurityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityCommandOutput>;
|
|
287
248
|
updateSecurity(args: UpdateSecurityCommandInput, cb: (err: any, data?: UpdateSecurityCommandOutput) => void): void;
|
|
288
249
|
updateSecurity(args: UpdateSecurityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityCommandOutput) => void): void;
|
|
289
250
|
/**
|
|
290
|
-
* @
|
|
291
|
-
* Updates cluster broker volume size (or) sets cluster storage mode to TIERED.
|
|
251
|
+
* @see {@link UpdateStorageCommand}
|
|
292
252
|
*/
|
|
293
253
|
updateStorage(args: UpdateStorageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageCommandOutput>;
|
|
294
254
|
updateStorage(args: UpdateStorageCommandInput, cb: (err: any, data?: UpdateStorageCommandOutput) => void): void;
|
|
295
255
|
updateStorage(args: UpdateStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStorageCommandOutput) => void): void;
|
|
296
256
|
}
|
|
257
|
+
/**
|
|
258
|
+
* @public
|
|
259
|
+
* <p>The operations for managing an Amazon MSK cluster.</p>
|
|
260
|
+
*/
|
|
261
|
+
export declare class Kafka extends KafkaClient implements Kafka {
|
|
262
|
+
}
|
|
@@ -144,7 +144,7 @@ import {
|
|
|
144
144
|
UpdateStorageCommandOutput,
|
|
145
145
|
} from "./commands/UpdateStorageCommand";
|
|
146
146
|
import { KafkaClient } from "./KafkaClient";
|
|
147
|
-
export
|
|
147
|
+
export interface Kafka {
|
|
148
148
|
batchAssociateScramSecret(
|
|
149
149
|
args: BatchAssociateScramSecretCommandInput,
|
|
150
150
|
options?: __HttpHandlerOptions
|
|
@@ -614,3 +614,4 @@ export declare class Kafka extends KafkaClient {
|
|
|
614
614
|
cb: (err: any, data?: UpdateStorageCommandOutput) => void
|
|
615
615
|
): void;
|
|
616
616
|
}
|
|
617
|
+
export declare class Kafka extends KafkaClient implements Kafka {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafka",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|