@aws-sdk/client-kafka 3.296.0 → 3.297.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-types/Kafka.d.ts +37 -0
- package/dist-types/KafkaClient.d.ts +24 -4
- package/dist-types/commands/BatchAssociateScramSecretCommand.d.ts +16 -0
- package/dist-types/commands/BatchDisassociateScramSecretCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterV2Command.d.ts +16 -0
- package/dist-types/commands/CreateConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClusterOperationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClusterV2Command.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationRevisionCommand.d.ts +16 -0
- package/dist-types/commands/GetBootstrapBrokersCommand.d.ts +16 -0
- package/dist-types/commands/GetCompatibleKafkaVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListClusterOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersV2Command.d.ts +16 -0
- package/dist-types/commands/ListConfigurationRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListKafkaVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListNodesCommand.d.ts +16 -0
- package/dist-types/commands/ListScramSecretsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RebootBrokerCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBrokerCountCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBrokerStorageCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBrokerTypeCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterKafkaVersionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectivityCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMonitoringCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSecurityCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStorageCommand.d.ts +16 -0
- package/dist-types/models/KafkaServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +303 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListClusterOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersV2Paginator.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListKafkaVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNodesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListScramSecretsPaginator.d.ts +3 -0
- package/package.json +3 -3
package/dist-types/Kafka.d.ts
CHANGED
|
@@ -37,220 +37,257 @@ import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "./comma
|
|
|
37
37
|
import { UpdateStorageCommandInput, UpdateStorageCommandOutput } from "./commands/UpdateStorageCommand";
|
|
38
38
|
import { KafkaClient } from "./KafkaClient";
|
|
39
39
|
/**
|
|
40
|
+
* @public
|
|
40
41
|
* <p>The operations for managing an Amazon MSK cluster.</p>
|
|
41
42
|
*/
|
|
42
43
|
export declare class Kafka extends KafkaClient {
|
|
43
44
|
/**
|
|
45
|
+
* @public
|
|
44
46
|
* <p>Associates one or more Scram Secrets with an Amazon MSK cluster.</p>
|
|
45
47
|
*/
|
|
46
48
|
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateScramSecretCommandOutput>;
|
|
47
49
|
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, cb: (err: any, data?: BatchAssociateScramSecretCommandOutput) => void): void;
|
|
48
50
|
batchAssociateScramSecret(args: BatchAssociateScramSecretCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateScramSecretCommandOutput) => void): void;
|
|
49
51
|
/**
|
|
52
|
+
* @public
|
|
50
53
|
* <p>Disassociates one or more Scram Secrets from an Amazon MSK cluster.</p>
|
|
51
54
|
*/
|
|
52
55
|
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisassociateScramSecretCommandOutput>;
|
|
53
56
|
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, cb: (err: any, data?: BatchDisassociateScramSecretCommandOutput) => void): void;
|
|
54
57
|
batchDisassociateScramSecret(args: BatchDisassociateScramSecretCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateScramSecretCommandOutput) => void): void;
|
|
55
58
|
/**
|
|
59
|
+
* @public
|
|
56
60
|
* <p>Creates a new MSK cluster.</p>
|
|
57
61
|
*/
|
|
58
62
|
createCluster(args: CreateClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterCommandOutput>;
|
|
59
63
|
createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
60
64
|
createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
61
65
|
/**
|
|
66
|
+
* @public
|
|
62
67
|
* <p>Creates a new MSK cluster.</p>
|
|
63
68
|
*/
|
|
64
69
|
createClusterV2(args: CreateClusterV2CommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterV2CommandOutput>;
|
|
65
70
|
createClusterV2(args: CreateClusterV2CommandInput, cb: (err: any, data?: CreateClusterV2CommandOutput) => void): void;
|
|
66
71
|
createClusterV2(args: CreateClusterV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterV2CommandOutput) => void): void;
|
|
67
72
|
/**
|
|
73
|
+
* @public
|
|
68
74
|
* <p>Creates a new MSK configuration.</p>
|
|
69
75
|
*/
|
|
70
76
|
createConfiguration(args: CreateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationCommandOutput>;
|
|
71
77
|
createConfiguration(args: CreateConfigurationCommandInput, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
72
78
|
createConfiguration(args: CreateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
73
79
|
/**
|
|
80
|
+
* @public
|
|
74
81
|
* <p>Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request.</p>
|
|
75
82
|
*/
|
|
76
83
|
deleteCluster(args: DeleteClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterCommandOutput>;
|
|
77
84
|
deleteCluster(args: DeleteClusterCommandInput, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
|
|
78
85
|
deleteCluster(args: DeleteClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
|
|
79
86
|
/**
|
|
87
|
+
* @public
|
|
80
88
|
* <p>Deletes an MSK Configuration.</p>
|
|
81
89
|
*/
|
|
82
90
|
deleteConfiguration(args: DeleteConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationCommandOutput>;
|
|
83
91
|
deleteConfiguration(args: DeleteConfigurationCommandInput, cb: (err: any, data?: DeleteConfigurationCommandOutput) => void): void;
|
|
84
92
|
deleteConfiguration(args: DeleteConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationCommandOutput) => void): void;
|
|
85
93
|
/**
|
|
94
|
+
* @public
|
|
86
95
|
* <p>Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.</p>
|
|
87
96
|
*/
|
|
88
97
|
describeCluster(args: DescribeClusterCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterCommandOutput>;
|
|
89
98
|
describeCluster(args: DescribeClusterCommandInput, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
|
|
90
99
|
describeCluster(args: DescribeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
|
|
91
100
|
/**
|
|
101
|
+
* @public
|
|
92
102
|
* <p>Returns a description of the cluster operation specified by the ARN.</p>
|
|
93
103
|
*/
|
|
94
104
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterOperationCommandOutput>;
|
|
95
105
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, cb: (err: any, data?: DescribeClusterOperationCommandOutput) => void): void;
|
|
96
106
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterOperationCommandOutput) => void): void;
|
|
97
107
|
/**
|
|
108
|
+
* @public
|
|
98
109
|
* <p>Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.</p>
|
|
99
110
|
*/
|
|
100
111
|
describeClusterV2(args: DescribeClusterV2CommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterV2CommandOutput>;
|
|
101
112
|
describeClusterV2(args: DescribeClusterV2CommandInput, cb: (err: any, data?: DescribeClusterV2CommandOutput) => void): void;
|
|
102
113
|
describeClusterV2(args: DescribeClusterV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterV2CommandOutput) => void): void;
|
|
103
114
|
/**
|
|
115
|
+
* @public
|
|
104
116
|
* <p>Returns a description of this MSK configuration.</p>
|
|
105
117
|
*/
|
|
106
118
|
describeConfiguration(args: DescribeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationCommandOutput>;
|
|
107
119
|
describeConfiguration(args: DescribeConfigurationCommandInput, cb: (err: any, data?: DescribeConfigurationCommandOutput) => void): void;
|
|
108
120
|
describeConfiguration(args: DescribeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationCommandOutput) => void): void;
|
|
109
121
|
/**
|
|
122
|
+
* @public
|
|
110
123
|
* <p>Returns a description of this revision of the configuration.</p>
|
|
111
124
|
*/
|
|
112
125
|
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationRevisionCommandOutput>;
|
|
113
126
|
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, cb: (err: any, data?: DescribeConfigurationRevisionCommandOutput) => void): void;
|
|
114
127
|
describeConfigurationRevision(args: DescribeConfigurationRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationRevisionCommandOutput) => void): void;
|
|
115
128
|
/**
|
|
129
|
+
* @public
|
|
116
130
|
* <p>A list of brokers that a client application can use to bootstrap.</p>
|
|
117
131
|
*/
|
|
118
132
|
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options?: __HttpHandlerOptions): Promise<GetBootstrapBrokersCommandOutput>;
|
|
119
133
|
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, cb: (err: any, data?: GetBootstrapBrokersCommandOutput) => void): void;
|
|
120
134
|
getBootstrapBrokers(args: GetBootstrapBrokersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBootstrapBrokersCommandOutput) => void): void;
|
|
121
135
|
/**
|
|
136
|
+
* @public
|
|
122
137
|
* <p>Gets the Apache Kafka versions to which you can update the MSK cluster.</p>
|
|
123
138
|
*/
|
|
124
139
|
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options?: __HttpHandlerOptions): Promise<GetCompatibleKafkaVersionsCommandOutput>;
|
|
125
140
|
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, cb: (err: any, data?: GetCompatibleKafkaVersionsCommandOutput) => void): void;
|
|
126
141
|
getCompatibleKafkaVersions(args: GetCompatibleKafkaVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCompatibleKafkaVersionsCommandOutput) => void): void;
|
|
127
142
|
/**
|
|
143
|
+
* @public
|
|
128
144
|
* <p>Returns a list of all the operations that have been performed on the specified MSK cluster.</p>
|
|
129
145
|
*/
|
|
130
146
|
listClusterOperations(args: ListClusterOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListClusterOperationsCommandOutput>;
|
|
131
147
|
listClusterOperations(args: ListClusterOperationsCommandInput, cb: (err: any, data?: ListClusterOperationsCommandOutput) => void): void;
|
|
132
148
|
listClusterOperations(args: ListClusterOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClusterOperationsCommandOutput) => void): void;
|
|
133
149
|
/**
|
|
150
|
+
* @public
|
|
134
151
|
* <p>Returns a list of all the MSK clusters in the current Region.</p>
|
|
135
152
|
*/
|
|
136
153
|
listClusters(args: ListClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListClustersCommandOutput>;
|
|
137
154
|
listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
138
155
|
listClusters(args: ListClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
139
156
|
/**
|
|
157
|
+
* @public
|
|
140
158
|
* <p>Returns a list of all the MSK clusters in the current Region.</p>
|
|
141
159
|
*/
|
|
142
160
|
listClustersV2(args: ListClustersV2CommandInput, options?: __HttpHandlerOptions): Promise<ListClustersV2CommandOutput>;
|
|
143
161
|
listClustersV2(args: ListClustersV2CommandInput, cb: (err: any, data?: ListClustersV2CommandOutput) => void): void;
|
|
144
162
|
listClustersV2(args: ListClustersV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersV2CommandOutput) => void): void;
|
|
145
163
|
/**
|
|
164
|
+
* @public
|
|
146
165
|
* <p>Returns a list of all the MSK configurations in this Region.</p>
|
|
147
166
|
*/
|
|
148
167
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationRevisionsCommandOutput>;
|
|
149
168
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, cb: (err: any, data?: ListConfigurationRevisionsCommandOutput) => void): void;
|
|
150
169
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationRevisionsCommandOutput) => void): void;
|
|
151
170
|
/**
|
|
171
|
+
* @public
|
|
152
172
|
* <p>Returns a list of all the MSK configurations in this Region.</p>
|
|
153
173
|
*/
|
|
154
174
|
listConfigurations(args: ListConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationsCommandOutput>;
|
|
155
175
|
listConfigurations(args: ListConfigurationsCommandInput, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
156
176
|
listConfigurations(args: ListConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
157
177
|
/**
|
|
178
|
+
* @public
|
|
158
179
|
* <p>Returns a list of Apache Kafka versions.</p>
|
|
159
180
|
*/
|
|
160
181
|
listKafkaVersions(args: ListKafkaVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListKafkaVersionsCommandOutput>;
|
|
161
182
|
listKafkaVersions(args: ListKafkaVersionsCommandInput, cb: (err: any, data?: ListKafkaVersionsCommandOutput) => void): void;
|
|
162
183
|
listKafkaVersions(args: ListKafkaVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKafkaVersionsCommandOutput) => void): void;
|
|
163
184
|
/**
|
|
185
|
+
* @public
|
|
164
186
|
* <p>Returns a list of the broker nodes in the cluster.</p>
|
|
165
187
|
*/
|
|
166
188
|
listNodes(args: ListNodesCommandInput, options?: __HttpHandlerOptions): Promise<ListNodesCommandOutput>;
|
|
167
189
|
listNodes(args: ListNodesCommandInput, cb: (err: any, data?: ListNodesCommandOutput) => void): void;
|
|
168
190
|
listNodes(args: ListNodesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNodesCommandOutput) => void): void;
|
|
169
191
|
/**
|
|
192
|
+
* @public
|
|
170
193
|
* <p>Returns a list of the Scram Secrets associated with an Amazon MSK cluster.</p>
|
|
171
194
|
*/
|
|
172
195
|
listScramSecrets(args: ListScramSecretsCommandInput, options?: __HttpHandlerOptions): Promise<ListScramSecretsCommandOutput>;
|
|
173
196
|
listScramSecrets(args: ListScramSecretsCommandInput, cb: (err: any, data?: ListScramSecretsCommandOutput) => void): void;
|
|
174
197
|
listScramSecrets(args: ListScramSecretsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScramSecretsCommandOutput) => void): void;
|
|
175
198
|
/**
|
|
199
|
+
* @public
|
|
176
200
|
* <p>Returns a list of the tags associated with the specified resource.</p>
|
|
177
201
|
*/
|
|
178
202
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
179
203
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
180
204
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
181
205
|
/**
|
|
206
|
+
* @public
|
|
182
207
|
* Reboots brokers.
|
|
183
208
|
*/
|
|
184
209
|
rebootBroker(args: RebootBrokerCommandInput, options?: __HttpHandlerOptions): Promise<RebootBrokerCommandOutput>;
|
|
185
210
|
rebootBroker(args: RebootBrokerCommandInput, cb: (err: any, data?: RebootBrokerCommandOutput) => void): void;
|
|
186
211
|
rebootBroker(args: RebootBrokerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootBrokerCommandOutput) => void): void;
|
|
187
212
|
/**
|
|
213
|
+
* @public
|
|
188
214
|
* <p>Adds tags to the specified MSK resource.</p>
|
|
189
215
|
*/
|
|
190
216
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
191
217
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
192
218
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
193
219
|
/**
|
|
220
|
+
* @public
|
|
194
221
|
* <p>Removes the tags associated with the keys that are provided in the query.</p>
|
|
195
222
|
*/
|
|
196
223
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
197
224
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
198
225
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
199
226
|
/**
|
|
227
|
+
* @public
|
|
200
228
|
* <p>Updates the number of broker nodes in the cluster.</p>
|
|
201
229
|
*/
|
|
202
230
|
updateBrokerCount(args: UpdateBrokerCountCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrokerCountCommandOutput>;
|
|
203
231
|
updateBrokerCount(args: UpdateBrokerCountCommandInput, cb: (err: any, data?: UpdateBrokerCountCommandOutput) => void): void;
|
|
204
232
|
updateBrokerCount(args: UpdateBrokerCountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrokerCountCommandOutput) => void): void;
|
|
205
233
|
/**
|
|
234
|
+
* @public
|
|
206
235
|
* <p>Updates the EBS storage associated with MSK brokers.</p>
|
|
207
236
|
*/
|
|
208
237
|
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrokerStorageCommandOutput>;
|
|
209
238
|
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, cb: (err: any, data?: UpdateBrokerStorageCommandOutput) => void): void;
|
|
210
239
|
updateBrokerStorage(args: UpdateBrokerStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrokerStorageCommandOutput) => void): void;
|
|
211
240
|
/**
|
|
241
|
+
* @public
|
|
212
242
|
* <p>Updates EC2 instance type.</p>
|
|
213
243
|
*/
|
|
214
244
|
updateBrokerType(args: UpdateBrokerTypeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrokerTypeCommandOutput>;
|
|
215
245
|
updateBrokerType(args: UpdateBrokerTypeCommandInput, cb: (err: any, data?: UpdateBrokerTypeCommandOutput) => void): void;
|
|
216
246
|
updateBrokerType(args: UpdateBrokerTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrokerTypeCommandOutput) => void): void;
|
|
217
247
|
/**
|
|
248
|
+
* @public
|
|
218
249
|
* <p>Updates the cluster with the configuration that is specified in the request body.</p>
|
|
219
250
|
*/
|
|
220
251
|
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterConfigurationCommandOutput>;
|
|
221
252
|
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, cb: (err: any, data?: UpdateClusterConfigurationCommandOutput) => void): void;
|
|
222
253
|
updateClusterConfiguration(args: UpdateClusterConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterConfigurationCommandOutput) => void): void;
|
|
223
254
|
/**
|
|
255
|
+
* @public
|
|
224
256
|
* <p>Updates the Apache Kafka version for the cluster.</p>
|
|
225
257
|
*/
|
|
226
258
|
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterKafkaVersionCommandOutput>;
|
|
227
259
|
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, cb: (err: any, data?: UpdateClusterKafkaVersionCommandOutput) => void): void;
|
|
228
260
|
updateClusterKafkaVersion(args: UpdateClusterKafkaVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterKafkaVersionCommandOutput) => void): void;
|
|
229
261
|
/**
|
|
262
|
+
* @public
|
|
230
263
|
* <p>Updates an MSK configuration.</p>
|
|
231
264
|
*/
|
|
232
265
|
updateConfiguration(args: UpdateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationCommandOutput>;
|
|
233
266
|
updateConfiguration(args: UpdateConfigurationCommandInput, cb: (err: any, data?: UpdateConfigurationCommandOutput) => void): void;
|
|
234
267
|
updateConfiguration(args: UpdateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationCommandOutput) => void): void;
|
|
235
268
|
/**
|
|
269
|
+
* @public
|
|
236
270
|
* <p>Updates the cluster's connectivity configuration.</p>
|
|
237
271
|
*/
|
|
238
272
|
updateConnectivity(args: UpdateConnectivityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectivityCommandOutput>;
|
|
239
273
|
updateConnectivity(args: UpdateConnectivityCommandInput, cb: (err: any, data?: UpdateConnectivityCommandOutput) => void): void;
|
|
240
274
|
updateConnectivity(args: UpdateConnectivityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectivityCommandOutput) => void): void;
|
|
241
275
|
/**
|
|
276
|
+
* @public
|
|
242
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>
|
|
243
278
|
*/
|
|
244
279
|
updateMonitoring(args: UpdateMonitoringCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMonitoringCommandOutput>;
|
|
245
280
|
updateMonitoring(args: UpdateMonitoringCommandInput, cb: (err: any, data?: UpdateMonitoringCommandOutput) => void): void;
|
|
246
281
|
updateMonitoring(args: UpdateMonitoringCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMonitoringCommandOutput) => void): void;
|
|
247
282
|
/**
|
|
283
|
+
* @public
|
|
248
284
|
* <p>Updates the security settings for the cluster. You can use this operation to specify encryption and authentication on existing clusters.</p>
|
|
249
285
|
*/
|
|
250
286
|
updateSecurity(args: UpdateSecurityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityCommandOutput>;
|
|
251
287
|
updateSecurity(args: UpdateSecurityCommandInput, cb: (err: any, data?: UpdateSecurityCommandOutput) => void): void;
|
|
252
288
|
updateSecurity(args: UpdateSecurityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityCommandOutput) => void): void;
|
|
253
289
|
/**
|
|
290
|
+
* @public
|
|
254
291
|
* Updates cluster broker volume size (or) sets cluster storage mode to TIERED.
|
|
255
292
|
*/
|
|
256
293
|
updateStorage(args: UpdateStorageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageCommandOutput>;
|
|
@@ -44,15 +44,24 @@ import { UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput } from "./c
|
|
|
44
44
|
import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "./commands/UpdateSecurityCommand";
|
|
45
45
|
import { UpdateStorageCommandInput, UpdateStorageCommandOutput } from "./commands/UpdateStorageCommand";
|
|
46
46
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
47
50
|
export type ServiceInputTypes = BatchAssociateScramSecretCommandInput | BatchDisassociateScramSecretCommandInput | CreateClusterCommandInput | CreateClusterV2CommandInput | CreateConfigurationCommandInput | DeleteClusterCommandInput | DeleteConfigurationCommandInput | DescribeClusterCommandInput | DescribeClusterOperationCommandInput | DescribeClusterV2CommandInput | DescribeConfigurationCommandInput | DescribeConfigurationRevisionCommandInput | GetBootstrapBrokersCommandInput | GetCompatibleKafkaVersionsCommandInput | ListClusterOperationsCommandInput | ListClustersCommandInput | ListClustersV2CommandInput | ListConfigurationRevisionsCommandInput | ListConfigurationsCommandInput | ListKafkaVersionsCommandInput | ListNodesCommandInput | ListScramSecretsCommandInput | ListTagsForResourceCommandInput | RebootBrokerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrokerCountCommandInput | UpdateBrokerStorageCommandInput | UpdateBrokerTypeCommandInput | UpdateClusterConfigurationCommandInput | UpdateClusterKafkaVersionCommandInput | UpdateConfigurationCommandInput | UpdateConnectivityCommandInput | UpdateMonitoringCommandInput | UpdateSecurityCommandInput | UpdateStorageCommandInput;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
48
54
|
export type ServiceOutputTypes = BatchAssociateScramSecretCommandOutput | BatchDisassociateScramSecretCommandOutput | CreateClusterCommandOutput | CreateClusterV2CommandOutput | CreateConfigurationCommandOutput | DeleteClusterCommandOutput | DeleteConfigurationCommandOutput | DescribeClusterCommandOutput | DescribeClusterOperationCommandOutput | DescribeClusterV2CommandOutput | DescribeConfigurationCommandOutput | DescribeConfigurationRevisionCommandOutput | GetBootstrapBrokersCommandOutput | GetCompatibleKafkaVersionsCommandOutput | ListClusterOperationsCommandOutput | ListClustersCommandOutput | ListClustersV2CommandOutput | ListConfigurationRevisionsCommandOutput | ListConfigurationsCommandOutput | ListKafkaVersionsCommandOutput | ListNodesCommandOutput | ListScramSecretsCommandOutput | ListTagsForResourceCommandOutput | RebootBrokerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrokerCountCommandOutput | UpdateBrokerStorageCommandOutput | UpdateBrokerTypeCommandOutput | UpdateClusterConfigurationCommandOutput | UpdateClusterKafkaVersionCommandOutput | UpdateConfigurationCommandOutput | UpdateConnectivityCommandOutput | UpdateMonitoringCommandOutput | UpdateSecurityCommandOutput | UpdateStorageCommandOutput;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
49
58
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
50
59
|
/**
|
|
51
60
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
52
61
|
*/
|
|
53
62
|
requestHandler?: __HttpHandler;
|
|
54
63
|
/**
|
|
55
|
-
* A constructor for a class implementing the {@link
|
|
64
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
56
65
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
57
66
|
* @internal
|
|
58
67
|
*/
|
|
@@ -142,23 +151,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
142
151
|
*/
|
|
143
152
|
logger?: __Logger;
|
|
144
153
|
/**
|
|
145
|
-
* The {@link
|
|
154
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
146
155
|
*/
|
|
147
156
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
148
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
149
161
|
type KafkaClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
150
162
|
/**
|
|
151
|
-
*
|
|
163
|
+
* @public
|
|
164
|
+
*
|
|
165
|
+
* The configuration interface of KafkaClient class constructor that set the region, credentials and other options.
|
|
152
166
|
*/
|
|
153
167
|
export interface KafkaClientConfig extends KafkaClientConfigType {
|
|
154
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
155
172
|
type KafkaClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
156
173
|
/**
|
|
157
|
-
*
|
|
174
|
+
* @public
|
|
175
|
+
*
|
|
176
|
+
* The resolved configuration interface of KafkaClient class. This is resolved and normalized from the {@link KafkaClientConfig | constructor configuration interface}.
|
|
158
177
|
*/
|
|
159
178
|
export interface KafkaClientResolvedConfig extends KafkaClientResolvedConfigType {
|
|
160
179
|
}
|
|
161
180
|
/**
|
|
181
|
+
* @public
|
|
162
182
|
* <p>The operations for managing an Amazon MSK cluster.</p>
|
|
163
183
|
*/
|
|
164
184
|
export declare class KafkaClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KafkaClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
5
5
|
import { BatchAssociateScramSecretRequest, BatchAssociateScramSecretResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchAssociateScramSecretCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchAssociateScramSecretCommandInput extends BatchAssociateScramSecretRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchAssociateScramSecretCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchAssociateScramSecretCommandOutput extends BatchAssociateScramSecretResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates one or more Scram Secrets with an Amazon MSK cluster.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchAssociateScramSecretCommandOutput extends BatchAssociateSc
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchAssociateScramSecretCommandInput - {@link BatchAssociateScramSecretCommandInput}
|
|
34
|
+
* @returns {@link BatchAssociateScramSecretCommandOutput}
|
|
28
35
|
* @see {@link BatchAssociateScramSecretCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchAssociateScramSecretCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface BatchAssociateScramSecretCommandOutput extends BatchAssociateSc
|
|
|
55
62
|
export declare class BatchAssociateScramSecretCommand extends $Command<BatchAssociateScramSecretCommandInput, BatchAssociateScramSecretCommandOutput, KafkaClientResolvedConfig> {
|
|
56
63
|
readonly input: BatchAssociateScramSecretCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: BatchAssociateScramSecretCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchAssociateScramSecretCommandInput, BatchAssociateScramSecretCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
5
5
|
import { BatchDisassociateScramSecretRequest, BatchDisassociateScramSecretResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchDisassociateScramSecretCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchDisassociateScramSecretCommandInput extends BatchDisassociateScramSecretRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchDisassociateScramSecretCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchDisassociateScramSecretCommandOutput extends BatchDisassociateScramSecretResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates one or more Scram Secrets from an Amazon MSK cluster.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchDisassociateScramSecretCommandOutput extends BatchDisassoc
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchDisassociateScramSecretCommandInput - {@link BatchDisassociateScramSecretCommandInput}
|
|
34
|
+
* @returns {@link BatchDisassociateScramSecretCommandOutput}
|
|
28
35
|
* @see {@link BatchDisassociateScramSecretCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchDisassociateScramSecretCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface BatchDisassociateScramSecretCommandOutput extends BatchDisassoc
|
|
|
55
62
|
export declare class BatchDisassociateScramSecretCommand extends $Command<BatchDisassociateScramSecretCommandInput, BatchDisassociateScramSecretCommandOutput, KafkaClientResolvedConfig> {
|
|
56
63
|
readonly input: BatchDisassociateScramSecretCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: BatchDisassociateScramSecretCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDisassociateScramSecretCommandInput, BatchDisassociateScramSecretCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
5
5
|
import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateClusterCommandInput extends CreateClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateClusterCommandOutput extends CreateClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new MSK cluster.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateClusterCommandInput - {@link CreateClusterCommandInput}
|
|
34
|
+
* @returns {@link CreateClusterCommandOutput}
|
|
28
35
|
* @see {@link CreateClusterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateClusterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
55
62
|
export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, KafkaClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateClusterCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateClusterCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
5
5
|
import { CreateClusterV2Request, CreateClusterV2Response } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateClusterV2Command}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateClusterV2CommandInput extends CreateClusterV2Request {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateClusterV2Command}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new MSK cluster.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateClusterV2CommandInput - {@link CreateClusterV2CommandInput}
|
|
34
|
+
* @returns {@link CreateClusterV2CommandOutput}
|
|
28
35
|
* @see {@link CreateClusterV2CommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateClusterV2CommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, _
|
|
|
55
62
|
export declare class CreateClusterV2Command extends $Command<CreateClusterV2CommandInput, CreateClusterV2CommandOutput, KafkaClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateClusterV2CommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateClusterV2CommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateClusterV2CommandInput, CreateClusterV2CommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
5
5
|
import { CreateConfigurationRequest, CreateConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConfigurationCommandInput extends CreateConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConfigurationCommandOutput extends CreateConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new MSK configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateConfigurationCommandOutput extends CreateConfigurationRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateConfigurationCommandInput - {@link CreateConfigurationCommandInput}
|
|
34
|
+
* @returns {@link CreateConfigurationCommandOutput}
|
|
28
35
|
* @see {@link CreateConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateConfigurationCommandOutput extends CreateConfigurationRes
|
|
|
55
62
|
export declare class CreateConfigurationCommand extends $Command<CreateConfigurationCommandInput, CreateConfigurationCommandOutput, KafkaClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateConfigurationCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateConfigurationCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConfigurationCommandInput, CreateConfigurationCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
5
5
|
import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteClusterCommandInput extends DeleteClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
|
|
34
|
+
* @returns {@link DeleteClusterCommandOutput}
|
|
28
35
|
* @see {@link DeleteClusterCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteClusterCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
46
53
|
export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, KafkaClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteClusterCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteClusterCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|