kb-cloud-client-typescript 2.2.97 → 2.2.98

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 (43) hide show
  1. package/dist/adminapi/apis/account-api.d.ts +406 -0
  2. package/dist/adminapi/apis/account-api.d.ts.map +1 -1
  3. package/dist/adminapi/apis/account-api.js +427 -0
  4. package/dist/adminapi/apis/account-api.js.map +1 -1
  5. package/dist/adminapi/apis/rdbms-api.d.ts +406 -0
  6. package/dist/adminapi/apis/rdbms-api.d.ts.map +1 -1
  7. package/dist/adminapi/apis/rdbms-api.js +427 -0
  8. package/dist/adminapi/apis/rdbms-api.js.map +1 -1
  9. package/dist/adminapi/apis/shared-api.d.ts +406 -0
  10. package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
  11. package/dist/adminapi/apis/shared-api.js +427 -0
  12. package/dist/adminapi/apis/shared-api.js.map +1 -1
  13. package/dist/adminapi/models/dms-service-account-create-request.d.ts +55 -0
  14. package/dist/adminapi/models/dms-service-account-create-request.d.ts.map +1 -0
  15. package/dist/adminapi/models/dms-service-account-create-request.js +16 -0
  16. package/dist/adminapi/models/dms-service-account-create-request.js.map +1 -0
  17. package/dist/adminapi/models/dms-service-account-status.d.ts +22 -0
  18. package/dist/adminapi/models/dms-service-account-status.d.ts.map +1 -0
  19. package/dist/adminapi/models/dms-service-account-status.js +26 -0
  20. package/dist/adminapi/models/dms-service-account-status.js.map +1 -0
  21. package/dist/adminapi/models/dms-service-account-update-request.d.ts +32 -0
  22. package/dist/adminapi/models/dms-service-account-update-request.d.ts.map +1 -0
  23. package/dist/adminapi/models/dms-service-account-update-request.js +16 -0
  24. package/dist/adminapi/models/dms-service-account-update-request.js.map +1 -0
  25. package/dist/adminapi/models/dms-service-account.d.ts +73 -0
  26. package/dist/adminapi/models/dms-service-account.d.ts.map +1 -0
  27. package/dist/adminapi/models/dms-service-account.js +16 -0
  28. package/dist/adminapi/models/dms-service-account.js.map +1 -0
  29. package/dist/adminapi/models/index.d.ts +4 -0
  30. package/dist/adminapi/models/index.d.ts.map +1 -1
  31. package/dist/adminapi/models/index.js +4 -0
  32. package/dist/adminapi/models/index.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/adminapi/.openapi-generator/FILES +4 -0
  35. package/src/adminapi/apis/account-api.ts +703 -0
  36. package/src/adminapi/apis/rdbms-api.ts +703 -0
  37. package/src/adminapi/apis/shared-api.ts +703 -0
  38. package/src/adminapi/models/dms-service-account-create-request.ts +60 -0
  39. package/src/adminapi/models/dms-service-account-status.ts +31 -0
  40. package/src/adminapi/models/dms-service-account-update-request.ts +41 -0
  41. package/src/adminapi/models/dms-service-account.ts +78 -0
  42. package/src/adminapi/models/index.ts +4 -0
  43. package/src/adminapi.yaml +330 -0
@@ -14,6 +14,9 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
15
  import type { Account } from '../models';
16
16
  import type { AccountListItem } from '../models';
17
+ import type { DmsServiceAccount } from '../models';
18
+ import type { DmsServiceAccountCreateRequest } from '../models';
19
+ import type { DmsServiceAccountUpdateRequest } from '../models';
17
20
  import type { MilvusAccountPassword } from '../models';
18
21
  import type { MilvusAccountRoles } from '../models';
19
22
  import type { MilvusRole } from '../models';
@@ -60,6 +63,17 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
60
63
  * @throws {RequiredError}
61
64
  */
