kb-cloud-client-typescript 2.3.0-alpha.208 → 2.3.0-alpha.210

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.
Files changed (55) hide show
  1. package/dist/adminapi/apis/account-api.d.ts +0 -206
  2. package/dist/adminapi/apis/account-api.d.ts.map +1 -1
  3. package/dist/adminapi/apis/account-api.js +0 -233
  4. package/dist/adminapi/apis/account-api.js.map +1 -1
  5. package/dist/adminapi/apis/milvus-api.d.ts +0 -207
  6. package/dist/adminapi/apis/milvus-api.d.ts.map +1 -1
  7. package/dist/adminapi/apis/milvus-api.js +0 -233
  8. package/dist/adminapi/apis/milvus-api.js.map +1 -1
  9. package/dist/adminapi/apis/shared-api.d.ts +0 -206
  10. package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
  11. package/dist/adminapi/apis/shared-api.js +0 -233
  12. package/dist/adminapi/apis/shared-api.js.map +1 -1
  13. package/dist/adminapi/models/index.d.ts +0 -1
  14. package/dist/adminapi/models/index.d.ts.map +1 -1
  15. package/dist/adminapi/models/index.js +0 -1
  16. package/dist/adminapi/models/index.js.map +1 -1
  17. package/dist/openapi/apis/account-api.d.ts +0 -206
  18. package/dist/openapi/apis/account-api.d.ts.map +1 -1
  19. package/dist/openapi/apis/account-api.js +0 -233
  20. package/dist/openapi/apis/account-api.js.map +1 -1
  21. package/dist/openapi/apis/milvus-api.d.ts +0 -207
  22. package/dist/openapi/apis/milvus-api.d.ts.map +1 -1
  23. package/dist/openapi/apis/milvus-api.js +0 -233
  24. package/dist/openapi/apis/milvus-api.js.map +1 -1
  25. package/dist/openapi/apis/shared-api.d.ts +0 -206
  26. package/dist/openapi/apis/shared-api.d.ts.map +1 -1
  27. package/dist/openapi/apis/shared-api.js +0 -233
  28. package/dist/openapi/apis/shared-api.js.map +1 -1
  29. package/dist/openapi/models/index.d.ts +0 -1
  30. package/dist/openapi/models/index.d.ts.map +1 -1
  31. package/dist/openapi/models/index.js +0 -1
  32. package/dist/openapi/models/index.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/adminapi/.openapi-generator/FILES +0 -1
  35. package/src/adminapi/apis/account-api.ts +0 -364
  36. package/src/adminapi/apis/milvus-api.ts +0 -366
  37. package/src/adminapi/apis/shared-api.ts +0 -364
  38. package/src/adminapi/models/index.ts +0 -1
  39. package/src/adminapi.yaml +0 -150
  40. package/src/openapi/.openapi-generator/FILES +0 -1
  41. package/src/openapi/apis/account-api.ts +0 -364
  42. package/src/openapi/apis/milvus-api.ts +0 -366
  43. package/src/openapi/apis/shared-api.ts +0 -364
  44. package/src/openapi/models/index.ts +0 -1
  45. package/src/openapi.yaml +0 -150
  46. package/dist/adminapi/models/milvus-account.d.ts +0 -49
  47. package/dist/adminapi/models/milvus-account.d.ts.map +0 -1
  48. package/dist/adminapi/models/milvus-account.js +0 -16
  49. package/dist/adminapi/models/milvus-account.js.map +0 -1
  50. package/dist/openapi/models/milvus-account.d.ts +0 -49
  51. package/dist/openapi/models/milvus-account.d.ts.map +0 -1
  52. package/dist/openapi/models/milvus-account.js +0 -16
  53. package/dist/openapi/models/milvus-account.js.map +0 -1
  54. package/src/adminapi/models/milvus-account.ts +0 -54
  55. package/src/openapi/models/milvus-account.ts +0 -54
