kb-cloud-client-typescript 2.3.0-alpha.205 → 2.3.0-alpha.207

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 (85) hide show
  1. package/dist/adminapi/api.d.ts +1 -0
  2. package/dist/adminapi/api.d.ts.map +1 -1
  3. package/dist/adminapi/api.js +1 -0
  4. package/dist/adminapi/api.js.map +1 -1
  5. package/dist/adminapi/apis/account-api.d.ts +366 -0
  6. package/dist/adminapi/apis/account-api.d.ts.map +1 -1
  7. package/dist/adminapi/apis/account-api.js +403 -0
  8. package/dist/adminapi/apis/account-api.js.map +1 -1
  9. package/dist/adminapi/apis/milvus-api.d.ts +415 -0
  10. package/dist/adminapi/apis/milvus-api.d.ts.map +1 -0
  11. package/dist/adminapi/apis/milvus-api.js +467 -0
  12. package/dist/adminapi/apis/milvus-api.js.map +1 -0
  13. package/dist/adminapi/apis/shared-api.d.ts +366 -0
  14. package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
  15. package/dist/adminapi/apis/shared-api.js +403 -0
  16. package/dist/adminapi/apis/shared-api.js.map +1 -1
  17. package/dist/adminapi/models/index.d.ts +3 -0
  18. package/dist/adminapi/models/index.d.ts.map +1 -1
  19. package/dist/adminapi/models/index.js +3 -0
  20. package/dist/adminapi/models/index.js.map +1 -1
  21. package/dist/adminapi/models/milvus-account-password.d.ts +31 -0
  22. package/dist/adminapi/models/milvus-account-password.d.ts.map +1 -0
  23. package/dist/adminapi/models/milvus-account-password.js +16 -0
  24. package/dist/adminapi/models/milvus-account-password.js.map +1 -0
  25. package/dist/adminapi/models/milvus-account-roles.d.ts +31 -0
  26. package/dist/adminapi/models/milvus-account-roles.d.ts.map +1 -0
  27. package/dist/adminapi/models/milvus-account-roles.js +16 -0
  28. package/dist/adminapi/models/milvus-account-roles.js.map +1 -0
  29. package/dist/adminapi/models/milvus-account.d.ts +49 -0
  30. package/dist/adminapi/models/milvus-account.d.ts.map +1 -0
  31. package/dist/adminapi/models/milvus-account.js +16 -0
  32. package/dist/adminapi/models/milvus-account.js.map +1 -0
  33. package/dist/openapi/api.d.ts +1 -0
  34. package/dist/openapi/api.d.ts.map +1 -1
  35. package/dist/openapi/api.js +1 -0
  36. package/dist/openapi/api.js.map +1 -1
  37. package/dist/openapi/apis/account-api.d.ts +366 -0
  38. package/dist/openapi/apis/account-api.d.ts.map +1 -1
  39. package/dist/openapi/apis/account-api.js +403 -0
  40. package/dist/openapi/apis/account-api.js.map +1 -1
  41. package/dist/openapi/apis/milvus-api.d.ts +415 -0
  42. package/dist/openapi/apis/milvus-api.d.ts.map +1 -0
  43. package/dist/openapi/apis/milvus-api.js +467 -0
  44. package/dist/openapi/apis/milvus-api.js.map +1 -0
  45. package/dist/openapi/apis/shared-api.d.ts +366 -0
  46. package/dist/openapi/apis/shared-api.d.ts.map +1 -1
  47. package/dist/openapi/apis/shared-api.js +403 -0
  48. package/dist/openapi/apis/shared-api.js.map +1 -1
  49. package/dist/openapi/models/index.d.ts +3 -0
  50. package/dist/openapi/models/index.d.ts.map +1 -1
  51. package/dist/openapi/models/index.js +3 -0
  52. package/dist/openapi/models/index.js.map +1 -1
  53. package/dist/openapi/models/milvus-account-password.d.ts +31 -0
  54. package/dist/openapi/models/milvus-account-password.d.ts.map +1 -0
  55. package/dist/openapi/models/milvus-account-password.js +16 -0
  56. package/dist/openapi/models/milvus-account-password.js.map +1 -0
  57. package/dist/openapi/models/milvus-account-roles.d.ts +31 -0
  58. package/dist/openapi/models/milvus-account-roles.d.ts.map +1 -0
  59. package/dist/openapi/models/milvus-account-roles.js +16 -0
  60. package/dist/openapi/models/milvus-account-roles.js.map +1 -0
  61. package/dist/openapi/models/milvus-account.d.ts +49 -0
  62. package/dist/openapi/models/milvus-account.d.ts.map +1 -0
  63. package/dist/openapi/models/milvus-account.js +16 -0
  64. package/dist/openapi/models/milvus-account.js.map +1 -0
  65. package/package.json +1 -1
  66. package/src/adminapi/.openapi-generator/FILES +4 -0
  67. package/src/adminapi/api.ts +1 -0
  68. package/src/adminapi/apis/account-api.ts +644 -0
  69. package/src/adminapi/apis/milvus-api.ts +716 -0
  70. package/src/adminapi/apis/shared-api.ts +644 -0
  71. package/src/adminapi/models/index.ts +3 -0
  72. package/src/adminapi/models/milvus-account-password.ts +36 -0
  73. package/src/adminapi/models/milvus-account-roles.ts +36 -0
  74. package/src/adminapi/models/milvus-account.ts +54 -0
  75. package/src/adminapi.yaml +275 -0
  76. package/src/openapi/.openapi-generator/FILES +4 -0
  77. package/src/openapi/api.ts +1 -0
  78. package/src/openapi/apis/account-api.ts +644 -0
  79. package/src/openapi/apis/milvus-api.ts +716 -0
  80. package/src/openapi/apis/shared-api.ts +644 -0
  81. package/src/openapi/models/index.ts +3 -0
  82. package/src/openapi/models/milvus-account-password.ts +36 -0
  83. package/src/openapi/models/milvus-account-roles.ts +36 -0
  84. package/src/openapi/models/milvus-account.ts +54 -0
  85. package/src/openapi.yaml +275 -0