62
65
  createRabbitAccount: (orgName: string, clusterName: string, rbmqAccountRequest: RbmqAccountRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
66
+ /**
67
+ * create a MinIO service account access key
68
+ * @summary Create MinIO access key
69
+ * @param {string} engineName name of the engine
70
+ * @param {string} orgName name of the organization
71
+ * @param {string} clusterName name of the cluster
72
+ * @param {DmsServiceAccountCreateRequest} body
73
+ * @param {*} [options] Override http request option.
74
+ * @throws {RequiredError}
75
+ */
76
+ createServiceAccount: (engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
63
77
  /**
64
78
  * delete an account in cluster
65
79
  * @summary Delete cluster account
@@ -111,6 +125,17 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
111
125
  * @throws {RequiredError}
112
126
  */
113
127
  deleteRabbitAccount: (orgName: string, clusterName: string, accountName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
128
+ /**
129
+ * delete a MinIO service account access key
130
+ * @summary Delete MinIO access key
131
+ * @param {string} engineName name of the engine
132
+ * @param {string} orgName name of the organization
133
+ * @param {string} clusterName name of the cluster
134
+ * @param {string} accessKey MinIO access key
135
+ * @param {*} [options] Override http request option.
136
+ * @throws {RequiredError}
137
+ */
138
+ deleteServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
114
139
  /**
115
140
  * Get a Milvus native role and its privilege grants.
116
141
  * @summary Get Milvus role
@@ -133,6 +158,17 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
133
158
  * @throws {RequiredError}
134
159
  */
135
160
  getRootAccountPassword: (engineName: string, orgName: string, clusterName: string, accountName: string, component?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
161
+ /**
162
+ * get a MinIO service account access key
163
+ * @summary Get MinIO access key
164
+ * @param {string} engineName name of the engine
165
+ * @param {string} orgName name of the organization
166
+ * @param {string} clusterName name of the cluster
167
+ * @param {string} accessKey MinIO access key
168
+ * @param {*} [options] Override http request option.
169
+ * @throws {RequiredError}
170
+ */
171
+ getServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
136
172
  /**
137
173
  * list accounts in cluster
138
174
  * @summary List cluster accounts
@@ -170,6 +206,17 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
170
206
  * @throws {RequiredError}
171
207
  */
172
208
  listRabbitAccounts: (orgName: string, clusterName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
209
+ /**
210
+ * list MinIO service account access keys
211
+ * @summary List MinIO access keys
212
+ * @param {string} engineName name of the engine
213
+ * @param {string} orgName name of the organization
214
+ * @param {string} clusterName name of the cluster
215
+ * @param {string} [userName] MinIO user that owns the service accounts
216
+ * @param {*} [options] Override http request option.
217
+ * @throws {RequiredError}
218
+ */
219
+ listServiceAccounts: (engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
220
  /**
174
221
  * Create or update a Milvus native role and replace its privilege grants.
175
222
  * @summary Put Milvus role
@@ -259,6 +306,18 @@ export declare const AccountApiAxiosParamCreator: (configuration?: Configuration
259
306
  * @throws {RequiredError}
260
307
  */
261
308
  updateRabbitAccountPrivileges: (orgName: string, clusterName: string, accountName: string, rbmqPermission: RbmqPermission, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
309
+ /**
310
+ * update a MinIO service account access key
311
+ * @summary Update MinIO access key
312
+ * @param {string} engineName name of the engine
313
+ * @param {string} orgName name of the organization
314
+ * @param {string} clusterName name of the cluster
315
+ * @param {string} accessKey MinIO access key
316
+ * @param {DmsServiceAccountUpdateRequest} body
317
+ * @param {*} [options] Override http request option.
318
+ * @throws {RequiredError}
319
+ */
320
+ updateServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
262
321
  };
263
322
  /**
264
323
  * AccountApi - functional programming interface
@@ -296,6 +355,17 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
296
355
  * @throws {RequiredError}
297
356
  */
298
357
  createRabbitAccount(orgName: string, clusterName: string, rbmqAccountRequest: RbmqAccountRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
358
+ /**
359
+ * create a MinIO service account access key
360
+ * @summary Create MinIO access key
361
+ * @param {string} engineName name of the engine
362
+ * @param {string} orgName name of the organization
363
+ * @param {string} clusterName name of the cluster
364
+ * @param {DmsServiceAccountCreateRequest} body
365
+ * @param {*} [options] Override http request option.
366
+ * @throws {RequiredError}
367
+ */
368
+ createServiceAccount(engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
299
369
  /**
300
370
  * delete an account in cluster
301
371
  * @summary Delete cluster account
@@ -347,6 +417,17 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
347
417
  * @throws {RequiredError}
348
418
  */
349
419
  deleteRabbitAccount(orgName: string, clusterName: string, accountName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
420
+ /**
421
+ * delete a MinIO service account access key
422
+ * @summary Delete MinIO access key
423
+ * @param {string} engineName name of the engine
424
+ * @param {string} orgName name of the organization
425
+ * @param {string} clusterName name of the cluster
426
+ * @param {string} accessKey MinIO access key
427
+ * @param {*} [options] Override http request option.
428
+ * @throws {RequiredError}
429
+ */
430
+ deleteServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
350
431
  /**
351
432
  * Get a Milvus native role and its privilege grants.
352
433
  * @summary Get Milvus role
@@ -369,6 +450,17 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
369
450
  * @throws {RequiredError}
370
451
  */
371
452
  getRootAccountPassword(engineName: string, orgName: string, clusterName: string, accountName: string, component?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
453
+ /**
454
+ * get a MinIO service account access key
455
+ * @summary Get MinIO access key
456
+ * @param {string} engineName name of the engine
457
+ * @param {string} orgName name of the organization
458
+ * @param {string} clusterName name of the cluster
459
+ * @param {string} accessKey MinIO access key
460
+ * @param {*} [options] Override http request option.
461
+ * @throws {RequiredError}
462
+ */
463
+ getServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
372
464
  /**
373
465
  * list accounts in cluster
374
466
  * @summary List cluster accounts
@@ -406,6 +498,17 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
406
498
  * @throws {RequiredError}
407
499
  */
408
500
  listRabbitAccounts(orgName: string, clusterName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RbmqAccountsList>>;
501
+ /**
502
+ * list MinIO service account access keys
503
+ * @summary List MinIO access keys
504
+ * @param {string} engineName name of the engine
505
+ * @param {string} orgName name of the organization
506
+ * @param {string} clusterName name of the cluster
507
+ * @param {string} [userName] MinIO user that owns the service accounts
508
+ * @param {*} [options] Override http request option.
509
+ * @throws {RequiredError}
510
+ */
511
+ listServiceAccounts(engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DmsServiceAccount>>>;
409
512
  /**
410
513
  * Create or update a Milvus native role and replace its privilege grants.
411
514
  * @summary Put Milvus role
@@ -495,6 +598,18 @@ export declare const AccountApiFp: (configuration?: Configuration) => {
495
598
  * @throws {RequiredError}
496
599
  */
497
600
  updateRabbitAccountPrivileges(orgName: string, clusterName: string, accountName: string, rbmqPermission: RbmqPermission, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
601
+ /**
602
+ * update a MinIO service account access key
603
+ * @summary Update MinIO access key
604
+ * @param {string} engineName name of the engine
605
+ * @param {string} orgName name of the organization
606
+ * @param {string} clusterName name of the cluster
607
+ * @param {string} accessKey MinIO access key
608
+ * @param {DmsServiceAccountUpdateRequest} body
609
+ * @param {*} [options] Override http request option.
610
+ * @throws {RequiredError}
611
+ */
612
+ updateServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
498
613
  };
499
614
  /**
500
615
  * AccountApi - factory interface
@@ -525,6 +640,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
525
640
  * @throws {RequiredError}
526
641
  */
527
642
  createRabbitAccount(requestParameters: AccountApiCreateRabbitAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
643
+ /**
644
+ * create a MinIO service account access key
645
+ * @summary Create MinIO access key
646
+ * @param {AccountApiCreateServiceAccountRequest} requestParameters Request parameters.
647
+ * @param {*} [options] Override http request option.
648
+ * @throws {RequiredError}
649
+ */
650
+ createServiceAccount(requestParameters: AccountApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
528
651
  /**
529
652
  * delete an account in cluster
530
653
  * @summary Delete cluster account
@@ -565,6 +688,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
565
688
  * @throws {RequiredError}
566
689
  */
567
690
  deleteRabbitAccount(requestParameters: AccountApiDeleteRabbitAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
691
+ /**
692
+ * delete a MinIO service account access key
693
+ * @summary Delete MinIO access key
694
+ * @param {AccountApiDeleteServiceAccountRequest} requestParameters Request parameters.
695
+ * @param {*} [options] Override http request option.
696
+ * @throws {RequiredError}
697
+ */
698
+ deleteServiceAccount(requestParameters: AccountApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
568
699
  /**
569
700
  * Get a Milvus native role and its privilege grants.
570
701
  * @summary Get Milvus role
@@ -581,6 +712,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
581
712
  * @throws {RequiredError}
582
713
  */
583
714
  getRootAccountPassword(requestParameters: AccountApiGetRootAccountPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
715
+ /**
716
+ * get a MinIO service account access key
717
+ * @summary Get MinIO access key
718
+ * @param {AccountApiGetServiceAccountRequest} requestParameters Request parameters.
719
+ * @param {*} [options] Override http request option.
720
+ * @throws {RequiredError}
721
+ */
722
+ getServiceAccount(requestParameters: AccountApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
584
723
  /**
585
724
  * list accounts in cluster
586
725
  * @summary List cluster accounts
@@ -613,6 +752,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
613
752
  * @throws {RequiredError}
614
753
  */
615
754
  listRabbitAccounts(requestParameters: AccountApiListRabbitAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<RbmqAccountsList>;
755
+ /**
756
+ * list MinIO service account access keys
757
+ * @summary List MinIO access keys
758
+ * @param {AccountApiListServiceAccountsRequest} requestParameters Request parameters.
759
+ * @param {*} [options] Override http request option.
760
+ * @throws {RequiredError}
761
+ */
762
+ listServiceAccounts(requestParameters: AccountApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
616
763
  /**
617
764
  * Create or update a Milvus native role and replace its privilege grants.
618
765
  * @summary Put Milvus role
@@ -677,6 +824,14 @@ export declare const AccountApiFactory: (configuration?: Configuration, basePath
677
824
  * @throws {RequiredError}
678
825
  */
679
826
  updateRabbitAccountPrivileges(requestParameters: AccountApiUpdateRabbitAccountPrivilegesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
827
+ /**
828
+ * update a MinIO service account access key
829
+ * @summary Update MinIO access key
830
+ * @param {AccountApiUpdateServiceAccountRequest} requestParameters Request parameters.
831
+ * @param {*} [options] Override http request option.
832
+ * @throws {RequiredError}
833
+ */
834
+ updateServiceAccount(requestParameters: AccountApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
680
835
  };
681
836
  /**
682
837
  * AccountApi - interface
@@ -711,6 +866,15 @@ export interface AccountApiInterface {
711
866
  * @memberof AccountApiInterface
712
867
  */
713
868
  createRabbitAccount(requestParameters: AccountApiCreateRabbitAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
869
+ /**
870
+ * create a MinIO service account access key
871
+ * @summary Create MinIO access key
872
+ * @param {AccountApiCreateServiceAccountRequest} requestParameters Request parameters.
873
+ * @param {*} [options] Override http request option.
874
+ * @throws {RequiredError}
875
+ * @memberof AccountApiInterface
876
+ */
877
+ createServiceAccount(requestParameters: AccountApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
714
878
  /**
715
879
  * delete an account in cluster
716
880
  * @summary Delete cluster account
@@ -756,6 +920,15 @@ export interface AccountApiInterface {
756
920
  * @memberof AccountApiInterface
757
921
  */
758
922
  deleteRabbitAccount(requestParameters: AccountApiDeleteRabbitAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
923
+ /**
924
+ * delete a MinIO service account access key
925
+ * @summary Delete MinIO access key
926
+ * @param {AccountApiDeleteServiceAccountRequest} requestParameters Request parameters.
927
+ * @param {*} [options] Override http request option.
928
+ * @throws {RequiredError}
929
+ * @memberof AccountApiInterface
930
+ */
931
+ deleteServiceAccount(requestParameters: AccountApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
759
932
  /**
760
933
  * Get a Milvus native role and its privilege grants.
761
934
  * @summary Get Milvus role
@@ -774,6 +947,15 @@ export interface AccountApiInterface {
774
947
  * @memberof AccountApiInterface
775
948
  */
776
949
  getRootAccountPassword(requestParameters: AccountApiGetRootAccountPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<string>;
950
+ /**
951
+ * get a MinIO service account access key
952
+ * @summary Get MinIO access key
953
+ * @param {AccountApiGetServiceAccountRequest} requestParameters Request parameters.
954
+ * @param {*} [options] Override http request option.
955
+ * @throws {RequiredError}
956
+ * @memberof AccountApiInterface
957
+ */
958
+ getServiceAccount(requestParameters: AccountApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
777
959
  /**
778
960
  * list accounts in cluster
779
961
  * @summary List cluster accounts
@@ -810,6 +992,15 @@ export interface AccountApiInterface {
810
992
  * @memberof AccountApiInterface
811
993
  */
812
994
  listRabbitAccounts(requestParameters: AccountApiListRabbitAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<RbmqAccountsList>;
995
+ /**
996
+ * list MinIO service account access keys
997
+ * @summary List MinIO access keys
998
+ * @param {AccountApiListServiceAccountsRequest} requestParameters Request parameters.
999
+ * @param {*} [options] Override http request option.
1000
+ * @throws {RequiredError}
1001
+ * @memberof AccountApiInterface
1002
+ */
1003
+ listServiceAccounts(requestParameters: AccountApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
813
1004
  /**
814
1005
  * Create or update a Milvus native role and replace its privilege grants.
815
1006
  * @summary Put Milvus role
@@ -882,6 +1073,15 @@ export interface AccountApiInterface {
882
1073
  * @memberof AccountApiInterface
883
1074
  */
884
1075
  updateRabbitAccountPrivileges(requestParameters: AccountApiUpdateRabbitAccountPrivilegesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1076
+ /**
1077
+ * update a MinIO service account access key
1078
+ * @summary Update MinIO access key
1079
+ * @param {AccountApiUpdateServiceAccountRequest} requestParameters Request parameters.
1080
+ * @param {*} [options] Override http request option.
1081
+ * @throws {RequiredError}
1082
+ * @memberof AccountApiInterface
1083
+ */
1084
+ updateServiceAccount(requestParameters: AccountApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
885
1085
  }
886
1086
  /**
887
1087
  * Request parameters for createAccount operation in AccountApi.
@@ -964,6 +1164,37 @@ export interface AccountApiCreateRabbitAccountRequest {
964
1164
  */
965
1165
  readonly rbmqAccountRequest: RbmqAccountRequest;
966
1166
  }
1167
+ /**
1168
+ * Request parameters for createServiceAccount operation in AccountApi.
1169
+ * @export
1170
+ * @interface AccountApiCreateServiceAccountRequest
1171
+ */
1172
+ export interface AccountApiCreateServiceAccountRequest {
1173
+ /**
1174
+ * name of the engine
1175
+ * @type {string}
1176
+ * @memberof AccountApiCreateServiceAccount
1177
+ */
1178
+ readonly engineName: string;
1179
+ /**
1180
+ * name of the organization
1181
+ * @type {string}
1182
+ * @memberof AccountApiCreateServiceAccount
1183
+ */
1184
+ readonly orgName: string;
1185
+ /**
1186
+ * name of the cluster
1187
+ * @type {string}
1188
+ * @memberof AccountApiCreateServiceAccount
1189
+ */
1190
+ readonly clusterName: string;
1191
+ /**
1192
+ *
1193
+ * @type {DmsServiceAccountCreateRequest}
1194
+ * @memberof AccountApiCreateServiceAccount
1195
+ */
1196
+ readonly body: DmsServiceAccountCreateRequest;
1197
+ }
967
1198
  /**
968
1199
  * Request parameters for deleteAccount operation in AccountApi.
969
1200
  * @export
@@ -1095,6 +1326,37 @@ export interface AccountApiDeleteRabbitAccountRequest {
1095
1326
  */
1096
1327
  readonly accountName: string;
1097
1328
  }
1329
+ /**
1330
+ * Request parameters for deleteServiceAccount operation in AccountApi.
1331
+ * @export
1332
+ * @interface AccountApiDeleteServiceAccountRequest
1333
+ */
1334
+ export interface AccountApiDeleteServiceAccountRequest {
1335
+ /**
1336
+ * name of the engine
1337
+ * @type {string}
1338
+ * @memberof AccountApiDeleteServiceAccount
1339
+ */
1340
+ readonly engineName: string;
1341
+ /**
1342
+ * name of the organization
1343
+ * @type {string}
1344
+ * @memberof AccountApiDeleteServiceAccount
1345
+ */
1346
+ readonly orgName: string;
1347
+ /**
1348
+ * name of the cluster
1349
+ * @type {string}
1350
+ * @memberof AccountApiDeleteServiceAccount
1351
+ */
1352
+ readonly clusterName: string;
1353
+ /**
1354
+ * MinIO access key
1355
+ * @type {string}
1356
+ * @memberof AccountApiDeleteServiceAccount
1357
+ */
1358
+ readonly accessKey: string;
1359
+ }
1098
1360
  /**
1099
1361
  * Request parameters for getMilvusRole operation in AccountApi.
1100
1362
  * @export
@@ -1157,6 +1419,37 @@ export interface AccountApiGetRootAccountPasswordRequest {
1157
1419
  */
1158
1420
  readonly component?: string;
1159
1421
  }
1422
+ /**
1423
+ * Request parameters for getServiceAccount operation in AccountApi.
1424
+ * @export
1425
+ * @interface AccountApiGetServiceAccountRequest
1426
+ */
1427
+ export interface AccountApiGetServiceAccountRequest {
1428
+ /**
1429
+ * name of the engine
1430
+ * @type {string}
1431
+ * @memberof AccountApiGetServiceAccount
1432
+ */
1433
+ readonly engineName: string;
1434
+ /**
1435
+ * name of the organization
1436
+ * @type {string}
1437
+ * @memberof AccountApiGetServiceAccount
1438
+ */
1439
+ readonly orgName: string;
1440
+ /**
1441
+ * name of the cluster
1442
+ * @type {string}
1443
+ * @memberof AccountApiGetServiceAccount
1444
+ */
1445
+ readonly clusterName: string;
1446
+ /**
1447
+ * MinIO access key
1448
+ * @type {string}
1449
+ * @memberof AccountApiGetServiceAccount
1450
+ */
1451
+ readonly accessKey: string;
1452
+ }
1160
1453
  /**
1161
1454
  * Request parameters for listAccounts operation in AccountApi.
1162
1455
  * @export
@@ -1239,6 +1532,37 @@ export interface AccountApiListRabbitAccountsRequest {
1239
1532
  */
1240
1533
  readonly clusterName: string;
1241
1534
  }
1535
+ /**
1536
+ * Request parameters for listServiceAccounts operation in AccountApi.
1537
+ * @export
1538
+ * @interface AccountApiListServiceAccountsRequest
1539
+ */
1540
+ export interface AccountApiListServiceAccountsRequest {
1541
+ /**
1542
+ * name of the engine
1543
+ * @type {string}
1544
+ * @memberof AccountApiListServiceAccounts
1545
+ */
1546
+ readonly engineName: string;
1547
+ /**
1548
+ * name of the organization
1549
+ * @type {string}
1550
+ * @memberof AccountApiListServiceAccounts
1551
+ */
1552
+ readonly orgName: string;
1553
+ /**
1554
+ * name of the cluster
1555
+ * @type {string}
1556
+ * @memberof AccountApiListServiceAccounts
1557
+ */
1558
+ readonly clusterName: string;
1559
+ /**
1560
+ * MinIO user that owns the service accounts
1561
+ * @type {string}
1562
+ * @memberof AccountApiListServiceAccounts
1563
+ */
1564
+ readonly userName?: string;
1565
+ }
1242
1566
  /**
1243
1567
  * Request parameters for putMilvusRole operation in AccountApi.
1244
1568
  * @export
@@ -1493,6 +1817,43 @@ export interface AccountApiUpdateRabbitAccountPrivilegesRequest {
1493
1817
  */
1494
1818
  readonly rbmqPermission: RbmqPermission;
1495
1819
  }
1820
+ /**
1821
+ * Request parameters for updateServiceAccount operation in AccountApi.
1822
+ * @export
1823
+ * @interface AccountApiUpdateServiceAccountRequest
1824
+ */
1825
+ export interface AccountApiUpdateServiceAccountRequest {
1826
+ /**
1827
+ * name of the engine
1828
+ * @type {string}
1829
+ * @memberof AccountApiUpdateServiceAccount
1830
+ */
1831
+ readonly engineName: string;
1832
+ /**
1833
+ * name of the organization
1834
+ * @type {string}
1835
+ * @memberof AccountApiUpdateServiceAccount
1836
+ */
1837
+ readonly orgName: string;
1838
+ /**
1839
+ * name of the cluster
1840
+ * @type {string}
1841
+ * @memberof AccountApiUpdateServiceAccount
1842
+ */
1843
+ readonly clusterName: string;
1844
+ /**
1845
+ * MinIO access key
1846
+ * @type {string}
1847
+ * @memberof AccountApiUpdateServiceAccount
1848
+ */
1849
+ readonly accessKey: string;
1850
+ /**
1851
+ *
1852
+ * @type {DmsServiceAccountUpdateRequest}
1853
+ * @memberof AccountApiUpdateServiceAccount
1854
+ */
1855
+ readonly body: DmsServiceAccountUpdateRequest;
1856
+ }
1496
1857
  /**
1497
1858
  * AccountApi - object-oriented interface
1498
1859
  * @export
@@ -1527,6 +1888,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
1527
1888
  * @memberof AccountApi
1528
1889
  */
1529
1890
  createRabbitAccount(requestParameters: AccountApiCreateRabbitAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
1891
+ /**
1892
+ * create a MinIO service account access key
1893
+ * @summary Create MinIO access key
1894
+ * @param {AccountApiCreateServiceAccountRequest} requestParameters Request parameters.
1895
+ * @param {*} [options] Override http request option.
1896
+ * @throws {RequiredError}
1897
+ * @memberof AccountApi
1898
+ */
1899
+ createServiceAccount(requestParameters: AccountApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
1530
1900
  /**
1531
1901
  * delete an account in cluster
1532
1902
  * @summary Delete cluster account
@@ -1572,6 +1942,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
1572
1942
  * @memberof AccountApi
1573
1943
  */
1574
1944
  deleteRabbitAccount(requestParameters: AccountApiDeleteRabbitAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
1945
+ /**
1946
+ * delete a MinIO service account access key
1947
+ * @summary Delete MinIO access key
1948
+ * @param {AccountApiDeleteServiceAccountRequest} requestParameters Request parameters.
1949
+ * @param {*} [options] Override http request option.
1950
+ * @throws {RequiredError}
1951
+ * @memberof AccountApi
1952
+ */
1953
+ deleteServiceAccount(requestParameters: AccountApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
1575
1954
  /**
1576
1955
  * Get a Milvus native role and its privilege grants.
1577
1956
  * @summary Get Milvus role
@@ -1590,6 +1969,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
1590
1969
  * @memberof AccountApi
1591
1970
  */
1592
1971
  getRootAccountPassword(requestParameters: AccountApiGetRootAccountPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
1972
+ /**
1973
+ * get a MinIO service account access key
1974
+ * @summary Get MinIO access key
1975
+ * @param {AccountApiGetServiceAccountRequest} requestParameters Request parameters.
1976
+ * @param {*} [options] Override http request option.
1977
+ * @throws {RequiredError}
1978
+ * @memberof AccountApi
1979
+ */
1980
+ getServiceAccount(requestParameters: AccountApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
1593
1981
  /**
1594
1982
  * list accounts in cluster
1595
1983
  * @summary List cluster accounts
@@ -1626,6 +2014,15 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
1626
2014
  * @memberof AccountApi
1627
2015
  */
1628
2016
  listRabbitAccounts(requestParameters: AccountApiListRabbitAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RbmqAccountsList, any, {}>>;
2017
+ /**
2018
+ * list MinIO service account access keys
2019
+ * @summary List MinIO access keys
2020
+ * @param {AccountApiListServiceAccountsRequest} requestParameters Request parameters.
2021
+ * @param {*} [options] Override http request option.
2022
+ * @throws {RequiredError}
2023
+ * @memberof AccountApi
2024
+ */
2025
+ listServiceAccounts(requestParameters: AccountApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount[], any, {}>>;
1629
2026
  /**
1630
2027
  * Create or update a Milvus native role and replace its privilege grants.
1631
2028
  * @summary Put Milvus role
@@ -1698,5 +2095,14 @@ export declare class AccountApi extends BaseAPI implements AccountApiInterface {
1698
2095
  * @memberof AccountApi
1699
2096
  */
1700
2097
  updateRabbitAccountPrivileges(requestParameters: AccountApiUpdateRabbitAccountPrivilegesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2098
+ /**
2099
+ * update a MinIO service account access key
2100
+ * @summary Update MinIO access key
2101
+ * @param {AccountApiUpdateServiceAccountRequest} requestParameters Request parameters.
2102
+ * @param {*} [options] Override http request option.
2103
+ * @throws {RequiredError}
2104
+ * @memberof AccountApi
2105
+ */
2106
+ updateServiceAccount(requestParameters: AccountApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
1701
2107
  }
1702
2108
  //# sourceMappingURL=account-api.d.ts.map