@aws-sdk/client-kafka 3.948.0 → 3.953.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/index.js +883 -623
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchAssociateScramSecretCommand.js +2 -2
- package/dist-es/commands/BatchDisassociateScramSecretCommand.js +2 -2
- package/dist-es/commands/CreateClusterCommand.js +2 -2
- package/dist-es/commands/CreateClusterV2Command.js +2 -2
- package/dist-es/commands/CreateConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateReplicatorCommand.js +2 -2
- package/dist-es/commands/CreateVpcConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteClusterCommand.js +2 -2
- package/dist-es/commands/DeleteClusterPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteReplicatorCommand.js +2 -2
- package/dist-es/commands/DeleteVpcConnectionCommand.js +2 -2
- package/dist-es/commands/DescribeClusterCommand.js +2 -2
- package/dist-es/commands/DescribeClusterOperationCommand.js +2 -2
- package/dist-es/commands/DescribeClusterOperationV2Command.js +2 -2
- package/dist-es/commands/DescribeClusterV2Command.js +2 -2
- package/dist-es/commands/DescribeConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeConfigurationRevisionCommand.js +2 -2
- package/dist-es/commands/DescribeReplicatorCommand.js +2 -2
- package/dist-es/commands/DescribeTopicCommand.js +2 -2
- package/dist-es/commands/DescribeTopicPartitionsCommand.js +2 -2
- package/dist-es/commands/DescribeVpcConnectionCommand.js +2 -2
- package/dist-es/commands/GetBootstrapBrokersCommand.js +2 -2
- package/dist-es/commands/GetClusterPolicyCommand.js +2 -2
- package/dist-es/commands/GetCompatibleKafkaVersionsCommand.js +2 -2
- package/dist-es/commands/ListClientVpcConnectionsCommand.js +2 -2
- package/dist-es/commands/ListClusterOperationsCommand.js +2 -2
- package/dist-es/commands/ListClusterOperationsV2Command.js +2 -2
- package/dist-es/commands/ListClustersCommand.js +2 -2
- package/dist-es/commands/ListClustersV2Command.js +2 -2
- package/dist-es/commands/ListConfigurationRevisionsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListKafkaVersionsCommand.js +2 -2
- package/dist-es/commands/ListNodesCommand.js +2 -2
- package/dist-es/commands/ListReplicatorsCommand.js +2 -2
- package/dist-es/commands/ListScramSecretsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTopicsCommand.js +2 -2
- package/dist-es/commands/ListVpcConnectionsCommand.js +2 -2
- package/dist-es/commands/PutClusterPolicyCommand.js +2 -2
- package/dist-es/commands/RebootBrokerCommand.js +2 -2
- package/dist-es/commands/RejectClientVpcConnectionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerCountCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerStorageCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerTypeCommand.js +2 -2
- package/dist-es/commands/UpdateClusterConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateClusterKafkaVersionCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateConnectivityCommand.js +2 -2
- package/dist-es/commands/UpdateMonitoringCommand.js +2 -2
- package/dist-es/commands/UpdateRebalancingCommand.js +2 -2
- package/dist-es/commands/UpdateReplicationInfoCommand.js +2 -2
- package/dist-es/commands/UpdateSecurityCommand.js +2 -2
- package/dist-es/commands/UpdateStorageCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +544 -549
- package/dist-types/KafkaClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +266 -297
- package/dist-types/ts3.4/KafkaClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +265 -297
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class KafkaClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class KafkaServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, KafkaServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class BadRequestException extends KafkaServiceException {
|
|
121
121
|
name = "BadRequestException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
InvalidParameter;
|
|
@@ -132,8 +132,8 @@ let BadRequestException$1 = class BadRequestException extends KafkaServiceExcept
|
|
|
132
132
|
this.InvalidParameter = opts.InvalidParameter;
|
|
133
133
|
this.Message = opts.Message;
|
|
134
134
|
}
|
|
135
|
-
}
|
|
136
|
-
|
|
135
|
+
}
|
|
136
|
+
class ForbiddenException extends KafkaServiceException {
|
|
137
137
|
name = "ForbiddenException";
|
|
138
138
|
$fault = "client";
|
|
139
139
|
InvalidParameter;
|
|
@@ -148,8 +148,8 @@ let ForbiddenException$1 = class ForbiddenException extends KafkaServiceExceptio
|
|
|
148
148
|
this.InvalidParameter = opts.InvalidParameter;
|
|
149
149
|
this.Message = opts.Message;
|
|
150
150
|
}
|
|
151
|
-
}
|
|
152
|
-
|
|
151
|
+
}
|
|
152
|
+
class InternalServerErrorException extends KafkaServiceException {
|
|
153
153
|
name = "InternalServerErrorException";
|
|
154
154
|
$fault = "server";
|
|
155
155
|
InvalidParameter;
|
|
@@ -164,8 +164,8 @@ let InternalServerErrorException$1 = class InternalServerErrorException extends
|
|
|
164
164
|
this.InvalidParameter = opts.InvalidParameter;
|
|
165
165
|
this.Message = opts.Message;
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class NotFoundException extends KafkaServiceException {
|
|
169
169
|
name = "NotFoundException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
InvalidParameter;
|
|
@@ -180,8 +180,8 @@ let NotFoundException$1 = class NotFoundException extends KafkaServiceException$
|
|
|
180
180
|
this.InvalidParameter = opts.InvalidParameter;
|
|
181
181
|
this.Message = opts.Message;
|
|
182
182
|
}
|
|
183
|
-
}
|
|
184
|
-
|
|
183
|
+
}
|
|
184
|
+
class ServiceUnavailableException extends KafkaServiceException {
|
|
185
185
|
name = "ServiceUnavailableException";
|
|
186
186
|
$fault = "server";
|
|
187
187
|
InvalidParameter;
|
|
@@ -196,8 +196,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Ka
|
|
|
196
196
|
this.InvalidParameter = opts.InvalidParameter;
|
|
197
197
|
this.Message = opts.Message;
|
|
198
198
|
}
|
|
199
|
-
}
|
|
200
|
-
|
|
199
|
+
}
|
|
200
|
+
class TooManyRequestsException extends KafkaServiceException {
|
|
201
201
|
name = "TooManyRequestsException";
|
|
202
202
|
$fault = "client";
|
|
203
203
|
InvalidParameter;
|
|
@@ -212,8 +212,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends KafkaSer
|
|
|
212
212
|
this.InvalidParameter = opts.InvalidParameter;
|
|
213
213
|
this.Message = opts.Message;
|
|
214
214
|
}
|
|
215
|
-
}
|
|
216
|
-
|
|
215
|
+
}
|
|
216
|
+
class UnauthorizedException extends KafkaServiceException {
|
|
217
217
|
name = "UnauthorizedException";
|
|
218
218
|
$fault = "client";
|
|
219
219
|
InvalidParameter;
|
|
@@ -228,8 +228,8 @@ let UnauthorizedException$1 = class UnauthorizedException extends KafkaServiceEx
|
|
|
228
228
|
this.InvalidParameter = opts.InvalidParameter;
|
|
229
229
|
this.Message = opts.Message;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
232
|
-
|
|
231
|
+
}
|
|
232
|
+
class ConflictException extends KafkaServiceException {
|
|
233
233
|
name = "ConflictException";
|
|
234
234
|
$fault = "client";
|
|
235
235
|
InvalidParameter;
|
|
@@ -244,7 +244,7 @@ let ConflictException$1 = class ConflictException extends KafkaServiceException$
|
|
|
244
244
|
this.InvalidParameter = opts.InvalidParameter;
|
|
245
245
|
this.Message = opts.Message;
|
|
246
246
|
}
|
|
247
|
-
}
|
|
247
|
+
}
|
|
248
248
|
|
|
249
249
|
const _A = "Authentication";
|
|
250
250
|
const _AENII = "AttachedENIId";
|
|
@@ -919,8 +919,8 @@ const _zIo = "zookeeperId";
|
|
|
919
919
|
const _zNI = "zookeeperNodeInfo";
|
|
920
920
|
const _zV = "zookeeperVersion";
|
|
921
921
|
const n0 = "com.amazonaws.kafka";
|
|
922
|
-
var AmazonMskCluster = [3, n0, _AMC, 0, [_MCA], [[0, { [_jN]: _mCA }]]];
|
|
923
|
-
var BadRequestException = [
|
|
922
|
+
var AmazonMskCluster$ = [3, n0, _AMC, 0, [_MCA], [[0, { [_jN]: _mCA }]]];
|
|
923
|
+
var BadRequestException$ = [
|
|
924
924
|
-3,
|
|
925
925
|
n0,
|
|
926
926
|
_BRE,
|
|
@@ -931,8 +931,8 @@ var BadRequestException = [
|
|
|
931
931
|
[0, { [_jN]: _m }],
|
|
932
932
|
],
|
|
933
933
|
];
|
|
934
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException
|
|
935
|
-
var BatchAssociateScramSecretRequest = [
|
|
934
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
935
|
+
var BatchAssociateScramSecretRequest$ = [
|
|
936
936
|
3,
|
|
937
937
|
n0,
|
|
938
938
|
_BASSR,
|
|
@@ -943,7 +943,7 @@ var BatchAssociateScramSecretRequest = [
|
|
|
943
943
|
[64 | 0, { [_jN]: _sAL }],
|
|
944
944
|
],
|
|
945
945
|
];
|
|
946
|
-
var BatchAssociateScramSecretResponse = [
|
|
946
|
+
var BatchAssociateScramSecretResponse$ = [
|
|
947
947
|
3,
|
|
948
948
|
n0,
|
|
949
949
|
_BASSRa,
|
|
@@ -954,7 +954,7 @@ var BatchAssociateScramSecretResponse = [
|
|
|
954
954
|
[() => __listOfUnprocessedScramSecret, { [_jN]: _uSS }],
|
|
955
955
|
],
|
|
956
956
|
];
|
|
957
|
-
var BatchDisassociateScramSecretRequest = [
|
|
957
|
+
var BatchDisassociateScramSecretRequest$ = [
|
|
958
958
|
3,
|
|
959
959
|
n0,
|
|
960
960
|
_BDSSR,
|
|
@@ -965,7 +965,7 @@ var BatchDisassociateScramSecretRequest = [
|
|
|
965
965
|
[64 | 0, { [_jN]: _sAL }],
|
|
966
966
|
],
|
|
967
967
|
];
|
|
968
|
-
var BatchDisassociateScramSecretResponse = [
|
|
968
|
+
var BatchDisassociateScramSecretResponse$ = [
|
|
969
969
|
3,
|
|
970
970
|
n0,
|
|
971
971
|
_BDSSRa,
|
|
@@ -976,7 +976,7 @@ var BatchDisassociateScramSecretResponse = [
|
|
|
976
976
|
[() => __listOfUnprocessedScramSecret, { [_jN]: _uSS }],
|
|
977
977
|
],
|
|
978
978
|
];
|
|
979
|
-
var BrokerCountUpdateInfo = [
|
|
979
|
+
var BrokerCountUpdateInfo$ = [
|
|
980
980
|
3,
|
|
981
981
|
n0,
|
|
982
982
|
_BCUI,
|
|
@@ -987,7 +987,7 @@ var BrokerCountUpdateInfo = [
|
|
|
987
987
|
[64 | 1, { [_jN]: _dBI }],
|
|
988
988
|
],
|
|
989
989
|
];
|
|
990
|
-
var BrokerEBSVolumeInfo = [
|
|
990
|
+
var BrokerEBSVolumeInfo$ = [
|
|
991
991
|
3,
|
|
992
992
|
n0,
|
|
993
993
|
_BEBSVI,
|
|
@@ -995,23 +995,23 @@ var BrokerEBSVolumeInfo = [
|
|
|
995
995
|
[_KBNI, _PT, _VSGB],
|
|
996
996
|
[
|
|
997
997
|
[0, { [_jN]: _kBNI }],
|
|
998
|
-
[() => ProvisionedThroughput
|
|
998
|
+
[() => ProvisionedThroughput$, { [_jN]: _pT }],
|
|
999
999
|
[1, { [_jN]: _vSGB }],
|
|
1000
1000
|
],
|
|
1001
1001
|
];
|
|
1002
|
-
var BrokerLogs = [
|
|
1002
|
+
var BrokerLogs$ = [
|
|
1003
1003
|
3,
|
|
1004
1004
|
n0,
|
|
1005
1005
|
_BL,
|
|
1006
1006
|
0,
|
|
1007
1007
|
[_CWL, _F, _S],
|
|
1008
1008
|
[
|
|
1009
|
-
[() => CloudWatchLogs
|
|
1010
|
-
[() => Firehose
|
|
1011
|
-
[() => S3
|
|
1009
|
+
[() => CloudWatchLogs$, { [_jN]: _cWL }],
|
|
1010
|
+
[() => Firehose$, { [_jN]: _f }],
|
|
1011
|
+
[() => S3$, { [_jN]: _s }],
|
|
1012
1012
|
],
|
|
1013
1013
|
];
|
|
1014
|
-
var BrokerNodeGroupInfo = [
|
|
1014
|
+
var BrokerNodeGroupInfo$ = [
|
|
1015
1015
|
3,
|
|
1016
1016
|
n0,
|
|
1017
1017
|
_BNGI,
|
|
@@ -1022,12 +1022,12 @@ var BrokerNodeGroupInfo = [
|
|
|
1022
1022
|
[64 | 0, { [_jN]: _cS }],
|
|
1023
1023
|
[0, { [_jN]: _iT }],
|
|
1024
1024
|
[64 | 0, { [_jN]: _sG }],
|
|
1025
|
-
[() => StorageInfo
|
|
1026
|
-
[() => ConnectivityInfo
|
|
1025
|
+
[() => StorageInfo$, { [_jN]: _sI }],
|
|
1026
|
+
[() => ConnectivityInfo$, { [_jN]: _cI }],
|
|
1027
1027
|
[64 | 0, { [_jN]: _zI }],
|
|
1028
1028
|
],
|
|
1029
1029
|
];
|
|
1030
|
-
var BrokerNodeInfo = [
|
|
1030
|
+
var BrokerNodeInfo$ = [
|
|
1031
1031
|
3,
|
|
1032
1032
|
n0,
|
|
1033
1033
|
_BNI,
|
|
@@ -1038,11 +1038,11 @@ var BrokerNodeInfo = [
|
|
|
1038
1038
|
[1, { [_jN]: _bI }],
|
|
1039
1039
|
[0, { [_jN]: _cSl }],
|
|
1040
1040
|
[0, { [_jN]: _cVIA }],
|
|
1041
|
-
[() => BrokerSoftwareInfo
|
|
1041
|
+
[() => BrokerSoftwareInfo$, { [_jN]: _cBSI }],
|
|
1042
1042
|
[64 | 0, { [_jN]: _en }],
|
|
1043
1043
|
],
|
|
1044
1044
|
];
|
|
1045
|
-
var BrokerSoftwareInfo = [
|
|
1045
|
+
var BrokerSoftwareInfo$ = [
|
|
1046
1046
|
3,
|
|
1047
1047
|
n0,
|
|
1048
1048
|
_BSI,
|
|
@@ -1054,19 +1054,19 @@ var BrokerSoftwareInfo = [
|
|
|
1054
1054
|
[0, { [_jN]: _kV }],
|
|
1055
1055
|
],
|
|
1056
1056
|
];
|
|
1057
|
-
var ClientAuthentication = [
|
|
1057
|
+
var ClientAuthentication$ = [
|
|
1058
1058
|
3,
|
|
1059
1059
|
n0,
|
|
1060
1060
|
_CAl,
|
|
1061
1061
|
0,
|
|
1062
1062
|
[_Sa, _T, _U],
|
|
1063
1063
|
[
|
|
1064
|
-
[() => Sasl
|
|
1065
|
-
[() => Tls
|
|
1066
|
-
[() => Unauthenticated
|
|
1064
|
+
[() => Sasl$, { [_jN]: _sa }],
|
|
1065
|
+
[() => Tls$, { [_jN]: _t }],
|
|
1066
|
+
[() => Unauthenticated$, { [_jN]: _u }],
|
|
1067
1067
|
],
|
|
1068
1068
|
];
|
|
1069
|
-
var ClientVpcConnection = [
|
|
1069
|
+
var ClientVpcConnection$ = [
|
|
1070
1070
|
3,
|
|
1071
1071
|
n0,
|
|
1072
1072
|
_CVC,
|
|
@@ -1080,7 +1080,7 @@ var ClientVpcConnection = [
|
|
|
1080
1080
|
[0, { [_jN]: _o }],
|
|
1081
1081
|
],
|
|
1082
1082
|
];
|
|
1083
|
-
var CloudWatchLogs = [
|
|
1083
|
+
var CloudWatchLogs$ = [
|
|
1084
1084
|
3,
|
|
1085
1085
|
n0,
|
|
1086
1086
|
_CWL,
|
|
@@ -1091,7 +1091,7 @@ var CloudWatchLogs = [
|
|
|
1091
1091
|
[0, { [_jN]: _lG }],
|
|
1092
1092
|
],
|
|
1093
1093
|
];
|
|
1094
|
-
var Cluster = [
|
|
1094
|
+
var Cluster$ = [
|
|
1095
1095
|
3,
|
|
1096
1096
|
n0,
|
|
1097
1097
|
_C,
|
|
@@ -1105,13 +1105,13 @@ var Cluster = [
|
|
|
1105
1105
|
[5, { [_jN]: _cT }],
|
|
1106
1106
|
[0, { [_jN]: _cV }],
|
|
1107
1107
|
[0, { [_jN]: _st }],
|
|
1108
|
-
[() => StateInfo
|
|
1108
|
+
[() => StateInfo$, { [_jN]: _sIt }],
|
|
1109
1109
|
[128 | 0, { [_jN]: _ta }],
|
|
1110
|
-
[() => Provisioned
|
|
1111
|
-
[() => Serverless
|
|
1110
|
+
[() => Provisioned$, { [_jN]: _p }],
|
|
1111
|
+
[() => Serverless$, { [_jN]: _se }],
|
|
1112
1112
|
],
|
|
1113
1113
|
];
|
|
1114
|
-
var ClusterInfo = [
|
|
1114
|
+
var ClusterInfo$ = [
|
|
1115
1115
|
3,
|
|
1116
1116
|
n0,
|
|
1117
1117
|
_CIl,
|
|
@@ -1119,21 +1119,21 @@ var ClusterInfo = [
|
|
|
1119
1119
|
[_AOA, _BNGI, _R, _CAl, _CA, _CN, _CT, _CBSI, _CV, _EI, _EM, _OM, _LI, _NOBN, _St, _SIt, _Ta, _ZCS, _ZCST, _SM, _CAS],
|
|
1120
1120
|
[
|
|
1121
1121
|
[0, { [_jN]: _aOA }],
|
|
1122
|
-
[() => BrokerNodeGroupInfo
|
|
1123
|
-
[() => Rebalancing
|
|
1124
|
-
[() => ClientAuthentication
|
|
1122
|
+
[() => BrokerNodeGroupInfo$, { [_jN]: _bNGI }],
|
|
1123
|
+
[() => Rebalancing$, { [_jN]: _r }],
|
|
1124
|
+
[() => ClientAuthentication$, { [_jN]: _cAl }],
|
|
1125
1125
|
[0, { [_jN]: _cA }],
|
|
1126
1126
|
[0, { [_jN]: _cN }],
|
|
1127
1127
|
[5, { [_jN]: _cT }],
|
|
1128
|
-
[() => BrokerSoftwareInfo
|
|
1128
|
+
[() => BrokerSoftwareInfo$, { [_jN]: _cBSI }],
|
|
1129
1129
|
[0, { [_jN]: _cV }],
|
|
1130
|
-
[() => EncryptionInfo
|
|
1130
|
+
[() => EncryptionInfo$, { [_jN]: _eI }],
|
|
1131
1131
|
[0, { [_jN]: _eM }],
|
|
1132
|
-
[() => OpenMonitoring
|
|
1133
|
-
[() => LoggingInfo
|
|
1132
|
+
[() => OpenMonitoring$, { [_jN]: _oM }],
|
|
1133
|
+
[() => LoggingInfo$, { [_jN]: _lI }],
|
|
1134
1134
|
[1, { [_jN]: _nOBN }],
|
|
1135
1135
|
[0, { [_jN]: _st }],
|
|
1136
|
-
[() => StateInfo
|
|
1136
|
+
[() => StateInfo$, { [_jN]: _sIt }],
|
|
1137
1137
|
[128 | 0, { [_jN]: _ta }],
|
|
1138
1138
|
[0, { [_jN]: _zCS }],
|
|
1139
1139
|
[0, { [_jN]: _zCST }],
|
|
@@ -1141,7 +1141,7 @@ var ClusterInfo = [
|
|
|
1141
1141
|
[0, { [_jN]: _cAS }],
|
|
1142
1142
|
],
|
|
1143
1143
|
];
|
|
1144
|
-
var ClusterOperationInfo = [
|
|
1144
|
+
var ClusterOperationInfo$ = [
|
|
1145
1145
|
3,
|
|
1146
1146
|
n0,
|
|
1147
1147
|
_COI,
|
|
@@ -1152,29 +1152,29 @@ var ClusterOperationInfo = [
|
|
|
1152
1152
|
[0, { [_jN]: _cA }],
|
|
1153
1153
|
[5, { [_jN]: _cT }],
|
|
1154
1154
|
[5, { [_jN]: _eT }],
|
|
1155
|
-
[() => ErrorInfo
|
|
1155
|
+
[() => ErrorInfo$, { [_jN]: _eIr }],
|
|
1156
1156
|
[0, { [_jN]: _oA }],
|
|
1157
1157
|
[0, { [_jN]: _oS }],
|
|
1158
1158
|
[() => __listOfClusterOperationStep, { [_jN]: _oSp }],
|
|
1159
1159
|
[0, { [_jN]: _oT }],
|
|
1160
|
-
[() => MutableClusterInfo
|
|
1161
|
-
[() => MutableClusterInfo
|
|
1162
|
-
[() => VpcConnectionInfo
|
|
1160
|
+
[() => MutableClusterInfo$, { [_jN]: _sCI }],
|
|
1161
|
+
[() => MutableClusterInfo$, { [_jN]: _tCI }],
|
|
1162
|
+
[() => VpcConnectionInfo$, { [_jN]: _vCI }],
|
|
1163
1163
|
],
|
|
1164
1164
|
];
|
|
1165
|
-
var ClusterOperationStep = [
|
|
1165
|
+
var ClusterOperationStep$ = [
|
|
1166
1166
|
3,
|
|
1167
1167
|
n0,
|
|
1168
1168
|
_COS,
|
|
1169
1169
|
0,
|
|
1170
1170
|
[_SIte, _SN],
|
|
1171
1171
|
[
|
|
1172
|
-
[() => ClusterOperationStepInfo
|
|
1172
|
+
[() => ClusterOperationStepInfo$, { [_jN]: _sIte }],
|
|
1173
1173
|
[0, { [_jN]: _sN }],
|
|
1174
1174
|
],
|
|
1175
1175
|
];
|
|
1176
|
-
var ClusterOperationStepInfo = [3, n0, _COSI, 0, [_SS], [[0, { [_jN]: _sS }]]];
|
|
1177
|
-
var ClusterOperationV2 = [
|
|
1176
|
+
var ClusterOperationStepInfo$ = [3, n0, _COSI, 0, [_SS], [[0, { [_jN]: _sS }]]];
|
|
1177
|
+
var ClusterOperationV2$ = [
|
|
1178
1178
|
3,
|
|
1179
1179
|
n0,
|
|
1180
1180
|
_COV,
|
|
@@ -1185,15 +1185,15 @@ var ClusterOperationV2 = [
|
|
|
1185
1185
|
[0, { [_jN]: _cTl }],
|
|
1186
1186
|
[5, { [_jN]: _sT }],
|
|
1187
1187
|
[5, { [_jN]: _eT }],
|
|
1188
|
-
[() => ErrorInfo
|
|
1188
|
+
[() => ErrorInfo$, { [_jN]: _eIr }],
|
|
1189
1189
|
[0, { [_jN]: _oA }],
|
|
1190
1190
|
[0, { [_jN]: _oS }],
|
|
1191
1191
|
[0, { [_jN]: _oT }],
|
|
1192
|
-
[() => ClusterOperationV2Provisioned
|
|
1193
|
-
[() => ClusterOperationV2Serverless
|
|
1192
|
+
[() => ClusterOperationV2Provisioned$, { [_jN]: _p }],
|
|
1193
|
+
[() => ClusterOperationV2Serverless$, { [_jN]: _se }],
|
|
1194
1194
|
],
|
|
1195
1195
|
];
|
|
1196
|
-
var ClusterOperationV2Provisioned = [
|
|
1196
|
+
var ClusterOperationV2Provisioned$ = [
|
|
1197
1197
|
3,
|
|
1198
1198
|
n0,
|
|
1199
1199
|
_COVP,
|
|
@@ -1201,20 +1201,20 @@ var ClusterOperationV2Provisioned = [
|
|
|
1201
1201
|
[_OSp, _SCI, _TCI, _VCI],
|
|
1202
1202
|
[
|
|
1203
1203
|
[() => __listOfClusterOperationStep, { [_jN]: _oSp }],
|
|
1204
|
-
[() => MutableClusterInfo
|
|
1205
|
-
[() => MutableClusterInfo
|
|
1206
|
-
[() => VpcConnectionInfo
|
|
1204
|
+
[() => MutableClusterInfo$, { [_jN]: _sCI }],
|
|
1205
|
+
[() => MutableClusterInfo$, { [_jN]: _tCI }],
|
|
1206
|
+
[() => VpcConnectionInfo$, { [_jN]: _vCI }],
|
|
1207
1207
|
],
|
|
1208
1208
|
];
|
|
1209
|
-
var ClusterOperationV2Serverless = [
|
|
1209
|
+
var ClusterOperationV2Serverless$ = [
|
|
1210
1210
|
3,
|
|
1211
1211
|
n0,
|
|
1212
1212
|
_COVS,
|
|
1213
1213
|
0,
|
|
1214
1214
|
[_VCI],
|
|
1215
|
-
[[() => VpcConnectionInfoServerless
|
|
1215
|
+
[[() => VpcConnectionInfoServerless$, { [_jN]: _vCI }]],
|
|
1216
1216
|
];
|
|
1217
|
-
var ClusterOperationV2Summary = [
|
|
1217
|
+
var ClusterOperationV2Summary$ = [
|
|
1218
1218
|
3,
|
|
1219
1219
|
n0,
|
|
1220
1220
|
_COVSl,
|
|
@@ -1230,7 +1230,7 @@ var ClusterOperationV2Summary = [
|
|
|
1230
1230
|
[0, { [_jN]: _oT }],
|
|
1231
1231
|
],
|
|
1232
1232
|
];
|
|
1233
|
-
var CompatibleKafkaVersion = [
|
|
1233
|
+
var CompatibleKafkaVersion$ = [
|
|
1234
1234
|
3,
|
|
1235
1235
|
n0,
|
|
1236
1236
|
_CKV,
|
|
@@ -1241,7 +1241,7 @@ var CompatibleKafkaVersion = [
|
|
|
1241
1241
|
[64 | 0, { [_jN]: _tV }],
|
|
1242
1242
|
],
|
|
1243
1243
|
];
|
|
1244
|
-
var Configuration = [
|
|
1244
|
+
var Configuration$ = [
|
|
1245
1245
|
3,
|
|
1246
1246
|
n0,
|
|
1247
1247
|
_Co,
|
|
@@ -1252,12 +1252,12 @@ var Configuration = [
|
|
|
1252
1252
|
[5, { [_jN]: _cT }],
|
|
1253
1253
|
[0, { [_jN]: _d }],
|
|
1254
1254
|
[64 | 0, { [_jN]: _kVa }],
|
|
1255
|
-
[() => ConfigurationRevision
|
|
1255
|
+
[() => ConfigurationRevision$, { [_jN]: _lR }],
|
|
1256
1256
|
[0, { [_jN]: _n }],
|
|
1257
1257
|
[0, { [_jN]: _st }],
|
|
1258
1258
|
],
|
|
1259
1259
|
];
|
|
1260
|
-
var ConfigurationInfo = [
|
|
1260
|
+
var ConfigurationInfo$ = [
|
|
1261
1261
|
3,
|
|
1262
1262
|
n0,
|
|
1263
1263
|
_CIo,
|
|
@@ -1268,7 +1268,7 @@ var ConfigurationInfo = [
|
|
|
1268
1268
|
[1, { [_jN]: _re }],
|
|
1269
1269
|
],
|
|
1270
1270
|
];
|
|
1271
|
-
var ConfigurationRevision = [
|
|
1271
|
+
var ConfigurationRevision$ = [
|
|
1272
1272
|
3,
|
|
1273
1273
|
n0,
|
|
1274
1274
|
_CR,
|
|
@@ -1280,7 +1280,7 @@ var ConfigurationRevision = [
|
|
|
1280
1280
|
[1, { [_jN]: _re }],
|
|
1281
1281
|
],
|
|
1282
1282
|
];
|
|
1283
|
-
var ConflictException = [
|
|
1283
|
+
var ConflictException$ = [
|
|
1284
1284
|
-3,
|
|
1285
1285
|
n0,
|
|
1286
1286
|
_CE,
|
|
@@ -1291,19 +1291,19 @@ var ConflictException = [
|
|
|
1291
1291
|
[0, { [_jN]: _m }],
|
|
1292
1292
|
],
|
|
1293
1293
|
];
|
|
1294
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
1295
|
-
var ConnectivityInfo = [
|
|
1294
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1295
|
+
var ConnectivityInfo$ = [
|
|
1296
1296
|
3,
|
|
1297
1297
|
n0,
|
|
1298
1298
|
_CI,
|
|
1299
1299
|
0,
|
|
1300
1300
|
[_PA, _VC],
|
|
1301
1301
|
[
|
|
1302
|
-
[() => PublicAccess
|
|
1303
|
-
[() => VpcConnectivity
|
|
1302
|
+
[() => PublicAccess$, { [_jN]: _pA }],
|
|
1303
|
+
[() => VpcConnectivity$, { [_jN]: _vC }],
|
|
1304
1304
|
],
|
|
1305
1305
|
];
|
|
1306
|
-
var ConsumerGroupReplication = [
|
|
1306
|
+
var ConsumerGroupReplication$ = [
|
|
1307
1307
|
3,
|
|
1308
1308
|
n0,
|
|
1309
1309
|
_CGR,
|
|
@@ -1316,7 +1316,7 @@ var ConsumerGroupReplication = [
|
|
|
1316
1316
|
[2, { [_jN]: _sCGO }],
|
|
1317
1317
|
],
|
|
1318
1318
|
];
|
|
1319
|
-
var ConsumerGroupReplicationUpdate = [
|
|
1319
|
+
var ConsumerGroupReplicationUpdate$ = [
|
|
1320
1320
|
3,
|
|
1321
1321
|
n0,
|
|
1322
1322
|
_CGRU,
|
|
@@ -1329,30 +1329,30 @@ var ConsumerGroupReplicationUpdate = [
|
|
|
1329
1329
|
[2, { [_jN]: _sCGO }],
|
|
1330
1330
|
],
|
|
1331
1331
|
];
|
|
1332
|
-
var ControllerNodeInfo = [3, n0, _CNI, 0, [_E], [[64 | 0, { [_jN]: _en }]]];
|
|
1333
|
-
var CreateClusterRequest = [
|
|
1332
|
+
var ControllerNodeInfo$ = [3, n0, _CNI, 0, [_E], [[64 | 0, { [_jN]: _en }]]];
|
|
1333
|
+
var CreateClusterRequest$ = [
|
|
1334
1334
|
3,
|
|
1335
1335
|
n0,
|
|
1336
1336
|
_CCR,
|
|
1337
1337
|
0,
|
|
1338
1338
|
[_BNGI, _R, _CAl, _CN, _CIo, _EI, _EM, _OM, _KV, _LI, _NOBN, _Ta, _SM],
|
|
1339
1339
|
[
|
|
1340
|
-
[() => BrokerNodeGroupInfo
|
|
1341
|
-
[() => Rebalancing
|
|
1342
|
-
[() => ClientAuthentication
|
|
1340
|
+
[() => BrokerNodeGroupInfo$, { [_jN]: _bNGI }],
|
|
1341
|
+
[() => Rebalancing$, { [_jN]: _r }],
|
|
1342
|
+
[() => ClientAuthentication$, { [_jN]: _cAl }],
|
|
1343
1343
|
[0, { [_jN]: _cN }],
|
|
1344
|
-
[() => ConfigurationInfo
|
|
1345
|
-
[() => EncryptionInfo
|
|
1344
|
+
[() => ConfigurationInfo$, { [_jN]: _cIo }],
|
|
1345
|
+
[() => EncryptionInfo$, { [_jN]: _eI }],
|
|
1346
1346
|
[0, { [_jN]: _eM }],
|
|
1347
|
-
[() => OpenMonitoringInfo
|
|
1347
|
+
[() => OpenMonitoringInfo$, { [_jN]: _oM }],
|
|
1348
1348
|
[0, { [_jN]: _kV }],
|
|
1349
|
-
[() => LoggingInfo
|
|
1349
|
+
[() => LoggingInfo$, { [_jN]: _lI }],
|
|
1350
1350
|
[1, { [_jN]: _nOBN }],
|
|
1351
1351
|
[128 | 0, { [_jN]: _ta }],
|
|
1352
1352
|
[0, { [_jN]: _sM }],
|
|
1353
1353
|
],
|
|
1354
1354
|
];
|
|
1355
|
-
var CreateClusterResponse = [
|
|
1355
|
+
var CreateClusterResponse$ = [
|
|
1356
1356
|
3,
|
|
1357
1357
|
n0,
|
|
1358
1358
|
_CCRr,
|
|
@@ -1364,7 +1364,7 @@ var CreateClusterResponse = [
|
|
|
1364
1364
|
[0, { [_jN]: _st }],
|
|
1365
1365
|
],
|
|
1366
1366
|
];
|
|
1367
|
-
var CreateClusterV2Request = [
|
|
1367
|
+
var CreateClusterV2Request$ = [
|
|
1368
1368
|
3,
|
|
1369
1369
|
n0,
|
|
1370
1370
|
_CCVR,
|
|
@@ -1373,11 +1373,11 @@ var CreateClusterV2Request = [
|
|
|
1373
1373
|
[
|
|
1374
1374
|
[0, { [_jN]: _cN }],
|
|
1375
1375
|
[128 | 0, { [_jN]: _ta }],
|
|
1376
|
-
[() => ProvisionedRequest
|
|
1377
|
-
[() => ServerlessRequest
|
|
1376
|
+
[() => ProvisionedRequest$, { [_jN]: _p }],
|
|
1377
|
+
[() => ServerlessRequest$, { [_jN]: _se }],
|
|
1378
1378
|
],
|
|
1379
1379
|
];
|
|
1380
|
-
var CreateClusterV2Response = [
|
|
1380
|
+
var CreateClusterV2Response$ = [
|
|
1381
1381
|
3,
|
|
1382
1382
|
n0,
|
|
1383
1383
|
_CCVRr,
|
|
@@ -1390,7 +1390,7 @@ var CreateClusterV2Response = [
|
|
|
1390
1390
|
[0, { [_jN]: _cTl }],
|
|
1391
1391
|
],
|
|
1392
1392
|
];
|
|
1393
|
-
var CreateConfigurationRequest = [
|
|
1393
|
+
var CreateConfigurationRequest$ = [
|
|
1394
1394
|
3,
|
|
1395
1395
|
n0,
|
|
1396
1396
|
_CCRre,
|
|
@@ -1403,7 +1403,7 @@ var CreateConfigurationRequest = [
|
|
|
1403
1403
|
[21, { [_jN]: _sP }],
|
|
1404
1404
|
],
|
|
1405
1405
|
];
|
|
1406
|
-
var CreateConfigurationResponse = [
|
|
1406
|
+
var CreateConfigurationResponse$ = [
|
|
1407
1407
|
3,
|
|
1408
1408
|
n0,
|
|
1409
1409
|
_CCRrea,
|
|
@@ -1412,12 +1412,12 @@ var CreateConfigurationResponse = [
|
|
|
1412
1412
|
[
|
|
1413
1413
|
[0, { [_jN]: _ar }],
|
|
1414
1414
|
[5, { [_jN]: _cT }],
|
|
1415
|
-
[() => ConfigurationRevision
|
|
1415
|
+
[() => ConfigurationRevision$, { [_jN]: _lR }],
|
|
1416
1416
|
[0, { [_jN]: _n }],
|
|
1417
1417
|
[0, { [_jN]: _st }],
|
|
1418
1418
|
],
|
|
1419
1419
|
];
|
|
1420
|
-
var CreateReplicatorRequest = [
|
|
1420
|
+
var CreateReplicatorRequest$ = [
|
|
1421
1421
|
3,
|
|
1422
1422
|
n0,
|
|
1423
1423
|
_CRR,
|
|
@@ -1432,7 +1432,7 @@ var CreateReplicatorRequest = [
|
|
|
1432
1432
|
[128 | 0, { [_jN]: _ta }],
|
|
1433
1433
|
],
|
|
1434
1434
|
];
|
|
1435
|
-
var CreateReplicatorResponse = [
|
|
1435
|
+
var CreateReplicatorResponse$ = [
|
|
1436
1436
|
3,
|
|
1437
1437
|
n0,
|
|
1438
1438
|
_CRRr,
|
|
@@ -1444,7 +1444,7 @@ var CreateReplicatorResponse = [
|
|
|
1444
1444
|
[0, { [_jN]: _rS }],
|
|
1445
1445
|
],
|
|
1446
1446
|
];
|
|
1447
|
-
var CreateVpcConnectionRequest = [
|
|
1447
|
+
var CreateVpcConnectionRequest$ = [
|
|
1448
1448
|
3,
|
|
1449
1449
|
n0,
|
|
1450
1450
|
_CVCR,
|
|
@@ -1459,7 +1459,7 @@ var CreateVpcConnectionRequest = [
|
|
|
1459
1459
|
[128 | 0, { [_jN]: _ta }],
|
|
1460
1460
|
],
|
|
1461
1461
|
];
|
|
1462
|
-
var CreateVpcConnectionResponse = [
|
|
1462
|
+
var CreateVpcConnectionResponse$ = [
|
|
1463
1463
|
3,
|
|
1464
1464
|
n0,
|
|
1465
1465
|
_CVCRr,
|
|
@@ -1476,9 +1476,9 @@ var CreateVpcConnectionResponse = [
|
|
|
1476
1476
|
[128 | 0, { [_jN]: _ta }],
|
|
1477
1477
|
],
|
|
1478
1478
|
];
|
|
1479
|
-
var DeleteClusterPolicyRequest = [3, n0, _DCPR, 0, [_CA], [[0, 1]]];
|
|
1480
|
-
var DeleteClusterPolicyResponse = [3, n0, _DCPRe, 0, [], []];
|
|
1481
|
-
var DeleteClusterRequest = [
|
|
1479
|
+
var DeleteClusterPolicyRequest$ = [3, n0, _DCPR, 0, [_CA], [[0, 1]]];
|
|
1480
|
+
var DeleteClusterPolicyResponse$ = [3, n0, _DCPRe, 0, [], []];
|
|
1481
|
+
var DeleteClusterRequest$ = [
|
|
1482
1482
|
3,
|
|
1483
1483
|
n0,
|
|
1484
1484
|
_DCR,
|
|
@@ -1489,7 +1489,7 @@ var DeleteClusterRequest = [
|
|
|
1489
1489
|
[0, { [_hQ]: _cV }],
|
|
1490
1490
|
],
|
|
1491
1491
|
];
|
|
1492
|
-
var DeleteClusterResponse = [
|
|
1492
|
+
var DeleteClusterResponse$ = [
|
|
1493
1493
|
3,
|
|
1494
1494
|
n0,
|
|
1495
1495
|
_DCRe,
|
|
@@ -1500,8 +1500,8 @@ var DeleteClusterResponse = [
|
|
|
1500
1500
|
[0, { [_jN]: _st }],
|
|
1501
1501
|
],
|
|
1502
1502
|
];
|
|
1503
|
-
var DeleteConfigurationRequest = [3, n0, _DCRel, 0, [_Ar], [[0, 1]]];
|
|
1504
|
-
var DeleteConfigurationResponse = [
|
|
1503
|
+
var DeleteConfigurationRequest$ = [3, n0, _DCRel, 0, [_Ar], [[0, 1]]];
|
|
1504
|
+
var DeleteConfigurationResponse$ = [
|
|
1505
1505
|
3,
|
|
1506
1506
|
n0,
|
|
1507
1507
|
_DCRele,
|
|
@@ -1512,7 +1512,7 @@ var DeleteConfigurationResponse = [
|
|
|
1512
1512
|
[0, { [_jN]: _st }],
|
|
1513
1513
|
],
|
|
1514
1514
|
];
|
|
1515
|
-
var DeleteReplicatorRequest = [
|
|
1515
|
+
var DeleteReplicatorRequest$ = [
|
|
1516
1516
|
3,
|
|
1517
1517
|
n0,
|
|
1518
1518
|
_DRR,
|
|
@@ -1523,7 +1523,7 @@ var DeleteReplicatorRequest = [
|
|
|
1523
1523
|
[0, 1],
|
|
1524
1524
|
],
|
|
1525
1525
|
];
|
|
1526
|
-
var DeleteReplicatorResponse = [
|
|
1526
|
+
var DeleteReplicatorResponse$ = [
|
|
1527
1527
|
3,
|
|
1528
1528
|
n0,
|
|
1529
1529
|
_DRRe,
|
|
@@ -1534,8 +1534,8 @@ var DeleteReplicatorResponse = [
|
|
|
1534
1534
|
[0, { [_jN]: _rS }],
|
|
1535
1535
|
],
|
|
1536
1536
|
];
|
|
1537
|
-
var DeleteVpcConnectionRequest = [3, n0, _DVCR, 0, [_Ar], [[0, 1]]];
|
|
1538
|
-
var DeleteVpcConnectionResponse = [
|
|
1537
|
+
var DeleteVpcConnectionRequest$ = [3, n0, _DVCR, 0, [_Ar], [[0, 1]]];
|
|
1538
|
+
var DeleteVpcConnectionResponse$ = [
|
|
1539
1539
|
3,
|
|
1540
1540
|
n0,
|
|
1541
1541
|
_DVCRe,
|
|
@@ -1546,44 +1546,44 @@ var DeleteVpcConnectionResponse = [
|
|
|
1546
1546
|
[0, { [_jN]: _st }],
|
|
1547
1547
|
],
|
|
1548
1548
|
];
|
|
1549
|
-
var DescribeClusterOperationRequest = [3, n0, _DCOR, 0, [_COA], [[0, 1]]];
|
|
1550
|
-
var DescribeClusterOperationResponse = [
|
|
1549
|
+
var DescribeClusterOperationRequest$ = [3, n0, _DCOR, 0, [_COA], [[0, 1]]];
|
|
1550
|
+
var DescribeClusterOperationResponse$ = [
|
|
1551
1551
|
3,
|
|
1552
1552
|
n0,
|
|
1553
1553
|
_DCORe,
|
|
1554
1554
|
0,
|
|
1555
1555
|
[_COI],
|
|
1556
|
-
[[() => ClusterOperationInfo
|
|
1556
|
+
[[() => ClusterOperationInfo$, { [_jN]: _cOI }]],
|
|
1557
1557
|
];
|
|
1558
|
-
var DescribeClusterOperationV2Request = [3, n0, _DCOVR, 0, [_COA], [[0, 1]]];
|
|
1559
|
-
var DescribeClusterOperationV2Response = [
|
|
1558
|
+
var DescribeClusterOperationV2Request$ = [3, n0, _DCOVR, 0, [_COA], [[0, 1]]];
|
|
1559
|
+
var DescribeClusterOperationV2Response$ = [
|
|
1560
1560
|
3,
|
|
1561
1561
|
n0,
|
|
1562
1562
|
_DCOVRe,
|
|
1563
1563
|
0,
|
|
1564
1564
|
[_COI],
|
|
1565
|
-
[[() => ClusterOperationV2
|
|
1565
|
+
[[() => ClusterOperationV2$, { [_jN]: _cOI }]],
|
|
1566
1566
|
];
|
|
1567
|
-
var DescribeClusterRequest = [3, n0, _DCRes, 0, [_CA], [[0, 1]]];
|
|
1568
|
-
var DescribeClusterResponse = [
|
|
1567
|
+
var DescribeClusterRequest$ = [3, n0, _DCRes, 0, [_CA], [[0, 1]]];
|
|
1568
|
+
var DescribeClusterResponse$ = [
|
|
1569
1569
|
3,
|
|
1570
1570
|
n0,
|
|
1571
1571
|
_DCResc,
|
|
1572
1572
|
0,
|
|
1573
1573
|
[_CIl],
|
|
1574
|
-
[[() => ClusterInfo
|
|
1574
|
+
[[() => ClusterInfo$, { [_jN]: _cIl }]],
|
|
1575
1575
|
];
|
|
1576
|
-
var DescribeClusterV2Request = [3, n0, _DCVR, 0, [_CA], [[0, 1]]];
|
|
1577
|
-
var DescribeClusterV2Response = [
|
|
1576
|
+
var DescribeClusterV2Request$ = [3, n0, _DCVR, 0, [_CA], [[0, 1]]];
|
|
1577
|
+
var DescribeClusterV2Response$ = [
|
|
1578
1578
|
3,
|
|
1579
1579
|
n0,
|
|
1580
1580
|
_DCVRe,
|
|
1581
1581
|
0,
|
|
1582
1582
|
[_CIl],
|
|
1583
|
-
[[() => Cluster
|
|
1583
|
+
[[() => Cluster$, { [_jN]: _cIl }]],
|
|
1584
1584
|
];
|
|
1585
|
-
var DescribeConfigurationRequest = [3, n0, _DCRescr, 0, [_Ar], [[0, 1]]];
|
|
1586
|
-
var DescribeConfigurationResponse = [
|
|
1585
|
+
var DescribeConfigurationRequest$ = [3, n0, _DCRescr, 0, [_Ar], [[0, 1]]];
|
|
1586
|
+
var DescribeConfigurationResponse$ = [
|
|
1587
1587
|
3,
|
|
1588
1588
|
n0,
|
|
1589
1589
|
_DCRescri,
|
|
@@ -1594,12 +1594,12 @@ var DescribeConfigurationResponse = [
|
|
|
1594
1594
|
[5, { [_jN]: _cT }],
|
|
1595
1595
|
[0, { [_jN]: _d }],
|
|
1596
1596
|
[64 | 0, { [_jN]: _kVa }],
|
|
1597
|
-
[() => ConfigurationRevision
|
|
1597
|
+
[() => ConfigurationRevision$, { [_jN]: _lR }],
|
|
1598
1598
|
[0, { [_jN]: _n }],
|
|
1599
1599
|
[0, { [_jN]: _st }],
|
|
1600
1600
|
],
|
|
1601
1601
|
];
|
|
1602
|
-
var DescribeConfigurationRevisionRequest = [
|
|
1602
|
+
var DescribeConfigurationRevisionRequest$ = [
|
|
1603
1603
|
3,
|
|
1604
1604
|
n0,
|
|
1605
1605
|
_DCRR,
|
|
@@ -1610,7 +1610,7 @@ var DescribeConfigurationRevisionRequest = [
|
|
|
1610
1610
|
[1, 1],
|
|
1611
1611
|
],
|
|
1612
1612
|
];
|
|
1613
|
-
var DescribeConfigurationRevisionResponse = [
|
|
1613
|
+
var DescribeConfigurationRevisionResponse$ = [
|
|
1614
1614
|
3,
|
|
1615
1615
|
n0,
|
|
1616
1616
|
_DCRRe,
|
|
@@ -1624,8 +1624,8 @@ var DescribeConfigurationRevisionResponse = [
|
|
|
1624
1624
|
[21, { [_jN]: _sP }],
|
|
1625
1625
|
],
|
|
1626
1626
|
];
|
|
1627
|
-
var DescribeReplicatorRequest = [3, n0, _DRRes, 0, [_RA], [[0, 1]]];
|
|
1628
|
-
var DescribeReplicatorResponse = [
|
|
1627
|
+
var DescribeReplicatorRequest$ = [3, n0, _DRRes, 0, [_RA], [[0, 1]]];
|
|
1628
|
+
var DescribeReplicatorResponse$ = [
|
|
1629
1629
|
3,
|
|
1630
1630
|
n0,
|
|
1631
1631
|
_DRResc,
|
|
@@ -1643,11 +1643,11 @@ var DescribeReplicatorResponse = [
|
|
|
1643
1643
|
[0, { [_jN]: _rRA }],
|
|
1644
1644
|
[0, { [_jN]: _rS }],
|
|
1645
1645
|
[0, { [_jN]: _sERA }],
|
|
1646
|
-
[() => ReplicationStateInfo
|
|
1646
|
+
[() => ReplicationStateInfo$, { [_jN]: _sIt }],
|
|
1647
1647
|
[128 | 0, { [_jN]: _ta }],
|
|
1648
1648
|
],
|
|
1649
1649
|
];
|
|
1650
|
-
var DescribeTopicPartitionsRequest = [
|
|
1650
|
+
var DescribeTopicPartitionsRequest$ = [
|
|
1651
1651
|
3,
|
|
1652
1652
|
n0,
|
|
1653
1653
|
_DTPR,
|
|
@@ -1660,7 +1660,7 @@ var DescribeTopicPartitionsRequest = [
|
|
|
1660
1660
|
[0, { [_hQ]: _nT }],
|
|
1661
1661
|
],
|
|
1662
1662
|
];
|
|
1663
|
-
var DescribeTopicPartitionsResponse = [
|
|
1663
|
+
var DescribeTopicPartitionsResponse$ = [
|
|
1664
1664
|
3,
|
|
1665
1665
|
n0,
|
|
1666
1666
|
_DTPRe,
|
|
@@ -1671,7 +1671,7 @@ var DescribeTopicPartitionsResponse = [
|
|
|
1671
1671
|
[0, { [_jN]: _nT }],
|
|
1672
1672
|
],
|
|
1673
1673
|
];
|
|
1674
|
-
var DescribeTopicRequest = [
|
|
1674
|
+
var DescribeTopicRequest$ = [
|
|
1675
1675
|
3,
|
|
1676
1676
|
n0,
|
|
1677
1677
|
_DTR,
|
|
@@ -1682,7 +1682,7 @@ var DescribeTopicRequest = [
|
|
|
1682
1682
|
[0, 1],
|
|
1683
1683
|
],
|
|
1684
1684
|
];
|
|
1685
|
-
var DescribeTopicResponse = [
|
|
1685
|
+
var DescribeTopicResponse$ = [
|
|
1686
1686
|
3,
|
|
1687
1687
|
n0,
|
|
1688
1688
|
_DTRe,
|
|
@@ -1697,8 +1697,8 @@ var DescribeTopicResponse = [
|
|
|
1697
1697
|
[0, { [_jN]: _sta }],
|
|
1698
1698
|
],
|
|
1699
1699
|
];
|
|
1700
|
-
var DescribeVpcConnectionRequest = [3, n0, _DVCRes, 0, [_Ar], [[0, 1]]];
|
|
1701
|
-
var DescribeVpcConnectionResponse = [
|
|
1700
|
+
var DescribeVpcConnectionRequest$ = [3, n0, _DVCRes, 0, [_Ar], [[0, 1]]];
|
|
1701
|
+
var DescribeVpcConnectionResponse$ = [
|
|
1702
1702
|
3,
|
|
1703
1703
|
n0,
|
|
1704
1704
|
_DVCResc,
|
|
@@ -1716,30 +1716,30 @@ var DescribeVpcConnectionResponse = [
|
|
|
1716
1716
|
[128 | 0, { [_jN]: _ta }],
|
|
1717
1717
|
],
|
|
1718
1718
|
];
|
|
1719
|
-
var EBSStorageInfo = [
|
|
1719
|
+
var EBSStorageInfo$ = [
|
|
1720
1720
|
3,
|
|
1721
1721
|
n0,
|
|
1722
1722
|
_EBSSI,
|
|
1723
1723
|
0,
|
|
1724
1724
|
[_PT, _VS],
|
|
1725
1725
|
[
|
|
1726
|
-
[() => ProvisionedThroughput
|
|
1726
|
+
[() => ProvisionedThroughput$, { [_jN]: _pT }],
|
|
1727
1727
|
[1, { [_jN]: _vS }],
|
|
1728
1728
|
],
|
|
1729
1729
|
];
|
|
1730
|
-
var EncryptionAtRest = [3, n0, _EAR, 0, [_DVKMSKI], [[0, { [_jN]: _dVKMSKI }]]];
|
|
1731
|
-
var EncryptionInfo = [
|
|
1730
|
+
var EncryptionAtRest$ = [3, n0, _EAR, 0, [_DVKMSKI], [[0, { [_jN]: _dVKMSKI }]]];
|
|
1731
|
+
var EncryptionInfo$ = [
|
|
1732
1732
|
3,
|
|
1733
1733
|
n0,
|
|
1734
1734
|
_EI,
|
|
1735
1735
|
0,
|
|
1736
1736
|
[_EAR, _EIT],
|
|
1737
1737
|
[
|
|
1738
|
-
[() => EncryptionAtRest
|
|
1739
|
-
[() => EncryptionInTransit
|
|
1738
|
+
[() => EncryptionAtRest$, { [_jN]: _eAR }],
|
|
1739
|
+
[() => EncryptionInTransit$, { [_jN]: _eIT }],
|
|
1740
1740
|
],
|
|
1741
1741
|
];
|
|
1742
|
-
var EncryptionInTransit = [
|
|
1742
|
+
var EncryptionInTransit$ = [
|
|
1743
1743
|
3,
|
|
1744
1744
|
n0,
|
|
1745
1745
|
_EIT,
|
|
@@ -1750,7 +1750,7 @@ var EncryptionInTransit = [
|
|
|
1750
1750
|
[2, { [_jN]: _iC }],
|
|
1751
1751
|
],
|
|
1752
1752
|
];
|
|
1753
|
-
var ErrorInfo = [
|
|
1753
|
+
var ErrorInfo$ = [
|
|
1754
1754
|
3,
|
|
1755
1755
|
n0,
|
|
1756
1756
|
_EIr,
|
|
@@ -1761,7 +1761,7 @@ var ErrorInfo = [
|
|
|
1761
1761
|
[0, { [_jN]: _eS }],
|
|
1762
1762
|
],
|
|
1763
1763
|
];
|
|
1764
|
-
var Firehose = [
|
|
1764
|
+
var Firehose$ = [
|
|
1765
1765
|
3,
|
|
1766
1766
|
n0,
|
|
1767
1767
|
_F,
|
|
@@ -1772,7 +1772,7 @@ var Firehose = [
|
|
|
1772
1772
|
[2, { [_jN]: _ena }],
|
|
1773
1773
|
],
|
|
1774
1774
|
];
|
|
1775
|
-
var ForbiddenException = [
|
|
1775
|
+
var ForbiddenException$ = [
|
|
1776
1776
|
-3,
|
|
1777
1777
|
n0,
|
|
1778
1778
|
_FE,
|
|
@@ -1783,9 +1783,9 @@ var ForbiddenException = [
|
|
|
1783
1783
|
[0, { [_jN]: _m }],
|
|
1784
1784
|
],
|
|
1785
1785
|
];
|
|
1786
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException
|
|
1787
|
-
var GetBootstrapBrokersRequest = [3, n0, _GBBR, 0, [_CA], [[0, 1]]];
|
|
1788
|
-
var GetBootstrapBrokersResponse = [
|
|
1786
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
1787
|
+
var GetBootstrapBrokersRequest$ = [3, n0, _GBBR, 0, [_CA], [[0, 1]]];
|
|
1788
|
+
var GetBootstrapBrokersResponse$ = [
|
|
1789
1789
|
3,
|
|
1790
1790
|
n0,
|
|
1791
1791
|
_GBBRe,
|
|
@@ -1804,8 +1804,8 @@ var GetBootstrapBrokersResponse = [
|
|
|
1804
1804
|
[0, { [_jN]: _bBSVCSI }],
|
|
1805
1805
|
],
|
|
1806
1806
|
];
|
|
1807
|
-
var GetClusterPolicyRequest = [3, n0, _GCPR, 0, [_CA], [[0, 1]]];
|
|
1808
|
-
var GetClusterPolicyResponse = [
|
|
1807
|
+
var GetClusterPolicyRequest$ = [3, n0, _GCPR, 0, [_CA], [[0, 1]]];
|
|
1808
|
+
var GetClusterPolicyResponse$ = [
|
|
1809
1809
|
3,
|
|
1810
1810
|
n0,
|
|
1811
1811
|
_GCPRe,
|
|
@@ -1816,8 +1816,8 @@ var GetClusterPolicyResponse = [
|
|
|
1816
1816
|
[0, { [_jN]: _po }],
|
|
1817
1817
|
],
|
|
1818
1818
|
];
|
|
1819
|
-
var GetCompatibleKafkaVersionsRequest = [3, n0, _GCKVR, 0, [_CA], [[0, { [_hQ]: _cA }]]];
|
|
1820
|
-
var GetCompatibleKafkaVersionsResponse = [
|
|
1819
|
+
var GetCompatibleKafkaVersionsRequest$ = [3, n0, _GCKVR, 0, [_CA], [[0, { [_hQ]: _cA }]]];
|
|
1820
|
+
var GetCompatibleKafkaVersionsResponse$ = [
|
|
1821
1821
|
3,
|
|
1822
1822
|
n0,
|
|
1823
1823
|
_GCKVRe,
|
|
@@ -1825,8 +1825,8 @@ var GetCompatibleKafkaVersionsResponse = [
|
|
|
1825
1825
|
[_CKVo],
|
|
1826
1826
|
[[() => __listOfCompatibleKafkaVersion, { [_jN]: _cKV }]],
|
|
1827
1827
|
];
|
|
1828
|
-
var Iam = [3, n0, _I, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
1829
|
-
var InternalServerErrorException = [
|
|
1828
|
+
var Iam$ = [3, n0, _I, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
1829
|
+
var InternalServerErrorException$ = [
|
|
1830
1830
|
-3,
|
|
1831
1831
|
n0,
|
|
1832
1832
|
_ISEE,
|
|
@@ -1837,21 +1837,21 @@ var InternalServerErrorException = [
|
|
|
1837
1837
|
[0, { [_jN]: _m }],
|
|
1838
1838
|
],
|
|
1839
1839
|
];
|
|
1840
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException
|
|
1841
|
-
var JmxExporter = [3, n0, _JE, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
1842
|
-
var JmxExporterInfo = [3, n0, _JEI, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
1843
|
-
var KafkaCluster = [
|
|
1840
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
1841
|
+
var JmxExporter$ = [3, n0, _JE, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
1842
|
+
var JmxExporterInfo$ = [3, n0, _JEI, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
1843
|
+
var KafkaCluster$ = [
|
|
1844
1844
|
3,
|
|
1845
1845
|
n0,
|
|
1846
1846
|
_KCa,
|
|
1847
1847
|
0,
|
|
1848
1848
|
[_AMC, _VCp],
|
|
1849
1849
|
[
|
|
1850
|
-
[() => AmazonMskCluster
|
|
1851
|
-
[() => KafkaClusterClientVpcConfig
|
|
1850
|
+
[() => AmazonMskCluster$, { [_jN]: _aMC }],
|
|
1851
|
+
[() => KafkaClusterClientVpcConfig$, { [_jN]: _vCp }],
|
|
1852
1852
|
],
|
|
1853
1853
|
];
|
|
1854
|
-
var KafkaClusterClientVpcConfig = [
|
|
1854
|
+
var KafkaClusterClientVpcConfig$ = [
|
|
1855
1855
|
3,
|
|
1856
1856
|
n0,
|
|
1857
1857
|
_KCCVC,
|
|
@@ -1862,30 +1862,30 @@ var KafkaClusterClientVpcConfig = [
|
|
|
1862
1862
|
[64 | 0, { [_jN]: _sIu }],
|
|
1863
1863
|
],
|
|
1864
1864
|
];
|
|
1865
|
-
var KafkaClusterDescription = [
|
|
1865
|
+
var KafkaClusterDescription$ = [
|
|
1866
1866
|
3,
|
|
1867
1867
|
n0,
|
|
1868
1868
|
_KCD,
|
|
1869
1869
|
0,
|
|
1870
1870
|
[_AMC, _KCA, _VCp],
|
|
1871
1871
|
[
|
|
1872
|
-
[() => AmazonMskCluster
|
|
1872
|
+
[() => AmazonMskCluster$, { [_jN]: _aMC }],
|
|
1873
1873
|
[0, { [_jN]: _kCA }],
|
|
1874
|
-
[() => KafkaClusterClientVpcConfig
|
|
1874
|
+
[() => KafkaClusterClientVpcConfig$, { [_jN]: _vCp }],
|
|
1875
1875
|
],
|
|
1876
1876
|
];
|
|
1877
|
-
var KafkaClusterSummary = [
|
|
1877
|
+
var KafkaClusterSummary$ = [
|
|
1878
1878
|
3,
|
|
1879
1879
|
n0,
|
|
1880
1880
|
_KCS,
|
|
1881
1881
|
0,
|
|
1882
1882
|
[_AMC, _KCA],
|
|
1883
1883
|
[
|
|
1884
|
-
[() => AmazonMskCluster
|
|
1884
|
+
[() => AmazonMskCluster$, { [_jN]: _aMC }],
|
|
1885
1885
|
[0, { [_jN]: _kCA }],
|
|
1886
1886
|
],
|
|
1887
1887
|
];
|
|
1888
|
-
var KafkaVersion = [
|
|
1888
|
+
var KafkaVersion$ = [
|
|
1889
1889
|
3,
|
|
1890
1890
|
n0,
|
|
1891
1891
|
_KV,
|
|
@@ -1896,7 +1896,7 @@ var KafkaVersion = [
|
|
|
1896
1896
|
[0, { [_jN]: _sta }],
|
|
1897
1897
|
],
|
|
1898
1898
|
];
|
|
1899
|
-
var ListClientVpcConnectionsRequest = [
|
|
1899
|
+
var ListClientVpcConnectionsRequest$ = [
|
|
1900
1900
|
3,
|
|
1901
1901
|
n0,
|
|
1902
1902
|
_LCVCR,
|
|
@@ -1908,7 +1908,7 @@ var ListClientVpcConnectionsRequest = [
|
|
|
1908
1908
|
[0, { [_hQ]: _nT }],
|
|
1909
1909
|
],
|
|
1910
1910
|
];
|
|
1911
|
-
var ListClientVpcConnectionsResponse = [
|
|
1911
|
+
var ListClientVpcConnectionsResponse$ = [
|
|
1912
1912
|
3,
|
|
1913
1913
|
n0,
|
|
1914
1914
|
_LCVCRi,
|
|
@@ -1919,7 +1919,7 @@ var ListClientVpcConnectionsResponse = [
|
|
|
1919
1919
|
[0, { [_jN]: _nT }],
|
|
1920
1920
|
],
|
|
1921
1921
|
];
|
|
1922
|
-
var ListClusterOperationsRequest = [
|
|
1922
|
+
var ListClusterOperationsRequest$ = [
|
|
1923
1923
|
3,
|
|
1924
1924
|
n0,
|
|
1925
1925
|
_LCOR,
|
|
@@ -1931,7 +1931,7 @@ var ListClusterOperationsRequest = [
|
|
|
1931
1931
|
[0, { [_hQ]: _nT }],
|
|
1932
1932
|
],
|
|
1933
1933
|
];
|
|
1934
|
-
var ListClusterOperationsResponse = [
|
|
1934
|
+
var ListClusterOperationsResponse$ = [
|
|
1935
1935
|
3,
|
|
1936
1936
|
n0,
|
|
1937
1937
|
_LCORi,
|
|
@@ -1942,7 +1942,7 @@ var ListClusterOperationsResponse = [
|
|
|
1942
1942
|
[0, { [_jN]: _nT }],
|
|
1943
1943
|
],
|
|
1944
1944
|
];
|
|
1945
|
-
var ListClusterOperationsV2Request = [
|
|
1945
|
+
var ListClusterOperationsV2Request$ = [
|
|
1946
1946
|
3,
|
|
1947
1947
|
n0,
|
|
1948
1948
|
_LCOVR,
|
|
@@ -1954,7 +1954,7 @@ var ListClusterOperationsV2Request = [
|
|
|
1954
1954
|
[0, { [_hQ]: _nT }],
|
|
1955
1955
|
],
|
|
1956
1956
|
];
|
|
1957
|
-
var ListClusterOperationsV2Response = [
|
|
1957
|
+
var ListClusterOperationsV2Response$ = [
|
|
1958
1958
|
3,
|
|
1959
1959
|
n0,
|
|
1960
1960
|
_LCOVRi,
|
|
@@ -1965,7 +1965,7 @@ var ListClusterOperationsV2Response = [
|
|
|
1965
1965
|
[0, { [_jN]: _nT }],
|
|
1966
1966
|
],
|
|
1967
1967
|
];
|
|
1968
|
-
var ListClustersRequest = [
|
|
1968
|
+
var ListClustersRequest$ = [
|
|
1969
1969
|
3,
|
|
1970
1970
|
n0,
|
|
1971
1971
|
_LCR,
|
|
@@ -1977,7 +1977,7 @@ var ListClustersRequest = [
|
|
|
1977
1977
|
[0, { [_hQ]: _nT }],
|
|
1978
1978
|
],
|
|
1979
1979
|
];
|
|
1980
|
-
var ListClustersResponse = [
|
|
1980
|
+
var ListClustersResponse$ = [
|
|
1981
1981
|
3,
|
|
1982
1982
|
n0,
|
|
1983
1983
|
_LCRi,
|
|
@@ -1988,7 +1988,7 @@ var ListClustersResponse = [
|
|
|
1988
1988
|
[0, { [_jN]: _nT }],
|
|
1989
1989
|
],
|
|
1990
1990
|
];
|
|
1991
|
-
var ListClustersV2Request = [
|
|
1991
|
+
var ListClustersV2Request$ = [
|
|
1992
1992
|
3,
|
|
1993
1993
|
n0,
|
|
1994
1994
|
_LCVR,
|
|
@@ -2001,7 +2001,7 @@ var ListClustersV2Request = [
|
|
|
2001
2001
|
[0, { [_hQ]: _nT }],
|
|
2002
2002
|
],
|
|
2003
2003
|
];
|
|
2004
|
-
var ListClustersV2Response = [
|
|
2004
|
+
var ListClustersV2Response$ = [
|
|
2005
2005
|
3,
|
|
2006
2006
|
n0,
|
|
2007
2007
|
_LCVRi,
|
|
@@ -2012,7 +2012,7 @@ var ListClustersV2Response = [
|
|
|
2012
2012
|
[0, { [_jN]: _nT }],
|
|
2013
2013
|
],
|
|
2014
2014
|
];
|
|
2015
|
-
var ListConfigurationRevisionsRequest = [
|
|
2015
|
+
var ListConfigurationRevisionsRequest$ = [
|
|
2016
2016
|
3,
|
|
2017
2017
|
n0,
|
|
2018
2018
|
_LCRR,
|
|
@@ -2024,7 +2024,7 @@ var ListConfigurationRevisionsRequest = [
|
|
|
2024
2024
|
[0, { [_hQ]: _nT }],
|
|
2025
2025
|
],
|
|
2026
2026
|
];
|
|
2027
|
-
var ListConfigurationRevisionsResponse = [
|
|
2027
|
+
var ListConfigurationRevisionsResponse$ = [
|
|
2028
2028
|
3,
|
|
2029
2029
|
n0,
|
|
2030
2030
|
_LCRRi,
|
|
@@ -2035,7 +2035,7 @@ var ListConfigurationRevisionsResponse = [
|
|
|
2035
2035
|
[() => __listOfConfigurationRevision, { [_jN]: _rev }],
|
|
2036
2036
|
],
|
|
2037
2037
|
];
|
|
2038
|
-
var ListConfigurationsRequest = [
|
|
2038
|
+
var ListConfigurationsRequest$ = [
|
|
2039
2039
|
3,
|
|
2040
2040
|
n0,
|
|
2041
2041
|
_LCRis,
|
|
@@ -2046,7 +2046,7 @@ var ListConfigurationsRequest = [
|
|
|
2046
2046
|
[0, { [_hQ]: _nT }],
|
|
2047
2047
|
],
|
|
2048
2048
|
];
|
|
2049
|
-
var ListConfigurationsResponse = [
|
|
2049
|
+
var ListConfigurationsResponse$ = [
|
|
2050
2050
|
3,
|
|
2051
2051
|
n0,
|
|
2052
2052
|
_LCRist,
|
|
@@ -2057,7 +2057,7 @@ var ListConfigurationsResponse = [
|
|
|
2057
2057
|
[0, { [_jN]: _nT }],
|
|
2058
2058
|
],
|
|
2059
2059
|
];
|
|
2060
|
-
var ListKafkaVersionsRequest = [
|
|
2060
|
+
var ListKafkaVersionsRequest$ = [
|
|
2061
2061
|
3,
|
|
2062
2062
|
n0,
|
|
2063
2063
|
_LKVR,
|
|
@@ -2068,7 +2068,7 @@ var ListKafkaVersionsRequest = [
|
|
|
2068
2068
|
[0, { [_hQ]: _nT }],
|
|
2069
2069
|
],
|
|
2070
2070
|
];
|
|
2071
|
-
var ListKafkaVersionsResponse = [
|
|
2071
|
+
var ListKafkaVersionsResponse$ = [
|
|
2072
2072
|
3,
|
|
2073
2073
|
n0,
|
|
2074
2074
|
_LKVRi,
|
|
@@ -2079,7 +2079,7 @@ var ListKafkaVersionsResponse = [
|
|
|
2079
2079
|
[0, { [_jN]: _nT }],
|
|
2080
2080
|
],
|
|
2081
2081
|
];
|
|
2082
|
-
var ListNodesRequest = [
|
|
2082
|
+
var ListNodesRequest$ = [
|
|
2083
2083
|
3,
|
|
2084
2084
|
n0,
|
|
2085
2085
|
_LNR,
|
|
@@ -2091,7 +2091,7 @@ var ListNodesRequest = [
|
|
|
2091
2091
|
[0, { [_hQ]: _nT }],
|
|
2092
2092
|
],
|
|
2093
2093
|
];
|
|
2094
|
-
var ListNodesResponse = [
|
|
2094
|
+
var ListNodesResponse$ = [
|
|
2095
2095
|
3,
|
|
2096
2096
|
n0,
|
|
2097
2097
|
_LNRi,
|
|
@@ -2102,7 +2102,7 @@ var ListNodesResponse = [
|
|
|
2102
2102
|
[() => __listOfNodeInfo, { [_jN]: _nIL }],
|
|
2103
2103
|
],
|
|
2104
2104
|
];
|
|
2105
|
-
var ListReplicatorsRequest = [
|
|
2105
|
+
var ListReplicatorsRequest$ = [
|
|
2106
2106
|
3,
|
|
2107
2107
|
n0,
|
|
2108
2108
|
_LRR,
|
|
@@ -2114,7 +2114,7 @@ var ListReplicatorsRequest = [
|
|
|
2114
2114
|
[0, { [_hQ]: _rNF }],
|
|
2115
2115
|
],
|
|
2116
2116
|
];
|
|
2117
|
-
var ListReplicatorsResponse = [
|
|
2117
|
+
var ListReplicatorsResponse$ = [
|
|
2118
2118
|
3,
|
|
2119
2119
|
n0,
|
|
2120
2120
|
_LRRi,
|
|
@@ -2125,7 +2125,7 @@ var ListReplicatorsResponse = [
|
|
|
2125
2125
|
[() => __listOfReplicatorSummary, { [_jN]: _rep }],
|
|
2126
2126
|
],
|
|
2127
2127
|
];
|
|
2128
|
-
var ListScramSecretsRequest = [
|
|
2128
|
+
var ListScramSecretsRequest$ = [
|
|
2129
2129
|
3,
|
|
2130
2130
|
n0,
|
|
2131
2131
|
_LSSR,
|
|
@@ -2137,7 +2137,7 @@ var ListScramSecretsRequest = [
|
|
|
2137
2137
|
[0, { [_hQ]: _nT }],
|
|
2138
2138
|
],
|
|
2139
2139
|
];
|
|
2140
|
-
var ListScramSecretsResponse = [
|
|
2140
|
+
var ListScramSecretsResponse$ = [
|
|
2141
2141
|
3,
|
|
2142
2142
|
n0,
|
|
2143
2143
|
_LSSRi,
|
|
@@ -2148,9 +2148,16 @@ var ListScramSecretsResponse = [
|
|
|
2148
2148
|
[64 | 0, { [_jN]: _sAL }],
|
|
2149
2149
|
],
|
|
2150
2150
|
];
|
|
2151
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
2152
|
-
var ListTagsForResourceResponse = [
|
|
2153
|
-
|
|
2151
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
2152
|
+
var ListTagsForResourceResponse$ = [
|
|
2153
|
+
3,
|
|
2154
|
+
n0,
|
|
2155
|
+
_LTFRRi,
|
|
2156
|
+
0,
|
|
2157
|
+
[_Ta],
|
|
2158
|
+
[[128 | 0, { [_jN]: _ta }]],
|
|
2159
|
+
];
|
|
2160
|
+
var ListTopicsRequest$ = [
|
|
2154
2161
|
3,
|
|
2155
2162
|
n0,
|
|
2156
2163
|
_LTR,
|
|
@@ -2163,7 +2170,7 @@ var ListTopicsRequest = [
|
|
|
2163
2170
|
[0, { [_hQ]: _tNF }],
|
|
2164
2171
|
],
|
|
2165
2172
|
];
|
|
2166
|
-
var ListTopicsResponse = [
|
|
2173
|
+
var ListTopicsResponse$ = [
|
|
2167
2174
|
3,
|
|
2168
2175
|
n0,
|
|
2169
2176
|
_LTRi,
|
|
@@ -2174,7 +2181,7 @@ var ListTopicsResponse = [
|
|
|
2174
2181
|
[0, { [_jN]: _nT }],
|
|
2175
2182
|
],
|
|
2176
2183
|
];
|
|
2177
|
-
var ListVpcConnectionsRequest = [
|
|
2184
|
+
var ListVpcConnectionsRequest$ = [
|
|
2178
2185
|
3,
|
|
2179
2186
|
n0,
|
|
2180
2187
|
_LVCR,
|
|
@@ -2185,7 +2192,7 @@ var ListVpcConnectionsRequest = [
|
|
|
2185
2192
|
[0, { [_hQ]: _nT }],
|
|
2186
2193
|
],
|
|
2187
2194
|
];
|
|
2188
|
-
var ListVpcConnectionsResponse = [
|
|
2195
|
+
var ListVpcConnectionsResponse$ = [
|
|
2189
2196
|
3,
|
|
2190
2197
|
n0,
|
|
2191
2198
|
_LVCRi,
|
|
@@ -2196,8 +2203,8 @@ var ListVpcConnectionsResponse = [
|
|
|
2196
2203
|
[0, { [_jN]: _nT }],
|
|
2197
2204
|
],
|
|
2198
2205
|
];
|
|
2199
|
-
var LoggingInfo = [3, n0, _LI, 0, [_BL], [[() => BrokerLogs
|
|
2200
|
-
var MutableClusterInfo = [
|
|
2206
|
+
var LoggingInfo$ = [3, n0, _LI, 0, [_BL], [[() => BrokerLogs$, { [_jN]: _bL }]]];
|
|
2207
|
+
var MutableClusterInfo$ = [
|
|
2201
2208
|
3,
|
|
2202
2209
|
n0,
|
|
2203
2210
|
_MCI,
|
|
@@ -2205,24 +2212,24 @@ var MutableClusterInfo = [
|
|
|
2205
2212
|
[_BEBSVI, _CIo, _NOBN, _EM, _OM, _KV, _LI, _IT, _CAl, _EI, _CI, _SM, _BCUI, _R],
|
|
2206
2213
|
[
|
|
2207
2214
|
[() => __listOfBrokerEBSVolumeInfo, { [_jN]: _bEBSVI }],
|
|
2208
|
-
[() => ConfigurationInfo
|
|
2215
|
+
[() => ConfigurationInfo$, { [_jN]: _cIo }],
|
|
2209
2216
|
[1, { [_jN]: _nOBN }],
|
|
2210
2217
|
[0, { [_jN]: _eM }],
|
|
2211
|
-
[() => OpenMonitoring
|
|
2218
|
+
[() => OpenMonitoring$, { [_jN]: _oM }],
|
|
2212
2219
|
[0, { [_jN]: _kV }],
|
|
2213
|
-
[() => LoggingInfo
|
|
2220
|
+
[() => LoggingInfo$, { [_jN]: _lI }],
|
|
2214
2221
|
[0, { [_jN]: _iT }],
|
|
2215
|
-
[() => ClientAuthentication
|
|
2216
|
-
[() => EncryptionInfo
|
|
2217
|
-
[() => ConnectivityInfo
|
|
2222
|
+
[() => ClientAuthentication$, { [_jN]: _cAl }],
|
|
2223
|
+
[() => EncryptionInfo$, { [_jN]: _eI }],
|
|
2224
|
+
[() => ConnectivityInfo$, { [_jN]: _cI }],
|
|
2218
2225
|
[0, { [_jN]: _sM }],
|
|
2219
|
-
[() => BrokerCountUpdateInfo
|
|
2220
|
-
[() => Rebalancing
|
|
2226
|
+
[() => BrokerCountUpdateInfo$, { [_jN]: _bCUI }],
|
|
2227
|
+
[() => Rebalancing$, { [_jN]: _r }],
|
|
2221
2228
|
],
|
|
2222
2229
|
];
|
|
2223
|
-
var NodeExporter = [3, n0, _NE, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
2224
|
-
var NodeExporterInfo = [3, n0, _NEI, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
2225
|
-
var NodeInfo = [
|
|
2230
|
+
var NodeExporter$ = [3, n0, _NE, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
2231
|
+
var NodeExporterInfo$ = [3, n0, _NEI, 0, [_EIB], [[2, { [_jN]: _eIB }]]];
|
|
2232
|
+
var NodeInfo$ = [
|
|
2226
2233
|
3,
|
|
2227
2234
|
n0,
|
|
2228
2235
|
_NI,
|
|
@@ -2230,15 +2237,15 @@ var NodeInfo = [
|
|
|
2230
2237
|
[_ATCT, _BNI, _CNI, _IT, _NARN, _NTo, _ZNI],
|
|
2231
2238
|
[
|
|
2232
2239
|
[0, { [_jN]: _aTCT }],
|
|
2233
|
-
[() => BrokerNodeInfo
|
|
2234
|
-
[() => ControllerNodeInfo
|
|
2240
|
+
[() => BrokerNodeInfo$, { [_jN]: _bNI }],
|
|
2241
|
+
[() => ControllerNodeInfo$, { [_jN]: _cNI }],
|
|
2235
2242
|
[0, { [_jN]: _iT }],
|
|
2236
2243
|
[0, { [_jN]: _nARN }],
|
|
2237
2244
|
[0, { [_jN]: _nTo }],
|
|
2238
|
-
[() => ZookeeperNodeInfo
|
|
2245
|
+
[() => ZookeeperNodeInfo$, { [_jN]: _zNI }],
|
|
2239
2246
|
],
|
|
2240
2247
|
];
|
|
2241
|
-
var NotFoundException = [
|
|
2248
|
+
var NotFoundException$ = [
|
|
2242
2249
|
-3,
|
|
2243
2250
|
n0,
|
|
2244
2251
|
_NFE,
|
|
@@ -2249,53 +2256,53 @@ var NotFoundException = [
|
|
|
2249
2256
|
[0, { [_jN]: _m }],
|
|
2250
2257
|
],
|
|
2251
2258
|
];
|
|
2252
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException
|
|
2253
|
-
var OpenMonitoring = [3, n0, _OM, 0, [_Pr], [[() => Prometheus
|
|
2254
|
-
var OpenMonitoringInfo = [
|
|
2259
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
2260
|
+
var OpenMonitoring$ = [3, n0, _OM, 0, [_Pr], [[() => Prometheus$, { [_jN]: _pr }]]];
|
|
2261
|
+
var OpenMonitoringInfo$ = [
|
|
2255
2262
|
3,
|
|
2256
2263
|
n0,
|
|
2257
2264
|
_OMI,
|
|
2258
2265
|
0,
|
|
2259
2266
|
[_Pr],
|
|
2260
|
-
[[() => PrometheusInfo
|
|
2267
|
+
[[() => PrometheusInfo$, { [_jN]: _pr }]],
|
|
2261
2268
|
];
|
|
2262
|
-
var Prometheus = [
|
|
2269
|
+
var Prometheus$ = [
|
|
2263
2270
|
3,
|
|
2264
2271
|
n0,
|
|
2265
2272
|
_Pr,
|
|
2266
2273
|
0,
|
|
2267
2274
|
[_JE, _NE],
|
|
2268
2275
|
[
|
|
2269
|
-
[() => JmxExporter
|
|
2270
|
-
[() => NodeExporter
|
|
2276
|
+
[() => JmxExporter$, { [_jN]: _jE }],
|
|
2277
|
+
[() => NodeExporter$, { [_jN]: _nE }],
|
|
2271
2278
|
],
|
|
2272
2279
|
];
|
|
2273
|
-
var PrometheusInfo = [
|
|
2280
|
+
var PrometheusInfo$ = [
|
|
2274
2281
|
3,
|
|
2275
2282
|
n0,
|
|
2276
2283
|
_PI,
|
|
2277
2284
|
0,
|
|
2278
2285
|
[_JE, _NE],
|
|
2279
2286
|
[
|
|
2280
|
-
[() => JmxExporterInfo
|
|
2281
|
-
[() => NodeExporterInfo
|
|
2287
|
+
[() => JmxExporterInfo$, { [_jN]: _jE }],
|
|
2288
|
+
[() => NodeExporterInfo$, { [_jN]: _nE }],
|
|
2282
2289
|
],
|
|
2283
2290
|
];
|
|
2284
|
-
var Provisioned = [
|
|
2291
|
+
var Provisioned$ = [
|
|
2285
2292
|
3,
|
|
2286
2293
|
n0,
|
|
2287
2294
|
_P,
|
|
2288
2295
|
0,
|
|
2289
2296
|
[_BNGI, _R, _CBSI, _CAl, _EI, _EM, _OM, _LI, _NOBN, _ZCS, _ZCST, _SM, _CAS],
|
|
2290
2297
|
[
|
|
2291
|
-
[() => BrokerNodeGroupInfo
|
|
2292
|
-
[() => Rebalancing
|
|
2293
|
-
[() => BrokerSoftwareInfo
|
|
2294
|
-
[() => ClientAuthentication
|
|
2295
|
-
[() => EncryptionInfo
|
|
2298
|
+
[() => BrokerNodeGroupInfo$, { [_jN]: _bNGI }],
|
|
2299
|
+
[() => Rebalancing$, { [_jN]: _r }],
|
|
2300
|
+
[() => BrokerSoftwareInfo$, { [_jN]: _cBSI }],
|
|
2301
|
+
[() => ClientAuthentication$, { [_jN]: _cAl }],
|
|
2302
|
+
[() => EncryptionInfo$, { [_jN]: _eI }],
|
|
2296
2303
|
[0, { [_jN]: _eM }],
|
|
2297
|
-
[() => OpenMonitoringInfo
|
|
2298
|
-
[() => LoggingInfo
|
|
2304
|
+
[() => OpenMonitoringInfo$, { [_jN]: _oM }],
|
|
2305
|
+
[() => LoggingInfo$, { [_jN]: _lI }],
|
|
2299
2306
|
[1, { [_jN]: _nOBN }],
|
|
2300
2307
|
[0, { [_jN]: _zCS }],
|
|
2301
2308
|
[0, { [_jN]: _zCST }],
|
|
@@ -2303,27 +2310,27 @@ var Provisioned = [
|
|
|
2303
2310
|
[0, { [_jN]: _cAS }],
|
|
2304
2311
|
],
|
|
2305
2312
|
];
|
|
2306
|
-
var ProvisionedRequest = [
|
|
2313
|
+
var ProvisionedRequest$ = [
|
|
2307
2314
|
3,
|
|
2308
2315
|
n0,
|
|
2309
2316
|
_PR,
|
|
2310
2317
|
0,
|
|
2311
2318
|
[_BNGI, _R, _CAl, _CIo, _EI, _EM, _OM, _KV, _LI, _NOBN, _SM],
|
|
2312
2319
|
[
|
|
2313
|
-
[() => BrokerNodeGroupInfo
|
|
2314
|
-
[() => Rebalancing
|
|
2315
|
-
[() => ClientAuthentication
|
|
2316
|
-
[() => ConfigurationInfo
|
|
2317
|
-
[() => EncryptionInfo
|
|
2320
|
+
[() => BrokerNodeGroupInfo$, { [_jN]: _bNGI }],
|
|
2321
|
+
[() => Rebalancing$, { [_jN]: _r }],
|
|
2322
|
+
[() => ClientAuthentication$, { [_jN]: _cAl }],
|
|
2323
|
+
[() => ConfigurationInfo$, { [_jN]: _cIo }],
|
|
2324
|
+
[() => EncryptionInfo$, { [_jN]: _eI }],
|
|
2318
2325
|
[0, { [_jN]: _eM }],
|
|
2319
|
-
[() => OpenMonitoringInfo
|
|
2326
|
+
[() => OpenMonitoringInfo$, { [_jN]: _oM }],
|
|
2320
2327
|
[0, { [_jN]: _kV }],
|
|
2321
|
-
[() => LoggingInfo
|
|
2328
|
+
[() => LoggingInfo$, { [_jN]: _lI }],
|
|
2322
2329
|
[1, { [_jN]: _nOBN }],
|
|
2323
2330
|
[0, { [_jN]: _sM }],
|
|
2324
2331
|
],
|
|
2325
2332
|
];
|
|
2326
|
-
var ProvisionedThroughput = [
|
|
2333
|
+
var ProvisionedThroughput$ = [
|
|
2327
2334
|
3,
|
|
2328
2335
|
n0,
|
|
2329
2336
|
_PT,
|
|
@@ -2334,8 +2341,8 @@ var ProvisionedThroughput = [
|
|
|
2334
2341
|
[1, { [_jN]: _vT }],
|
|
2335
2342
|
],
|
|
2336
2343
|
];
|
|
2337
|
-
var PublicAccess = [3, n0, _PA, 0, [_Ty], [[0, { [_jN]: _ty }]]];
|
|
2338
|
-
var PutClusterPolicyRequest = [
|
|
2344
|
+
var PublicAccess$ = [3, n0, _PA, 0, [_Ty], [[0, { [_jN]: _ty }]]];
|
|
2345
|
+
var PutClusterPolicyRequest$ = [
|
|
2339
2346
|
3,
|
|
2340
2347
|
n0,
|
|
2341
2348
|
_PCPR,
|
|
@@ -2347,9 +2354,9 @@ var PutClusterPolicyRequest = [
|
|
|
2347
2354
|
[0, { [_jN]: _po }],
|
|
2348
2355
|
],
|
|
2349
2356
|
];
|
|
2350
|
-
var PutClusterPolicyResponse = [3, n0, _PCPRu, 0, [_CV], [[0, { [_jN]: _cV }]]];
|
|
2351
|
-
var Rebalancing = [3, n0, _R, 0, [_Sta], [[0, { [_jN]: _sta }]]];
|
|
2352
|
-
var RebootBrokerRequest = [
|
|
2357
|
+
var PutClusterPolicyResponse$ = [3, n0, _PCPRu, 0, [_CV], [[0, { [_jN]: _cV }]]];
|
|
2358
|
+
var Rebalancing$ = [3, n0, _R, 0, [_Sta], [[0, { [_jN]: _sta }]]];
|
|
2359
|
+
var RebootBrokerRequest$ = [
|
|
2353
2360
|
3,
|
|
2354
2361
|
n0,
|
|
2355
2362
|
_RBR,
|
|
@@ -2360,7 +2367,7 @@ var RebootBrokerRequest = [
|
|
|
2360
2367
|
[0, 1],
|
|
2361
2368
|
],
|
|
2362
2369
|
];
|
|
2363
|
-
var RebootBrokerResponse = [
|
|
2370
|
+
var RebootBrokerResponse$ = [
|
|
2364
2371
|
3,
|
|
2365
2372
|
n0,
|
|
2366
2373
|
_RBRe,
|
|
@@ -2371,7 +2378,7 @@ var RebootBrokerResponse = [
|
|
|
2371
2378
|
[0, { [_jN]: _cOA }],
|
|
2372
2379
|
],
|
|
2373
2380
|
];
|
|
2374
|
-
var RejectClientVpcConnectionRequest = [
|
|
2381
|
+
var RejectClientVpcConnectionRequest$ = [
|
|
2375
2382
|
3,
|
|
2376
2383
|
n0,
|
|
2377
2384
|
_RCVCR,
|
|
@@ -2382,36 +2389,36 @@ var RejectClientVpcConnectionRequest = [
|
|
|
2382
2389
|
[0, { [_jN]: _vCA }],
|
|
2383
2390
|
],
|
|
2384
2391
|
];
|
|
2385
|
-
var RejectClientVpcConnectionResponse = [3, n0, _RCVCRe, 0, [], []];
|
|
2386
|
-
var ReplicationInfo = [
|
|
2392
|
+
var RejectClientVpcConnectionResponse$ = [3, n0, _RCVCRe, 0, [], []];
|
|
2393
|
+
var ReplicationInfo$ = [
|
|
2387
2394
|
3,
|
|
2388
2395
|
n0,
|
|
2389
2396
|
_RI,
|
|
2390
2397
|
0,
|
|
2391
2398
|
[_CGR, _SKCA, _TCT, _TKCA, _TR],
|
|
2392
2399
|
[
|
|
2393
|
-
[() => ConsumerGroupReplication
|
|
2400
|
+
[() => ConsumerGroupReplication$, { [_jN]: _cGR }],
|
|
2394
2401
|
[0, { [_jN]: _sKCA }],
|
|
2395
2402
|
[0, { [_jN]: _tCT }],
|
|
2396
2403
|
[0, { [_jN]: _tKCA }],
|
|
2397
|
-
[() => TopicReplication
|
|
2404
|
+
[() => TopicReplication$, { [_jN]: _tR }],
|
|
2398
2405
|
],
|
|
2399
2406
|
];
|
|
2400
|
-
var ReplicationInfoDescription = [
|
|
2407
|
+
var ReplicationInfoDescription$ = [
|
|
2401
2408
|
3,
|
|
2402
2409
|
n0,
|
|
2403
2410
|
_RID,
|
|
2404
2411
|
0,
|
|
2405
2412
|
[_CGR, _SKCAo, _TCT, _TKCAa, _TR],
|
|
2406
2413
|
[
|
|
2407
|
-
[() => ConsumerGroupReplication
|
|
2414
|
+
[() => ConsumerGroupReplication$, { [_jN]: _cGR }],
|
|
2408
2415
|
[0, { [_jN]: _sKCAo }],
|
|
2409
2416
|
[0, { [_jN]: _tCT }],
|
|
2410
2417
|
[0, { [_jN]: _tKCAa }],
|
|
2411
|
-
[() => TopicReplication
|
|
2418
|
+
[() => TopicReplication$, { [_jN]: _tR }],
|
|
2412
2419
|
],
|
|
2413
2420
|
];
|
|
2414
|
-
var ReplicationInfoSummary = [
|
|
2421
|
+
var ReplicationInfoSummary$ = [
|
|
2415
2422
|
3,
|
|
2416
2423
|
n0,
|
|
2417
2424
|
_RIS,
|
|
@@ -2422,8 +2429,8 @@ var ReplicationInfoSummary = [
|
|
|
2422
2429
|
[0, { [_jN]: _tKCAa }],
|
|
2423
2430
|
],
|
|
2424
2431
|
];
|
|
2425
|
-
var ReplicationStartingPosition = [3, n0, _RSP, 0, [_Ty], [[0, { [_jN]: _ty }]]];
|
|
2426
|
-
var ReplicationStateInfo = [
|
|
2432
|
+
var ReplicationStartingPosition$ = [3, n0, _RSP, 0, [_Ty], [[0, { [_jN]: _ty }]]];
|
|
2433
|
+
var ReplicationStateInfo$ = [
|
|
2427
2434
|
3,
|
|
2428
2435
|
n0,
|
|
2429
2436
|
_RSI,
|
|
@@ -2434,8 +2441,8 @@ var ReplicationStateInfo = [
|
|
|
2434
2441
|
[0, { [_jN]: _m }],
|
|
2435
2442
|
],
|
|
2436
2443
|
];
|
|
2437
|
-
var ReplicationTopicNameConfiguration = [3, n0, _RTNC, 0, [_Ty], [[0, { [_jN]: _ty }]]];
|
|
2438
|
-
var ReplicatorSummary = [
|
|
2444
|
+
var ReplicationTopicNameConfiguration$ = [3, n0, _RTNC, 0, [_Ty], [[0, { [_jN]: _ty }]]];
|
|
2445
|
+
var ReplicatorSummary$ = [
|
|
2439
2446
|
3,
|
|
2440
2447
|
n0,
|
|
2441
2448
|
_RSe,
|
|
@@ -2453,7 +2460,7 @@ var ReplicatorSummary = [
|
|
|
2453
2460
|
[0, { [_jN]: _rS }],
|
|
2454
2461
|
],
|
|
2455
2462
|
];
|
|
2456
|
-
var S3 = [
|
|
2463
|
+
var S3$ = [
|
|
2457
2464
|
3,
|
|
2458
2465
|
n0,
|
|
2459
2466
|
_S,
|
|
@@ -2465,19 +2472,19 @@ var S3 = [
|
|
|
2465
2472
|
[0, { [_jN]: _pre }],
|
|
2466
2473
|
],
|
|
2467
2474
|
];
|
|
2468
|
-
var Sasl = [
|
|
2475
|
+
var Sasl$ = [
|
|
2469
2476
|
3,
|
|
2470
2477
|
n0,
|
|
2471
2478
|
_Sa,
|
|
2472
2479
|
0,
|
|
2473
2480
|
[_Sc, _I],
|
|
2474
2481
|
[
|
|
2475
|
-
[() => Scram
|
|
2476
|
-
[() => Iam
|
|
2482
|
+
[() => Scram$, { [_jN]: _sc }],
|
|
2483
|
+
[() => Iam$, { [_jN]: _i }],
|
|
2477
2484
|
],
|
|
2478
2485
|
];
|
|
2479
|
-
var Scram = [3, n0, _Sc, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
2480
|
-
var Serverless = [
|
|
2486
|
+
var Scram$ = [3, n0, _Sc, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
2487
|
+
var Serverless$ = [
|
|
2481
2488
|
3,
|
|
2482
2489
|
n0,
|
|
2483
2490
|
_Se,
|
|
@@ -2485,18 +2492,18 @@ var Serverless = [
|
|
|
2485
2492
|
[_VCpco, _CAl],
|
|
2486
2493
|
[
|
|
2487
2494
|
[() => __listOfVpcConfig, { [_jN]: _vCpco }],
|
|
2488
|
-
[() => ServerlessClientAuthentication
|
|
2495
|
+
[() => ServerlessClientAuthentication$, { [_jN]: _cAl }],
|
|
2489
2496
|
],
|
|
2490
2497
|
];
|
|
2491
|
-
var ServerlessClientAuthentication = [
|
|
2498
|
+
var ServerlessClientAuthentication$ = [
|
|
2492
2499
|
3,
|
|
2493
2500
|
n0,
|
|
2494
2501
|
_SCA,
|
|
2495
2502
|
0,
|
|
2496
2503
|
[_Sa],
|
|
2497
|
-
[[() => ServerlessSasl
|
|
2504
|
+
[[() => ServerlessSasl$, { [_jN]: _sa }]],
|
|
2498
2505
|
];
|
|
2499
|
-
var ServerlessRequest = [
|
|
2506
|
+
var ServerlessRequest$ = [
|
|
2500
2507
|
3,
|
|
2501
2508
|
n0,
|
|
2502
2509
|
_SR,
|
|
@@ -2504,11 +2511,11 @@ var ServerlessRequest = [
|
|
|
2504
2511
|
[_VCpco, _CAl],
|
|
2505
2512
|
[
|
|
2506
2513
|
[() => __listOfVpcConfig, { [_jN]: _vCpco }],
|
|
2507
|
-
[() => ServerlessClientAuthentication
|
|
2514
|
+
[() => ServerlessClientAuthentication$, { [_jN]: _cAl }],
|
|
2508
2515
|
],
|
|
2509
2516
|
];
|
|
2510
|
-
var ServerlessSasl = [3, n0, _SSe, 0, [_I], [[() => Iam
|
|
2511
|
-
var ServiceUnavailableException = [
|
|
2517
|
+
var ServerlessSasl$ = [3, n0, _SSe, 0, [_I], [[() => Iam$, { [_jN]: _i }]]];
|
|
2518
|
+
var ServiceUnavailableException$ = [
|
|
2512
2519
|
-3,
|
|
2513
2520
|
n0,
|
|
2514
2521
|
_SUE,
|
|
@@ -2519,8 +2526,8 @@ var ServiceUnavailableException = [
|
|
|
2519
2526
|
[0, { [_jN]: _m }],
|
|
2520
2527
|
],
|
|
2521
2528
|
];
|
|
2522
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException
|
|
2523
|
-
var StateInfo = [
|
|
2529
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
2530
|
+
var StateInfo$ = [
|
|
2524
2531
|
3,
|
|
2525
2532
|
n0,
|
|
2526
2533
|
_SIt,
|
|
@@ -2531,8 +2538,8 @@ var StateInfo = [
|
|
|
2531
2538
|
[0, { [_jN]: _m }],
|
|
2532
2539
|
],
|
|
2533
2540
|
];
|
|
2534
|
-
var StorageInfo = [3, n0, _SI, 0, [_ESI], [[() => EBSStorageInfo
|
|
2535
|
-
var TagResourceRequest = [
|
|
2541
|
+
var StorageInfo$ = [3, n0, _SI, 0, [_ESI], [[() => EBSStorageInfo$, { [_jN]: _eSI }]]];
|
|
2542
|
+
var TagResourceRequest$ = [
|
|
2536
2543
|
3,
|
|
2537
2544
|
n0,
|
|
2538
2545
|
_TRR,
|
|
@@ -2543,7 +2550,7 @@ var TagResourceRequest = [
|
|
|
2543
2550
|
[128 | 0, { [_jN]: _ta }],
|
|
2544
2551
|
],
|
|
2545
2552
|
];
|
|
2546
|
-
var Tls = [
|
|
2553
|
+
var Tls$ = [
|
|
2547
2554
|
3,
|
|
2548
2555
|
n0,
|
|
2549
2556
|
_T,
|
|
@@ -2554,7 +2561,7 @@ var Tls = [
|
|
|
2554
2561
|
[2, { [_jN]: _ena }],
|
|
2555
2562
|
],
|
|
2556
2563
|
];
|
|
2557
|
-
var TooManyRequestsException = [
|
|
2564
|
+
var TooManyRequestsException$ = [
|
|
2558
2565
|
-3,
|
|
2559
2566
|
n0,
|
|
2560
2567
|
_TMRE,
|
|
@@ -2565,8 +2572,8 @@ var TooManyRequestsException = [
|
|
|
2565
2572
|
[0, { [_jN]: _m }],
|
|
2566
2573
|
],
|
|
2567
2574
|
];
|
|
2568
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException
|
|
2569
|
-
var TopicInfo = [
|
|
2575
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
2576
|
+
var TopicInfo$ = [
|
|
2570
2577
|
3,
|
|
2571
2578
|
n0,
|
|
2572
2579
|
_TI,
|
|
@@ -2580,7 +2587,7 @@ var TopicInfo = [
|
|
|
2580
2587
|
[1, { [_jN]: _oOSRC }],
|
|
2581
2588
|
],
|
|
2582
2589
|
];
|
|
2583
|
-
var TopicPartitionInfo = [
|
|
2590
|
+
var TopicPartitionInfo$ = [
|
|
2584
2591
|
3,
|
|
2585
2592
|
n0,
|
|
2586
2593
|
_TPI,
|
|
@@ -2593,7 +2600,7 @@ var TopicPartitionInfo = [
|
|
|
2593
2600
|
[64 | 1, { [_jN]: _is }],
|
|
2594
2601
|
],
|
|
2595
2602
|
];
|
|
2596
|
-
var TopicReplication = [
|
|
2603
|
+
var TopicReplication$ = [
|
|
2597
2604
|
3,
|
|
2598
2605
|
n0,
|
|
2599
2606
|
_TR,
|
|
@@ -2603,13 +2610,13 @@ var TopicReplication = [
|
|
|
2603
2610
|
[2, { [_jN]: _cACLFT }],
|
|
2604
2611
|
[2, { [_jN]: _cTC }],
|
|
2605
2612
|
[2, { [_jN]: _dACNT }],
|
|
2606
|
-
[() => ReplicationStartingPosition
|
|
2607
|
-
[() => ReplicationTopicNameConfiguration
|
|
2613
|
+
[() => ReplicationStartingPosition$, { [_jN]: _sPt }],
|
|
2614
|
+
[() => ReplicationTopicNameConfiguration$, { [_jN]: _tNC }],
|
|
2608
2615
|
[64 | 0, { [_jN]: _tTE }],
|
|
2609
2616
|
[64 | 0, { [_jN]: _tTR }],
|
|
2610
2617
|
],
|
|
2611
2618
|
];
|
|
2612
|
-
var TopicReplicationUpdate = [
|
|
2619
|
+
var TopicReplicationUpdate$ = [
|
|
2613
2620
|
3,
|
|
2614
2621
|
n0,
|
|
2615
2622
|
_TRU,
|
|
@@ -2623,8 +2630,8 @@ var TopicReplicationUpdate = [
|
|
|
2623
2630
|
[64 | 0, { [_jN]: _tTR }],
|
|
2624
2631
|
],
|
|
2625
2632
|
];
|
|
2626
|
-
var Unauthenticated = [3, n0, _U, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
2627
|
-
var UnauthorizedException = [
|
|
2633
|
+
var Unauthenticated$ = [3, n0, _U, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
2634
|
+
var UnauthorizedException$ = [
|
|
2628
2635
|
-3,
|
|
2629
2636
|
n0,
|
|
2630
2637
|
_UE,
|
|
@@ -2635,8 +2642,8 @@ var UnauthorizedException = [
|
|
|
2635
2642
|
[0, { [_jN]: _m }],
|
|
2636
2643
|
],
|
|
2637
2644
|
];
|
|
2638
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException
|
|
2639
|
-
var UnprocessedScramSecret = [
|
|
2645
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
2646
|
+
var UnprocessedScramSecret$ = [
|
|
2640
2647
|
3,
|
|
2641
2648
|
n0,
|
|
2642
2649
|
_USSn,
|
|
@@ -2648,7 +2655,7 @@ var UnprocessedScramSecret = [
|
|
|
2648
2655
|
[0, { [_jN]: _sA }],
|
|
2649
2656
|
],
|
|
2650
2657
|
];
|
|
2651
|
-
var UntagResourceRequest = [
|
|
2658
|
+
var UntagResourceRequest$ = [
|
|
2652
2659
|
3,
|
|
2653
2660
|
n0,
|
|
2654
2661
|
_URR,
|
|
@@ -2659,7 +2666,7 @@ var UntagResourceRequest = [
|
|
|
2659
2666
|
[64 | 0, { [_hQ]: _tK }],
|
|
2660
2667
|
],
|
|
2661
2668
|
];
|
|
2662
|
-
var UpdateBrokerCountRequest = [
|
|
2669
|
+
var UpdateBrokerCountRequest$ = [
|
|
2663
2670
|
3,
|
|
2664
2671
|
n0,
|
|
2665
2672
|
_UBCR,
|
|
@@ -2671,7 +2678,7 @@ var UpdateBrokerCountRequest = [
|
|
|
2671
2678
|
[1, { [_jN]: _tNOBN }],
|
|
2672
2679
|
],
|
|
2673
2680
|
];
|
|
2674
|
-
var UpdateBrokerCountResponse = [
|
|
2681
|
+
var UpdateBrokerCountResponse$ = [
|
|
2675
2682
|
3,
|
|
2676
2683
|
n0,
|
|
2677
2684
|
_UBCRp,
|
|
@@ -2682,7 +2689,7 @@ var UpdateBrokerCountResponse = [
|
|
|
2682
2689
|
[0, { [_jN]: _cOA }],
|
|
2683
2690
|
],
|
|
2684
2691
|
];
|
|
2685
|
-
var UpdateBrokerStorageRequest = [
|
|
2692
|
+
var UpdateBrokerStorageRequest$ = [
|
|
2686
2693
|
3,
|
|
2687
2694
|
n0,
|
|
2688
2695
|
_UBSR,
|
|
@@ -2694,7 +2701,7 @@ var UpdateBrokerStorageRequest = [
|
|
|
2694
2701
|
[() => __listOfBrokerEBSVolumeInfo, { [_jN]: _tBEBSVI }],
|
|
2695
2702
|
],
|
|
2696
2703
|
];
|
|
2697
|
-
var UpdateBrokerStorageResponse = [
|
|
2704
|
+
var UpdateBrokerStorageResponse$ = [
|
|
2698
2705
|
3,
|
|
2699
2706
|
n0,
|
|
2700
2707
|
_UBSRp,
|
|
@@ -2705,7 +2712,7 @@ var UpdateBrokerStorageResponse = [
|
|
|
2705
2712
|
[0, { [_jN]: _cOA }],
|
|
2706
2713
|
],
|
|
2707
2714
|
];
|
|
2708
|
-
var UpdateBrokerTypeRequest = [
|
|
2715
|
+
var UpdateBrokerTypeRequest$ = [
|
|
2709
2716
|
3,
|
|
2710
2717
|
n0,
|
|
2711
2718
|
_UBTR,
|
|
@@ -2717,7 +2724,7 @@ var UpdateBrokerTypeRequest = [
|
|
|
2717
2724
|
[0, { [_jN]: _tIT }],
|
|
2718
2725
|
],
|
|
2719
2726
|
];
|
|
2720
|
-
var UpdateBrokerTypeResponse = [
|
|
2727
|
+
var UpdateBrokerTypeResponse$ = [
|
|
2721
2728
|
3,
|
|
2722
2729
|
n0,
|
|
2723
2730
|
_UBTRp,
|
|
@@ -2728,7 +2735,7 @@ var UpdateBrokerTypeResponse = [
|
|
|
2728
2735
|
[0, { [_jN]: _cOA }],
|
|
2729
2736
|
],
|
|
2730
2737
|
];
|
|
2731
|
-
var UpdateClusterConfigurationRequest = [
|
|
2738
|
+
var UpdateClusterConfigurationRequest$ = [
|
|
2732
2739
|
3,
|
|
2733
2740
|
n0,
|
|
2734
2741
|
_UCCR,
|
|
@@ -2736,11 +2743,11 @@ var UpdateClusterConfigurationRequest = [
|
|
|
2736
2743
|
[_CA, _CIo, _CV],
|
|
2737
2744
|
[
|
|
2738
2745
|
[0, 1],
|
|
2739
|
-
[() => ConfigurationInfo
|
|
2746
|
+
[() => ConfigurationInfo$, { [_jN]: _cIo }],
|
|
2740
2747
|
[0, { [_jN]: _cV }],
|
|
2741
2748
|
],
|
|
2742
2749
|
];
|
|
2743
|
-
var UpdateClusterConfigurationResponse = [
|
|
2750
|
+
var UpdateClusterConfigurationResponse$ = [
|
|
2744
2751
|
3,
|
|
2745
2752
|
n0,
|
|
2746
2753
|
_UCCRp,
|
|
@@ -2751,7 +2758,7 @@ var UpdateClusterConfigurationResponse = [
|
|
|
2751
2758
|
[0, { [_jN]: _cOA }],
|
|
2752
2759
|
],
|
|
2753
2760
|
];
|
|
2754
|
-
var UpdateClusterKafkaVersionRequest = [
|
|
2761
|
+
var UpdateClusterKafkaVersionRequest$ = [
|
|
2755
2762
|
3,
|
|
2756
2763
|
n0,
|
|
2757
2764
|
_UCKVR,
|
|
@@ -2759,12 +2766,12 @@ var UpdateClusterKafkaVersionRequest = [
|
|
|
2759
2766
|
[_CA, _CIo, _CV, _TKV],
|
|
2760
2767
|
[
|
|
2761
2768
|
[0, 1],
|
|
2762
|
-
[() => ConfigurationInfo
|
|
2769
|
+
[() => ConfigurationInfo$, { [_jN]: _cIo }],
|
|
2763
2770
|
[0, { [_jN]: _cV }],
|
|
2764
2771
|
[0, { [_jN]: _tKV }],
|
|
2765
2772
|
],
|
|
2766
2773
|
];
|
|
2767
|
-
var UpdateClusterKafkaVersionResponse = [
|
|
2774
|
+
var UpdateClusterKafkaVersionResponse$ = [
|
|
2768
2775
|
3,
|
|
2769
2776
|
n0,
|
|
2770
2777
|
_UCKVRp,
|
|
@@ -2775,7 +2782,7 @@ var UpdateClusterKafkaVersionResponse = [
|
|
|
2775
2782
|
[0, { [_jN]: _cOA }],
|
|
2776
2783
|
],
|
|
2777
2784
|
];
|
|
2778
|
-
var UpdateConfigurationRequest = [
|
|
2785
|
+
var UpdateConfigurationRequest$ = [
|
|
2779
2786
|
3,
|
|
2780
2787
|
n0,
|
|
2781
2788
|
_UCR,
|
|
@@ -2787,7 +2794,7 @@ var UpdateConfigurationRequest = [
|
|
|
2787
2794
|
[21, { [_jN]: _sP }],
|
|
2788
2795
|
],
|
|
2789
2796
|
];
|
|
2790
|
-
var UpdateConfigurationResponse = [
|
|
2797
|
+
var UpdateConfigurationResponse$ = [
|
|
2791
2798
|
3,
|
|
2792
2799
|
n0,
|
|
2793
2800
|
_UCRp,
|
|
@@ -2795,10 +2802,10 @@ var UpdateConfigurationResponse = [
|
|
|
2795
2802
|
[_Ar, _LR],
|
|
2796
2803
|
[
|
|
2797
2804
|
[0, { [_jN]: _ar }],
|
|
2798
|
-
[() => ConfigurationRevision
|
|
2805
|
+
[() => ConfigurationRevision$, { [_jN]: _lR }],
|
|
2799
2806
|
],
|
|
2800
2807
|
];
|
|
2801
|
-
var UpdateConnectivityRequest = [
|
|
2808
|
+
var UpdateConnectivityRequest$ = [
|
|
2802
2809
|
3,
|
|
2803
2810
|
n0,
|
|
2804
2811
|
_UCRpd,
|
|
@@ -2806,11 +2813,11 @@ var UpdateConnectivityRequest = [
|
|
|
2806
2813
|
[_CA, _CI, _CV],
|
|
2807
2814
|
[
|
|
2808
2815
|
[0, 1],
|
|
2809
|
-
[() => ConnectivityInfo
|
|
2816
|
+
[() => ConnectivityInfo$, { [_jN]: _cI }],
|
|
2810
2817
|
[0, { [_jN]: _cV }],
|
|
2811
2818
|
],
|
|
2812
2819
|
];
|
|
2813
|
-
var UpdateConnectivityResponse = [
|
|
2820
|
+
var UpdateConnectivityResponse$ = [
|
|
2814
2821
|
3,
|
|
2815
2822
|
n0,
|
|
2816
2823
|
_UCRpda,
|
|
@@ -2821,7 +2828,7 @@ var UpdateConnectivityResponse = [
|
|
|
2821
2828
|
[0, { [_jN]: _cOA }],
|
|
2822
2829
|
],
|
|
2823
2830
|
];
|
|
2824
|
-
var UpdateMonitoringRequest = [
|
|
2831
|
+
var UpdateMonitoringRequest$ = [
|
|
2825
2832
|
3,
|
|
2826
2833
|
n0,
|
|
2827
2834
|
_UMR,
|
|
@@ -2831,11 +2838,11 @@ var UpdateMonitoringRequest = [
|
|
|
2831
2838
|
[0, 1],
|
|
2832
2839
|
[0, { [_jN]: _cV }],
|
|
2833
2840
|
[0, { [_jN]: _eM }],
|
|
2834
|
-
[() => OpenMonitoringInfo
|
|
2835
|
-
[() => LoggingInfo
|
|
2841
|
+
[() => OpenMonitoringInfo$, { [_jN]: _oM }],
|
|
2842
|
+
[() => LoggingInfo$, { [_jN]: _lI }],
|
|
2836
2843
|
],
|
|
2837
2844
|
];
|
|
2838
|
-
var UpdateMonitoringResponse = [
|
|
2845
|
+
var UpdateMonitoringResponse$ = [
|
|
2839
2846
|
3,
|
|
2840
2847
|
n0,
|
|
2841
2848
|
_UMRp,
|
|
@@ -2846,7 +2853,7 @@ var UpdateMonitoringResponse = [
|
|
|
2846
2853
|
[0, { [_jN]: _cOA }],
|
|
2847
2854
|
],
|
|
2848
2855
|
];
|
|
2849
|
-
var UpdateRebalancingRequest = [
|
|
2856
|
+
var UpdateRebalancingRequest$ = [
|
|
2850
2857
|
3,
|
|
2851
2858
|
n0,
|
|
2852
2859
|
_URRp,
|
|
@@ -2855,10 +2862,10 @@ var UpdateRebalancingRequest = [
|
|
|
2855
2862
|
[
|
|
2856
2863
|
[0, 1],
|
|
2857
2864
|
[0, { [_jN]: _cV }],
|
|
2858
|
-
[() => Rebalancing
|
|
2865
|
+
[() => Rebalancing$, { [_jN]: _r }],
|
|
2859
2866
|
],
|
|
2860
2867
|
];
|
|
2861
|
-
var UpdateRebalancingResponse = [
|
|
2868
|
+
var UpdateRebalancingResponse$ = [
|
|
2862
2869
|
3,
|
|
2863
2870
|
n0,
|
|
2864
2871
|
_URRpd,
|
|
@@ -2869,22 +2876,22 @@ var UpdateRebalancingResponse = [
|
|
|
2869
2876
|
[0, { [_jN]: _cOA }],
|
|
2870
2877
|
],
|
|
2871
2878
|
];
|
|
2872
|
-
var UpdateReplicationInfoRequest = [
|
|
2879
|
+
var UpdateReplicationInfoRequest$ = [
|
|
2873
2880
|
3,
|
|
2874
2881
|
n0,
|
|
2875
2882
|
_URIR,
|
|
2876
2883
|
0,
|
|
2877
2884
|
[_CGR, _CV, _RA, _SKCA, _TKCA, _TR],
|
|
2878
2885
|
[
|
|
2879
|
-
[() => ConsumerGroupReplicationUpdate
|
|
2886
|
+
[() => ConsumerGroupReplicationUpdate$, { [_jN]: _cGR }],
|
|
2880
2887
|
[0, { [_jN]: _cV }],
|
|
2881
2888
|
[0, 1],
|
|
2882
2889
|
[0, { [_jN]: _sKCA }],
|
|
2883
2890
|
[0, { [_jN]: _tKCA }],
|
|
2884
|
-
[() => TopicReplicationUpdate
|
|
2891
|
+
[() => TopicReplicationUpdate$, { [_jN]: _tR }],
|
|
2885
2892
|
],
|
|
2886
2893
|
];
|
|
2887
|
-
var UpdateReplicationInfoResponse = [
|
|
2894
|
+
var UpdateReplicationInfoResponse$ = [
|
|
2888
2895
|
3,
|
|
2889
2896
|
n0,
|
|
2890
2897
|
_URIRp,
|
|
@@ -2895,20 +2902,20 @@ var UpdateReplicationInfoResponse = [
|
|
|
2895
2902
|
[0, { [_jN]: _rS }],
|
|
2896
2903
|
],
|
|
2897
2904
|
];
|
|
2898
|
-
var UpdateSecurityRequest = [
|
|
2905
|
+
var UpdateSecurityRequest$ = [
|
|
2899
2906
|
3,
|
|
2900
2907
|
n0,
|
|
2901
2908
|
_USR,
|
|
2902
2909
|
0,
|
|
2903
2910
|
[_CAl, _CA, _CV, _EI],
|
|
2904
2911
|
[
|
|
2905
|
-
[() => ClientAuthentication
|
|
2912
|
+
[() => ClientAuthentication$, { [_jN]: _cAl }],
|
|
2906
2913
|
[0, 1],
|
|
2907
2914
|
[0, { [_jN]: _cV }],
|
|
2908
|
-
[() => EncryptionInfo
|
|
2915
|
+
[() => EncryptionInfo$, { [_jN]: _eI }],
|
|
2909
2916
|
],
|
|
2910
2917
|
];
|
|
2911
|
-
var UpdateSecurityResponse = [
|
|
2918
|
+
var UpdateSecurityResponse$ = [
|
|
2912
2919
|
3,
|
|
2913
2920
|
n0,
|
|
2914
2921
|
_USRp,
|
|
@@ -2919,7 +2926,7 @@ var UpdateSecurityResponse = [
|
|
|
2919
2926
|
[0, { [_jN]: _cOA }],
|
|
2920
2927
|
],
|
|
2921
2928
|
];
|
|
2922
|
-
var UpdateStorageRequest = [
|
|
2929
|
+
var UpdateStorageRequest$ = [
|
|
2923
2930
|
3,
|
|
2924
2931
|
n0,
|
|
2925
2932
|
_USRpd,
|
|
@@ -2928,12 +2935,12 @@ var UpdateStorageRequest = [
|
|
|
2928
2935
|
[
|
|
2929
2936
|
[0, 1],
|
|
2930
2937
|
[0, { [_jN]: _cV }],
|
|
2931
|
-
[() => ProvisionedThroughput
|
|
2938
|
+
[() => ProvisionedThroughput$, { [_jN]: _pT }],
|
|
2932
2939
|
[0, { [_jN]: _sM }],
|
|
2933
2940
|
[1, { [_jN]: _vSGB }],
|
|
2934
2941
|
],
|
|
2935
2942
|
];
|
|
2936
|
-
var UpdateStorageResponse = [
|
|
2943
|
+
var UpdateStorageResponse$ = [
|
|
2937
2944
|
3,
|
|
2938
2945
|
n0,
|
|
2939
2946
|
_USRpda,
|
|
@@ -2944,7 +2951,7 @@ var UpdateStorageResponse = [
|
|
|
2944
2951
|
[0, { [_jN]: _cOA }],
|
|
2945
2952
|
],
|
|
2946
2953
|
];
|
|
2947
|
-
var UserIdentity = [
|
|
2954
|
+
var UserIdentity$ = [
|
|
2948
2955
|
3,
|
|
2949
2956
|
n0,
|
|
2950
2957
|
_UI,
|
|
@@ -2955,7 +2962,7 @@ var UserIdentity = [
|
|
|
2955
2962
|
[0, { [_jN]: _pI }],
|
|
2956
2963
|
],
|
|
2957
2964
|
];
|
|
2958
|
-
var VpcConfig = [
|
|
2965
|
+
var VpcConfig$ = [
|
|
2959
2966
|
3,
|
|
2960
2967
|
n0,
|
|
2961
2968
|
_VCp,
|
|
@@ -2966,7 +2973,7 @@ var VpcConfig = [
|
|
|
2966
2973
|
[64 | 0, { [_jN]: _sGI }],
|
|
2967
2974
|
],
|
|
2968
2975
|
];
|
|
2969
|
-
var VpcConnection = [
|
|
2976
|
+
var VpcConnection$ = [
|
|
2970
2977
|
3,
|
|
2971
2978
|
n0,
|
|
2972
2979
|
_VCpcon,
|
|
@@ -2981,7 +2988,7 @@ var VpcConnection = [
|
|
|
2981
2988
|
[0, { [_jN]: _st }],
|
|
2982
2989
|
],
|
|
2983
2990
|
];
|
|
2984
|
-
var VpcConnectionInfo = [
|
|
2991
|
+
var VpcConnectionInfo$ = [
|
|
2985
2992
|
3,
|
|
2986
2993
|
n0,
|
|
2987
2994
|
_VCI,
|
|
@@ -2990,11 +2997,11 @@ var VpcConnectionInfo = [
|
|
|
2990
2997
|
[
|
|
2991
2998
|
[0, { [_jN]: _vCA }],
|
|
2992
2999
|
[0, { [_jN]: _o }],
|
|
2993
|
-
[() => UserIdentity
|
|
3000
|
+
[() => UserIdentity$, { [_jN]: _uI }],
|
|
2994
3001
|
[5, { [_jN]: _cT }],
|
|
2995
3002
|
],
|
|
2996
3003
|
];
|
|
2997
|
-
var VpcConnectionInfoServerless = [
|
|
3004
|
+
var VpcConnectionInfoServerless$ = [
|
|
2998
3005
|
3,
|
|
2999
3006
|
n0,
|
|
3000
3007
|
_VCIS,
|
|
@@ -3003,44 +3010,44 @@ var VpcConnectionInfoServerless = [
|
|
|
3003
3010
|
[
|
|
3004
3011
|
[5, { [_jN]: _cT }],
|
|
3005
3012
|
[0, { [_jN]: _o }],
|
|
3006
|
-
[() => UserIdentity
|
|
3013
|
+
[() => UserIdentity$, { [_jN]: _uI }],
|
|
3007
3014
|
[0, { [_jN]: _vCA }],
|
|
3008
3015
|
],
|
|
3009
3016
|
];
|
|
3010
|
-
var VpcConnectivity = [
|
|
3017
|
+
var VpcConnectivity$ = [
|
|
3011
3018
|
3,
|
|
3012
3019
|
n0,
|
|
3013
3020
|
_VC,
|
|
3014
3021
|
0,
|
|
3015
3022
|
[_CAl],
|
|
3016
|
-
[[() => VpcConnectivityClientAuthentication
|
|
3023
|
+
[[() => VpcConnectivityClientAuthentication$, { [_jN]: _cAl }]],
|
|
3017
3024
|
];
|
|
3018
|
-
var VpcConnectivityClientAuthentication = [
|
|
3025
|
+
var VpcConnectivityClientAuthentication$ = [
|
|
3019
3026
|
3,
|
|
3020
3027
|
n0,
|
|
3021
3028
|
_VCCA,
|
|
3022
3029
|
0,
|
|
3023
3030
|
[_Sa, _T],
|
|
3024
3031
|
[
|
|
3025
|
-
[() => VpcConnectivitySasl
|
|
3026
|
-
[() => VpcConnectivityTls
|
|
3032
|
+
[() => VpcConnectivitySasl$, { [_jN]: _sa }],
|
|
3033
|
+
[() => VpcConnectivityTls$, { [_jN]: _t }],
|
|
3027
3034
|
],
|
|
3028
3035
|
];
|
|
3029
|
-
var VpcConnectivityIam = [3, n0, _VCIp, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
3030
|
-
var VpcConnectivitySasl = [
|
|
3036
|
+
var VpcConnectivityIam$ = [3, n0, _VCIp, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
3037
|
+
var VpcConnectivitySasl$ = [
|
|
3031
3038
|
3,
|
|
3032
3039
|
n0,
|
|
3033
3040
|
_VCS,
|
|
3034
3041
|
0,
|
|
3035
3042
|
[_Sc, _I],
|
|
3036
3043
|
[
|
|
3037
|
-
[() => VpcConnectivityScram
|
|
3038
|
-
[() => VpcConnectivityIam
|
|
3044
|
+
[() => VpcConnectivityScram$, { [_jN]: _sc }],
|
|
3045
|
+
[() => VpcConnectivityIam$, { [_jN]: _i }],
|
|
3039
3046
|
],
|
|
3040
3047
|
];
|
|
3041
|
-
var VpcConnectivityScram = [3, n0, _VCSp, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
3042
|
-
var VpcConnectivityTls = [3, n0, _VCT, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
3043
|
-
var ZookeeperNodeInfo = [
|
|
3048
|
+
var VpcConnectivityScram$ = [3, n0, _VCSp, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
3049
|
+
var VpcConnectivityTls$ = [3, n0, _VCT, 0, [_En], [[2, { [_jN]: _ena }]]];
|
|
3050
|
+
var ZookeeperNodeInfo$ = [
|
|
3044
3051
|
3,
|
|
3045
3052
|
n0,
|
|
3046
3053
|
_ZNI,
|
|
@@ -3055,491 +3062,479 @@ var ZookeeperNodeInfo = [
|
|
|
3055
3062
|
],
|
|
3056
3063
|
];
|
|
3057
3064
|
var __Unit = "unit";
|
|
3058
|
-
var KafkaServiceException = [-3, _sm, "KafkaServiceException", 0, [], []];
|
|
3059
|
-
schema.TypeRegistry.for(_sm).registerError(KafkaServiceException
|
|
3060
|
-
var __listOfBrokerEBSVolumeInfo = [1, n0, _lOBEBSVI, 0, [() => BrokerEBSVolumeInfo
|
|
3061
|
-
var __listOfClientVpcConnection = [1, n0, _lOCVC, 0, [() => ClientVpcConnection
|
|
3062
|
-
var __listOfCluster = [1, n0, _lOC, 0, [() => Cluster
|
|
3063
|
-
var __listOfClusterInfo = [1, n0, _lOCI, 0, [() => ClusterInfo
|
|
3064
|
-
var __listOfClusterOperationInfo = [1, n0, _lOCOI, 0, [() => ClusterOperationInfo
|
|
3065
|
-
var __listOfClusterOperationStep = [1, n0, _lOCOS, 0, [() => ClusterOperationStep
|
|
3066
|
-
var __listOfClusterOperationV2Summary = [
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
];
|
|
3073
|
-
var
|
|
3074
|
-
var
|
|
3075
|
-
var
|
|
3076
|
-
var
|
|
3077
|
-
var
|
|
3078
|
-
var
|
|
3079
|
-
var
|
|
3080
|
-
var
|
|
3081
|
-
var
|
|
3082
|
-
var
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
_lORID,
|
|
3086
|
-
0,
|
|
3087
|
-
[() => ReplicationInfoDescription, 0],
|
|
3088
|
-
];
|
|
3089
|
-
var __listOfReplicationInfoSummary = [1, n0, _lORIS, 0, [() => ReplicationInfoSummary, 0]];
|
|
3090
|
-
var __listOfReplicatorSummary = [1, n0, _lORS, 0, [() => ReplicatorSummary, 0]];
|
|
3091
|
-
var __listOfTopicInfo = [1, n0, _lOTI, 0, [() => TopicInfo, 0]];
|
|
3092
|
-
var __listOfTopicPartitionInfo = [1, n0, _lOTPI, 0, [() => TopicPartitionInfo, 0]];
|
|
3093
|
-
var __listOfUnprocessedScramSecret = [1, n0, _lOUSS, 0, [() => UnprocessedScramSecret, 0]];
|
|
3094
|
-
var __listOfVpcConfig = [1, n0, _lOVC, 0, [() => VpcConfig, 0]];
|
|
3095
|
-
var __listOfVpcConnection = [1, n0, _lOVCi, 0, [() => VpcConnection, 0]];
|
|
3096
|
-
var BatchAssociateScramSecret = [
|
|
3065
|
+
var KafkaServiceException$ = [-3, _sm, "KafkaServiceException", 0, [], []];
|
|
3066
|
+
schema.TypeRegistry.for(_sm).registerError(KafkaServiceException$, KafkaServiceException);
|
|
3067
|
+
var __listOfBrokerEBSVolumeInfo = [1, n0, _lOBEBSVI, 0, [() => BrokerEBSVolumeInfo$, 0]];
|
|
3068
|
+
var __listOfClientVpcConnection = [1, n0, _lOCVC, 0, [() => ClientVpcConnection$, 0]];
|
|
3069
|
+
var __listOfCluster = [1, n0, _lOC, 0, [() => Cluster$, 0]];
|
|
3070
|
+
var __listOfClusterInfo = [1, n0, _lOCI, 0, [() => ClusterInfo$, 0]];
|
|
3071
|
+
var __listOfClusterOperationInfo = [1, n0, _lOCOI, 0, [() => ClusterOperationInfo$, 0]];
|
|
3072
|
+
var __listOfClusterOperationStep = [1, n0, _lOCOS, 0, [() => ClusterOperationStep$, 0]];
|
|
3073
|
+
var __listOfClusterOperationV2Summary = [1, n0, _lOCOVS, 0, [() => ClusterOperationV2Summary$, 0]];
|
|
3074
|
+
var __listOfCompatibleKafkaVersion = [1, n0, _lOCKV, 0, [() => CompatibleKafkaVersion$, 0]];
|
|
3075
|
+
var __listOfConfiguration = [1, n0, _lOCi, 0, [() => Configuration$, 0]];
|
|
3076
|
+
var __listOfConfigurationRevision = [1, n0, _lOCR, 0, [() => ConfigurationRevision$, 0]];
|
|
3077
|
+
var __listOfKafkaCluster = [1, n0, _lOKC, 0, [() => KafkaCluster$, 0]];
|
|
3078
|
+
var __listOfKafkaClusterDescription = [1, n0, _lOKCD, 0, [() => KafkaClusterDescription$, 0]];
|
|
3079
|
+
var __listOfKafkaClusterSummary = [1, n0, _lOKCS, 0, [() => KafkaClusterSummary$, 0]];
|
|
3080
|
+
var __listOfKafkaVersion = [1, n0, _lOKV, 0, [() => KafkaVersion$, 0]];
|
|
3081
|
+
var __listOfNodeInfo = [1, n0, _lONI, 0, [() => NodeInfo$, 0]];
|
|
3082
|
+
var __listOfReplicationInfo = [1, n0, _lORI, 0, [() => ReplicationInfo$, 0]];
|
|
3083
|
+
var __listOfReplicationInfoDescription = [1, n0, _lORID, 0, [() => ReplicationInfoDescription$, 0]];
|
|
3084
|
+
var __listOfReplicationInfoSummary = [1, n0, _lORIS, 0, [() => ReplicationInfoSummary$, 0]];
|
|
3085
|
+
var __listOfReplicatorSummary = [1, n0, _lORS, 0, [() => ReplicatorSummary$, 0]];
|
|
3086
|
+
var __listOfTopicInfo = [1, n0, _lOTI, 0, [() => TopicInfo$, 0]];
|
|
3087
|
+
var __listOfTopicPartitionInfo = [1, n0, _lOTPI, 0, [() => TopicPartitionInfo$, 0]];
|
|
3088
|
+
var __listOfUnprocessedScramSecret = [1, n0, _lOUSS, 0, [() => UnprocessedScramSecret$, 0]];
|
|
3089
|
+
var __listOfVpcConfig = [1, n0, _lOVC, 0, [() => VpcConfig$, 0]];
|
|
3090
|
+
var __listOfVpcConnection = [1, n0, _lOVCi, 0, [() => VpcConnection$, 0]];
|
|
3091
|
+
var BatchAssociateScramSecret$ = [
|
|
3097
3092
|
9,
|
|
3098
3093
|
n0,
|
|
3099
3094
|
_BASS,
|
|
3100
3095
|
{ [_h]: ["POST", "/v1/clusters/{ClusterArn}/scram-secrets", 200] },
|
|
3101
|
-
() => BatchAssociateScramSecretRequest
|
|
3102
|
-
() => BatchAssociateScramSecretResponse
|
|
3096
|
+
() => BatchAssociateScramSecretRequest$,
|
|
3097
|
+
() => BatchAssociateScramSecretResponse$,
|
|
3103
3098
|
];
|
|
3104
|
-
var BatchDisassociateScramSecret = [
|
|
3099
|
+
var BatchDisassociateScramSecret$ = [
|
|
3105
3100
|
9,
|
|
3106
3101
|
n0,
|
|
3107
3102
|
_BDSS,
|
|
3108
3103
|
{ [_h]: ["PATCH", "/v1/clusters/{ClusterArn}/scram-secrets", 200] },
|
|
3109
|
-
() => BatchDisassociateScramSecretRequest
|
|
3110
|
-
() => BatchDisassociateScramSecretResponse
|
|
3104
|
+
() => BatchDisassociateScramSecretRequest$,
|
|
3105
|
+
() => BatchDisassociateScramSecretResponse$,
|
|
3111
3106
|
];
|
|
3112
|
-
var CreateCluster = [
|
|
3107
|
+
var CreateCluster$ = [
|
|
3113
3108
|
9,
|
|
3114
3109
|
n0,
|
|
3115
3110
|
_CC,
|
|
3116
3111
|
{ [_h]: ["POST", "/v1/clusters", 200] },
|
|
3117
|
-
() => CreateClusterRequest
|
|
3118
|
-
() => CreateClusterResponse
|
|
3112
|
+
() => CreateClusterRequest$,
|
|
3113
|
+
() => CreateClusterResponse$,
|
|
3119
3114
|
];
|
|
3120
|
-
var CreateClusterV2 = [
|
|
3115
|
+
var CreateClusterV2$ = [
|
|
3121
3116
|
9,
|
|
3122
3117
|
n0,
|
|
3123
3118
|
_CCV,
|
|
3124
3119
|
{ [_h]: ["POST", "/api/v2/clusters", 200] },
|
|
3125
|
-
() => CreateClusterV2Request
|
|
3126
|
-
() => CreateClusterV2Response
|
|
3120
|
+
() => CreateClusterV2Request$,
|
|
3121
|
+
() => CreateClusterV2Response$,
|
|
3127
3122
|
];
|
|
3128
|
-
var CreateConfiguration = [
|
|
3123
|
+
var CreateConfiguration$ = [
|
|
3129
3124
|
9,
|
|
3130
3125
|
n0,
|
|
3131
3126
|
_CCr,
|
|
3132
3127
|
{ [_h]: ["POST", "/v1/configurations", 200] },
|
|
3133
|
-
() => CreateConfigurationRequest
|
|
3134
|
-
() => CreateConfigurationResponse
|
|
3128
|
+
() => CreateConfigurationRequest$,
|
|
3129
|
+
() => CreateConfigurationResponse$,
|
|
3135
3130
|
];
|
|
3136
|
-
var CreateReplicator = [
|
|
3131
|
+
var CreateReplicator$ = [
|
|
3137
3132
|
9,
|
|
3138
3133
|
n0,
|
|
3139
3134
|
_CRr,
|
|
3140
3135
|
{ [_h]: ["POST", "/replication/v1/replicators", 200] },
|
|
3141
|
-
() => CreateReplicatorRequest
|
|
3142
|
-
() => CreateReplicatorResponse
|
|
3136
|
+
() => CreateReplicatorRequest$,
|
|
3137
|
+
() => CreateReplicatorResponse$,
|
|
3143
3138
|
];
|
|
3144
|
-
var CreateVpcConnection = [
|
|
3139
|
+
var CreateVpcConnection$ = [
|
|
3145
3140
|
9,
|
|
3146
3141
|
n0,
|
|
3147
3142
|
_CVCr,
|
|
3148
3143
|
{ [_h]: ["POST", "/v1/vpc-connection", 200] },
|
|
3149
|
-
() => CreateVpcConnectionRequest
|
|
3150
|
-
() => CreateVpcConnectionResponse
|
|
3144
|
+
() => CreateVpcConnectionRequest$,
|
|
3145
|
+
() => CreateVpcConnectionResponse$,
|
|
3151
3146
|
];
|
|
3152
|
-
var DeleteCluster = [
|
|
3147
|
+
var DeleteCluster$ = [
|
|
3153
3148
|
9,
|
|
3154
3149
|
n0,
|
|
3155
3150
|
_DC,
|
|
3156
3151
|
{ [_h]: ["DELETE", "/v1/clusters/{ClusterArn}", 200] },
|
|
3157
|
-
() => DeleteClusterRequest
|
|
3158
|
-
() => DeleteClusterResponse
|
|
3152
|
+
() => DeleteClusterRequest$,
|
|
3153
|
+
() => DeleteClusterResponse$,
|
|
3159
3154
|
];
|
|
3160
|
-
var DeleteClusterPolicy = [
|
|
3155
|
+
var DeleteClusterPolicy$ = [
|
|
3161
3156
|
9,
|
|
3162
3157
|
n0,
|
|
3163
3158
|
_DCP,
|
|
3164
3159
|
{ [_h]: ["DELETE", "/v1/clusters/{ClusterArn}/policy", 200] },
|
|
3165
|
-
() => DeleteClusterPolicyRequest
|
|
3166
|
-
() => DeleteClusterPolicyResponse
|
|
3160
|
+
() => DeleteClusterPolicyRequest$,
|
|
3161
|
+
() => DeleteClusterPolicyResponse$,
|
|
3167
3162
|
];
|
|
3168
|
-
var DeleteConfiguration = [
|
|
3163
|
+
var DeleteConfiguration$ = [
|
|
3169
3164
|
9,
|
|
3170
3165
|
n0,
|
|
3171
3166
|
_DCe,
|
|
3172
3167
|
{ [_h]: ["DELETE", "/v1/configurations/{Arn}", 200] },
|
|
3173
|
-
() => DeleteConfigurationRequest
|
|
3174
|
-
() => DeleteConfigurationResponse
|
|
3168
|
+
() => DeleteConfigurationRequest$,
|
|
3169
|
+
() => DeleteConfigurationResponse$,
|
|
3175
3170
|
];
|
|
3176
|
-
var DeleteReplicator = [
|
|
3171
|
+
var DeleteReplicator$ = [
|
|
3177
3172
|
9,
|
|
3178
3173
|
n0,
|
|
3179
3174
|
_DR,
|
|
3180
3175
|
{ [_h]: ["DELETE", "/replication/v1/replicators/{ReplicatorArn}", 200] },
|
|
3181
|
-
() => DeleteReplicatorRequest
|
|
3182
|
-
() => DeleteReplicatorResponse
|
|
3176
|
+
() => DeleteReplicatorRequest$,
|
|
3177
|
+
() => DeleteReplicatorResponse$,
|
|
3183
3178
|
];
|
|
3184
|
-
var DeleteVpcConnection = [
|
|
3179
|
+
var DeleteVpcConnection$ = [
|
|
3185
3180
|
9,
|
|
3186
3181
|
n0,
|
|
3187
3182
|
_DVC,
|
|
3188
3183
|
{ [_h]: ["DELETE", "/v1/vpc-connection/{Arn}", 200] },
|
|
3189
|
-
() => DeleteVpcConnectionRequest
|
|
3190
|
-
() => DeleteVpcConnectionResponse
|
|
3184
|
+
() => DeleteVpcConnectionRequest$,
|
|
3185
|
+
() => DeleteVpcConnectionResponse$,
|
|
3191
3186
|
];
|
|
3192
|
-
var DescribeCluster = [
|
|
3187
|
+
var DescribeCluster$ = [
|
|
3193
3188
|
9,
|
|
3194
3189
|
n0,
|
|
3195
3190
|
_DCes,
|
|
3196
3191
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}", 200] },
|
|
3197
|
-
() => DescribeClusterRequest
|
|
3198
|
-
() => DescribeClusterResponse
|
|
3192
|
+
() => DescribeClusterRequest$,
|
|
3193
|
+
() => DescribeClusterResponse$,
|
|
3199
3194
|
];
|
|
3200
|
-
var DescribeClusterOperation = [
|
|
3195
|
+
var DescribeClusterOperation$ = [
|
|
3201
3196
|
9,
|
|
3202
3197
|
n0,
|
|
3203
3198
|
_DCO,
|
|
3204
3199
|
{ [_h]: ["GET", "/v1/operations/{ClusterOperationArn}", 200] },
|
|
3205
|
-
() => DescribeClusterOperationRequest
|
|
3206
|
-
() => DescribeClusterOperationResponse
|
|
3200
|
+
() => DescribeClusterOperationRequest$,
|
|
3201
|
+
() => DescribeClusterOperationResponse$,
|
|
3207
3202
|
];
|
|
3208
|
-
var DescribeClusterOperationV2 = [
|
|
3203
|
+
var DescribeClusterOperationV2$ = [
|
|
3209
3204
|
9,
|
|
3210
3205
|
n0,
|
|
3211
3206
|
_DCOV,
|
|
3212
3207
|
{ [_h]: ["GET", "/api/v2/operations/{ClusterOperationArn}", 200] },
|
|
3213
|
-
() => DescribeClusterOperationV2Request
|
|
3214
|
-
() => DescribeClusterOperationV2Response
|
|
3208
|
+
() => DescribeClusterOperationV2Request$,
|
|
3209
|
+
() => DescribeClusterOperationV2Response$,
|
|
3215
3210
|
];
|
|
3216
|
-
var DescribeClusterV2 = [
|
|
3211
|
+
var DescribeClusterV2$ = [
|
|
3217
3212
|
9,
|
|
3218
3213
|
n0,
|
|
3219
3214
|
_DCV,
|
|
3220
3215
|
{ [_h]: ["GET", "/api/v2/clusters/{ClusterArn}", 200] },
|
|
3221
|
-
() => DescribeClusterV2Request
|
|
3222
|
-
() => DescribeClusterV2Response
|
|
3216
|
+
() => DescribeClusterV2Request$,
|
|
3217
|
+
() => DescribeClusterV2Response$,
|
|
3223
3218
|
];
|
|
3224
|
-
var DescribeConfiguration = [
|
|
3219
|
+
var DescribeConfiguration$ = [
|
|
3225
3220
|
9,
|
|
3226
3221
|
n0,
|
|
3227
3222
|
_DCesc,
|
|
3228
3223
|
{ [_h]: ["GET", "/v1/configurations/{Arn}", 200] },
|
|
3229
|
-
() => DescribeConfigurationRequest
|
|
3230
|
-
() => DescribeConfigurationResponse
|
|
3224
|
+
() => DescribeConfigurationRequest$,
|
|
3225
|
+
() => DescribeConfigurationResponse$,
|
|
3231
3226
|
];
|
|
3232
|
-
var DescribeConfigurationRevision = [
|
|
3227
|
+
var DescribeConfigurationRevision$ = [
|
|
3233
3228
|
9,
|
|
3234
3229
|
n0,
|
|
3235
3230
|
_DCRescrib,
|
|
3236
3231
|
{ [_h]: ["GET", "/v1/configurations/{Arn}/revisions/{Revision}", 200] },
|
|
3237
|
-
() => DescribeConfigurationRevisionRequest
|
|
3238
|
-
() => DescribeConfigurationRevisionResponse
|
|
3232
|
+
() => DescribeConfigurationRevisionRequest$,
|
|
3233
|
+
() => DescribeConfigurationRevisionResponse$,
|
|
3239
3234
|
];
|
|
3240
|
-
var DescribeReplicator = [
|
|
3235
|
+
var DescribeReplicator$ = [
|
|
3241
3236
|
9,
|
|
3242
3237
|
n0,
|
|
3243
3238
|
_DRe,
|
|
3244
3239
|
{ [_h]: ["GET", "/replication/v1/replicators/{ReplicatorArn}", 200] },
|
|
3245
|
-
() => DescribeReplicatorRequest
|
|
3246
|
-
() => DescribeReplicatorResponse
|
|
3240
|
+
() => DescribeReplicatorRequest$,
|
|
3241
|
+
() => DescribeReplicatorResponse$,
|
|
3247
3242
|
];
|
|
3248
|
-
var DescribeTopic = [
|
|
3243
|
+
var DescribeTopic$ = [
|
|
3249
3244
|
9,
|
|
3250
3245
|
n0,
|
|
3251
3246
|
_DT,
|
|
3252
3247
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/topics/{TopicName}", 200] },
|
|
3253
|
-
() => DescribeTopicRequest
|
|
3254
|
-
() => DescribeTopicResponse
|
|
3248
|
+
() => DescribeTopicRequest$,
|
|
3249
|
+
() => DescribeTopicResponse$,
|
|
3255
3250
|
];
|
|
3256
|
-
var DescribeTopicPartitions = [
|
|
3251
|
+
var DescribeTopicPartitions$ = [
|
|
3257
3252
|
9,
|
|
3258
3253
|
n0,
|
|
3259
3254
|
_DTP,
|
|
3260
3255
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/topics/{TopicName}/partitions", 200] },
|
|
3261
|
-
() => DescribeTopicPartitionsRequest
|
|
3262
|
-
() => DescribeTopicPartitionsResponse
|
|
3256
|
+
() => DescribeTopicPartitionsRequest$,
|
|
3257
|
+
() => DescribeTopicPartitionsResponse$,
|
|
3263
3258
|
];
|
|
3264
|
-
var DescribeVpcConnection = [
|
|
3259
|
+
var DescribeVpcConnection$ = [
|
|
3265
3260
|
9,
|
|
3266
3261
|
n0,
|
|
3267
3262
|
_DVCe,
|
|
3268
3263
|
{ [_h]: ["GET", "/v1/vpc-connection/{Arn}", 200] },
|
|
3269
|
-
() => DescribeVpcConnectionRequest
|
|
3270
|
-
() => DescribeVpcConnectionResponse
|
|
3264
|
+
() => DescribeVpcConnectionRequest$,
|
|
3265
|
+
() => DescribeVpcConnectionResponse$,
|
|
3271
3266
|
];
|
|
3272
|
-
var GetBootstrapBrokers = [
|
|
3267
|
+
var GetBootstrapBrokers$ = [
|
|
3273
3268
|
9,
|
|
3274
3269
|
n0,
|
|
3275
3270
|
_GBB,
|
|
3276
3271
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/bootstrap-brokers", 200] },
|
|
3277
|
-
() => GetBootstrapBrokersRequest
|
|
3278
|
-
() => GetBootstrapBrokersResponse
|
|
3272
|
+
() => GetBootstrapBrokersRequest$,
|
|
3273
|
+
() => GetBootstrapBrokersResponse$,
|
|
3279
3274
|
];
|
|
3280
|
-
var GetClusterPolicy = [
|
|
3275
|
+
var GetClusterPolicy$ = [
|
|
3281
3276
|
9,
|
|
3282
3277
|
n0,
|
|
3283
3278
|
_GCP,
|
|
3284
3279
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/policy", 200] },
|
|
3285
|
-
() => GetClusterPolicyRequest
|
|
3286
|
-
() => GetClusterPolicyResponse
|
|
3280
|
+
() => GetClusterPolicyRequest$,
|
|
3281
|
+
() => GetClusterPolicyResponse$,
|
|
3287
3282
|
];
|
|
3288
|
-
var GetCompatibleKafkaVersions = [
|
|
3283
|
+
var GetCompatibleKafkaVersions$ = [
|
|
3289
3284
|
9,
|
|
3290
3285
|
n0,
|
|
3291
3286
|
_GCKV,
|
|
3292
3287
|
{ [_h]: ["GET", "/v1/compatible-kafka-versions", 200] },
|
|
3293
|
-
() => GetCompatibleKafkaVersionsRequest
|
|
3294
|
-
() => GetCompatibleKafkaVersionsResponse
|
|
3288
|
+
() => GetCompatibleKafkaVersionsRequest$,
|
|
3289
|
+
() => GetCompatibleKafkaVersionsResponse$,
|
|
3295
3290
|
];
|
|
3296
|
-
var ListClientVpcConnections = [
|
|
3291
|
+
var ListClientVpcConnections$ = [
|
|
3297
3292
|
9,
|
|
3298
3293
|
n0,
|
|
3299
3294
|
_LCVC,
|
|
3300
3295
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/client-vpc-connections", 200] },
|
|
3301
|
-
() => ListClientVpcConnectionsRequest
|
|
3302
|
-
() => ListClientVpcConnectionsResponse
|
|
3296
|
+
() => ListClientVpcConnectionsRequest$,
|
|
3297
|
+
() => ListClientVpcConnectionsResponse$,
|
|
3303
3298
|
];
|
|
3304
|
-
var ListClusterOperations = [
|
|
3299
|
+
var ListClusterOperations$ = [
|
|
3305
3300
|
9,
|
|
3306
3301
|
n0,
|
|
3307
3302
|
_LCO,
|
|
3308
3303
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/operations", 200] },
|
|
3309
|
-
() => ListClusterOperationsRequest
|
|
3310
|
-
() => ListClusterOperationsResponse
|
|
3304
|
+
() => ListClusterOperationsRequest$,
|
|
3305
|
+
() => ListClusterOperationsResponse$,
|
|
3311
3306
|
];
|
|
3312
|
-
var ListClusterOperationsV2 = [
|
|
3307
|
+
var ListClusterOperationsV2$ = [
|
|
3313
3308
|
9,
|
|
3314
3309
|
n0,
|
|
3315
3310
|
_LCOV,
|
|
3316
3311
|
{ [_h]: ["GET", "/api/v2/clusters/{ClusterArn}/operations", 200] },
|
|
3317
|
-
() => ListClusterOperationsV2Request
|
|
3318
|
-
() => ListClusterOperationsV2Response
|
|
3312
|
+
() => ListClusterOperationsV2Request$,
|
|
3313
|
+
() => ListClusterOperationsV2Response$,
|
|
3319
3314
|
];
|
|
3320
|
-
var ListClusters = [
|
|
3315
|
+
var ListClusters$ = [
|
|
3321
3316
|
9,
|
|
3322
3317
|
n0,
|
|
3323
3318
|
_LC,
|
|
3324
3319
|
{ [_h]: ["GET", "/v1/clusters", 200] },
|
|
3325
|
-
() => ListClustersRequest
|
|
3326
|
-
() => ListClustersResponse
|
|
3320
|
+
() => ListClustersRequest$,
|
|
3321
|
+
() => ListClustersResponse$,
|
|
3327
3322
|
];
|
|
3328
|
-
var ListClustersV2 = [
|
|
3323
|
+
var ListClustersV2$ = [
|
|
3329
3324
|
9,
|
|
3330
3325
|
n0,
|
|
3331
3326
|
_LCV,
|
|
3332
3327
|
{ [_h]: ["GET", "/api/v2/clusters", 200] },
|
|
3333
|
-
() => ListClustersV2Request
|
|
3334
|
-
() => ListClustersV2Response
|
|
3328
|
+
() => ListClustersV2Request$,
|
|
3329
|
+
() => ListClustersV2Response$,
|
|
3335
3330
|
];
|
|
3336
|
-
var ListConfigurationRevisions = [
|
|
3331
|
+
var ListConfigurationRevisions$ = [
|
|
3337
3332
|
9,
|
|
3338
3333
|
n0,
|
|
3339
3334
|
_LCRisto,
|
|
3340
3335
|
{ [_h]: ["GET", "/v1/configurations/{Arn}/revisions", 200] },
|
|
3341
|
-
() => ListConfigurationRevisionsRequest
|
|
3342
|
-
() => ListConfigurationRevisionsResponse
|
|
3336
|
+
() => ListConfigurationRevisionsRequest$,
|
|
3337
|
+
() => ListConfigurationRevisionsResponse$,
|
|
3343
3338
|
];
|
|
3344
|
-
var ListConfigurations = [
|
|
3339
|
+
var ListConfigurations$ = [
|
|
3345
3340
|
9,
|
|
3346
3341
|
n0,
|
|
3347
3342
|
_LCi,
|
|
3348
3343
|
{ [_h]: ["GET", "/v1/configurations", 200] },
|
|
3349
|
-
() => ListConfigurationsRequest
|
|
3350
|
-
() => ListConfigurationsResponse
|
|
3344
|
+
() => ListConfigurationsRequest$,
|
|
3345
|
+
() => ListConfigurationsResponse$,
|
|
3351
3346
|
];
|
|
3352
|
-
var ListKafkaVersions = [
|
|
3347
|
+
var ListKafkaVersions$ = [
|
|
3353
3348
|
9,
|
|
3354
3349
|
n0,
|
|
3355
3350
|
_LKV,
|
|
3356
3351
|
{ [_h]: ["GET", "/v1/kafka-versions", 200] },
|
|
3357
|
-
() => ListKafkaVersionsRequest
|
|
3358
|
-
() => ListKafkaVersionsResponse
|
|
3352
|
+
() => ListKafkaVersionsRequest$,
|
|
3353
|
+
() => ListKafkaVersionsResponse$,
|
|
3359
3354
|
];
|
|
3360
|
-
var ListNodes = [
|
|
3355
|
+
var ListNodes$ = [
|
|
3361
3356
|
9,
|
|
3362
3357
|
n0,
|
|
3363
3358
|
_LN,
|
|
3364
3359
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/nodes", 200] },
|
|
3365
|
-
() => ListNodesRequest
|
|
3366
|
-
() => ListNodesResponse
|
|
3360
|
+
() => ListNodesRequest$,
|
|
3361
|
+
() => ListNodesResponse$,
|
|
3367
3362
|
];
|
|
3368
|
-
var ListReplicators = [
|
|
3363
|
+
var ListReplicators$ = [
|
|
3369
3364
|
9,
|
|
3370
3365
|
n0,
|
|
3371
3366
|
_LRi,
|
|
3372
3367
|
{ [_h]: ["GET", "/replication/v1/replicators", 200] },
|
|
3373
|
-
() => ListReplicatorsRequest
|
|
3374
|
-
() => ListReplicatorsResponse
|
|
3368
|
+
() => ListReplicatorsRequest$,
|
|
3369
|
+
() => ListReplicatorsResponse$,
|
|
3375
3370
|
];
|
|
3376
|
-
var ListScramSecrets = [
|
|
3371
|
+
var ListScramSecrets$ = [
|
|
3377
3372
|
9,
|
|
3378
3373
|
n0,
|
|
3379
3374
|
_LSS,
|
|
3380
3375
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/scram-secrets", 200] },
|
|
3381
|
-
() => ListScramSecretsRequest
|
|
3382
|
-
() => ListScramSecretsResponse
|
|
3376
|
+
() => ListScramSecretsRequest$,
|
|
3377
|
+
() => ListScramSecretsResponse$,
|
|
3383
3378
|
];
|
|
3384
|
-
var ListTagsForResource = [
|
|
3379
|
+
var ListTagsForResource$ = [
|
|
3385
3380
|
9,
|
|
3386
3381
|
n0,
|
|
3387
3382
|
_LTFR,
|
|
3388
3383
|
{ [_h]: ["GET", "/v1/tags/{ResourceArn}", 200] },
|
|
3389
|
-
() => ListTagsForResourceRequest
|
|
3390
|
-
() => ListTagsForResourceResponse
|
|
3384
|
+
() => ListTagsForResourceRequest$,
|
|
3385
|
+
() => ListTagsForResourceResponse$,
|
|
3391
3386
|
];
|
|
3392
|
-
var ListTopics = [
|
|
3387
|
+
var ListTopics$ = [
|
|
3393
3388
|
9,
|
|
3394
3389
|
n0,
|
|
3395
3390
|
_LT,
|
|
3396
3391
|
{ [_h]: ["GET", "/v1/clusters/{ClusterArn}/topics", 200] },
|
|
3397
|
-
() => ListTopicsRequest
|
|
3398
|
-
() => ListTopicsResponse
|
|
3392
|
+
() => ListTopicsRequest$,
|
|
3393
|
+
() => ListTopicsResponse$,
|
|
3399
3394
|
];
|
|
3400
|
-
var ListVpcConnections = [
|
|
3395
|
+
var ListVpcConnections$ = [
|
|
3401
3396
|
9,
|
|
3402
3397
|
n0,
|
|
3403
3398
|
_LVC,
|
|
3404
3399
|
{ [_h]: ["GET", "/v1/vpc-connections", 200] },
|
|
3405
|
-
() => ListVpcConnectionsRequest
|
|
3406
|
-
() => ListVpcConnectionsResponse
|
|
3400
|
+
() => ListVpcConnectionsRequest$,
|
|
3401
|
+
() => ListVpcConnectionsResponse$,
|
|
3407
3402
|
];
|
|
3408
|
-
var PutClusterPolicy = [
|
|
3403
|
+
var PutClusterPolicy$ = [
|
|
3409
3404
|
9,
|
|
3410
3405
|
n0,
|
|
3411
3406
|
_PCP,
|
|
3412
3407
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/policy", 200] },
|
|
3413
|
-
() => PutClusterPolicyRequest
|
|
3414
|
-
() => PutClusterPolicyResponse
|
|
3408
|
+
() => PutClusterPolicyRequest$,
|
|
3409
|
+
() => PutClusterPolicyResponse$,
|
|
3415
3410
|
];
|
|
3416
|
-
var RebootBroker = [
|
|
3411
|
+
var RebootBroker$ = [
|
|
3417
3412
|
9,
|
|
3418
3413
|
n0,
|
|
3419
3414
|
_RB,
|
|
3420
3415
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/reboot-broker", 200] },
|
|
3421
|
-
() => RebootBrokerRequest
|
|
3422
|
-
() => RebootBrokerResponse
|
|
3416
|
+
() => RebootBrokerRequest$,
|
|
3417
|
+
() => RebootBrokerResponse$,
|
|
3423
3418
|
];
|
|
3424
|
-
var RejectClientVpcConnection = [
|
|
3419
|
+
var RejectClientVpcConnection$ = [
|
|
3425
3420
|
9,
|
|
3426
3421
|
n0,
|
|
3427
3422
|
_RCVC,
|
|
3428
3423
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/client-vpc-connection", 200] },
|
|
3429
|
-
() => RejectClientVpcConnectionRequest
|
|
3430
|
-
() => RejectClientVpcConnectionResponse
|
|
3424
|
+
() => RejectClientVpcConnectionRequest$,
|
|
3425
|
+
() => RejectClientVpcConnectionResponse$,
|
|
3431
3426
|
];
|
|
3432
|
-
var TagResource = [
|
|
3427
|
+
var TagResource$ = [
|
|
3433
3428
|
9,
|
|
3434
3429
|
n0,
|
|
3435
3430
|
_TRa,
|
|
3436
3431
|
{ [_h]: ["POST", "/v1/tags/{ResourceArn}", 204] },
|
|
3437
|
-
() => TagResourceRequest
|
|
3432
|
+
() => TagResourceRequest$,
|
|
3438
3433
|
() => __Unit,
|
|
3439
3434
|
];
|
|
3440
|
-
var UntagResource = [
|
|
3435
|
+
var UntagResource$ = [
|
|
3441
3436
|
9,
|
|
3442
3437
|
n0,
|
|
3443
3438
|
_UR,
|
|
3444
3439
|
{ [_h]: ["DELETE", "/v1/tags/{ResourceArn}", 204] },
|
|
3445
|
-
() => UntagResourceRequest
|
|
3440
|
+
() => UntagResourceRequest$,
|
|
3446
3441
|
() => __Unit,
|
|
3447
3442
|
];
|
|
3448
|
-
var UpdateBrokerCount = [
|
|
3443
|
+
var UpdateBrokerCount$ = [
|
|
3449
3444
|
9,
|
|
3450
3445
|
n0,
|
|
3451
3446
|
_UBC,
|
|
3452
3447
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/nodes/count", 200] },
|
|
3453
|
-
() => UpdateBrokerCountRequest
|
|
3454
|
-
() => UpdateBrokerCountResponse
|
|
3448
|
+
() => UpdateBrokerCountRequest$,
|
|
3449
|
+
() => UpdateBrokerCountResponse$,
|
|
3455
3450
|
];
|
|
3456
|
-
var UpdateBrokerStorage = [
|
|
3451
|
+
var UpdateBrokerStorage$ = [
|
|
3457
3452
|
9,
|
|
3458
3453
|
n0,
|
|
3459
3454
|
_UBS,
|
|
3460
3455
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/nodes/storage", 200] },
|
|
3461
|
-
() => UpdateBrokerStorageRequest
|
|
3462
|
-
() => UpdateBrokerStorageResponse
|
|
3456
|
+
() => UpdateBrokerStorageRequest$,
|
|
3457
|
+
() => UpdateBrokerStorageResponse$,
|
|
3463
3458
|
];
|
|
3464
|
-
var UpdateBrokerType = [
|
|
3459
|
+
var UpdateBrokerType$ = [
|
|
3465
3460
|
9,
|
|
3466
3461
|
n0,
|
|
3467
3462
|
_UBT,
|
|
3468
3463
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/nodes/type", 200] },
|
|
3469
|
-
() => UpdateBrokerTypeRequest
|
|
3470
|
-
() => UpdateBrokerTypeResponse
|
|
3464
|
+
() => UpdateBrokerTypeRequest$,
|
|
3465
|
+
() => UpdateBrokerTypeResponse$,
|
|
3471
3466
|
];
|
|
3472
|
-
var UpdateClusterConfiguration = [
|
|
3467
|
+
var UpdateClusterConfiguration$ = [
|
|
3473
3468
|
9,
|
|
3474
3469
|
n0,
|
|
3475
3470
|
_UCC,
|
|
3476
3471
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/configuration", 200] },
|
|
3477
|
-
() => UpdateClusterConfigurationRequest
|
|
3478
|
-
() => UpdateClusterConfigurationResponse
|
|
3472
|
+
() => UpdateClusterConfigurationRequest$,
|
|
3473
|
+
() => UpdateClusterConfigurationResponse$,
|
|
3479
3474
|
];
|
|
3480
|
-
var UpdateClusterKafkaVersion = [
|
|
3475
|
+
var UpdateClusterKafkaVersion$ = [
|
|
3481
3476
|
9,
|
|
3482
3477
|
n0,
|
|
3483
3478
|
_UCKV,
|
|
3484
3479
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/version", 200] },
|
|
3485
|
-
() => UpdateClusterKafkaVersionRequest
|
|
3486
|
-
() => UpdateClusterKafkaVersionResponse
|
|
3480
|
+
() => UpdateClusterKafkaVersionRequest$,
|
|
3481
|
+
() => UpdateClusterKafkaVersionResponse$,
|
|
3487
3482
|
];
|
|
3488
|
-
var UpdateConfiguration = [
|
|
3483
|
+
var UpdateConfiguration$ = [
|
|
3489
3484
|
9,
|
|
3490
3485
|
n0,
|
|
3491
3486
|
_UC,
|
|
3492
3487
|
{ [_h]: ["PUT", "/v1/configurations/{Arn}", 200] },
|
|
3493
|
-
() => UpdateConfigurationRequest
|
|
3494
|
-
() => UpdateConfigurationResponse
|
|
3488
|
+
() => UpdateConfigurationRequest$,
|
|
3489
|
+
() => UpdateConfigurationResponse$,
|
|
3495
3490
|
];
|
|
3496
|
-
var UpdateConnectivity = [
|
|
3491
|
+
var UpdateConnectivity$ = [
|
|
3497
3492
|
9,
|
|
3498
3493
|
n0,
|
|
3499
3494
|
_UCp,
|
|
3500
3495
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/connectivity", 200] },
|
|
3501
|
-
() => UpdateConnectivityRequest
|
|
3502
|
-
() => UpdateConnectivityResponse
|
|
3496
|
+
() => UpdateConnectivityRequest$,
|
|
3497
|
+
() => UpdateConnectivityResponse$,
|
|
3503
3498
|
];
|
|
3504
|
-
var UpdateMonitoring = [
|
|
3499
|
+
var UpdateMonitoring$ = [
|
|
3505
3500
|
9,
|
|
3506
3501
|
n0,
|
|
3507
3502
|
_UM,
|
|
3508
3503
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/monitoring", 200] },
|
|
3509
|
-
() => UpdateMonitoringRequest
|
|
3510
|
-
() => UpdateMonitoringResponse
|
|
3504
|
+
() => UpdateMonitoringRequest$,
|
|
3505
|
+
() => UpdateMonitoringResponse$,
|
|
3511
3506
|
];
|
|
3512
|
-
var UpdateRebalancing = [
|
|
3507
|
+
var UpdateRebalancing$ = [
|
|
3513
3508
|
9,
|
|
3514
3509
|
n0,
|
|
3515
3510
|
_URp,
|
|
3516
3511
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/rebalancing", 200] },
|
|
3517
|
-
() => UpdateRebalancingRequest
|
|
3518
|
-
() => UpdateRebalancingResponse
|
|
3512
|
+
() => UpdateRebalancingRequest$,
|
|
3513
|
+
() => UpdateRebalancingResponse$,
|
|
3519
3514
|
];
|
|
3520
|
-
var UpdateReplicationInfo = [
|
|
3515
|
+
var UpdateReplicationInfo$ = [
|
|
3521
3516
|
9,
|
|
3522
3517
|
n0,
|
|
3523
3518
|
_URI,
|
|
3524
3519
|
{ [_h]: ["PUT", "/replication/v1/replicators/{ReplicatorArn}/replication-info", 200] },
|
|
3525
|
-
() => UpdateReplicationInfoRequest
|
|
3526
|
-
() => UpdateReplicationInfoResponse
|
|
3520
|
+
() => UpdateReplicationInfoRequest$,
|
|
3521
|
+
() => UpdateReplicationInfoResponse$,
|
|
3527
3522
|
];
|
|
3528
|
-
var UpdateSecurity = [
|
|
3523
|
+
var UpdateSecurity$ = [
|
|
3529
3524
|
9,
|
|
3530
3525
|
n0,
|
|
3531
3526
|
_US,
|
|
3532
3527
|
{ [_h]: ["PATCH", "/v1/clusters/{ClusterArn}/security", 200] },
|
|
3533
|
-
() => UpdateSecurityRequest
|
|
3534
|
-
() => UpdateSecurityResponse
|
|
3528
|
+
() => UpdateSecurityRequest$,
|
|
3529
|
+
() => UpdateSecurityResponse$,
|
|
3535
3530
|
];
|
|
3536
|
-
var UpdateStorage = [
|
|
3531
|
+
var UpdateStorage$ = [
|
|
3537
3532
|
9,
|
|
3538
3533
|
n0,
|
|
3539
3534
|
_USp,
|
|
3540
3535
|
{ [_h]: ["PUT", "/v1/clusters/{ClusterArn}/storage", 200] },
|
|
3541
|
-
() => UpdateStorageRequest
|
|
3542
|
-
() => UpdateStorageResponse
|
|
3536
|
+
() => UpdateStorageRequest$,
|
|
3537
|
+
() => UpdateStorageResponse$,
|
|
3543
3538
|
];
|
|
3544
3539
|
|
|
3545
3540
|
class BatchAssociateScramSecretCommand extends smithyClient.Command
|
|
@@ -3550,7 +3545,7 @@ class BatchAssociateScramSecretCommand extends smithyClient.Command
|
|
|
3550
3545
|
})
|
|
3551
3546
|
.s("Kafka", "BatchAssociateScramSecret", {})
|
|
3552
3547
|
.n("KafkaClient", "BatchAssociateScramSecretCommand")
|
|
3553
|
-
.sc(BatchAssociateScramSecret)
|
|
3548
|
+
.sc(BatchAssociateScramSecret$)
|
|
3554
3549
|
.build() {
|
|
3555
3550
|
}
|
|
3556
3551
|
|
|
@@ -3562,7 +3557,7 @@ class BatchDisassociateScramSecretCommand extends smithyClient.Command
|
|
|
3562
3557
|
})
|
|
3563
3558
|
.s("Kafka", "BatchDisassociateScramSecret", {})
|
|
3564
3559
|
.n("KafkaClient", "BatchDisassociateScramSecretCommand")
|
|
3565
|
-
.sc(BatchDisassociateScramSecret)
|
|
3560
|
+
.sc(BatchDisassociateScramSecret$)
|
|
3566
3561
|
.build() {
|
|
3567
3562
|
}
|
|
3568
3563
|
|
|
@@ -3574,7 +3569,7 @@ class CreateClusterCommand extends smithyClient.Command
|
|
|
3574
3569
|
})
|
|
3575
3570
|
.s("Kafka", "CreateCluster", {})
|
|
3576
3571
|
.n("KafkaClient", "CreateClusterCommand")
|
|
3577
|
-
.sc(CreateCluster)
|
|
3572
|
+
.sc(CreateCluster$)
|
|
3578
3573
|
.build() {
|
|
3579
3574
|
}
|
|
3580
3575
|
|
|
@@ -3586,7 +3581,7 @@ class CreateClusterV2Command extends smithyClient.Command
|
|
|
3586
3581
|
})
|
|
3587
3582
|
.s("Kafka", "CreateClusterV2", {})
|
|
3588
3583
|
.n("KafkaClient", "CreateClusterV2Command")
|
|
3589
|
-
.sc(CreateClusterV2)
|
|
3584
|
+
.sc(CreateClusterV2$)
|
|
3590
3585
|
.build() {
|
|
3591
3586
|
}
|
|
3592
3587
|
|
|
@@ -3598,7 +3593,7 @@ class CreateConfigurationCommand extends smithyClient.Command
|
|
|
3598
3593
|
})
|
|
3599
3594
|
.s("Kafka", "CreateConfiguration", {})
|
|
3600
3595
|
.n("KafkaClient", "CreateConfigurationCommand")
|
|
3601
|
-
.sc(CreateConfiguration)
|
|
3596
|
+
.sc(CreateConfiguration$)
|
|
3602
3597
|
.build() {
|
|
3603
3598
|
}
|
|
3604
3599
|
|
|
@@ -3610,7 +3605,7 @@ class CreateReplicatorCommand extends smithyClient.Command
|
|
|
3610
3605
|
})
|
|
3611
3606
|
.s("Kafka", "CreateReplicator", {})
|
|
3612
3607
|
.n("KafkaClient", "CreateReplicatorCommand")
|
|
3613
|
-
.sc(CreateReplicator)
|
|
3608
|
+
.sc(CreateReplicator$)
|
|
3614
3609
|
.build() {
|
|
3615
3610
|
}
|
|
3616
3611
|
|
|
@@ -3622,7 +3617,7 @@ class CreateVpcConnectionCommand extends smithyClient.Command
|
|
|
3622
3617
|
})
|
|
3623
3618
|
.s("Kafka", "CreateVpcConnection", {})
|
|
3624
3619
|
.n("KafkaClient", "CreateVpcConnectionCommand")
|
|
3625
|
-
.sc(CreateVpcConnection)
|
|
3620
|
+
.sc(CreateVpcConnection$)
|
|
3626
3621
|
.build() {
|
|
3627
3622
|
}
|
|
3628
3623
|
|
|
@@ -3634,7 +3629,7 @@ class DeleteClusterCommand extends smithyClient.Command
|
|
|
3634
3629
|
})
|
|
3635
3630
|
.s("Kafka", "DeleteCluster", {})
|
|
3636
3631
|
.n("KafkaClient", "DeleteClusterCommand")
|
|
3637
|
-
.sc(DeleteCluster)
|
|
3632
|
+
.sc(DeleteCluster$)
|
|
3638
3633
|
.build() {
|
|
3639
3634
|
}
|
|
3640
3635
|
|
|
@@ -3646,7 +3641,7 @@ class DeleteClusterPolicyCommand extends smithyClient.Command
|
|
|
3646
3641
|
})
|
|
3647
3642
|
.s("Kafka", "DeleteClusterPolicy", {})
|
|
3648
3643
|
.n("KafkaClient", "DeleteClusterPolicyCommand")
|
|
3649
|
-
.sc(DeleteClusterPolicy)
|
|
3644
|
+
.sc(DeleteClusterPolicy$)
|
|
3650
3645
|
.build() {
|
|
3651
3646
|
}
|
|
3652
3647
|
|
|
@@ -3658,7 +3653,7 @@ class DeleteConfigurationCommand extends smithyClient.Command
|
|
|
3658
3653
|
})
|
|
3659
3654
|
.s("Kafka", "DeleteConfiguration", {})
|
|
3660
3655
|
.n("KafkaClient", "DeleteConfigurationCommand")
|
|
3661
|
-
.sc(DeleteConfiguration)
|
|
3656
|
+
.sc(DeleteConfiguration$)
|
|
3662
3657
|
.build() {
|
|
3663
3658
|
}
|
|
3664
3659
|
|
|
@@ -3670,7 +3665,7 @@ class DeleteReplicatorCommand extends smithyClient.Command
|
|
|
3670
3665
|
})
|
|
3671
3666
|
.s("Kafka", "DeleteReplicator", {})
|
|
3672
3667
|
.n("KafkaClient", "DeleteReplicatorCommand")
|
|
3673
|
-
.sc(DeleteReplicator)
|
|
3668
|
+
.sc(DeleteReplicator$)
|
|
3674
3669
|
.build() {
|
|
3675
3670
|
}
|
|
3676
3671
|
|
|
@@ -3682,7 +3677,7 @@ class DeleteVpcConnectionCommand extends smithyClient.Command
|
|
|
3682
3677
|
})
|
|
3683
3678
|
.s("Kafka", "DeleteVpcConnection", {})
|
|
3684
3679
|
.n("KafkaClient", "DeleteVpcConnectionCommand")
|
|
3685
|
-
.sc(DeleteVpcConnection)
|
|
3680
|
+
.sc(DeleteVpcConnection$)
|
|
3686
3681
|
.build() {
|
|
3687
3682
|
}
|
|
3688
3683
|
|
|
@@ -3694,7 +3689,7 @@ class DescribeClusterCommand extends smithyClient.Command
|
|
|
3694
3689
|
})
|
|
3695
3690
|
.s("Kafka", "DescribeCluster", {})
|
|
3696
3691
|
.n("KafkaClient", "DescribeClusterCommand")
|
|
3697
|
-
.sc(DescribeCluster)
|
|
3692
|
+
.sc(DescribeCluster$)
|
|
3698
3693
|
.build() {
|
|
3699
3694
|
}
|
|
3700
3695
|
|
|
@@ -3706,7 +3701,7 @@ class DescribeClusterOperationCommand extends smithyClient.Command
|
|
|
3706
3701
|
})
|
|
3707
3702
|
.s("Kafka", "DescribeClusterOperation", {})
|
|
3708
3703
|
.n("KafkaClient", "DescribeClusterOperationCommand")
|
|
3709
|
-
.sc(DescribeClusterOperation)
|
|
3704
|
+
.sc(DescribeClusterOperation$)
|
|
3710
3705
|
.build() {
|
|
3711
3706
|
}
|
|
3712
3707
|
|
|
@@ -3718,7 +3713,7 @@ class DescribeClusterOperationV2Command extends smithyClient.Command
|
|
|
3718
3713
|
})
|
|
3719
3714
|
.s("Kafka", "DescribeClusterOperationV2", {})
|
|
3720
3715
|
.n("KafkaClient", "DescribeClusterOperationV2Command")
|
|
3721
|
-
.sc(DescribeClusterOperationV2)
|
|
3716
|
+
.sc(DescribeClusterOperationV2$)
|
|
3722
3717
|
.build() {
|
|
3723
3718
|
}
|
|
3724
3719
|
|
|
@@ -3730,7 +3725,7 @@ class DescribeClusterV2Command extends smithyClient.Command
|
|
|
3730
3725
|
})
|
|
3731
3726
|
.s("Kafka", "DescribeClusterV2", {})
|
|
3732
3727
|
.n("KafkaClient", "DescribeClusterV2Command")
|
|
3733
|
-
.sc(DescribeClusterV2)
|
|
3728
|
+
.sc(DescribeClusterV2$)
|
|
3734
3729
|
.build() {
|
|
3735
3730
|
}
|
|
3736
3731
|
|
|
@@ -3742,7 +3737,7 @@ class DescribeConfigurationCommand extends smithyClient.Command
|
|
|
3742
3737
|
})
|
|
3743
3738
|
.s("Kafka", "DescribeConfiguration", {})
|
|
3744
3739
|
.n("KafkaClient", "DescribeConfigurationCommand")
|
|
3745
|
-
.sc(DescribeConfiguration)
|
|
3740
|
+
.sc(DescribeConfiguration$)
|
|
3746
3741
|
.build() {
|
|
3747
3742
|
}
|
|
3748
3743
|
|
|
@@ -3754,7 +3749,7 @@ class DescribeConfigurationRevisionCommand extends smithyClient.Command
|
|
|
3754
3749
|
})
|
|
3755
3750
|
.s("Kafka", "DescribeConfigurationRevision", {})
|
|
3756
3751
|
.n("KafkaClient", "DescribeConfigurationRevisionCommand")
|
|
3757
|
-
.sc(DescribeConfigurationRevision)
|
|
3752
|
+
.sc(DescribeConfigurationRevision$)
|
|
3758
3753
|
.build() {
|
|
3759
3754
|
}
|
|
3760
3755
|
|
|
@@ -3766,7 +3761,7 @@ class DescribeReplicatorCommand extends smithyClient.Command
|
|
|
3766
3761
|
})
|
|
3767
3762
|
.s("Kafka", "DescribeReplicator", {})
|
|
3768
3763
|
.n("KafkaClient", "DescribeReplicatorCommand")
|
|
3769
|
-
.sc(DescribeReplicator)
|
|
3764
|
+
.sc(DescribeReplicator$)
|
|
3770
3765
|
.build() {
|
|
3771
3766
|
}
|
|
3772
3767
|
|
|
@@ -3778,7 +3773,7 @@ class DescribeTopicCommand extends smithyClient.Command
|
|
|
3778
3773
|
})
|
|
3779
3774
|
.s("Kafka", "DescribeTopic", {})
|
|
3780
3775
|
.n("KafkaClient", "DescribeTopicCommand")
|
|
3781
|
-
.sc(DescribeTopic)
|
|
3776
|
+
.sc(DescribeTopic$)
|
|
3782
3777
|
.build() {
|
|
3783
3778
|
}
|
|
3784
3779
|
|
|
@@ -3790,7 +3785,7 @@ class DescribeTopicPartitionsCommand extends smithyClient.Command
|
|
|
3790
3785
|
})
|
|
3791
3786
|
.s("Kafka", "DescribeTopicPartitions", {})
|
|
3792
3787
|
.n("KafkaClient", "DescribeTopicPartitionsCommand")
|
|
3793
|
-
.sc(DescribeTopicPartitions)
|
|
3788
|
+
.sc(DescribeTopicPartitions$)
|
|
3794
3789
|
.build() {
|
|
3795
3790
|
}
|
|
3796
3791
|
|
|
@@ -3802,7 +3797,7 @@ class DescribeVpcConnectionCommand extends smithyClient.Command
|
|
|
3802
3797
|
})
|
|
3803
3798
|
.s("Kafka", "DescribeVpcConnection", {})
|
|
3804
3799
|
.n("KafkaClient", "DescribeVpcConnectionCommand")
|
|
3805
|
-
.sc(DescribeVpcConnection)
|
|
3800
|
+
.sc(DescribeVpcConnection$)
|
|
3806
3801
|
.build() {
|
|
3807
3802
|
}
|
|
3808
3803
|
|
|
@@ -3814,7 +3809,7 @@ class GetBootstrapBrokersCommand extends smithyClient.Command
|
|
|
3814
3809
|
})
|
|
3815
3810
|
.s("Kafka", "GetBootstrapBrokers", {})
|
|
3816
3811
|
.n("KafkaClient", "GetBootstrapBrokersCommand")
|
|
3817
|
-
.sc(GetBootstrapBrokers)
|
|
3812
|
+
.sc(GetBootstrapBrokers$)
|
|
3818
3813
|
.build() {
|
|
3819
3814
|
}
|
|
3820
3815
|
|
|
@@ -3826,7 +3821,7 @@ class GetClusterPolicyCommand extends smithyClient.Command
|
|
|
3826
3821
|
})
|
|
3827
3822
|
.s("Kafka", "GetClusterPolicy", {})
|
|
3828
3823
|
.n("KafkaClient", "GetClusterPolicyCommand")
|
|
3829
|
-
.sc(GetClusterPolicy)
|
|
3824
|
+
.sc(GetClusterPolicy$)
|
|
3830
3825
|
.build() {
|
|
3831
3826
|
}
|
|
3832
3827
|
|
|
@@ -3838,7 +3833,7 @@ class GetCompatibleKafkaVersionsCommand extends smithyClient.Command
|
|
|
3838
3833
|
})
|
|
3839
3834
|
.s("Kafka", "GetCompatibleKafkaVersions", {})
|
|
3840
3835
|
.n("KafkaClient", "GetCompatibleKafkaVersionsCommand")
|
|
3841
|
-
.sc(GetCompatibleKafkaVersions)
|
|
3836
|
+
.sc(GetCompatibleKafkaVersions$)
|
|
3842
3837
|
.build() {
|
|
3843
3838
|
}
|
|
3844
3839
|
|
|
@@ -3850,7 +3845,7 @@ class ListClientVpcConnectionsCommand extends smithyClient.Command
|
|
|
3850
3845
|
})
|
|
3851
3846
|
.s("Kafka", "ListClientVpcConnections", {})
|
|
3852
3847
|
.n("KafkaClient", "ListClientVpcConnectionsCommand")
|
|
3853
|
-
.sc(ListClientVpcConnections)
|
|
3848
|
+
.sc(ListClientVpcConnections$)
|
|
3854
3849
|
.build() {
|
|
3855
3850
|
}
|
|
3856
3851
|
|
|
@@ -3862,7 +3857,7 @@ class ListClusterOperationsCommand extends smithyClient.Command
|
|
|
3862
3857
|
})
|
|
3863
3858
|
.s("Kafka", "ListClusterOperations", {})
|
|
3864
3859
|
.n("KafkaClient", "ListClusterOperationsCommand")
|
|
3865
|
-
.sc(ListClusterOperations)
|
|
3860
|
+
.sc(ListClusterOperations$)
|
|
3866
3861
|
.build() {
|
|
3867
3862
|
}
|
|
3868
3863
|
|
|
@@ -3874,7 +3869,7 @@ class ListClusterOperationsV2Command extends smithyClient.Command
|
|
|
3874
3869
|
})
|
|
3875
3870
|
.s("Kafka", "ListClusterOperationsV2", {})
|
|
3876
3871
|
.n("KafkaClient", "ListClusterOperationsV2Command")
|
|
3877
|
-
.sc(ListClusterOperationsV2)
|
|
3872
|
+
.sc(ListClusterOperationsV2$)
|
|
3878
3873
|
.build() {
|
|
3879
3874
|
}
|
|
3880
3875
|
|
|
@@ -3886,7 +3881,7 @@ class ListClustersCommand extends smithyClient.Command
|
|
|
3886
3881
|
})
|
|
3887
3882
|
.s("Kafka", "ListClusters", {})
|
|
3888
3883
|
.n("KafkaClient", "ListClustersCommand")
|
|
3889
|
-
.sc(ListClusters)
|
|
3884
|
+
.sc(ListClusters$)
|
|
3890
3885
|
.build() {
|
|
3891
3886
|
}
|
|
3892
3887
|
|
|
@@ -3898,7 +3893,7 @@ class ListClustersV2Command extends smithyClient.Command
|
|
|
3898
3893
|
})
|
|
3899
3894
|
.s("Kafka", "ListClustersV2", {})
|
|
3900
3895
|
.n("KafkaClient", "ListClustersV2Command")
|
|
3901
|
-
.sc(ListClustersV2)
|
|
3896
|
+
.sc(ListClustersV2$)
|
|
3902
3897
|
.build() {
|
|
3903
3898
|
}
|
|
3904
3899
|
|
|
@@ -3910,7 +3905,7 @@ class ListConfigurationRevisionsCommand extends smithyClient.Command
|
|
|
3910
3905
|
})
|
|
3911
3906
|
.s("Kafka", "ListConfigurationRevisions", {})
|
|
3912
3907
|
.n("KafkaClient", "ListConfigurationRevisionsCommand")
|
|
3913
|
-
.sc(ListConfigurationRevisions)
|
|
3908
|
+
.sc(ListConfigurationRevisions$)
|
|
3914
3909
|
.build() {
|
|
3915
3910
|
}
|
|
3916
3911
|
|
|
@@ -3922,7 +3917,7 @@ class ListConfigurationsCommand extends smithyClient.Command
|
|
|
3922
3917
|
})
|
|
3923
3918
|
.s("Kafka", "ListConfigurations", {})
|
|
3924
3919
|
.n("KafkaClient", "ListConfigurationsCommand")
|
|
3925
|
-
.sc(ListConfigurations)
|
|
3920
|
+
.sc(ListConfigurations$)
|
|
3926
3921
|
.build() {
|
|
3927
3922
|
}
|
|
3928
3923
|
|
|
@@ -3934,7 +3929,7 @@ class ListKafkaVersionsCommand extends smithyClient.Command
|
|
|
3934
3929
|
})
|
|
3935
3930
|
.s("Kafka", "ListKafkaVersions", {})
|
|
3936
3931
|
.n("KafkaClient", "ListKafkaVersionsCommand")
|
|
3937
|
-
.sc(ListKafkaVersions)
|
|
3932
|
+
.sc(ListKafkaVersions$)
|
|
3938
3933
|
.build() {
|
|
3939
3934
|
}
|
|
3940
3935
|
|
|
@@ -3946,7 +3941,7 @@ class ListNodesCommand extends smithyClient.Command
|
|
|
3946
3941
|
})
|
|
3947
3942
|
.s("Kafka", "ListNodes", {})
|
|
3948
3943
|
.n("KafkaClient", "ListNodesCommand")
|
|
3949
|
-
.sc(ListNodes)
|
|
3944
|
+
.sc(ListNodes$)
|
|
3950
3945
|
.build() {
|
|
3951
3946
|
}
|
|
3952
3947
|
|
|
@@ -3958,7 +3953,7 @@ class ListReplicatorsCommand extends smithyClient.Command
|
|
|
3958
3953
|
})
|
|
3959
3954
|
.s("Kafka", "ListReplicators", {})
|
|
3960
3955
|
.n("KafkaClient", "ListReplicatorsCommand")
|
|
3961
|
-
.sc(ListReplicators)
|
|
3956
|
+
.sc(ListReplicators$)
|
|
3962
3957
|
.build() {
|
|
3963
3958
|
}
|
|
3964
3959
|
|
|
@@ -3970,7 +3965,7 @@ class ListScramSecretsCommand extends smithyClient.Command
|
|
|
3970
3965
|
})
|
|
3971
3966
|
.s("Kafka", "ListScramSecrets", {})
|
|
3972
3967
|
.n("KafkaClient", "ListScramSecretsCommand")
|
|
3973
|
-
.sc(ListScramSecrets)
|
|
3968
|
+
.sc(ListScramSecrets$)
|
|
3974
3969
|
.build() {
|
|
3975
3970
|
}
|
|
3976
3971
|
|
|
@@ -3982,7 +3977,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3982
3977
|
})
|
|
3983
3978
|
.s("Kafka", "ListTagsForResource", {})
|
|
3984
3979
|
.n("KafkaClient", "ListTagsForResourceCommand")
|
|
3985
|
-
.sc(ListTagsForResource)
|
|
3980
|
+
.sc(ListTagsForResource$)
|
|
3986
3981
|
.build() {
|
|
3987
3982
|
}
|
|
3988
3983
|
|
|
@@ -3994,7 +3989,7 @@ class ListTopicsCommand extends smithyClient.Command
|
|
|
3994
3989
|
})
|
|
3995
3990
|
.s("Kafka", "ListTopics", {})
|
|
3996
3991
|
.n("KafkaClient", "ListTopicsCommand")
|
|
3997
|
-
.sc(ListTopics)
|
|
3992
|
+
.sc(ListTopics$)
|
|
3998
3993
|
.build() {
|
|
3999
3994
|
}
|
|
4000
3995
|
|
|
@@ -4006,7 +4001,7 @@ class ListVpcConnectionsCommand extends smithyClient.Command
|
|
|
4006
4001
|
})
|
|
4007
4002
|
.s("Kafka", "ListVpcConnections", {})
|
|
4008
4003
|
.n("KafkaClient", "ListVpcConnectionsCommand")
|
|
4009
|
-
.sc(ListVpcConnections)
|
|
4004
|
+
.sc(ListVpcConnections$)
|
|
4010
4005
|
.build() {
|
|
4011
4006
|
}
|
|
4012
4007
|
|
|
@@ -4018,7 +4013,7 @@ class PutClusterPolicyCommand extends smithyClient.Command
|
|
|
4018
4013
|
})
|
|
4019
4014
|
.s("Kafka", "PutClusterPolicy", {})
|
|
4020
4015
|
.n("KafkaClient", "PutClusterPolicyCommand")
|
|
4021
|
-
.sc(PutClusterPolicy)
|
|
4016
|
+
.sc(PutClusterPolicy$)
|
|
4022
4017
|
.build() {
|
|
4023
4018
|
}
|
|
4024
4019
|
|
|
@@ -4030,7 +4025,7 @@ class RebootBrokerCommand extends smithyClient.Command
|
|
|
4030
4025
|
})
|
|
4031
4026
|
.s("Kafka", "RebootBroker", {})
|
|
4032
4027
|
.n("KafkaClient", "RebootBrokerCommand")
|
|
4033
|
-
.sc(RebootBroker)
|
|
4028
|
+
.sc(RebootBroker$)
|
|
4034
4029
|
.build() {
|
|
4035
4030
|
}
|
|
4036
4031
|
|
|
@@ -4042,7 +4037,7 @@ class RejectClientVpcConnectionCommand extends smithyClient.Command
|
|
|
4042
4037
|
})
|
|
4043
4038
|
.s("Kafka", "RejectClientVpcConnection", {})
|
|
4044
4039
|
.n("KafkaClient", "RejectClientVpcConnectionCommand")
|
|
4045
|
-
.sc(RejectClientVpcConnection)
|
|
4040
|
+
.sc(RejectClientVpcConnection$)
|
|
4046
4041
|
.build() {
|
|
4047
4042
|
}
|
|
4048
4043
|
|
|
@@ -4054,7 +4049,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
4054
4049
|
})
|
|
4055
4050
|
.s("Kafka", "TagResource", {})
|
|
4056
4051
|
.n("KafkaClient", "TagResourceCommand")
|
|
4057
|
-
.sc(TagResource)
|
|
4052
|
+
.sc(TagResource$)
|
|
4058
4053
|
.build() {
|
|
4059
4054
|
}
|
|
4060
4055
|
|
|
@@ -4066,7 +4061,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
4066
4061
|
})
|
|
4067
4062
|
.s("Kafka", "UntagResource", {})
|
|
4068
4063
|
.n("KafkaClient", "UntagResourceCommand")
|
|
4069
|
-
.sc(UntagResource)
|
|
4064
|
+
.sc(UntagResource$)
|
|
4070
4065
|
.build() {
|
|
4071
4066
|
}
|
|
4072
4067
|
|
|
@@ -4078,7 +4073,7 @@ class UpdateBrokerCountCommand extends smithyClient.Command
|
|
|
4078
4073
|
})
|
|
4079
4074
|
.s("Kafka", "UpdateBrokerCount", {})
|
|
4080
4075
|
.n("KafkaClient", "UpdateBrokerCountCommand")
|
|
4081
|
-
.sc(UpdateBrokerCount)
|
|
4076
|
+
.sc(UpdateBrokerCount$)
|
|
4082
4077
|
.build() {
|
|
4083
4078
|
}
|
|
4084
4079
|
|
|
@@ -4090,7 +4085,7 @@ class UpdateBrokerStorageCommand extends smithyClient.Command
|
|
|
4090
4085
|
})
|
|
4091
4086
|
.s("Kafka", "UpdateBrokerStorage", {})
|
|
4092
4087
|
.n("KafkaClient", "UpdateBrokerStorageCommand")
|
|
4093
|
-
.sc(UpdateBrokerStorage)
|
|
4088
|
+
.sc(UpdateBrokerStorage$)
|
|
4094
4089
|
.build() {
|
|
4095
4090
|
}
|
|
4096
4091
|
|
|
@@ -4102,7 +4097,7 @@ class UpdateBrokerTypeCommand extends smithyClient.Command
|
|
|
4102
4097
|
})
|
|
4103
4098
|
.s("Kafka", "UpdateBrokerType", {})
|
|
4104
4099
|
.n("KafkaClient", "UpdateBrokerTypeCommand")
|
|
4105
|
-
.sc(UpdateBrokerType)
|
|
4100
|
+
.sc(UpdateBrokerType$)
|
|
4106
4101
|
.build() {
|
|
4107
4102
|
}
|
|
4108
4103
|
|
|
@@ -4114,7 +4109,7 @@ class UpdateClusterConfigurationCommand extends smithyClient.Command
|
|
|
4114
4109
|
})
|
|
4115
4110
|
.s("Kafka", "UpdateClusterConfiguration", {})
|
|
4116
4111
|
.n("KafkaClient", "UpdateClusterConfigurationCommand")
|
|
4117
|
-
.sc(UpdateClusterConfiguration)
|
|
4112
|
+
.sc(UpdateClusterConfiguration$)
|
|
4118
4113
|
.build() {
|
|
4119
4114
|
}
|
|
4120
4115
|
|
|
@@ -4126,7 +4121,7 @@ class UpdateClusterKafkaVersionCommand extends smithyClient.Command
|
|
|
4126
4121
|
})
|
|
4127
4122
|
.s("Kafka", "UpdateClusterKafkaVersion", {})
|
|
4128
4123
|
.n("KafkaClient", "UpdateClusterKafkaVersionCommand")
|
|
4129
|
-
.sc(UpdateClusterKafkaVersion)
|
|
4124
|
+
.sc(UpdateClusterKafkaVersion$)
|
|
4130
4125
|
.build() {
|
|
4131
4126
|
}
|
|
4132
4127
|
|
|
@@ -4138,7 +4133,7 @@ class UpdateConfigurationCommand extends smithyClient.Command
|
|
|
4138
4133
|
})
|
|
4139
4134
|
.s("Kafka", "UpdateConfiguration", {})
|
|
4140
4135
|
.n("KafkaClient", "UpdateConfigurationCommand")
|
|
4141
|
-
.sc(UpdateConfiguration)
|
|
4136
|
+
.sc(UpdateConfiguration$)
|
|
4142
4137
|
.build() {
|
|
4143
4138
|
}
|
|
4144
4139
|
|
|
@@ -4150,7 +4145,7 @@ class UpdateConnectivityCommand extends smithyClient.Command
|
|
|
4150
4145
|
})
|
|
4151
4146
|
.s("Kafka", "UpdateConnectivity", {})
|
|
4152
4147
|
.n("KafkaClient", "UpdateConnectivityCommand")
|
|
4153
|
-
.sc(UpdateConnectivity)
|
|
4148
|
+
.sc(UpdateConnectivity$)
|
|
4154
4149
|
.build() {
|
|
4155
4150
|
}
|
|
4156
4151
|
|
|
@@ -4162,7 +4157,7 @@ class UpdateMonitoringCommand extends smithyClient.Command
|
|
|
4162
4157
|
})
|
|
4163
4158
|
.s("Kafka", "UpdateMonitoring", {})
|
|
4164
4159
|
.n("KafkaClient", "UpdateMonitoringCommand")
|
|
4165
|
-
.sc(UpdateMonitoring)
|
|
4160
|
+
.sc(UpdateMonitoring$)
|
|
4166
4161
|
.build() {
|
|
4167
4162
|
}
|
|
4168
4163
|
|
|
@@ -4174,7 +4169,7 @@ class UpdateRebalancingCommand extends smithyClient.Command
|
|
|
4174
4169
|
})
|
|
4175
4170
|
.s("Kafka", "UpdateRebalancing", {})
|
|
4176
4171
|
.n("KafkaClient", "UpdateRebalancingCommand")
|
|
4177
|
-
.sc(UpdateRebalancing)
|
|
4172
|
+
.sc(UpdateRebalancing$)
|
|
4178
4173
|
.build() {
|
|
4179
4174
|
}
|
|
4180
4175
|
|
|
@@ -4186,7 +4181,7 @@ class UpdateReplicationInfoCommand extends smithyClient.Command
|
|
|
4186
4181
|
})
|
|
4187
4182
|
.s("Kafka", "UpdateReplicationInfo", {})
|
|
4188
4183
|
.n("KafkaClient", "UpdateReplicationInfoCommand")
|
|
4189
|
-
.sc(UpdateReplicationInfo)
|
|
4184
|
+
.sc(UpdateReplicationInfo$)
|
|
4190
4185
|
.build() {
|
|
4191
4186
|
}
|
|
4192
4187
|
|
|
@@ -4198,7 +4193,7 @@ class UpdateSecurityCommand extends smithyClient.Command
|
|
|
4198
4193
|
})
|
|
4199
4194
|
.s("Kafka", "UpdateSecurity", {})
|
|
4200
4195
|
.n("KafkaClient", "UpdateSecurityCommand")
|
|
4201
|
-
.sc(UpdateSecurity)
|
|
4196
|
+
.sc(UpdateSecurity$)
|
|
4202
4197
|
.build() {
|
|
4203
4198
|
}
|
|
4204
4199
|
|
|
@@ -4210,7 +4205,7 @@ class UpdateStorageCommand extends smithyClient.Command
|
|
|
4210
4205
|
})
|
|
4211
4206
|
.s("Kafka", "UpdateStorage", {})
|
|
4212
4207
|
.n("KafkaClient", "UpdateStorageCommand")
|
|
4213
|
-
.sc(UpdateStorage)
|
|
4208
|
+
.sc(UpdateStorage$)
|
|
4214
4209
|
.build() {
|
|
4215
4210
|
}
|
|
4216
4211
|
|
|
@@ -4408,91 +4403,356 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4408
4403
|
enumerable: true,
|
|
4409
4404
|
get: function () { return smithyClient.Client; }
|
|
4410
4405
|
});
|
|
4411
|
-
exports.
|
|
4406
|
+
exports.AmazonMskCluster$ = AmazonMskCluster$;
|
|
4407
|
+
exports.BadRequestException = BadRequestException;
|
|
4408
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
4409
|
+
exports.BatchAssociateScramSecret$ = BatchAssociateScramSecret$;
|
|
4412
4410
|
exports.BatchAssociateScramSecretCommand = BatchAssociateScramSecretCommand;
|
|
4411
|
+
exports.BatchAssociateScramSecretRequest$ = BatchAssociateScramSecretRequest$;
|
|
4412
|
+
exports.BatchAssociateScramSecretResponse$ = BatchAssociateScramSecretResponse$;
|
|
4413
|
+
exports.BatchDisassociateScramSecret$ = BatchDisassociateScramSecret$;
|
|
4413
4414
|
exports.BatchDisassociateScramSecretCommand = BatchDisassociateScramSecretCommand;
|
|
4415
|
+
exports.BatchDisassociateScramSecretRequest$ = BatchDisassociateScramSecretRequest$;
|
|
4416
|
+
exports.BatchDisassociateScramSecretResponse$ = BatchDisassociateScramSecretResponse$;
|
|
4414
4417
|
exports.BrokerAZDistribution = BrokerAZDistribution;
|
|
4418
|
+
exports.BrokerCountUpdateInfo$ = BrokerCountUpdateInfo$;
|
|
4419
|
+
exports.BrokerEBSVolumeInfo$ = BrokerEBSVolumeInfo$;
|
|
4420
|
+
exports.BrokerLogs$ = BrokerLogs$;
|
|
4421
|
+
exports.BrokerNodeGroupInfo$ = BrokerNodeGroupInfo$;
|
|
4422
|
+
exports.BrokerNodeInfo$ = BrokerNodeInfo$;
|
|
4423
|
+
exports.BrokerSoftwareInfo$ = BrokerSoftwareInfo$;
|
|
4424
|
+
exports.ClientAuthentication$ = ClientAuthentication$;
|
|
4415
4425
|
exports.ClientBroker = ClientBroker;
|
|
4426
|
+
exports.ClientVpcConnection$ = ClientVpcConnection$;
|
|
4427
|
+
exports.CloudWatchLogs$ = CloudWatchLogs$;
|
|
4428
|
+
exports.Cluster$ = Cluster$;
|
|
4429
|
+
exports.ClusterInfo$ = ClusterInfo$;
|
|
4430
|
+
exports.ClusterOperationInfo$ = ClusterOperationInfo$;
|
|
4431
|
+
exports.ClusterOperationStep$ = ClusterOperationStep$;
|
|
4432
|
+
exports.ClusterOperationStepInfo$ = ClusterOperationStepInfo$;
|
|
4433
|
+
exports.ClusterOperationV2$ = ClusterOperationV2$;
|
|
4434
|
+
exports.ClusterOperationV2Provisioned$ = ClusterOperationV2Provisioned$;
|
|
4435
|
+
exports.ClusterOperationV2Serverless$ = ClusterOperationV2Serverless$;
|
|
4436
|
+
exports.ClusterOperationV2Summary$ = ClusterOperationV2Summary$;
|
|
4416
4437
|
exports.ClusterState = ClusterState;
|
|
4417
4438
|
exports.ClusterType = ClusterType;
|
|
4439
|
+
exports.CompatibleKafkaVersion$ = CompatibleKafkaVersion$;
|
|
4440
|
+
exports.Configuration$ = Configuration$;
|
|
4441
|
+
exports.ConfigurationInfo$ = ConfigurationInfo$;
|
|
4442
|
+
exports.ConfigurationRevision$ = ConfigurationRevision$;
|
|
4418
4443
|
exports.ConfigurationState = ConfigurationState;
|
|
4419
|
-
exports.ConflictException = ConflictException
|
|
4444
|
+
exports.ConflictException = ConflictException;
|
|
4445
|
+
exports.ConflictException$ = ConflictException$;
|
|
4446
|
+
exports.ConnectivityInfo$ = ConnectivityInfo$;
|
|
4447
|
+
exports.ConsumerGroupReplication$ = ConsumerGroupReplication$;
|
|
4448
|
+
exports.ConsumerGroupReplicationUpdate$ = ConsumerGroupReplicationUpdate$;
|
|
4449
|
+
exports.ControllerNodeInfo$ = ControllerNodeInfo$;
|
|
4450
|
+
exports.CreateCluster$ = CreateCluster$;
|
|
4420
4451
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
4452
|
+
exports.CreateClusterRequest$ = CreateClusterRequest$;
|
|
4453
|
+
exports.CreateClusterResponse$ = CreateClusterResponse$;
|
|
4454
|
+
exports.CreateClusterV2$ = CreateClusterV2$;
|
|
4421
4455
|
exports.CreateClusterV2Command = CreateClusterV2Command;
|
|
4456
|
+
exports.CreateClusterV2Request$ = CreateClusterV2Request$;
|
|
4457
|
+
exports.CreateClusterV2Response$ = CreateClusterV2Response$;
|
|
4458
|
+
exports.CreateConfiguration$ = CreateConfiguration$;
|
|
4422
4459
|
exports.CreateConfigurationCommand = CreateConfigurationCommand;
|
|
4460
|
+
exports.CreateConfigurationRequest$ = CreateConfigurationRequest$;
|
|
4461
|
+
exports.CreateConfigurationResponse$ = CreateConfigurationResponse$;
|
|
4462
|
+
exports.CreateReplicator$ = CreateReplicator$;
|
|
4423
4463
|
exports.CreateReplicatorCommand = CreateReplicatorCommand;
|
|
4464
|
+
exports.CreateReplicatorRequest$ = CreateReplicatorRequest$;
|
|
4465
|
+
exports.CreateReplicatorResponse$ = CreateReplicatorResponse$;
|
|
4466
|
+
exports.CreateVpcConnection$ = CreateVpcConnection$;
|
|
4424
4467
|
exports.CreateVpcConnectionCommand = CreateVpcConnectionCommand;
|
|
4468
|
+
exports.CreateVpcConnectionRequest$ = CreateVpcConnectionRequest$;
|
|
4469
|
+
exports.CreateVpcConnectionResponse$ = CreateVpcConnectionResponse$;
|
|
4425
4470
|
exports.CustomerActionStatus = CustomerActionStatus;
|
|
4471
|
+
exports.DeleteCluster$ = DeleteCluster$;
|
|
4426
4472
|
exports.DeleteClusterCommand = DeleteClusterCommand;
|
|
4473
|
+
exports.DeleteClusterPolicy$ = DeleteClusterPolicy$;
|
|
4427
4474
|
exports.DeleteClusterPolicyCommand = DeleteClusterPolicyCommand;
|
|
4475
|
+
exports.DeleteClusterPolicyRequest$ = DeleteClusterPolicyRequest$;
|
|
4476
|
+
exports.DeleteClusterPolicyResponse$ = DeleteClusterPolicyResponse$;
|
|
4477
|
+
exports.DeleteClusterRequest$ = DeleteClusterRequest$;
|
|
4478
|
+
exports.DeleteClusterResponse$ = DeleteClusterResponse$;
|
|
4479
|
+
exports.DeleteConfiguration$ = DeleteConfiguration$;
|
|
4428
4480
|
exports.DeleteConfigurationCommand = DeleteConfigurationCommand;
|
|
4481
|
+
exports.DeleteConfigurationRequest$ = DeleteConfigurationRequest$;
|
|
4482
|
+
exports.DeleteConfigurationResponse$ = DeleteConfigurationResponse$;
|
|
4483
|
+
exports.DeleteReplicator$ = DeleteReplicator$;
|
|
4429
4484
|
exports.DeleteReplicatorCommand = DeleteReplicatorCommand;
|
|
4485
|
+
exports.DeleteReplicatorRequest$ = DeleteReplicatorRequest$;
|
|
4486
|
+
exports.DeleteReplicatorResponse$ = DeleteReplicatorResponse$;
|
|
4487
|
+
exports.DeleteVpcConnection$ = DeleteVpcConnection$;
|
|
4430
4488
|
exports.DeleteVpcConnectionCommand = DeleteVpcConnectionCommand;
|
|
4489
|
+
exports.DeleteVpcConnectionRequest$ = DeleteVpcConnectionRequest$;
|
|
4490
|
+
exports.DeleteVpcConnectionResponse$ = DeleteVpcConnectionResponse$;
|
|
4491
|
+
exports.DescribeCluster$ = DescribeCluster$;
|
|
4431
4492
|
exports.DescribeClusterCommand = DescribeClusterCommand;
|
|
4493
|
+
exports.DescribeClusterOperation$ = DescribeClusterOperation$;
|
|
4432
4494
|
exports.DescribeClusterOperationCommand = DescribeClusterOperationCommand;
|
|
4495
|
+
exports.DescribeClusterOperationRequest$ = DescribeClusterOperationRequest$;
|
|
4496
|
+
exports.DescribeClusterOperationResponse$ = DescribeClusterOperationResponse$;
|
|
4497
|
+
exports.DescribeClusterOperationV2$ = DescribeClusterOperationV2$;
|
|
4433
4498
|
exports.DescribeClusterOperationV2Command = DescribeClusterOperationV2Command;
|
|
4499
|
+
exports.DescribeClusterOperationV2Request$ = DescribeClusterOperationV2Request$;
|
|
4500
|
+
exports.DescribeClusterOperationV2Response$ = DescribeClusterOperationV2Response$;
|
|
4501
|
+
exports.DescribeClusterRequest$ = DescribeClusterRequest$;
|
|
4502
|
+
exports.DescribeClusterResponse$ = DescribeClusterResponse$;
|
|
4503
|
+
exports.DescribeClusterV2$ = DescribeClusterV2$;
|
|
4434
4504
|
exports.DescribeClusterV2Command = DescribeClusterV2Command;
|
|
4505
|
+
exports.DescribeClusterV2Request$ = DescribeClusterV2Request$;
|
|
4506
|
+
exports.DescribeClusterV2Response$ = DescribeClusterV2Response$;
|
|
4507
|
+
exports.DescribeConfiguration$ = DescribeConfiguration$;
|
|
4435
4508
|
exports.DescribeConfigurationCommand = DescribeConfigurationCommand;
|
|
4509
|
+
exports.DescribeConfigurationRequest$ = DescribeConfigurationRequest$;
|
|
4510
|
+
exports.DescribeConfigurationResponse$ = DescribeConfigurationResponse$;
|
|
4511
|
+
exports.DescribeConfigurationRevision$ = DescribeConfigurationRevision$;
|
|
4436
4512
|
exports.DescribeConfigurationRevisionCommand = DescribeConfigurationRevisionCommand;
|
|
4513
|
+
exports.DescribeConfigurationRevisionRequest$ = DescribeConfigurationRevisionRequest$;
|
|
4514
|
+
exports.DescribeConfigurationRevisionResponse$ = DescribeConfigurationRevisionResponse$;
|
|
4515
|
+
exports.DescribeReplicator$ = DescribeReplicator$;
|
|
4437
4516
|
exports.DescribeReplicatorCommand = DescribeReplicatorCommand;
|
|
4517
|
+
exports.DescribeReplicatorRequest$ = DescribeReplicatorRequest$;
|
|
4518
|
+
exports.DescribeReplicatorResponse$ = DescribeReplicatorResponse$;
|
|
4519
|
+
exports.DescribeTopic$ = DescribeTopic$;
|
|
4438
4520
|
exports.DescribeTopicCommand = DescribeTopicCommand;
|
|
4521
|
+
exports.DescribeTopicPartitions$ = DescribeTopicPartitions$;
|
|
4439
4522
|
exports.DescribeTopicPartitionsCommand = DescribeTopicPartitionsCommand;
|
|
4523
|
+
exports.DescribeTopicPartitionsRequest$ = DescribeTopicPartitionsRequest$;
|
|
4524
|
+
exports.DescribeTopicPartitionsResponse$ = DescribeTopicPartitionsResponse$;
|
|
4525
|
+
exports.DescribeTopicRequest$ = DescribeTopicRequest$;
|
|
4526
|
+
exports.DescribeTopicResponse$ = DescribeTopicResponse$;
|
|
4527
|
+
exports.DescribeVpcConnection$ = DescribeVpcConnection$;
|
|
4440
4528
|
exports.DescribeVpcConnectionCommand = DescribeVpcConnectionCommand;
|
|
4529
|
+
exports.DescribeVpcConnectionRequest$ = DescribeVpcConnectionRequest$;
|
|
4530
|
+
exports.DescribeVpcConnectionResponse$ = DescribeVpcConnectionResponse$;
|
|
4531
|
+
exports.EBSStorageInfo$ = EBSStorageInfo$;
|
|
4532
|
+
exports.EncryptionAtRest$ = EncryptionAtRest$;
|
|
4533
|
+
exports.EncryptionInTransit$ = EncryptionInTransit$;
|
|
4534
|
+
exports.EncryptionInfo$ = EncryptionInfo$;
|
|
4441
4535
|
exports.EnhancedMonitoring = EnhancedMonitoring;
|
|
4442
|
-
exports.
|
|
4536
|
+
exports.ErrorInfo$ = ErrorInfo$;
|
|
4537
|
+
exports.Firehose$ = Firehose$;
|
|
4538
|
+
exports.ForbiddenException = ForbiddenException;
|
|
4539
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
4540
|
+
exports.GetBootstrapBrokers$ = GetBootstrapBrokers$;
|
|
4443
4541
|
exports.GetBootstrapBrokersCommand = GetBootstrapBrokersCommand;
|
|
4542
|
+
exports.GetBootstrapBrokersRequest$ = GetBootstrapBrokersRequest$;
|
|
4543
|
+
exports.GetBootstrapBrokersResponse$ = GetBootstrapBrokersResponse$;
|
|
4544
|
+
exports.GetClusterPolicy$ = GetClusterPolicy$;
|
|
4444
4545
|
exports.GetClusterPolicyCommand = GetClusterPolicyCommand;
|
|
4546
|
+
exports.GetClusterPolicyRequest$ = GetClusterPolicyRequest$;
|
|
4547
|
+
exports.GetClusterPolicyResponse$ = GetClusterPolicyResponse$;
|
|
4548
|
+
exports.GetCompatibleKafkaVersions$ = GetCompatibleKafkaVersions$;
|
|
4445
4549
|
exports.GetCompatibleKafkaVersionsCommand = GetCompatibleKafkaVersionsCommand;
|
|
4446
|
-
exports.
|
|
4550
|
+
exports.GetCompatibleKafkaVersionsRequest$ = GetCompatibleKafkaVersionsRequest$;
|
|
4551
|
+
exports.GetCompatibleKafkaVersionsResponse$ = GetCompatibleKafkaVersionsResponse$;
|
|
4552
|
+
exports.Iam$ = Iam$;
|
|
4553
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
4554
|
+
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
4555
|
+
exports.JmxExporter$ = JmxExporter$;
|
|
4556
|
+
exports.JmxExporterInfo$ = JmxExporterInfo$;
|
|
4447
4557
|
exports.Kafka = Kafka;
|
|
4448
4558
|
exports.KafkaClient = KafkaClient;
|
|
4449
|
-
exports.
|
|
4559
|
+
exports.KafkaCluster$ = KafkaCluster$;
|
|
4560
|
+
exports.KafkaClusterClientVpcConfig$ = KafkaClusterClientVpcConfig$;
|
|
4561
|
+
exports.KafkaClusterDescription$ = KafkaClusterDescription$;
|
|
4562
|
+
exports.KafkaClusterSummary$ = KafkaClusterSummary$;
|
|
4563
|
+
exports.KafkaServiceException = KafkaServiceException;
|
|
4564
|
+
exports.KafkaServiceException$ = KafkaServiceException$;
|
|
4565
|
+
exports.KafkaVersion$ = KafkaVersion$;
|
|
4450
4566
|
exports.KafkaVersionStatus = KafkaVersionStatus;
|
|
4567
|
+
exports.ListClientVpcConnections$ = ListClientVpcConnections$;
|
|
4451
4568
|
exports.ListClientVpcConnectionsCommand = ListClientVpcConnectionsCommand;
|
|
4569
|
+
exports.ListClientVpcConnectionsRequest$ = ListClientVpcConnectionsRequest$;
|
|
4570
|
+
exports.ListClientVpcConnectionsResponse$ = ListClientVpcConnectionsResponse$;
|
|
4571
|
+
exports.ListClusterOperations$ = ListClusterOperations$;
|
|
4452
4572
|
exports.ListClusterOperationsCommand = ListClusterOperationsCommand;
|
|
4573
|
+
exports.ListClusterOperationsRequest$ = ListClusterOperationsRequest$;
|
|
4574
|
+
exports.ListClusterOperationsResponse$ = ListClusterOperationsResponse$;
|
|
4575
|
+
exports.ListClusterOperationsV2$ = ListClusterOperationsV2$;
|
|
4453
4576
|
exports.ListClusterOperationsV2Command = ListClusterOperationsV2Command;
|
|
4577
|
+
exports.ListClusterOperationsV2Request$ = ListClusterOperationsV2Request$;
|
|
4578
|
+
exports.ListClusterOperationsV2Response$ = ListClusterOperationsV2Response$;
|
|
4579
|
+
exports.ListClusters$ = ListClusters$;
|
|
4454
4580
|
exports.ListClustersCommand = ListClustersCommand;
|
|
4581
|
+
exports.ListClustersRequest$ = ListClustersRequest$;
|
|
4582
|
+
exports.ListClustersResponse$ = ListClustersResponse$;
|
|
4583
|
+
exports.ListClustersV2$ = ListClustersV2$;
|
|
4455
4584
|
exports.ListClustersV2Command = ListClustersV2Command;
|
|
4585
|
+
exports.ListClustersV2Request$ = ListClustersV2Request$;
|
|
4586
|
+
exports.ListClustersV2Response$ = ListClustersV2Response$;
|
|
4587
|
+
exports.ListConfigurationRevisions$ = ListConfigurationRevisions$;
|
|
4456
4588
|
exports.ListConfigurationRevisionsCommand = ListConfigurationRevisionsCommand;
|
|
4589
|
+
exports.ListConfigurationRevisionsRequest$ = ListConfigurationRevisionsRequest$;
|
|
4590
|
+
exports.ListConfigurationRevisionsResponse$ = ListConfigurationRevisionsResponse$;
|
|
4591
|
+
exports.ListConfigurations$ = ListConfigurations$;
|
|
4457
4592
|
exports.ListConfigurationsCommand = ListConfigurationsCommand;
|
|
4593
|
+
exports.ListConfigurationsRequest$ = ListConfigurationsRequest$;
|
|
4594
|
+
exports.ListConfigurationsResponse$ = ListConfigurationsResponse$;
|
|
4595
|
+
exports.ListKafkaVersions$ = ListKafkaVersions$;
|
|
4458
4596
|
exports.ListKafkaVersionsCommand = ListKafkaVersionsCommand;
|
|
4597
|
+
exports.ListKafkaVersionsRequest$ = ListKafkaVersionsRequest$;
|
|
4598
|
+
exports.ListKafkaVersionsResponse$ = ListKafkaVersionsResponse$;
|
|
4599
|
+
exports.ListNodes$ = ListNodes$;
|
|
4459
4600
|
exports.ListNodesCommand = ListNodesCommand;
|
|
4601
|
+
exports.ListNodesRequest$ = ListNodesRequest$;
|
|
4602
|
+
exports.ListNodesResponse$ = ListNodesResponse$;
|
|
4603
|
+
exports.ListReplicators$ = ListReplicators$;
|
|
4460
4604
|
exports.ListReplicatorsCommand = ListReplicatorsCommand;
|
|
4605
|
+
exports.ListReplicatorsRequest$ = ListReplicatorsRequest$;
|
|
4606
|
+
exports.ListReplicatorsResponse$ = ListReplicatorsResponse$;
|
|
4607
|
+
exports.ListScramSecrets$ = ListScramSecrets$;
|
|
4461
4608
|
exports.ListScramSecretsCommand = ListScramSecretsCommand;
|
|
4609
|
+
exports.ListScramSecretsRequest$ = ListScramSecretsRequest$;
|
|
4610
|
+
exports.ListScramSecretsResponse$ = ListScramSecretsResponse$;
|
|
4611
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
4462
4612
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4613
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4614
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4615
|
+
exports.ListTopics$ = ListTopics$;
|
|
4463
4616
|
exports.ListTopicsCommand = ListTopicsCommand;
|
|
4617
|
+
exports.ListTopicsRequest$ = ListTopicsRequest$;
|
|
4618
|
+
exports.ListTopicsResponse$ = ListTopicsResponse$;
|
|
4619
|
+
exports.ListVpcConnections$ = ListVpcConnections$;
|
|
4464
4620
|
exports.ListVpcConnectionsCommand = ListVpcConnectionsCommand;
|
|
4621
|
+
exports.ListVpcConnectionsRequest$ = ListVpcConnectionsRequest$;
|
|
4622
|
+
exports.ListVpcConnectionsResponse$ = ListVpcConnectionsResponse$;
|
|
4623
|
+
exports.LoggingInfo$ = LoggingInfo$;
|
|
4624
|
+
exports.MutableClusterInfo$ = MutableClusterInfo$;
|
|
4625
|
+
exports.NodeExporter$ = NodeExporter$;
|
|
4626
|
+
exports.NodeExporterInfo$ = NodeExporterInfo$;
|
|
4627
|
+
exports.NodeInfo$ = NodeInfo$;
|
|
4465
4628
|
exports.NodeType = NodeType;
|
|
4466
|
-
exports.NotFoundException = NotFoundException
|
|
4629
|
+
exports.NotFoundException = NotFoundException;
|
|
4630
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
4631
|
+
exports.OpenMonitoring$ = OpenMonitoring$;
|
|
4632
|
+
exports.OpenMonitoringInfo$ = OpenMonitoringInfo$;
|
|
4633
|
+
exports.Prometheus$ = Prometheus$;
|
|
4634
|
+
exports.PrometheusInfo$ = PrometheusInfo$;
|
|
4635
|
+
exports.Provisioned$ = Provisioned$;
|
|
4636
|
+
exports.ProvisionedRequest$ = ProvisionedRequest$;
|
|
4637
|
+
exports.ProvisionedThroughput$ = ProvisionedThroughput$;
|
|
4638
|
+
exports.PublicAccess$ = PublicAccess$;
|
|
4639
|
+
exports.PutClusterPolicy$ = PutClusterPolicy$;
|
|
4467
4640
|
exports.PutClusterPolicyCommand = PutClusterPolicyCommand;
|
|
4641
|
+
exports.PutClusterPolicyRequest$ = PutClusterPolicyRequest$;
|
|
4642
|
+
exports.PutClusterPolicyResponse$ = PutClusterPolicyResponse$;
|
|
4643
|
+
exports.Rebalancing$ = Rebalancing$;
|
|
4468
4644
|
exports.RebalancingStatus = RebalancingStatus;
|
|
4645
|
+
exports.RebootBroker$ = RebootBroker$;
|
|
4469
4646
|
exports.RebootBrokerCommand = RebootBrokerCommand;
|
|
4647
|
+
exports.RebootBrokerRequest$ = RebootBrokerRequest$;
|
|
4648
|
+
exports.RebootBrokerResponse$ = RebootBrokerResponse$;
|
|
4649
|
+
exports.RejectClientVpcConnection$ = RejectClientVpcConnection$;
|
|
4470
4650
|
exports.RejectClientVpcConnectionCommand = RejectClientVpcConnectionCommand;
|
|
4651
|
+
exports.RejectClientVpcConnectionRequest$ = RejectClientVpcConnectionRequest$;
|
|
4652
|
+
exports.RejectClientVpcConnectionResponse$ = RejectClientVpcConnectionResponse$;
|
|
4653
|
+
exports.ReplicationInfo$ = ReplicationInfo$;
|
|
4654
|
+
exports.ReplicationInfoDescription$ = ReplicationInfoDescription$;
|
|
4655
|
+
exports.ReplicationInfoSummary$ = ReplicationInfoSummary$;
|
|
4656
|
+
exports.ReplicationStartingPosition$ = ReplicationStartingPosition$;
|
|
4471
4657
|
exports.ReplicationStartingPositionType = ReplicationStartingPositionType;
|
|
4658
|
+
exports.ReplicationStateInfo$ = ReplicationStateInfo$;
|
|
4659
|
+
exports.ReplicationTopicNameConfiguration$ = ReplicationTopicNameConfiguration$;
|
|
4472
4660
|
exports.ReplicationTopicNameConfigurationType = ReplicationTopicNameConfigurationType;
|
|
4473
4661
|
exports.ReplicatorState = ReplicatorState;
|
|
4474
|
-
exports.
|
|
4662
|
+
exports.ReplicatorSummary$ = ReplicatorSummary$;
|
|
4663
|
+
exports.S3$ = S3$;
|
|
4664
|
+
exports.Sasl$ = Sasl$;
|
|
4665
|
+
exports.Scram$ = Scram$;
|
|
4666
|
+
exports.Serverless$ = Serverless$;
|
|
4667
|
+
exports.ServerlessClientAuthentication$ = ServerlessClientAuthentication$;
|
|
4668
|
+
exports.ServerlessRequest$ = ServerlessRequest$;
|
|
4669
|
+
exports.ServerlessSasl$ = ServerlessSasl$;
|
|
4670
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4671
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
4672
|
+
exports.StateInfo$ = StateInfo$;
|
|
4673
|
+
exports.StorageInfo$ = StorageInfo$;
|
|
4475
4674
|
exports.StorageMode = StorageMode;
|
|
4675
|
+
exports.TagResource$ = TagResource$;
|
|
4476
4676
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4677
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4477
4678
|
exports.TargetCompressionType = TargetCompressionType;
|
|
4478
|
-
exports.
|
|
4679
|
+
exports.Tls$ = Tls$;
|
|
4680
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
4681
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
4682
|
+
exports.TopicInfo$ = TopicInfo$;
|
|
4683
|
+
exports.TopicPartitionInfo$ = TopicPartitionInfo$;
|
|
4684
|
+
exports.TopicReplication$ = TopicReplication$;
|
|
4685
|
+
exports.TopicReplicationUpdate$ = TopicReplicationUpdate$;
|
|
4479
4686
|
exports.TopicState = TopicState;
|
|
4480
|
-
exports.
|
|
4687
|
+
exports.Unauthenticated$ = Unauthenticated$;
|
|
4688
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
4689
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
4690
|
+
exports.UnprocessedScramSecret$ = UnprocessedScramSecret$;
|
|
4691
|
+
exports.UntagResource$ = UntagResource$;
|
|
4481
4692
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4693
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4694
|
+
exports.UpdateBrokerCount$ = UpdateBrokerCount$;
|
|
4482
4695
|
exports.UpdateBrokerCountCommand = UpdateBrokerCountCommand;
|
|
4696
|
+
exports.UpdateBrokerCountRequest$ = UpdateBrokerCountRequest$;
|
|
4697
|
+
exports.UpdateBrokerCountResponse$ = UpdateBrokerCountResponse$;
|
|
4698
|
+
exports.UpdateBrokerStorage$ = UpdateBrokerStorage$;
|
|
4483
4699
|
exports.UpdateBrokerStorageCommand = UpdateBrokerStorageCommand;
|
|
4700
|
+
exports.UpdateBrokerStorageRequest$ = UpdateBrokerStorageRequest$;
|
|
4701
|
+
exports.UpdateBrokerStorageResponse$ = UpdateBrokerStorageResponse$;
|
|
4702
|
+
exports.UpdateBrokerType$ = UpdateBrokerType$;
|
|
4484
4703
|
exports.UpdateBrokerTypeCommand = UpdateBrokerTypeCommand;
|
|
4704
|
+
exports.UpdateBrokerTypeRequest$ = UpdateBrokerTypeRequest$;
|
|
4705
|
+
exports.UpdateBrokerTypeResponse$ = UpdateBrokerTypeResponse$;
|
|
4706
|
+
exports.UpdateClusterConfiguration$ = UpdateClusterConfiguration$;
|
|
4485
4707
|
exports.UpdateClusterConfigurationCommand = UpdateClusterConfigurationCommand;
|
|
4708
|
+
exports.UpdateClusterConfigurationRequest$ = UpdateClusterConfigurationRequest$;
|
|
4709
|
+
exports.UpdateClusterConfigurationResponse$ = UpdateClusterConfigurationResponse$;
|
|
4710
|
+
exports.UpdateClusterKafkaVersion$ = UpdateClusterKafkaVersion$;
|
|
4486
4711
|
exports.UpdateClusterKafkaVersionCommand = UpdateClusterKafkaVersionCommand;
|
|
4712
|
+
exports.UpdateClusterKafkaVersionRequest$ = UpdateClusterKafkaVersionRequest$;
|
|
4713
|
+
exports.UpdateClusterKafkaVersionResponse$ = UpdateClusterKafkaVersionResponse$;
|
|
4714
|
+
exports.UpdateConfiguration$ = UpdateConfiguration$;
|
|
4487
4715
|
exports.UpdateConfigurationCommand = UpdateConfigurationCommand;
|
|
4716
|
+
exports.UpdateConfigurationRequest$ = UpdateConfigurationRequest$;
|
|
4717
|
+
exports.UpdateConfigurationResponse$ = UpdateConfigurationResponse$;
|
|
4718
|
+
exports.UpdateConnectivity$ = UpdateConnectivity$;
|
|
4488
4719
|
exports.UpdateConnectivityCommand = UpdateConnectivityCommand;
|
|
4720
|
+
exports.UpdateConnectivityRequest$ = UpdateConnectivityRequest$;
|
|
4721
|
+
exports.UpdateConnectivityResponse$ = UpdateConnectivityResponse$;
|
|
4722
|
+
exports.UpdateMonitoring$ = UpdateMonitoring$;
|
|
4489
4723
|
exports.UpdateMonitoringCommand = UpdateMonitoringCommand;
|
|
4724
|
+
exports.UpdateMonitoringRequest$ = UpdateMonitoringRequest$;
|
|
4725
|
+
exports.UpdateMonitoringResponse$ = UpdateMonitoringResponse$;
|
|
4726
|
+
exports.UpdateRebalancing$ = UpdateRebalancing$;
|
|
4490
4727
|
exports.UpdateRebalancingCommand = UpdateRebalancingCommand;
|
|
4728
|
+
exports.UpdateRebalancingRequest$ = UpdateRebalancingRequest$;
|
|
4729
|
+
exports.UpdateRebalancingResponse$ = UpdateRebalancingResponse$;
|
|
4730
|
+
exports.UpdateReplicationInfo$ = UpdateReplicationInfo$;
|
|
4491
4731
|
exports.UpdateReplicationInfoCommand = UpdateReplicationInfoCommand;
|
|
4732
|
+
exports.UpdateReplicationInfoRequest$ = UpdateReplicationInfoRequest$;
|
|
4733
|
+
exports.UpdateReplicationInfoResponse$ = UpdateReplicationInfoResponse$;
|
|
4734
|
+
exports.UpdateSecurity$ = UpdateSecurity$;
|
|
4492
4735
|
exports.UpdateSecurityCommand = UpdateSecurityCommand;
|
|
4736
|
+
exports.UpdateSecurityRequest$ = UpdateSecurityRequest$;
|
|
4737
|
+
exports.UpdateSecurityResponse$ = UpdateSecurityResponse$;
|
|
4738
|
+
exports.UpdateStorage$ = UpdateStorage$;
|
|
4493
4739
|
exports.UpdateStorageCommand = UpdateStorageCommand;
|
|
4740
|
+
exports.UpdateStorageRequest$ = UpdateStorageRequest$;
|
|
4741
|
+
exports.UpdateStorageResponse$ = UpdateStorageResponse$;
|
|
4742
|
+
exports.UserIdentity$ = UserIdentity$;
|
|
4494
4743
|
exports.UserIdentityType = UserIdentityType;
|
|
4744
|
+
exports.VpcConfig$ = VpcConfig$;
|
|
4745
|
+
exports.VpcConnection$ = VpcConnection$;
|
|
4746
|
+
exports.VpcConnectionInfo$ = VpcConnectionInfo$;
|
|
4747
|
+
exports.VpcConnectionInfoServerless$ = VpcConnectionInfoServerless$;
|
|
4495
4748
|
exports.VpcConnectionState = VpcConnectionState;
|
|
4749
|
+
exports.VpcConnectivity$ = VpcConnectivity$;
|
|
4750
|
+
exports.VpcConnectivityClientAuthentication$ = VpcConnectivityClientAuthentication$;
|
|
4751
|
+
exports.VpcConnectivityIam$ = VpcConnectivityIam$;
|
|
4752
|
+
exports.VpcConnectivitySasl$ = VpcConnectivitySasl$;
|
|
4753
|
+
exports.VpcConnectivityScram$ = VpcConnectivityScram$;
|
|
4754
|
+
exports.VpcConnectivityTls$ = VpcConnectivityTls$;
|
|
4755
|
+
exports.ZookeeperNodeInfo$ = ZookeeperNodeInfo$;
|
|
4496
4756
|
exports.paginateDescribeTopicPartitions = paginateDescribeTopicPartitions;
|
|
4497
4757
|
exports.paginateListClientVpcConnections = paginateListClientVpcConnections;
|
|
4498
4758
|
exports.paginateListClusterOperations = paginateListClusterOperations;
|