@aws-sdk/client-kafka 3.325.0 → 3.327.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/commands/BatchAssociateScramSecretCommand.d.ts +13 -0
- package/dist-types/commands/BatchDisassociateScramSecretCommand.d.ts +13 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +8 -0
- package/dist-types/commands/CreateClusterV2Command.d.ts +9 -0
- package/dist-types/commands/CreateConfigurationCommand.d.ts +14 -0
- package/dist-types/commands/CreateVpcConnectionCommand.d.ts +19 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +7 -0
- package/dist-types/commands/DeleteClusterPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/DeleteVpcConnectionCommand.d.ts +7 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +127 -0
- package/dist-types/commands/DescribeClusterOperationCommand.d.ts +227 -0
- package/dist-types/commands/DescribeClusterV2Command.d.ts +147 -0
- package/dist-types/commands/DescribeConfigurationCommand.d.ts +18 -0
- package/dist-types/commands/DescribeConfigurationRevisionCommand.d.ts +10 -0
- package/dist-types/commands/DescribeVpcConnectionCommand.d.ts +20 -0
- package/dist-types/commands/GetBootstrapBrokersCommand.d.ts +15 -0
- package/dist-types/commands/GetClusterPolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetCompatibleKafkaVersionsCommand.d.ts +13 -0
- package/dist-types/commands/ListClientVpcConnectionsCommand.d.ts +15 -0
- package/dist-types/commands/ListClusterOperationsCommand.d.ts +230 -0
- package/dist-types/commands/ListClustersCommand.d.ts +130 -0
- package/dist-types/commands/ListClustersV2Command.d.ts +150 -0
- package/dist-types/commands/ListConfigurationRevisionsCommand.d.ts +13 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +23 -0
- package/dist-types/commands/ListKafkaVersionsCommand.d.ts +12 -0
- package/dist-types/commands/ListNodesCommand.d.ts +37 -0
- package/dist-types/commands/ListScramSecretsCommand.d.ts +9 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListVpcConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/PutClusterPolicyCommand.d.ts +6 -0
- package/dist-types/commands/RebootBrokerCommand.d.ts +7 -0
- package/dist-types/commands/RejectClientVpcConnectionCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateBrokerCountCommand.d.ts +7 -0
- package/dist-types/commands/UpdateBrokerStorageCommand.d.ts +7 -0
- package/dist-types/commands/UpdateBrokerTypeCommand.d.ts +7 -0
- package/dist-types/commands/UpdateClusterConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/UpdateClusterKafkaVersionCommand.d.ts +7 -0
- package/dist-types/commands/UpdateConfigurationCommand.d.ts +11 -0
- package/dist-types/commands/UpdateConnectivityCommand.d.ts +7 -0
- package/dist-types/commands/UpdateMonitoringCommand.d.ts +7 -0
- package/dist-types/commands/UpdateSecurityCommand.d.ts +7 -0
- package/dist-types/commands/UpdateStorageCommand.d.ts +7 -0
- package/package.json +7 -7
|
@@ -33,6 +33,134 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListClustersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListClustersResponse
|
|
37
|
+
* // ClusterInfoList: [ // __listOfClusterInfo
|
|
38
|
+
* // { // ClusterInfo
|
|
39
|
+
* // ActiveOperationArn: "STRING_VALUE",
|
|
40
|
+
* // BrokerNodeGroupInfo: { // BrokerNodeGroupInfo
|
|
41
|
+
* // BrokerAZDistribution: "DEFAULT",
|
|
42
|
+
* // ClientSubnets: [ // __listOf__string // required
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // InstanceType: "STRING_VALUE", // required
|
|
46
|
+
* // SecurityGroups: [
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // StorageInfo: { // StorageInfo
|
|
50
|
+
* // EbsStorageInfo: { // EBSStorageInfo
|
|
51
|
+
* // ProvisionedThroughput: { // ProvisionedThroughput
|
|
52
|
+
* // Enabled: true || false,
|
|
53
|
+
* // VolumeThroughput: Number("int"),
|
|
54
|
+
* // },
|
|
55
|
+
* // VolumeSize: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ConnectivityInfo: { // ConnectivityInfo
|
|
59
|
+
* // PublicAccess: { // PublicAccess
|
|
60
|
+
* // Type: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // VpcConnectivity: { // VpcConnectivity
|
|
63
|
+
* // ClientAuthentication: { // VpcConnectivityClientAuthentication
|
|
64
|
+
* // Sasl: { // VpcConnectivitySasl
|
|
65
|
+
* // Scram: { // VpcConnectivityScram
|
|
66
|
+
* // Enabled: true || false,
|
|
67
|
+
* // },
|
|
68
|
+
* // Iam: { // VpcConnectivityIam
|
|
69
|
+
* // Enabled: true || false,
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // Tls: { // VpcConnectivityTls
|
|
73
|
+
* // Enabled: true || false,
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // },
|
|
78
|
+
* // ZoneIds: [
|
|
79
|
+
* // "STRING_VALUE",
|
|
80
|
+
* // ],
|
|
81
|
+
* // },
|
|
82
|
+
* // ClientAuthentication: { // ClientAuthentication
|
|
83
|
+
* // Sasl: { // Sasl
|
|
84
|
+
* // Scram: { // Scram
|
|
85
|
+
* // Enabled: true || false,
|
|
86
|
+
* // },
|
|
87
|
+
* // Iam: { // Iam
|
|
88
|
+
* // Enabled: true || false,
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // Tls: { // Tls
|
|
92
|
+
* // CertificateAuthorityArnList: [
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // Enabled: true || false,
|
|
96
|
+
* // },
|
|
97
|
+
* // Unauthenticated: { // Unauthenticated
|
|
98
|
+
* // Enabled: true || false,
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // ClusterArn: "STRING_VALUE",
|
|
102
|
+
* // ClusterName: "STRING_VALUE",
|
|
103
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
104
|
+
* // CurrentBrokerSoftwareInfo: { // BrokerSoftwareInfo
|
|
105
|
+
* // ConfigurationArn: "STRING_VALUE",
|
|
106
|
+
* // ConfigurationRevision: Number("long"),
|
|
107
|
+
* // KafkaVersion: "STRING_VALUE",
|
|
108
|
+
* // },
|
|
109
|
+
* // CurrentVersion: "STRING_VALUE",
|
|
110
|
+
* // EncryptionInfo: { // EncryptionInfo
|
|
111
|
+
* // EncryptionAtRest: { // EncryptionAtRest
|
|
112
|
+
* // DataVolumeKMSKeyId: "STRING_VALUE", // required
|
|
113
|
+
* // },
|
|
114
|
+
* // EncryptionInTransit: { // EncryptionInTransit
|
|
115
|
+
* // ClientBroker: "TLS" || "TLS_PLAINTEXT" || "PLAINTEXT",
|
|
116
|
+
* // InCluster: true || false,
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // EnhancedMonitoring: "DEFAULT" || "PER_BROKER" || "PER_TOPIC_PER_BROKER" || "PER_TOPIC_PER_PARTITION",
|
|
120
|
+
* // OpenMonitoring: { // OpenMonitoring
|
|
121
|
+
* // Prometheus: { // Prometheus
|
|
122
|
+
* // JmxExporter: { // JmxExporter
|
|
123
|
+
* // EnabledInBroker: true || false, // required
|
|
124
|
+
* // },
|
|
125
|
+
* // NodeExporter: { // NodeExporter
|
|
126
|
+
* // EnabledInBroker: true || false, // required
|
|
127
|
+
* // },
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // LoggingInfo: { // LoggingInfo
|
|
131
|
+
* // BrokerLogs: { // BrokerLogs
|
|
132
|
+
* // CloudWatchLogs: { // CloudWatchLogs
|
|
133
|
+
* // Enabled: true || false, // required
|
|
134
|
+
* // LogGroup: "STRING_VALUE",
|
|
135
|
+
* // },
|
|
136
|
+
* // Firehose: { // Firehose
|
|
137
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
138
|
+
* // Enabled: true || false, // required
|
|
139
|
+
* // },
|
|
140
|
+
* // S3: { // S3
|
|
141
|
+
* // Bucket: "STRING_VALUE",
|
|
142
|
+
* // Enabled: true || false, // required
|
|
143
|
+
* // Prefix: "STRING_VALUE",
|
|
144
|
+
* // },
|
|
145
|
+
* // },
|
|
146
|
+
* // },
|
|
147
|
+
* // NumberOfBrokerNodes: Number("int"),
|
|
148
|
+
* // State: "ACTIVE" || "CREATING" || "DELETING" || "FAILED" || "HEALING" || "MAINTENANCE" || "REBOOTING_BROKER" || "UPDATING",
|
|
149
|
+
* // StateInfo: { // StateInfo
|
|
150
|
+
* // Code: "STRING_VALUE",
|
|
151
|
+
* // Message: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // Tags: { // __mapOf__string
|
|
154
|
+
* // "<keys>": "STRING_VALUE",
|
|
155
|
+
* // },
|
|
156
|
+
* // ZookeeperConnectString: "STRING_VALUE",
|
|
157
|
+
* // ZookeeperConnectStringTls: "STRING_VALUE",
|
|
158
|
+
* // StorageMode: "LOCAL" || "TIERED",
|
|
159
|
+
* // },
|
|
160
|
+
* // ],
|
|
161
|
+
* // NextToken: "STRING_VALUE",
|
|
162
|
+
* // };
|
|
163
|
+
*
|
|
36
164
|
* ```
|
|
37
165
|
*
|
|
38
166
|
* @param ListClustersCommandInput - {@link ListClustersCommandInput}
|
|
@@ -53,6 +181,8 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
53
181
|
* @throws {@link UnauthorizedException} (client fault)
|
|
54
182
|
* <p>Returns information about an error.</p>
|
|
55
183
|
*
|
|
184
|
+
* @throws {@link KafkaServiceException}
|
|
185
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
56
186
|
*
|
|
57
187
|
*/
|
|
58
188
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -34,6 +34,154 @@ export interface ListClustersV2CommandOutput extends ListClustersV2Response, __M
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListClustersV2Command(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListClustersV2Response
|
|
38
|
+
* // ClusterInfoList: [ // __listOfCluster
|
|
39
|
+
* // { // Cluster
|
|
40
|
+
* // ActiveOperationArn: "STRING_VALUE",
|
|
41
|
+
* // ClusterType: "PROVISIONED" || "SERVERLESS",
|
|
42
|
+
* // ClusterArn: "STRING_VALUE",
|
|
43
|
+
* // ClusterName: "STRING_VALUE",
|
|
44
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // CurrentVersion: "STRING_VALUE",
|
|
46
|
+
* // State: "ACTIVE" || "CREATING" || "DELETING" || "FAILED" || "HEALING" || "MAINTENANCE" || "REBOOTING_BROKER" || "UPDATING",
|
|
47
|
+
* // StateInfo: { // StateInfo
|
|
48
|
+
* // Code: "STRING_VALUE",
|
|
49
|
+
* // Message: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // Tags: { // __mapOf__string
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // Provisioned: { // Provisioned
|
|
55
|
+
* // BrokerNodeGroupInfo: { // BrokerNodeGroupInfo
|
|
56
|
+
* // BrokerAZDistribution: "DEFAULT",
|
|
57
|
+
* // ClientSubnets: [ // __listOf__string // required
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // InstanceType: "STRING_VALUE", // required
|
|
61
|
+
* // SecurityGroups: [
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // StorageInfo: { // StorageInfo
|
|
65
|
+
* // EbsStorageInfo: { // EBSStorageInfo
|
|
66
|
+
* // ProvisionedThroughput: { // ProvisionedThroughput
|
|
67
|
+
* // Enabled: true || false,
|
|
68
|
+
* // VolumeThroughput: Number("int"),
|
|
69
|
+
* // },
|
|
70
|
+
* // VolumeSize: Number("int"),
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // ConnectivityInfo: { // ConnectivityInfo
|
|
74
|
+
* // PublicAccess: { // PublicAccess
|
|
75
|
+
* // Type: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // VpcConnectivity: { // VpcConnectivity
|
|
78
|
+
* // ClientAuthentication: { // VpcConnectivityClientAuthentication
|
|
79
|
+
* // Sasl: { // VpcConnectivitySasl
|
|
80
|
+
* // Scram: { // VpcConnectivityScram
|
|
81
|
+
* // Enabled: true || false,
|
|
82
|
+
* // },
|
|
83
|
+
* // Iam: { // VpcConnectivityIam
|
|
84
|
+
* // Enabled: true || false,
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
87
|
+
* // Tls: { // VpcConnectivityTls
|
|
88
|
+
* // Enabled: true || false,
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ZoneIds: [
|
|
94
|
+
* // "STRING_VALUE",
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // CurrentBrokerSoftwareInfo: { // BrokerSoftwareInfo
|
|
98
|
+
* // ConfigurationArn: "STRING_VALUE",
|
|
99
|
+
* // ConfigurationRevision: Number("long"),
|
|
100
|
+
* // KafkaVersion: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // ClientAuthentication: { // ClientAuthentication
|
|
103
|
+
* // Sasl: { // Sasl
|
|
104
|
+
* // Scram: { // Scram
|
|
105
|
+
* // Enabled: true || false,
|
|
106
|
+
* // },
|
|
107
|
+
* // Iam: { // Iam
|
|
108
|
+
* // Enabled: true || false,
|
|
109
|
+
* // },
|
|
110
|
+
* // },
|
|
111
|
+
* // Tls: { // Tls
|
|
112
|
+
* // CertificateAuthorityArnList: [
|
|
113
|
+
* // "STRING_VALUE",
|
|
114
|
+
* // ],
|
|
115
|
+
* // Enabled: true || false,
|
|
116
|
+
* // },
|
|
117
|
+
* // Unauthenticated: { // Unauthenticated
|
|
118
|
+
* // Enabled: true || false,
|
|
119
|
+
* // },
|
|
120
|
+
* // },
|
|
121
|
+
* // EncryptionInfo: { // EncryptionInfo
|
|
122
|
+
* // EncryptionAtRest: { // EncryptionAtRest
|
|
123
|
+
* // DataVolumeKMSKeyId: "STRING_VALUE", // required
|
|
124
|
+
* // },
|
|
125
|
+
* // EncryptionInTransit: { // EncryptionInTransit
|
|
126
|
+
* // ClientBroker: "TLS" || "TLS_PLAINTEXT" || "PLAINTEXT",
|
|
127
|
+
* // InCluster: true || false,
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // EnhancedMonitoring: "DEFAULT" || "PER_BROKER" || "PER_TOPIC_PER_BROKER" || "PER_TOPIC_PER_PARTITION",
|
|
131
|
+
* // OpenMonitoring: { // OpenMonitoringInfo
|
|
132
|
+
* // Prometheus: { // PrometheusInfo
|
|
133
|
+
* // JmxExporter: { // JmxExporterInfo
|
|
134
|
+
* // EnabledInBroker: true || false, // required
|
|
135
|
+
* // },
|
|
136
|
+
* // NodeExporter: { // NodeExporterInfo
|
|
137
|
+
* // EnabledInBroker: true || false, // required
|
|
138
|
+
* // },
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // LoggingInfo: { // LoggingInfo
|
|
142
|
+
* // BrokerLogs: { // BrokerLogs
|
|
143
|
+
* // CloudWatchLogs: { // CloudWatchLogs
|
|
144
|
+
* // Enabled: true || false, // required
|
|
145
|
+
* // LogGroup: "STRING_VALUE",
|
|
146
|
+
* // },
|
|
147
|
+
* // Firehose: { // Firehose
|
|
148
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
149
|
+
* // Enabled: true || false, // required
|
|
150
|
+
* // },
|
|
151
|
+
* // S3: { // S3
|
|
152
|
+
* // Bucket: "STRING_VALUE",
|
|
153
|
+
* // Enabled: true || false, // required
|
|
154
|
+
* // Prefix: "STRING_VALUE",
|
|
155
|
+
* // },
|
|
156
|
+
* // },
|
|
157
|
+
* // },
|
|
158
|
+
* // NumberOfBrokerNodes: Number("int"), // required
|
|
159
|
+
* // ZookeeperConnectString: "STRING_VALUE",
|
|
160
|
+
* // ZookeeperConnectStringTls: "STRING_VALUE",
|
|
161
|
+
* // StorageMode: "LOCAL" || "TIERED",
|
|
162
|
+
* // },
|
|
163
|
+
* // Serverless: { // Serverless
|
|
164
|
+
* // VpcConfigs: [ // __listOfVpcConfig // required
|
|
165
|
+
* // { // VpcConfig
|
|
166
|
+
* // SubnetIds: [ // required
|
|
167
|
+
* // "STRING_VALUE",
|
|
168
|
+
* // ],
|
|
169
|
+
* // SecurityGroupIds: "<__listOf__string>",
|
|
170
|
+
* // },
|
|
171
|
+
* // ],
|
|
172
|
+
* // ClientAuthentication: { // ServerlessClientAuthentication
|
|
173
|
+
* // Sasl: { // ServerlessSasl
|
|
174
|
+
* // Iam: {
|
|
175
|
+
* // Enabled: true || false,
|
|
176
|
+
* // },
|
|
177
|
+
* // },
|
|
178
|
+
* // },
|
|
179
|
+
* // },
|
|
180
|
+
* // },
|
|
181
|
+
* // ],
|
|
182
|
+
* // NextToken: "STRING_VALUE",
|
|
183
|
+
* // };
|
|
184
|
+
*
|
|
37
185
|
* ```
|
|
38
186
|
*
|
|
39
187
|
* @param ListClustersV2CommandInput - {@link ListClustersV2CommandInput}
|
|
@@ -54,6 +202,8 @@ export interface ListClustersV2CommandOutput extends ListClustersV2Response, __M
|
|
|
54
202
|
* @throws {@link UnauthorizedException} (client fault)
|
|
55
203
|
* <p>Returns information about an error.</p>
|
|
56
204
|
*
|
|
205
|
+
* @throws {@link KafkaServiceException}
|
|
206
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
57
207
|
*
|
|
58
208
|
*/
|
|
59
209
|
export declare class ListClustersV2Command extends $Command<ListClustersV2CommandInput, ListClustersV2CommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface ListConfigurationRevisionsCommandOutput extends ListConfigurati
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListConfigurationRevisionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListConfigurationRevisionsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // Revisions: [ // __listOfConfigurationRevision
|
|
39
|
+
* // { // ConfigurationRevision
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // Description: "STRING_VALUE",
|
|
42
|
+
* // Revision: Number("long"), // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param ListConfigurationRevisionsCommandInput - {@link ListConfigurationRevisionsCommandInput}
|
|
@@ -59,6 +70,8 @@ export interface ListConfigurationRevisionsCommandOutput extends ListConfigurati
|
|
|
59
70
|
* @throws {@link UnauthorizedException} (client fault)
|
|
60
71
|
* <p>Returns information about an error.</p>
|
|
61
72
|
*
|
|
73
|
+
* @throws {@link KafkaServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
62
75
|
*
|
|
63
76
|
*/
|
|
64
77
|
export declare class ListConfigurationRevisionsCommand extends $Command<ListConfigurationRevisionsCommandInput, ListConfigurationRevisionsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -32,6 +32,27 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListConfigurationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListConfigurationsResponse
|
|
36
|
+
* // Configurations: [ // __listOfConfiguration
|
|
37
|
+
* // { // Configuration
|
|
38
|
+
* // Arn: "STRING_VALUE", // required
|
|
39
|
+
* // CreationTime: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // Description: "STRING_VALUE", // required
|
|
41
|
+
* // KafkaVersions: [ // __listOf__string // required
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // LatestRevision: { // ConfigurationRevision
|
|
45
|
+
* // CreationTime: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // Description: "STRING_VALUE",
|
|
47
|
+
* // Revision: Number("long"), // required
|
|
48
|
+
* // },
|
|
49
|
+
* // Name: "STRING_VALUE", // required
|
|
50
|
+
* // State: "ACTIVE" || "DELETING" || "DELETE_FAILED", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
35
56
|
* ```
|
|
36
57
|
*
|
|
37
58
|
* @param ListConfigurationsCommandInput - {@link ListConfigurationsCommandInput}
|
|
@@ -55,6 +76,8 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
|
|
|
55
76
|
* @throws {@link UnauthorizedException} (client fault)
|
|
56
77
|
* <p>Returns information about an error.</p>
|
|
57
78
|
*
|
|
79
|
+
* @throws {@link KafkaServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
58
81
|
*
|
|
59
82
|
*/
|
|
60
83
|
export declare class ListConfigurationsCommand extends $Command<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface ListKafkaVersionsCommandOutput extends ListKafkaVersionsRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListKafkaVersionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListKafkaVersionsResponse
|
|
36
|
+
* // KafkaVersions: [ // __listOfKafkaVersion
|
|
37
|
+
* // { // KafkaVersion
|
|
38
|
+
* // Version: "STRING_VALUE",
|
|
39
|
+
* // Status: "ACTIVE" || "DEPRECATED",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // NextToken: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param ListKafkaVersionsCommandInput - {@link ListKafkaVersionsCommandInput}
|
|
@@ -52,6 +62,8 @@ export interface ListKafkaVersionsCommandOutput extends ListKafkaVersionsRespons
|
|
|
52
62
|
* @throws {@link UnauthorizedException} (client fault)
|
|
53
63
|
* <p>Returns information about an error.</p>
|
|
54
64
|
*
|
|
65
|
+
* @throws {@link KafkaServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
55
67
|
*
|
|
56
68
|
*/
|
|
57
69
|
export declare class ListKafkaVersionsCommand extends $Command<ListKafkaVersionsCommandInput, ListKafkaVersionsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -33,6 +33,41 @@ export interface ListNodesCommandOutput extends ListNodesResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListNodesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListNodesResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // NodeInfoList: [ // __listOfNodeInfo
|
|
39
|
+
* // { // NodeInfo
|
|
40
|
+
* // AddedToClusterTime: "STRING_VALUE",
|
|
41
|
+
* // BrokerNodeInfo: { // BrokerNodeInfo
|
|
42
|
+
* // AttachedENIId: "STRING_VALUE",
|
|
43
|
+
* // BrokerId: Number("double"),
|
|
44
|
+
* // ClientSubnet: "STRING_VALUE",
|
|
45
|
+
* // ClientVpcIpAddress: "STRING_VALUE",
|
|
46
|
+
* // CurrentBrokerSoftwareInfo: { // BrokerSoftwareInfo
|
|
47
|
+
* // ConfigurationArn: "STRING_VALUE",
|
|
48
|
+
* // ConfigurationRevision: Number("long"),
|
|
49
|
+
* // KafkaVersion: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // Endpoints: [ // __listOf__string
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // InstanceType: "STRING_VALUE",
|
|
56
|
+
* // NodeARN: "STRING_VALUE",
|
|
57
|
+
* // NodeType: "BROKER",
|
|
58
|
+
* // ZookeeperNodeInfo: { // ZookeeperNodeInfo
|
|
59
|
+
* // AttachedENIId: "STRING_VALUE",
|
|
60
|
+
* // ClientVpcIpAddress: "STRING_VALUE",
|
|
61
|
+
* // Endpoints: [
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // ZookeeperId: Number("double"),
|
|
65
|
+
* // ZookeeperVersion: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
36
71
|
* ```
|
|
37
72
|
*
|
|
38
73
|
* @param ListNodesCommandInput - {@link ListNodesCommandInput}
|
|
@@ -53,6 +88,8 @@ export interface ListNodesCommandOutput extends ListNodesResponse, __MetadataBea
|
|
|
53
88
|
* @throws {@link NotFoundException} (client fault)
|
|
54
89
|
* <p>Returns information about an error.</p>
|
|
55
90
|
*
|
|
91
|
+
* @throws {@link KafkaServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
56
93
|
*
|
|
57
94
|
*/
|
|
58
95
|
export declare class ListNodesCommand extends $Command<ListNodesCommandInput, ListNodesCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListScramSecretsCommandOutput extends ListScramSecretsResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListScramSecretsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListScramSecretsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // SecretArnList: [ // __listOf__string
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListScramSecretsCommandInput - {@link ListScramSecretsCommandInput}
|
|
@@ -62,6 +69,8 @@ export interface ListScramSecretsCommandOutput extends ListScramSecretsResponse,
|
|
|
62
69
|
* @throws {@link UnauthorizedException} (client fault)
|
|
63
70
|
* <p>Returns information about an error.</p>
|
|
64
71
|
*
|
|
72
|
+
* @throws {@link KafkaServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
65
74
|
*
|
|
66
75
|
*/
|
|
67
76
|
export declare class ListScramSecretsCommand extends $Command<ListScramSecretsCommandInput, ListScramSecretsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // __mapOf__string
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link NotFoundException} (client fault)
|
|
49
55
|
* <p>Returns information about an error.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link KafkaServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListVpcConnectionsCommandOutput extends ListVpcConnectionsRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListVpcConnectionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListVpcConnectionsResponse
|
|
36
|
+
* // VpcConnections: [ // __listOfVpcConnection
|
|
37
|
+
* // { // VpcConnection
|
|
38
|
+
* // VpcConnectionArn: "STRING_VALUE", // required
|
|
39
|
+
* // TargetClusterArn: "STRING_VALUE", // required
|
|
40
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // Authentication: "STRING_VALUE",
|
|
42
|
+
* // VpcId: "STRING_VALUE",
|
|
43
|
+
* // State: "CREATING" || "AVAILABLE" || "INACTIVE" || "DEACTIVATING" || "DELETING" || "FAILED" || "REJECTED" || "REJECTING",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListVpcConnectionsCommandInput - {@link ListVpcConnectionsCommandInput}
|
|
@@ -55,6 +69,8 @@ export interface ListVpcConnectionsCommandOutput extends ListVpcConnectionsRespo
|
|
|
55
69
|
* @throws {@link UnauthorizedException} (client fault)
|
|
56
70
|
* <p>Returns information about an error.</p>
|
|
57
71
|
*
|
|
72
|
+
* @throws {@link KafkaServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
58
74
|
*
|
|
59
75
|
*/
|
|
60
76
|
export declare class ListVpcConnectionsCommand extends $Command<ListVpcConnectionsCommandInput, ListVpcConnectionsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface PutClusterPolicyCommandOutput extends PutClusterPolicyResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PutClusterPolicyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // PutClusterPolicyResponse
|
|
37
|
+
* // CurrentVersion: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param PutClusterPolicyCommandInput - {@link PutClusterPolicyCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface PutClusterPolicyCommandOutput extends PutClusterPolicyResponse,
|
|
|
50
54
|
* @throws {@link InternalServerErrorException} (server fault)
|
|
51
55
|
* <p>Returns information about an error.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link KafkaServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class PutClusterPolicyCommand extends $Command<PutClusterPolicyCommandInput, PutClusterPolicyCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -34,6 +34,11 @@ export interface RebootBrokerCommandOutput extends RebootBrokerResponse, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new RebootBrokerCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // RebootBrokerResponse
|
|
38
|
+
* // ClusterArn: "STRING_VALUE",
|
|
39
|
+
* // ClusterOperationArn: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
39
44
|
* @param RebootBrokerCommandInput - {@link RebootBrokerCommandInput}
|
|
@@ -63,6 +68,8 @@ export interface RebootBrokerCommandOutput extends RebootBrokerResponse, __Metad
|
|
|
63
68
|
* @throws {@link UnauthorizedException} (client fault)
|
|
64
69
|
* <p>Returns information about an error.</p>
|
|
65
70
|
*
|
|
71
|
+
* @throws {@link KafkaServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
66
73
|
*
|
|
67
74
|
*/
|
|
68
75
|
export declare class RebootBrokerCommand extends $Command<RebootBrokerCommandInput, RebootBrokerCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface RejectClientVpcConnectionCommandOutput extends RejectClientVpcC
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RejectClientVpcConnectionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param RejectClientVpcConnectionCommandInput - {@link RejectClientVpcConnectionCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface RejectClientVpcConnectionCommandOutput extends RejectClientVpcC
|
|
|
55
57
|
* @throws {@link UnauthorizedException} (client fault)
|
|
56
58
|
* <p>Returns information about an error.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link KafkaServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class RejectClientVpcConnectionCommand extends $Command<RejectClientVpcConnectionCommandInput, RejectClientVpcConnectionCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link NotFoundException} (client fault)
|
|
52
54
|
* <p>Returns information about an error.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link KafkaServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link NotFoundException} (client fault)
|
|
52
54
|
* <p>Returns information about an error.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link KafkaServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface UpdateBrokerCountCommandOutput extends UpdateBrokerCountRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateBrokerCountCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateBrokerCountResponse
|
|
37
|
+
* // ClusterArn: "STRING_VALUE",
|
|
38
|
+
* // ClusterOperationArn: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param UpdateBrokerCountCommandInput - {@link UpdateBrokerCountCommandInput}
|
|
@@ -56,6 +61,8 @@ export interface UpdateBrokerCountCommandOutput extends UpdateBrokerCountRespons
|
|
|
56
61
|
* @throws {@link UnauthorizedException} (client fault)
|
|
57
62
|
* <p>Returns information about an error.</p>
|
|
58
63
|
*
|
|
64
|
+
* @throws {@link KafkaServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Kafka service.</p>
|
|
59
66
|
*
|
|
60
67
|
*/
|
|
61
68
|
export declare class UpdateBrokerCountCommand extends $Command<UpdateBrokerCountCommandInput, UpdateBrokerCountCommandOutput, KafkaClientResolvedConfig> {
|