@@ -1117,49 +1117,6 @@ const SharedApiAxiosParamCreator = function (configuration) {
1117
1117
  options: localVarRequestOptions,
1118
1118
  };
1119
1119
  },
1120
- /**
1121
- * Create a Milvus account.
1122
- * @summary Create Milvus account
1123
- * @param {string} orgName name of the Org
1124
- * @param {string} clusterName name of the Cluster
1125
- * @param {MilvusAccount} body
1126
- * @param {*} [options] Override http request option.
1127
- * @throws {RequiredError}
1128
- */
1129
- createMilvusAccount: async (orgName, clusterName, body, options = {}) => {
1130
- // verify required parameter 'orgName' is not null or undefined
1131
- (0, common_1.assertParamExists)('createMilvusAccount', 'orgName', orgName);
1132
- // verify required parameter 'clusterName' is not null or undefined
1133
- (0, common_1.assertParamExists)('createMilvusAccount', 'clusterName', clusterName);
1134
- // verify required parameter 'body' is not null or undefined
1135
- (0, common_1.assertParamExists)('createMilvusAccount', 'body', body);
1136
- const localVarPath = `/api/v1/data/milvus/organizations/{orgName}/clusters/{clusterName}/accounts`
1137
- .replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
1138
- .replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)));
1139
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
1140
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1141
- let baseOptions;
1142
- if (configuration) {
1143
- baseOptions = configuration.baseOptions;
1144
- }
1145
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1146
- const localVarHeaderParameter = {};
1147
- const localVarQueryParameter = {};
1148
- // authentication BearerToken required
1149
- // http bearer authentication required
1150
- await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1151
- // authentication DigestAuth required
1152
- await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
1153
- localVarHeaderParameter['Content-Type'] = 'application/json';
1154
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1155
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1156
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1157
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
1158
- return {
1159
- url: (0, common_1.toPathString)(localVarUrlObj),
1160
- options: localVarRequestOptions,
1161
- };
1162
- },
1163
1120
  /**
1164
1121
  * create an account in mongodb
1165
1122
  * @summary Create mongodb account
@@ -2414,48 +2371,6 @@ const SharedApiAxiosParamCreator = function (configuration) {
2414
2371
  options: localVarRequestOptions,
2415
2372
  };
2416
2373
  },
2417
- /**
2418
- * Delete a Milvus account.
2419
- * @summary Delete Milvus account
2420
- * @param {string} orgName name of the Org
2421
- * @param {string} clusterName name of the Cluster
2422
- * @param {string} accountName name of the Account
2423
- * @param {*} [options] Override http request option.
2424
- * @throws {RequiredError}
2425
- */
2426
- deleteMilvusAccount: async (orgName, clusterName, accountName, options = {}) => {
2427
- // verify required parameter 'orgName' is not null or undefined
2428
- (0, common_1.assertParamExists)('deleteMilvusAccount', 'orgName', orgName);
2429
- // verify required parameter 'clusterName' is not null or undefined
2430
- (0, common_1.assertParamExists)('deleteMilvusAccount', 'clusterName', clusterName);
2431
- // verify required parameter 'accountName' is not null or undefined
2432
- (0, common_1.assertParamExists)('deleteMilvusAccount', 'accountName', accountName);
2433
- const localVarPath = `/api/v1/data/milvus/organizations/{orgName}/clusters/{clusterName}/accounts/{accountName}`
2434
- .replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
2435
- .replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
2436
- .replace(`{${"accountName"}}`, encodeURIComponent(String(accountName)));
2437
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2438
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2439
- let baseOptions;
2440
- if (configuration) {
2441
- baseOptions = configuration.baseOptions;
2442
- }
2443
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
2444
- const localVarHeaderParameter = {};
2445
- const localVarQueryParameter = {};
2446
- // authentication BearerToken required
2447
- // http bearer authentication required
2448
- await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
2449
- // authentication DigestAuth required
2450
- await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
2451
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2452
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2453
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2454
- return {
2455
- url: (0, common_1.toPathString)(localVarUrlObj),
2456
- options: localVarRequestOptions,
2457
- };
2458
- },
2459
2374
  /**
2460
2375
  * delete an account in mongodb
2461
2376
  * @summary Delete mongodb account
@@ -7439,44 +7354,6 @@ const SharedApiAxiosParamCreator = function (configuration) {
7439
7354
  options: localVarRequestOptions,
7440
7355
  };
7441
7356
  },
7442
- /**
7443
- * List Milvus accounts.
7444
- * @summary List Milvus accounts
7445
- * @param {string} orgName name of the Org
7446
- * @param {string} clusterName name of the Cluster
7447
- * @param {*} [options] Override http request option.
7448
- * @throws {RequiredError}
7449
- */
7450
- listMilvusAccounts: async (orgName, clusterName, options = {}) => {
7451
- // verify required parameter 'orgName' is not null or undefined
7452
- (0, common_1.assertParamExists)('listMilvusAccounts', 'orgName', orgName);
7453
- // verify required parameter 'clusterName' is not null or undefined
7454
- (0, common_1.assertParamExists)('listMilvusAccounts', 'clusterName', clusterName);
7455
- const localVarPath = `/api/v1/data/milvus/organizations/{orgName}/clusters/{clusterName}/accounts`
7456
- .replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
7457
- .replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)));
7458
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
7459
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
7460
- let baseOptions;
7461
- if (configuration) {
7462
- baseOptions = configuration.baseOptions;
7463
- }
7464
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
7465
- const localVarHeaderParameter = {};
7466
- const localVarQueryParameter = {};
7467
- // authentication BearerToken required
7468
- // http bearer authentication required
7469
- await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
7470
- // authentication DigestAuth required
7471
- await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
7472
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
7473
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7474
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
7475
- return {
7476
- url: (0, common_1.toPathString)(localVarUrlObj),
7477
- options: localVarRequestOptions,
7478
- };
7479
- },
7480
7357
  /**
7481
7358
  * list accounts in mongodb
7482
7359
  * @summary List mongodb accounts
@@ -13078,22 +12955,6 @@ const SharedApiFp = function (configuration) {
13078
12955
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.createKafkaTopic']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
13079
12956
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
13080
12957
  },
13081
- /**
13082
- * Create a Milvus account.
13083
- * @summary Create Milvus account
13084
- * @param {string} orgName name of the Org
13085
- * @param {string} clusterName name of the Cluster
13086
- * @param {MilvusAccount} body
13087
- * @param {*} [options] Override http request option.
13088
- * @throws {RequiredError}
13089
- */
13090
- async createMilvusAccount(orgName, clusterName, body, options) {
13091
- var _a, _b, _c;
13092
- const localVarAxiosArgs = await localVarAxiosParamCreator.createMilvusAccount(orgName, clusterName, body, options);
13093
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
13094
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.createMilvusAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
13095
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
13096
- },
13097
12958
  /**
13098
12959
  * create an account in mongodb
13099
12960
  * @summary Create mongodb account
@@ -13570,22 +13431,6 @@ const SharedApiFp = function (configuration) {
13570
13431
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.deleteKafkaTopic']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
13571
13432
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
13572
13433
  },
13573
- /**
13574
- * Delete a Milvus account.
13575
- * @summary Delete Milvus account
13576
- * @param {string} orgName name of the Org
13577
- * @param {string} clusterName name of the Cluster
13578
- * @param {string} accountName name of the Account
13579
- * @param {*} [options] Override http request option.
13580
- * @throws {RequiredError}
13581
- */
13582
- async deleteMilvusAccount(orgName, clusterName, accountName, options) {
13583
- var _a, _b, _c;
13584
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMilvusAccount(orgName, clusterName, accountName, options);
13585
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
13586
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.deleteMilvusAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
13587
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
13588
- },
13589
13434
  /**
13590
13435
  * delete an account in mongodb
13591
13436
  * @summary Delete mongodb account
@@ -15417,21 +15262,6 @@ const SharedApiFp = function (configuration) {
15417
15262
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listKafkaTopicMessages']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
15418
15263
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15419
15264
  },
15420
- /**
15421
- * List Milvus accounts.
15422
- * @summary List Milvus accounts
15423
- * @param {string} orgName name of the Org
15424
- * @param {string} clusterName name of the Cluster
15425
- * @param {*} [options] Override http request option.
15426
- * @throws {RequiredError}
15427
- */
15428
- async listMilvusAccounts(orgName, clusterName, options) {
15429
- var _a, _b, _c;
15430
- const localVarAxiosArgs = await localVarAxiosParamCreator.listMilvusAccounts(orgName, clusterName, options);
15431
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
15432
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listMilvusAccounts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
15433
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15434
- },
15435
15265
  /**
15436
15266
  * list accounts in mongodb
15437
15267
  * @summary List mongodb accounts
@@ -17544,16 +17374,6 @@ const SharedApiFactory = function (configuration, basePath, axios) {
17544
17374
  createKafkaTopic(requestParameters, options) {
17545
17375
  return localVarFp.createKafkaTopic(requestParameters.orgName, requestParameters.clusterName, requestParameters.createTopicRequest, options).then((request) => request(axios, basePath));
17546
17376
  },
17547
- /**
17548
- * Create a Milvus account.
17549
- * @summary Create Milvus account
17550
- * @param {SharedApiCreateMilvusAccountRequest} requestParameters Request parameters.
17551
- * @param {*} [options] Override http request option.
17552
- * @throws {RequiredError}
17553
- */
17554
- createMilvusAccount(requestParameters, options) {
17555
- return localVarFp.createMilvusAccount(requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(axios, basePath));
17556
- },
17557
17377
  /**
17558
17378
  * create an account in mongodb
17559
17379
  * @summary Create mongodb account
@@ -17854,16 +17674,6 @@ const SharedApiFactory = function (configuration, basePath, axios) {
17854
17674
  deleteKafkaTopic(requestParameters, options) {
17855
17675
  return localVarFp.deleteKafkaTopic(requestParameters.orgName, requestParameters.clusterName, requestParameters.topic, options).then((request) => request(axios, basePath));
17856
17676
  },
17857
- /**
17858
- * Delete a Milvus account.
17859
- * @summary Delete Milvus account
17860
- * @param {SharedApiDeleteMilvusAccountRequest} requestParameters Request parameters.
17861
- * @param {*} [options] Override http request option.
17862
- * @throws {RequiredError}
17863
- */
17864
- deleteMilvusAccount(requestParameters, options) {
17865
- return localVarFp.deleteMilvusAccount(requestParameters.orgName, requestParameters.clusterName, requestParameters.accountName, options).then((request) => request(axios, basePath));
17866
- },
17867
17677
  /**
17868
17678
  * delete an account in mongodb
17869
17679
  * @summary Delete mongodb account
@@ -18952,16 +18762,6 @@ const SharedApiFactory = function (configuration, basePath, axios) {
18952
18762
  listKafkaTopicMessages(requestParameters, options) {
18953
18763
  return localVarFp.listKafkaTopicMessages(requestParameters.orgName, requestParameters.clusterName, requestParameters.topic, requestParameters.partition, requestParameters.offset, requestParameters.count, requestParameters.keyFilter, requestParameters.valueFilter, options).then((request) => request(axios, basePath));
18954
18764
  },
18955
- /**
18956
- * List Milvus accounts.
18957
- * @summary List Milvus accounts
18958
- * @param {SharedApiListMilvusAccountsRequest} requestParameters Request parameters.
18959
- * @param {*} [options] Override http request option.
18960
- * @throws {RequiredError}
18961
- */
18962
- listMilvusAccounts(requestParameters, options) {
18963
- return localVarFp.listMilvusAccounts(requestParameters.orgName, requestParameters.clusterName, options).then((request) => request(axios, basePath));
18964
- },
18965
18765
  /**
18966
18766
  * list accounts in mongodb
18967
18767
  * @summary List mongodb accounts
@@ -20312,17 +20112,6 @@ class SharedApi extends base_1.BaseAPI {
20312
20112
  createKafkaTopic(requestParameters, options) {
20313
20113
  return (0, exports.SharedApiFp)(this.configuration).createKafkaTopic(requestParameters.orgName, requestParameters.clusterName, requestParameters.createTopicRequest, options).then((request) => request(this.axios, this.basePath));
20314
20114
  }
20315
- /**
20316
- * Create a Milvus account.
20317
- * @summary Create Milvus account
20318
- * @param {SharedApiCreateMilvusAccountRequest} requestParameters Request parameters.
20319
- * @param {*} [options] Override http request option.
20320
- * @throws {RequiredError}
20321
- * @memberof SharedApi
20322
- */
20323
- createMilvusAccount(requestParameters, options) {
20324
- return (0, exports.SharedApiFp)(this.configuration).createMilvusAccount(requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
20325
- }
20326
20115
  /**
20327
20116
  * create an account in mongodb
20328
20117
  * @summary Create mongodb account
@@ -20653,17 +20442,6 @@ class SharedApi extends base_1.BaseAPI {
20653
20442
  deleteKafkaTopic(requestParameters, options) {
20654
20443
  return (0, exports.SharedApiFp)(this.configuration).deleteKafkaTopic(requestParameters.orgName, requestParameters.clusterName, requestParameters.topic, options).then((request) => request(this.axios, this.basePath));
20655
20444
  }
20656
- /**
20657
- * Delete a Milvus account.
20658
- * @summary Delete Milvus account
20659
- * @param {SharedApiDeleteMilvusAccountRequest} requestParameters Request parameters.
20660
- * @param {*} [options] Override http request option.
20661
- * @throws {RequiredError}
20662
- * @memberof SharedApi
20663
- */
20664
- deleteMilvusAccount(requestParameters, options) {
20665
- return (0, exports.SharedApiFp)(this.configuration).deleteMilvusAccount(requestParameters.orgName, requestParameters.clusterName, requestParameters.accountName, options).then((request) => request(this.axios, this.basePath));
20666
- }
20667
20445
  /**
20668
20446
  * delete an account in mongodb
20669
20447
  * @summary Delete mongodb account
@@ -21861,17 +21639,6 @@ class SharedApi extends base_1.BaseAPI {
21861
21639
  listKafkaTopicMessages(requestParameters, options) {
21862
21640
  return (0, exports.SharedApiFp)(this.configuration).listKafkaTopicMessages(requestParameters.orgName, requestParameters.clusterName, requestParameters.topic, requestParameters.partition, requestParameters.offset, requestParameters.count, requestParameters.keyFilter, requestParameters.valueFilter, options).then((request) => request(this.axios, this.basePath));
21863
21641
  }
21864
- /**
21865
- * List Milvus accounts.
21866
- * @summary List Milvus accounts
21867
- * @param {SharedApiListMilvusAccountsRequest} requestParameters Request parameters.
21868
- * @param {*} [options] Override http request option.
21869
- * @throws {RequiredError}
21870
- * @memberof SharedApi
21871
- */
21872
- listMilvusAccounts(requestParameters, options) {
21873
- return (0, exports.SharedApiFp)(this.configuration).listMilvusAccounts(requestParameters.orgName, requestParameters.clusterName, options).then((request) => request(this.axios, this.basePath));
21874
- }
21875
21642
  /**
21876
21643
  * list accounts in mongodb
21877
21644
  * @summary List mongodb accounts