@@ -62,6 +62,7 @@ export * from './apis/mark-cluster-api';
62
62
  export * from './apis/member-api';
63
63
  export * from './apis/metering-api';
64
64
  export * from './apis/metrics-api';
65
+ export * from './apis/milvus-api';
65
66
  export * from './apis/mongodb-api';
66
67
  export * from './apis/monitor-data-sink-api';
67
68
  export * from './apis/mssql-api';
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/adminapi/api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/adminapi/api.ts"],"names":[],"mappings":"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"}
@@ -80,6 +80,7 @@ __exportStar(require("./apis/mark-cluster-api"), exports);
80
80
  __exportStar(require("./apis/member-api"), exports);
81
81
  __exportStar(require("./apis/metering-api"), exports);
82
82
  __exportStar(require("./apis/metrics-api"), exports);
83
+ __exportStar(require("./apis/milvus-api"), exports);
83
84
  __exportStar(require("./apis/mongodb-api"), exports);
84
85
  __exportStar(require("./apis/monitor-data-sink-api"), exports);
85
86
  __exportStar(require("./apis/mssql-api"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/adminapi/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;AAIH,qDAAmC;AACnC,qDAAmC;AACnC,2DAAyC;AACzC,mDAAiC;AACjC,0DAAwC;AACxC,2DAAyC;AACzC,0DAAwC;AACxC,4DAA0C;AAC1C,wDAAsC;AACtC,8DAA4C;AAC5C,4DAA0C;AAC1C,4DAA0C;AAC1C,yDAAuC;AACvC,oDAAkC;AAClC,2DAAyC;AACzC,yDAAuC;AACvC,qDAAmC;AACnC,mDAAiC;AACjC,yDAAuC;AACvC,qDAAmC;AACnC,kEAAgD;AAChD,yDAAuC;AACvC,yDAAuC;AACvC,oDAAkC;AAClC,sDAAoC;AACpC,iEAA+C;AAC/C,yDAAuC;AACvC,+DAA6C;AAC7C,iDAA+B;AAC/B,2DAAyC;AACzC,oEAAkD;AAClD,oDAAkC;AAClC,4DAA0C;AAC1C,2DAAyC;AACzC,yDAAuC;AACvC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,kDAAgC;AAChC,4DAA0C;AAC1C,oDAAkC;AAClC,wDAAsC;AACtC,sDAAoC;AACpC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,qDAAmC;AACnC,iDAA+B;AAC/B,2DAAyC;AACzC,0DAAwC;AACxC,oDAAkC;AAClC,sDAAoC;AACpC,qDAAmC;AACnC,qDAAmC;AACnC,+DAA6C;AAC7C,mDAAiC;AACjC,uDAAqC;AACrC,wDAAsC;AACtC,0DAAwC;AACxC,oEAAkD;AAClD,yEAAuD;AACvD,uDAAqC;AACrC,gEAA8C;AAC9C,gEAA8C;AAC9C,gEAA8C;AAC9C,wDAAsC;AACtC,qDAAmC;AACnC,sDAAoC;AACpC,qDAAmC;AACnC,sDAAoC;AACpC,sDAAoC;AACpC,mDAAiC;AACjC,iEAA+C;AAC/C,mDAAiC;AACjC,sDAAoC;AACpC,4DAA0C;AAC1C,qDAAmC;AACnC,kDAAgC;AAChC,gDAA8B;AAC9B,6DAA2C;AAC3C,qDAAmC;AACnC,oDAAkC;AAClC,qDAAmC;AACnC,2DAAyC;AACzC,kDAAgC;AAChC,iDAA+B;AAC/B,kDAAgC;AAChC,mDAAiC;AACjC,sDAAoC;AACpC,kDAAgC"}
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/adminapi/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;AAIH,qDAAmC;AACnC,qDAAmC;AACnC,2DAAyC;AACzC,mDAAiC;AACjC,0DAAwC;AACxC,2DAAyC;AACzC,0DAAwC;AACxC,4DAA0C;AAC1C,wDAAsC;AACtC,8DAA4C;AAC5C,4DAA0C;AAC1C,4DAA0C;AAC1C,yDAAuC;AACvC,oDAAkC;AAClC,2DAAyC;AACzC,yDAAuC;AACvC,qDAAmC;AACnC,mDAAiC;AACjC,yDAAuC;AACvC,qDAAmC;AACnC,kEAAgD;AAChD,yDAAuC;AACvC,yDAAuC;AACvC,oDAAkC;AAClC,sDAAoC;AACpC,iEAA+C;AAC/C,yDAAuC;AACvC,+DAA6C;AAC7C,iDAA+B;AAC/B,2DAAyC;AACzC,oEAAkD;AAClD,oDAAkC;AAClC,4DAA0C;AAC1C,2DAAyC;AACzC,yDAAuC;AACvC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,kDAAgC;AAChC,4DAA0C;AAC1C,oDAAkC;AAClC,wDAAsC;AACtC,sDAAoC;AACpC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,qDAAmC;AACnC,iDAA+B;AAC/B,2DAAyC;AACzC,0DAAwC;AACxC,oDAAkC;AAClC,sDAAoC;AACpC,qDAAmC;AACnC,oDAAkC;AAClC,qDAAmC;AACnC,+DAA6C;AAC7C,mDAAiC;AACjC,uDAAqC;AACrC,wDAAsC;AACtC,0DAAwC;AACxC,oEAAkD;AAClD,yEAAuD;AACvD,uDAAqC;AACrC,gEAA8C;AAC9C,gEAA8C;AAC9C,gEAA8C;AAC9C,wDAAsC;AACtC,qDAAmC;AACnC,sDAAoC;AACpC,qDAAmC;AACnC,sDAAoC;AACpC,sDAAoC;AACpC,mDAAiC;AACjC,iEAA+C;AAC/C,mDAAiC;AACjC,sDAAoC;AACpC,4DAA0C;AAC1C,qDAAmC;AACnC,kDAAgC;AAChC,gDAA8B;AAC9B,6DAA2C;AAC3C,qDAAmC;AACnC,oDAAkC;AAClC,qDAAmC;AACnC,2DAAyC;AACzC,kDAAgC;AAChC,iDAA+B;AAC/B,kDAAgC;AAChC,mDAAiC;AACjC,sDAAoC;AACpC,kDAAgC"}
@@ -17,6 +17,9 @@ import type { AccountListItem } from '../models';
17
17
  import type { DmsServiceAccount } from '../models';
18
18
  import type { DmsServiceAccountCreateRequest } from '../models';
19
19
  import type { DmsServiceAccountUpdateRequest } from '../models';
20
+ import type { MilvusAccount } from '../models';
21
+ import type { MilvusAccountPassword } from '../models';
22
+ import type { MilvusAccountRoles } from '../models';
20
23
  import type { PrivilegeListItem } from '../models';
21
24
  import type { RbmqAccountRequest } from '../models';
22
25
  import type { RbmqAccountsList } from '../models';
@@ -58,6 +61,16 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
58
61
  * @throws {RequiredError}
59
62
  */
60
63
  createKafkaAccount: (orgName: string, clusterName: string, body: Account, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64
+ /**
65
+ * Create a Milvus account.
66
+ * @summary Create Milvus account
67
+ * @param {string} orgName name of the Org
68
+ * @param {string} clusterName name of the Cluster
69
+ * @param {MilvusAccount} body
70
+ * @param {*} [options] Override http request option.
71
+ * @throws {RequiredError}
72
+ */
73
+ createMilvusAccount: (orgName: string, clusterName: string, body: MilvusAccount, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
61
74
  /**
62
75
  * create an account in mongodb
63
76
  * @summary Create mongodb account
@@ -120,6 +133,16 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
120
133
  * @throws {RequiredError}
121
134
  */
122
135
  deleteKafkaAccount: (orgName: string, clusterName: string, accountName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
136
+ /**
137
+ * Delete a Milvus account.
138
+ * @summary Delete Milvus account
139
+ * @param {string} orgName name of the Org
140
+ * @param {string} clusterName name of the Cluster
141
+ * @param {string} accountName name of the Account
142
+ * @param {*} [options] Override http request option.
143
+ * @throws {RequiredError}
144
+ */
145
+ deleteMilvusAccount: (orgName: string, clusterName: string, accountName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
123
146
  /**
124
147
  * delete an account in mongodb
125
148
  * @summary Delete mongodb account
@@ -212,6 +235,15 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
212
235
  * @throws {RequiredError}
213
236
  */
214
237
  listKafkaAccounts: (orgName: string, clusterName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
238
+ /**
239
+ * List Milvus accounts.
240
+ * @summary List Milvus accounts
241
+ * @param {string} orgName name of the Org
242
+ * @param {string} clusterName name of the Cluster
243
+ * @param {*} [options] Override http request option.
244
+ * @throws {RequiredError}
245
+ */
246
+ listMilvusAccounts: (orgName: string, clusterName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
215
247
  /**
216
248
  * list accounts in mongodb
217
249
  * @summary List mongodb accounts
@@ -309,6 +341,28 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
309
341
  * @throws {RequiredError}
310
342
  */
311
343
  updateKafkaAccount: (orgName: string, clusterName: string, accountName: string, body: Account, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
344
+ /**
345
+ * Update a Milvus account password.
346
+ * @summary Update Milvus account password
347
+ * @param {string} orgName name of the Org
348
+ * @param {string} clusterName name of the Cluster
349
+ * @param {string} accountName name of the Account
350
+ * @param {MilvusAccountPassword} body
351
+ * @param {*} [options] Override http request option.
352
+ * @throws {RequiredError}
353
+ */
354
+ updateMilvusAccountPassword: (orgName: string, clusterName: string, accountName: string, body: MilvusAccountPassword, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
355
+ /**
356
+ * Replace a Milvus account\'s role assignments.
357
+ * @summary Update Milvus account roles
358
+ * @param {string} orgName name of the Org
359
+ * @param {string} clusterName name of the Cluster
360
+ * @param {string} accountName name of the Account
361
+ * @param {MilvusAccountRoles} body
362
+ * @param {*} [options] Override http request option.
363
+ * @throws {RequiredError}
364
+ */
365
+ updateMilvusAccountRoles: (orgName: string, clusterName: string, accountName: string, body: MilvusAccountRoles, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
312
366
  /**
313
367
  *
314
368
  * @summary update mssql account compatible with windows account
@@ -390,6 +444,16 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
390
444
  * @throws {RequiredError}
391
445
  */
392
446
  createKafkaAccount(orgName: string, clusterName: string, body: Account, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Account>>;
447
+ /**
448
+ * Create a Milvus account.
449
+ * @summary Create Milvus account
450
+ * @param {string} orgName name of the Org
451
+ * @param {string} clusterName name of the Cluster
452
+ * @param {MilvusAccount} body
453
+ * @param {*} [options] Override http request option.
454
+ * @throws {RequiredError}
455
+ */
456
+ createMilvusAccount(orgName: string, clusterName: string, body: MilvusAccount, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountListItem>>;
393
457
  /**
394
458
  * create an account in mongodb
395
459
  * @summary Create mongodb account
@@ -452,6 +516,16 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
452
516
  * @throws {RequiredError}
453
517
  */
454
518
  deleteKafkaAccount(orgName: string, clusterName: string, accountName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
519
+ /**
520
+ * Delete a Milvus account.
521
+ * @summary Delete Milvus account
522
+ * @param {string} orgName name of the Org
523
+ * @param {string} clusterName name of the Cluster
524
+ * @param {string} accountName name of the Account
525
+ * @param {*} [options] Override http request option.
526
+ * @throws {RequiredError}
527
+ */
528
+ deleteMilvusAccount(orgName: string, clusterName: string, accountName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
455
529
  /**
456
530
  * delete an account in mongodb
457
531
  * @summary Delete mongodb account
@@ -544,6 +618,15 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
544
618
  * @throws {RequiredError}
545
619
  */
546
620
  listKafkaAccounts(orgName: string, clusterName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountListItem>>>;
621
+ /**
622
+ * List Milvus accounts.
623
+ * @summary List Milvus accounts
624
+ * @param {string} orgName name of the Org
625
+ * @param {string} clusterName name of the Cluster
626
+ * @param {*} [options] Override http request option.
627
+ * @throws {RequiredError}
628
+ */
629
+ listMilvusAccounts(orgName: string, clusterName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountListItem>>>;
547
630
  /**
548
631
  * list accounts in mongodb
549
632
  * @summary List mongodb accounts
@@ -641,6 +724,28 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
641
724
  * @throws {RequiredError}
642
725
  */
643
726
  updateKafkaAccount(orgName: string, clusterName: string, accountName: string, body: Account, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Account>>;
727
+ /**
728
+ * Update a Milvus account password.
729
+ * @summary Update Milvus account password
730
+ * @param {string} orgName name of the Org
731
+ * @param {string} clusterName name of the Cluster
732
+ * @param {string} accountName name of the Account
733
+ * @param {MilvusAccountPassword} body
734
+ * @param {*} [options] Override http request option.
735
+ * @throws {RequiredError}
736
+ */
737
+ updateMilvusAccountPassword(orgName: string, clusterName: string, accountName: string, body: MilvusAccountPassword, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
738
+ /**
739
+ * Replace a Milvus account\'s role assignments.
740
+ * @summary Update Milvus account roles
741
+ * @param {string} orgName name of the Org
742
+ * @param {string} clusterName name of the Cluster
743
+ * @param {string} accountName name of the Account
744
+ * @param {MilvusAccountRoles} body
745
+ * @param {*} [options] Override http request option.
746
+ * @throws {RequiredError}
747
+ */
748
+ updateMilvusAccountRoles(orgName: string, clusterName: string, accountName: string, body: MilvusAccountRoles, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
644
749
  /**
645
750
  *
646
751
  * @summary update mssql account compatible with windows account
@@ -715,6 +820,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
715
820
  * @throws {RequiredError}
716
821
  */
717
822
  createKafkaAccount(requestParameters: AccountApiCreateKafkaAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<Account>;
823
+ /**
824
+ * Create a Milvus account.
825
+ * @summary Create Milvus account
826
+ * @param {AccountApiCreateMilvusAccountRequest} requestParameters Request parameters.
827
+ * @param {*} [options] Override http request option.
828
+ * @throws {RequiredError}
829
+ */
830
+ createMilvusAccount(requestParameters: AccountApiCreateMilvusAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountListItem>;
718
831
  /**
719
832
  * create an account in mongodb
720
833
  * @summary Create mongodb account
@@ -763,6 +876,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
763
876
  * @throws {RequiredError}
764
877
  */
765
878
  deleteKafkaAccount(requestParameters: AccountApiDeleteKafkaAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
879
+ /**
880
+ * Delete a Milvus account.
881
+ * @summary Delete Milvus account
882
+ * @param {AccountApiDeleteMilvusAccountRequest} requestParameters Request parameters.
883
+ * @param {*} [options] Override http request option.
884
+ * @throws {RequiredError}
885
+ */
886
+ deleteMilvusAccount(requestParameters: AccountApiDeleteMilvusAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
766
887
  /**
767
888
  * delete an account in mongodb
768
889
  * @summary Delete mongodb account
@@ -835,6 +956,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
835
956
  * @throws {RequiredError}
836
957
  */
837
958
  listKafkaAccounts(requestParameters: AccountApiListKafkaAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountListItem>>;
959
+ /**
960
+ * List Milvus accounts.
961
+ * @summary List Milvus accounts
962
+ * @param {AccountApiListMilvusAccountsRequest} requestParameters Request parameters.
963
+ * @param {*} [options] Override http request option.
964
+ * @throws {RequiredError}
965
+ */
966
+ listMilvusAccounts(requestParameters: AccountApiListMilvusAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountListItem>>;
838
967
  /**
839
968
  * list accounts in mongodb
840
969
  * @summary List mongodb accounts
@@ -907,6 +1036,22 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
907
1036
  * @throws {RequiredError}
908
1037
  */
909
1038
  updateKafkaAccount(requestParameters: AccountApiUpdateKafkaAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<Account>;
1039
+ /**
1040
+ * Update a Milvus account password.
1041
+ * @summary Update Milvus account password
1042
+ * @param {AccountApiUpdateMilvusAccountPasswordRequest} requestParameters Request parameters.
1043
+ * @param {*} [options] Override http request option.
1044
+ * @throws {RequiredError}
1045
+ */
1046
+ updateMilvusAccountPassword(requestParameters: AccountApiUpdateMilvusAccountPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1047
+ /**
1048
+ * Replace a Milvus account\'s role assignments.
1049
+ * @summary Update Milvus account roles
1050
+ * @param {AccountApiUpdateMilvusAccountRolesRequest} requestParameters Request parameters.
1051
+ * @param {*} [options] Override http request option.
1052
+ * @throws {RequiredError}
1053
+ */
1054
+ updateMilvusAccountRoles(requestParameters: AccountApiUpdateMilvusAccountRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
910
1055
  /**
911
1056
  *
912
1057
  * @summary update mssql account compatible with windows account
@@ -973,6 +1118,15 @@ export interface AccountApiInterface {
973
1118
  * @memberof AccountApiInterface
974
1119
  */
975
1120
  createKafkaAccount(requestParameters: AccountApiCreateKafkaAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<Account>;
1121
+ /**
1122
+ * Create a Milvus account.
1123
+ * @summary Create Milvus account
1124
+ * @param {AccountApiCreateMilvusAccountRequest} requestParameters Request parameters.
1125
+ * @param {*} [options] Override http request option.
1126
+ * @throws {RequiredError}
1127
+ * @memberof AccountApiInterface
1128
+ */
1129
+ createMilvusAccount(requestParameters: AccountApiCreateMilvusAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountListItem>;
976
1130
  /**
977
1131
  * create an account in mongodb
978
1132
  * @summary Create mongodb account
@@ -1027,6 +1181,15 @@ export interface AccountApiInterface {
1027
1181
  * @memberof AccountApiInterface
1028
1182
  */
1029
1183
  deleteKafkaAccount(requestParameters: AccountApiDeleteKafkaAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1184
+ /**
1185
+ * Delete a Milvus account.
1186
+ * @summary Delete Milvus account
1187
+ * @param {AccountApiDeleteMilvusAccountRequest} requestParameters Request parameters.
1188
+ * @param {*} [options] Override http request option.
1189
+ * @throws {RequiredError}
1190
+ * @memberof AccountApiInterface
1191
+ */
1192
+ deleteMilvusAccount(requestParameters: AccountApiDeleteMilvusAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1030
1193
  /**
1031
1194
  * delete an account in mongodb
1032
1195
  * @summary Delete mongodb account
@@ -1108,6 +1271,15 @@ export interface AccountApiInterface {
1108
1271
  * @memberof AccountApiInterface
1109
1272
  */
1110
1273
  listKafkaAccounts(requestParameters: AccountApiListKafkaAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountListItem>>;
1274
+ /**
1275
+ * List Milvus accounts.
1276
+ * @summary List Milvus accounts
1277
+ * @param {AccountApiListMilvusAccountsRequest} requestParameters Request parameters.
1278
+ * @param {*} [options] Override http request option.
1279
+ * @throws {RequiredError}
1280
+ * @memberof AccountApiInterface
1281
+ */
1282
+ listMilvusAccounts(requestParameters: AccountApiListMilvusAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountListItem>>;
1111
1283
  /**
1112
1284
  * list accounts in mongodb
1113
1285
  * @summary List mongodb accounts
@@ -1189,6 +1361,24 @@ export interface AccountApiInterface {
1189
1361
  * @memberof AccountApiInterface
1190
1362
  */
1191
1363
  updateKafkaAccount(requestParameters: AccountApiUpdateKafkaAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<Account>;
1364
+ /**
1365
+ * Update a Milvus account password.
1366
+ * @summary Update Milvus account password
1367
+ * @param {AccountApiUpdateMilvusAccountPasswordRequest} requestParameters Request parameters.
1368
+ * @param {*} [options] Override http request option.
1369
+ * @throws {RequiredError}
1370
+ * @memberof AccountApiInterface
1371
+ */
1372
+ updateMilvusAccountPassword(requestParameters: AccountApiUpdateMilvusAccountPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1373
+ /**
1374
+ * Replace a Milvus account\'s role assignments.
1375
+ * @summary Update Milvus account roles
1376
+ * @param {AccountApiUpdateMilvusAccountRolesRequest} requestParameters Request parameters.
1377
+ * @param {*} [options] Override http request option.
1378
+ * @throws {RequiredError}
1379
+ * @memberof AccountApiInterface
1380
+ */
1381
+ updateMilvusAccountRoles(requestParameters: AccountApiUpdateMilvusAccountRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1192
1382
  /**
1193
1383
  *
1194
1384
  * @summary update mssql account compatible with windows account
@@ -1307,6 +1497,31 @@ export interface AccountApiCreateKafkaAccountRequest {
1307
1497
  */
1308
1498
  readonly body: Account;
1309
1499
  }
1500
+ /**
1501
+ * Request parameters for createMilvusAccount operation in AccountApi.
1502
+ * @export
1503
+ * @interface AccountApiCreateMilvusAccountRequest
1504
+ */
1505
+ export interface AccountApiCreateMilvusAccountRequest {
1506
+ /**
1507
+ * name of the Org
1508
+ * @type {string}
1509
+ * @memberof AccountApiCreateMilvusAccount
1510
+ */
1511
+ readonly orgName: string;
1512
+ /**
1513
+ * name of the Cluster
1514
+ * @type {string}
1515
+ * @memberof AccountApiCreateMilvusAccount
1516
+ */
1517
+ readonly clusterName: string;
1518
+ /**
1519
+ *
1520
+ * @type {MilvusAccount}
1521
+ * @memberof AccountApiCreateMilvusAccount
1522
+ */
1523
+ readonly body: MilvusAccount;
1524
+ }
1310
1525
  /**
1311
1526
  * Request parameters for createMongoDBAccount operation in AccountApi.
1312
1527
  * @export
@@ -1469,6 +1684,31 @@ export interface AccountApiDeleteKafkaAccountRequest {
1469
1684
  */
1470
1685
  readonly accountName: string;
1471
1686
  }
1687
+ /**
1688
+ * Request parameters for deleteMilvusAccount operation in AccountApi.
1689
+ * @export
1690
+ * @interface AccountApiDeleteMilvusAccountRequest
1691
+ */
1692
+ export interface AccountApiDeleteMilvusAccountRequest {
1693
+ /**
1694
+ * name of the Org
1695
+ * @type {string}
1696
+ * @memberof AccountApiDeleteMilvusAccount
1697
+ */
1698
+ readonly orgName: string;
1699
+ /**
1700
+ * name of the Cluster
1701
+ * @type {string}
1702
+ * @memberof AccountApiDeleteMilvusAccount
1703
+ */
1704
+ readonly clusterName: string;
1705
+ /**
1706
+ * name of the Account
1707
+ * @type {string}
1708
+ * @memberof AccountApiDeleteMilvusAccount
1709
+ */
1710
+ readonly accountName: string;
1711
+ }
1472
1712
  /**
1473
1713
  * Request parameters for deleteMongoDBAccount operation in AccountApi.
1474
1714
  * @export
@@ -1706,6 +1946,25 @@ export interface AccountApiListKafkaAccountsRequest {
1706
1946
  */
1707
1947
  readonly clusterName: string;
1708
1948
  }
1949
+ /**
1950
+ * Request parameters for listMilvusAccounts operation in AccountApi.
1951
+ * @export
1952
+ * @interface AccountApiListMilvusAccountsRequest
1953
+ */
1954
+ export interface AccountApiListMilvusAccountsRequest {
1955
+ /**
1956
+ * name of the Org
1957
+ * @type {string}
1958
+ * @memberof AccountApiListMilvusAccounts
1959
+ */
1960
+ readonly orgName: string;
1961
+ /**
1962
+ * name of the Cluster
1963
+ * @type {string}
1964
+ * @memberof AccountApiListMilvusAccounts
1965
+ */
1966
+ readonly clusterName: string;
1967
+ }
1709
1968
  /**
1710
1969
  * Request parameters for listMongoDBAccounts operation in AccountApi.
1711
1970
  * @export
@@ -1973,6 +2232,68 @@ export interface AccountApiUpdateKafkaAccountRequest {
1973
2232
  */
1974
2233
  readonly body: Account;
1975
2234
  }
2235
+ /**
2236
+ * Request parameters for updateMilvusAccountPassword operation in AccountApi.
2237
+ * @export
2238
+ * @interface AccountApiUpdateMilvusAccountPasswordRequest
2239
+ */
2240
+ export interface AccountApiUpdateMilvusAccountPasswordRequest {
2241
+ /**
2242
+ * name of the Org
2243
+ * @type {string}
2244
+ * @memberof AccountApiUpdateMilvusAccountPassword
2245
+ */
2246
+ readonly orgName: string;
2247
+ /**
2248
+ * name of the Cluster
2249
+ * @type {string}
2250
+ * @memberof AccountApiUpdateMilvusAccountPassword
2251
+ */
2252
+ readonly clusterName: string;
2253
+ /**
2254
+ * name of the Account
2255
+ * @type {string}
2256
+ * @memberof AccountApiUpdateMilvusAccountPassword
2257
+ */
2258
+ readonly accountName: string;
2259
+ /**
2260
+ *
2261
+ * @type {MilvusAccountPassword}
2262
+ * @memberof AccountApiUpdateMilvusAccountPassword
2263
+ */
2264
+ readonly body: MilvusAccountPassword;
2265
+ }
2266
+ /**
2267
+ * Request parameters for updateMilvusAccountRoles operation in AccountApi.
2268
+ * @export
2269
+ * @interface AccountApiUpdateMilvusAccountRolesRequest
2270
+ */
2271
+ export interface AccountApiUpdateMilvusAccountRolesRequest {
2272
+ /**
2273
+ * name of the Org
2274
+ * @type {string}
2275
+ * @memberof AccountApiUpdateMilvusAccountRoles
2276
+ */
2277
+ readonly orgName: string;
2278
+ /**
2279
+ * name of the Cluster
2280
+ * @type {string}
2281
+ * @memberof AccountApiUpdateMilvusAccountRoles
2282
+ */
2283
+ readonly clusterName: string;
2284
+ /**
2285
+ * name of the Account
2286
+ * @type {string}
2287
+ * @memberof AccountApiUpdateMilvusAccountRoles
2288
+ */
2289
+ readonly accountName: string;
2290
+ /**
2291
+ *
2292
+ * @type {MilvusAccountRoles}
2293
+ * @memberof AccountApiUpdateMilvusAccountRoles
2294
+ */
2295
+ readonly body: MilvusAccountRoles;
2296
+ }
1976
2297
  /**
1977
2298
  * Request parameters for updateMssqlAccount operation in AccountApi.
1978
2299
  * @export
@@ -2131,6 +2452,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
2131
2452
  * @memberof AccountApi
2132
2453
  */
2133
2454
  createKafkaAccount(requestParameters: AccountApiCreateKafkaAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any, {}>>;
2455
+ /**
2456
+ * Create a Milvus account.
2457
+ * @summary Create Milvus account
2458
+ * @param {AccountApiCreateMilvusAccountRequest} requestParameters Request parameters.
2459
+ * @param {*} [options] Override http request option.
2460
+ * @throws {RequiredError}
2461
+ * @memberof AccountApi
2462
+ */
2463
+ createMilvusAccount(requestParameters: AccountApiCreateMilvusAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountListItem, any, {}>>;
2134
2464
  /**
2135
2465
  * create an account in mongodb
2136
2466
  * @summary Create mongodb account
@@ -2185,6 +2515,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
2185
2515
  * @memberof AccountApi
2186
2516
  */
2187
2517
  deleteKafkaAccount(requestParameters: AccountApiDeleteKafkaAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2518
+ /**
2519
+ * Delete a Milvus account.
2520
+ * @summary Delete Milvus account
2521
+ * @param {AccountApiDeleteMilvusAccountRequest} requestParameters Request parameters.
2522
+ * @param {*} [options] Override http request option.
2523
+ * @throws {RequiredError}
2524
+ * @memberof AccountApi
2525
+ */
2526
+ deleteMilvusAccount(requestParameters: AccountApiDeleteMilvusAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2188
2527
  /**
2189
2528
  * delete an account in mongodb
2190
2529
  * @summary Delete mongodb account
@@ -2266,6 +2605,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
2266
2605
  * @memberof AccountApi
2267
2606
  */
2268
2607
  listKafkaAccounts(requestParameters: AccountApiListKafkaAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountListItem[], any, {}>>;
2608
+ /**
2609
+ * List Milvus accounts.
2610
+ * @summary List Milvus accounts
2611
+ * @param {AccountApiListMilvusAccountsRequest} requestParameters Request parameters.
2612
+ * @param {*} [options] Override http request option.
2613
+ * @throws {RequiredError}
2614
+ * @memberof AccountApi
2615
+ */
2616
+ listMilvusAccounts(requestParameters: AccountApiListMilvusAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountListItem[], any, {}>>;
2269
2617
  /**
2270
2618
  * list accounts in mongodb
2271
2619
  * @summary List mongodb accounts
@@ -2347,6 +2695,24 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
2347
2695
  * @memberof AccountApi
2348
2696
  */
2349
2697
  updateKafkaAccount(requestParameters: AccountApiUpdateKafkaAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any, {}>>;
2698
+ /**
2699
+ * Update a Milvus account password.
2700
+ * @summary Update Milvus account password
2701
+ * @param {AccountApiUpdateMilvusAccountPasswordRequest} requestParameters Request parameters.
2702
+ * @param {*} [options] Override http request option.
2703
+ * @throws {RequiredError}
2704
+ * @memberof AccountApi
2705
+ */
2706
+ updateMilvusAccountPassword(requestParameters: AccountApiUpdateMilvusAccountPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2707
+ /**
2708
+ * Replace a Milvus account\'s role assignments.
2709
+ * @summary Update Milvus account roles
2710
+ * @param {AccountApiUpdateMilvusAccountRolesRequest} requestParameters Request parameters.
2711
+ * @param {*} [options] Override http request option.
2712
+ * @throws {RequiredError}
2713
+ * @memberof AccountApi
2714
+ */
2715
+ updateMilvusAccountRoles(requestParameters: AccountApiUpdateMilvusAccountRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2350
2716
  /**
2351
2717
  *
2352
2718
  * @summary update mssql account compatible with windows account