kb-cloud-client-typescript 2.3.0-alpha.123 → 2.3.0-alpha.124

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
@@ -79,6 +79,9 @@ import type { DmsQueryHistory } from '../models';
79
79
  import type { DmsQueryRequest } from '../models';
80
80
  import type { DmsQueryResponse } from '../models';
81
81
  import type { DmsResult } from '../models';
82
+ import type { DmsServiceAccount } from '../models';
83
+ import type { DmsServiceAccountCreateRequest } from '../models';
84
+ import type { DmsServiceAccountUpdateRequest } from '../models';
82
85
  import type { DmsSession } from '../models';
83
86
  import type { DmsTaskInfo } from '../models';
84
87
  import type { DmsTaskList } from '../models';
@@ -487,6 +490,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
487
490
  * @throws {RequiredError}
488
491
  */
489
492
  createRole: (orgName: string, roleCreate: RoleCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
493
+ /**
494
+ * create a MinIO service account access key
495
+ * @summary Create MinIO access key
496
+ * @param {string} engineName name of the engine
497
+ * @param {string} orgName name of the organization
498
+ * @param {string} clusterName name of the cluster
499
+ * @param {DmsServiceAccountCreateRequest} body
500
+ * @param {*} [options] Override http request option.
501
+ * @throws {RequiredError}
502
+ */
503
+ createServiceAccount: (engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
490
504
  /**
491
505
  * create tag
492
506
  * @summary Create cluster tags
@@ -742,6 +756,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
742
756
  * @throws {RequiredError}
743
757
  */
744
758
  deleteRoleByName: (orgName: string, roleName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
759
+ /**
760
+ * delete a MinIO service account access key
761
+ * @summary Delete MinIO access key
762
+ * @param {string} engineName name of the engine
763
+ * @param {string} orgName name of the organization
764
+ * @param {string} clusterName name of the cluster
765
+ * @param {string} accessKey MinIO access key
766
+ * @param {*} [options] Override http request option.
767
+ * @throws {RequiredError}
768
+ */
769
+ deleteServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
745
770
  /**
746
771
  * delete cluster tag
747
772
  * @summary Delete tag
@@ -1305,6 +1330,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
1305
1330
  * @throws {RequiredError}
1306
1331
  */
1307
1332
  getSchemaList: (orgName: string, clusterName: string, id: string, database?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1333
+ /**
1334
+ * get a MinIO service account access key
1335
+ * @summary Get MinIO access key
1336
+ * @param {string} engineName name of the engine
1337
+ * @param {string} orgName name of the organization
1338
+ * @param {string} clusterName name of the cluster
1339
+ * @param {string} accessKey MinIO access key
1340
+ * @param {*} [options] Override http request option.
1341
+ * @throws {RequiredError}
1342
+ */
1343
+ getServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1308
1344
  /**
1309
1345
  * Get statistics summary for slow logs of a cluster. When the same slow log filters are supplied, totalSlowLogs can be used as the filtered list preview count.
1310
1346
  * @summary Get cluster slow log statistics
@@ -1962,6 +1998,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
1962
1998
  * @throws {RequiredError}
1963
1999
  */
1964
2000
  listRoles: (orgName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2001
+ /**
2002
+ * list MinIO service account access keys
2003
+ * @summary List MinIO access keys
2004
+ * @param {string} engineName name of the engine
2005
+ * @param {string} orgName name of the organization
2006
+ * @param {string} clusterName name of the cluster
2007
+ * @param {string} [userName] MinIO user that owns the service accounts
2008
+ * @param {*} [options] Override http request option.
2009
+ * @throws {RequiredError}
2010
+ */
2011
+ listServiceAccounts: (engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1965
2012
  /**
1966
2013
  * list the service version of the engine
1967
2014
  * @summary list the service version of the engine
@@ -2733,6 +2780,18 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2733
2780
  * @throws {RequiredError}
2734
2781
  */
2735
2782
  updateRoleByName: (orgName: string, roleName: string, roleUpdate: RoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2783
+ /**
2784
+ * update a MinIO service account access key
2785
+ * @summary Update MinIO access key
2786
+ * @param {string} engineName name of the engine
2787
+ * @param {string} orgName name of the organization
2788
+ * @param {string} clusterName name of the cluster
2789
+ * @param {string} accessKey MinIO access key
2790
+ * @param {DmsServiceAccountUpdateRequest} body
2791
+ * @param {*} [options] Override http request option.
2792
+ * @throws {RequiredError}
2793
+ */
2794
+ updateServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2736
2795
  /**
2737
2796
  * Enable or disable SQL audit log for a cluster component
2738
2797
  * @summary Update SQL audit log status
@@ -3096,6 +3155,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3096
3155
  * @throws {RequiredError}
3097
3156
  */
3098
3157
  createRole(orgName: string, roleCreate: RoleCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
3158
+ /**
3159
+ * create a MinIO service account access key
3160
+ * @summary Create MinIO access key
3161
+ * @param {string} engineName name of the engine
3162
+ * @param {string} orgName name of the organization
3163
+ * @param {string} clusterName name of the cluster
3164
+ * @param {DmsServiceAccountCreateRequest} body
3165
+ * @param {*} [options] Override http request option.
3166
+ * @throws {RequiredError}
3167
+ */
3168
+ createServiceAccount(engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
3099
3169
  /**
3100
3170
  * create tag
3101
3171
  * @summary Create cluster tags
@@ -3351,6 +3421,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3351
3421
  * @throws {RequiredError}
3352
3422
  */
3353
3423
  deleteRoleByName(orgName: string, roleName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3424
+ /**
3425
+ * delete a MinIO service account access key
3426
+ * @summary Delete MinIO access key
3427
+ * @param {string} engineName name of the engine
3428
+ * @param {string} orgName name of the organization
3429
+ * @param {string} clusterName name of the cluster
3430
+ * @param {string} accessKey MinIO access key
3431
+ * @param {*} [options] Override http request option.
3432
+ * @throws {RequiredError}
3433
+ */
3434
+ deleteServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3354
3435
  /**
3355
3436
  * delete cluster tag
3356
3437
  * @summary Delete tag
@@ -3914,6 +3995,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3914
3995
  * @throws {RequiredError}
3915
3996
  */
3916
3997
  getSchemaList(orgName: string, clusterName: string, id: string, database?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
3998
+ /**
3999
+ * get a MinIO service account access key
4000
+ * @summary Get MinIO access key
4001
+ * @param {string} engineName name of the engine
4002
+ * @param {string} orgName name of the organization
4003
+ * @param {string} clusterName name of the cluster
4004
+ * @param {string} accessKey MinIO access key
4005
+ * @param {*} [options] Override http request option.
4006
+ * @throws {RequiredError}
4007
+ */
4008
+ getServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
3917
4009
  /**
3918
4010
  * Get statistics summary for slow logs of a cluster. When the same slow log filters are supplied, totalSlowLogs can be used as the filtered list preview count.
3919
4011
  * @summary Get cluster slow log statistics
@@ -4571,6 +4663,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4571
4663
  * @throws {RequiredError}
4572
4664
  */
4573
4665
  listRoles(orgName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
4666
+ /**
4667
+ * list MinIO service account access keys
4668
+ * @summary List MinIO access keys
4669
+ * @param {string} engineName name of the engine
4670
+ * @param {string} orgName name of the organization
4671
+ * @param {string} clusterName name of the cluster
4672
+ * @param {string} [userName] MinIO user that owns the service accounts
4673
+ * @param {*} [options] Override http request option.
4674
+ * @throws {RequiredError}
4675
+ */
4676
+ listServiceAccounts(engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DmsServiceAccount>>>;
4574
4677
  /**
4575
4678
  * list the service version of the engine
4576
4679
  * @summary list the service version of the engine
@@ -5342,6 +5445,18 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
5342
5445
  * @throws {RequiredError}
5343
5446
  */
5344
5447
  updateRoleByName(orgName: string, roleName: string, roleUpdate: RoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
5448
+ /**
5449
+ * update a MinIO service account access key
5450
+ * @summary Update MinIO access key
5451
+ * @param {string} engineName name of the engine
5452
+ * @param {string} orgName name of the organization
5453
+ * @param {string} clusterName name of the cluster
5454
+ * @param {string} accessKey MinIO access key
5455
+ * @param {DmsServiceAccountUpdateRequest} body
5456
+ * @param {*} [options] Override http request option.
5457
+ * @throws {RequiredError}
5458
+ */
5459
+ updateServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
5345
5460
  /**
5346
5461
  * Enable or disable SQL audit log for a cluster component
5347
5462
  * @summary Update SQL audit log status
@@ -5632,6 +5747,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
5632
5747
  * @throws {RequiredError}
5633
5748
  */
5634
5749
  createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
5750
+ /**
5751
+ * create a MinIO service account access key
5752
+ * @summary Create MinIO access key
5753
+ * @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
5754
+ * @param {*} [options] Override http request option.
5755
+ * @throws {RequiredError}
5756
+ */
5757
+ createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
5635
5758
  /**
5636
5759
  * create tag
5637
5760
  * @summary Create cluster tags
@@ -5840,6 +5963,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
5840
5963
  * @throws {RequiredError}
5841
5964
  */
5842
5965
  deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5966
+ /**
5967
+ * delete a MinIO service account access key
5968
+ * @summary Delete MinIO access key
5969
+ * @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
5970
+ * @param {*} [options] Override http request option.
5971
+ * @throws {RequiredError}
5972
+ */
5973
+ deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5843
5974
  /**
5844
5975
  * delete cluster tag
5845
5976
  * @summary Delete tag
@@ -6264,6 +6395,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
6264
6395
  * @throws {RequiredError}
6265
6396
  */
6266
6397
  getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
6398
+ /**
6399
+ * get a MinIO service account access key
6400
+ * @summary Get MinIO access key
6401
+ * @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
6402
+ * @param {*} [options] Override http request option.
6403
+ * @throws {RequiredError}
6404
+ */
6405
+ getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
6267
6406
  /**
6268
6407
  * Get statistics summary for slow logs of a cluster. When the same slow log filters are supplied, totalSlowLogs can be used as the filtered list preview count.
6269
6408
  * @summary Get cluster slow log statistics
@@ -6764,6 +6903,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
6764
6903
  * @throws {RequiredError}
6765
6904
  */
6766
6905
  listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<RoleList>;
6906
+ /**
6907
+ * list MinIO service account access keys
6908
+ * @summary List MinIO access keys
6909
+ * @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
6910
+ * @param {*} [options] Override http request option.
6911
+ * @throws {RequiredError}
6912
+ */
6913
+ listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
6767
6914
  /**
6768
6915
  * list the service version of the engine
6769
6916
  * @summary list the service version of the engine
@@ -7283,6 +7430,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
7283
7430
  * @throws {RequiredError}
7284
7431
  */
7285
7432
  updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
7433
+ /**
7434
+ * update a MinIO service account access key
7435
+ * @summary Update MinIO access key
7436
+ * @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
7437
+ * @param {*} [options] Override http request option.
7438
+ * @throws {RequiredError}
7439
+ */
7440
+ updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
7286
7441
  /**
7287
7442
  * Enable or disable SQL audit log for a cluster component
7288
7443
  * @summary Update SQL audit log status
@@ -7588,6 +7743,15 @@ export interface SharedApiInterface {
7588
7743
  * @memberof SharedApiInterface
7589
7744
  */
7590
7745
  createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
7746
+ /**
7747
+ * create a MinIO service account access key
7748
+ * @summary Create MinIO access key
7749
+ * @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
7750
+ * @param {*} [options] Override http request option.
7751
+ * @throws {RequiredError}
7752
+ * @memberof SharedApiInterface
7753
+ */
7754
+ createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
7591
7755
  /**
7592
7756
  * create tag
7593
7757
  * @summary Create cluster tags
@@ -7822,6 +7986,15 @@ export interface SharedApiInterface {
7822
7986
  * @memberof SharedApiInterface
7823
7987
  */
7824
7988
  deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7989
+ /**
7990
+ * delete a MinIO service account access key
7991
+ * @summary Delete MinIO access key
7992
+ * @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
7993
+ * @param {*} [options] Override http request option.
7994
+ * @throws {RequiredError}
7995
+ * @memberof SharedApiInterface
7996
+ */
7997
+ deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7825
7998
  /**
7826
7999
  * delete cluster tag
7827
8000
  * @summary Delete tag
@@ -8299,6 +8472,15 @@ export interface SharedApiInterface {
8299
8472
  * @memberof SharedApiInterface
8300
8473
  */
8301
8474
  getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
8475
+ /**
8476
+ * get a MinIO service account access key
8477
+ * @summary Get MinIO access key
8478
+ * @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
8479
+ * @param {*} [options] Override http request option.
8480
+ * @throws {RequiredError}
8481
+ * @memberof SharedApiInterface
8482
+ */
8483
+ getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
8302
8484
  /**
8303
8485
  * Get statistics summary for slow logs of a cluster. When the same slow log filters are supplied, totalSlowLogs can be used as the filtered list preview count.
8304
8486
  * @summary Get cluster slow log statistics
@@ -8862,6 +9044,15 @@ export interface SharedApiInterface {
8862
9044
  * @memberof SharedApiInterface
8863
9045
  */
8864
9046
  listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<RoleList>;
9047
+ /**
9048
+ * list MinIO service account access keys
9049
+ * @summary List MinIO access keys
9050
+ * @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
9051
+ * @param {*} [options] Override http request option.
9052
+ * @throws {RequiredError}
9053
+ * @memberof SharedApiInterface
9054
+ */
9055
+ listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
8865
9056
  /**
8866
9057
  * list the service version of the engine
8867
9058
  * @summary list the service version of the engine
@@ -9446,6 +9637,15 @@ export interface SharedApiInterface {
9446
9637
  * @memberof SharedApiInterface
9447
9638
  */
9448
9639
  updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
9640
+ /**
9641
+ * update a MinIO service account access key
9642
+ * @summary Update MinIO access key
9643
+ * @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
9644
+ * @param {*} [options] Override http request option.
9645
+ * @throws {RequiredError}
9646
+ * @memberof SharedApiInterface
9647
+ */
9648
+ updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
9449
9649
  /**
9450
9650
  * Enable or disable SQL audit log for a cluster component
9451
9651
  * @summary Update SQL audit log status
@@ -10285,6 +10485,37 @@ export interface SharedApiCreateRoleRequest {
10285
10485
  */
10286
10486
  readonly roleCreate: RoleCreate;
10287
10487
  }
10488
+ /**
10489
+ * Request parameters for createServiceAccount operation in SharedApi.
10490
+ * @export
10491
+ * @interface SharedApiCreateServiceAccountRequest
10492
+ */
10493
+ export interface SharedApiCreateServiceAccountRequest {
10494
+ /**
10495
+ * name of the engine
10496
+ * @type {string}
10497
+ * @memberof SharedApiCreateServiceAccount
10498
+ */
10499
+ readonly engineName: string;
10500
+ /**
10501
+ * name of the organization
10502
+ * @type {string}
10503
+ * @memberof SharedApiCreateServiceAccount
10504
+ */
10505
+ readonly orgName: string;
10506
+ /**
10507
+ * name of the cluster
10508
+ * @type {string}
10509
+ * @memberof SharedApiCreateServiceAccount
10510
+ */
10511
+ readonly clusterName: string;
10512
+ /**
10513
+ *
10514
+ * @type {DmsServiceAccountCreateRequest}
10515
+ * @memberof SharedApiCreateServiceAccount
10516
+ */
10517
+ readonly body: DmsServiceAccountCreateRequest;
10518
+ }
10288
10519
  /**
10289
10520
  * Request parameters for createTag operation in SharedApi.
10290
10521
  * @export
@@ -10905,6 +11136,37 @@ export interface SharedApiDeleteRoleByNameRequest {
10905
11136
  */
10906
11137
  readonly roleName: string;
10907
11138
  }
11139
+ /**
11140
+ * Request parameters for deleteServiceAccount operation in SharedApi.
11141
+ * @export
11142
+ * @interface SharedApiDeleteServiceAccountRequest
11143
+ */
11144
+ export interface SharedApiDeleteServiceAccountRequest {
11145
+ /**
11146
+ * name of the engine
11147
+ * @type {string}
11148
+ * @memberof SharedApiDeleteServiceAccount
11149
+ */
11150
+ readonly engineName: string;
11151
+ /**
11152
+ * name of the organization
11153
+ * @type {string}
11154
+ * @memberof SharedApiDeleteServiceAccount
11155
+ */
11156
+ readonly orgName: string;
11157
+ /**
11158
+ * name of the cluster
11159
+ * @type {string}
11160
+ * @memberof SharedApiDeleteServiceAccount
11161
+ */
11162
+ readonly clusterName: string;
11163
+ /**
11164
+ * MinIO access key
11165
+ * @type {string}
11166
+ * @memberof SharedApiDeleteServiceAccount
11167
+ */
11168
+ readonly accessKey: string;
11169
+ }
10908
11170
  /**
10909
11171
  * Request parameters for deleteTag operation in SharedApi.
10910
11172
  * @export
@@ -12428,6 +12690,37 @@ export interface SharedApiGetSchemaListRequest {
12428
12690
  */
12429
12691
  readonly database?: string;
12430
12692
  }
12693
+ /**
12694
+ * Request parameters for getServiceAccount operation in SharedApi.
12695
+ * @export
12696
+ * @interface SharedApiGetServiceAccountRequest
12697
+ */
12698
+ export interface SharedApiGetServiceAccountRequest {
12699
+ /**
12700
+ * name of the engine
12701
+ * @type {string}
12702
+ * @memberof SharedApiGetServiceAccount
12703
+ */
12704
+ readonly engineName: string;
12705
+ /**
12706
+ * name of the organization
12707
+ * @type {string}
12708
+ * @memberof SharedApiGetServiceAccount
12709
+ */
12710
+ readonly orgName: string;
12711
+ /**
12712
+ * name of the cluster
12713
+ * @type {string}
12714
+ * @memberof SharedApiGetServiceAccount
12715
+ */
12716
+ readonly clusterName: string;
12717
+ /**
12718
+ * MinIO access key
12719
+ * @type {string}
12720
+ * @memberof SharedApiGetServiceAccount
12721
+ */
12722
+ readonly accessKey: string;
12723
+ }
12431
12724
  /**
12432
12725
  * Request parameters for getSlowLogStats operation in SharedApi.
12433
12726
  * @export
@@ -14137,6 +14430,37 @@ export interface SharedApiListRolesRequest {
14137
14430
  */
14138
14431
  readonly orgName: string;
14139
14432
  }
14433
+ /**
14434
+ * Request parameters for listServiceAccounts operation in SharedApi.
14435
+ * @export
14436
+ * @interface SharedApiListServiceAccountsRequest
14437
+ */
14438
+ export interface SharedApiListServiceAccountsRequest {
14439
+ /**
14440
+ * name of the engine
14441
+ * @type {string}
14442
+ * @memberof SharedApiListServiceAccounts
14443
+ */
14444
+ readonly engineName: string;
14445
+ /**
14446
+ * name of the organization
14447
+ * @type {string}
14448
+ * @memberof SharedApiListServiceAccounts
14449
+ */
14450
+ readonly orgName: string;
14451
+ /**
14452
+ * name of the cluster
14453
+ * @type {string}
14454
+ * @memberof SharedApiListServiceAccounts
14455
+ */
14456
+ readonly clusterName: string;
14457
+ /**
14458
+ * MinIO user that owns the service accounts
14459
+ * @type {string}
14460
+ * @memberof SharedApiListServiceAccounts
14461
+ */
14462
+ readonly userName?: string;
14463
+ }
14140
14464
  /**
14141
14465
  * Request parameters for listServiceVersion operation in SharedApi.
14142
14466
  * @export
@@ -16458,6 +16782,43 @@ export interface SharedApiUpdateRoleByNameRequest {
16458
16782
  */
16459
16783
  readonly roleUpdate: RoleUpdate;
16460
16784
  }
16785
+ /**
16786
+ * Request parameters for updateServiceAccount operation in SharedApi.
16787
+ * @export
16788
+ * @interface SharedApiUpdateServiceAccountRequest
16789
+ */
16790
+ export interface SharedApiUpdateServiceAccountRequest {
16791
+ /**
16792
+ * name of the engine
16793
+ * @type {string}
16794
+ * @memberof SharedApiUpdateServiceAccount
16795
+ */
16796
+ readonly engineName: string;
16797
+ /**
16798
+ * name of the organization
16799
+ * @type {string}
16800
+ * @memberof SharedApiUpdateServiceAccount
16801
+ */
16802
+ readonly orgName: string;
16803
+ /**
16804
+ * name of the cluster
16805
+ * @type {string}
16806
+ * @memberof SharedApiUpdateServiceAccount
16807
+ */
16808
+ readonly clusterName: string;
16809
+ /**
16810
+ * MinIO access key
16811
+ * @type {string}
16812
+ * @memberof SharedApiUpdateServiceAccount
16813
+ */
16814
+ readonly accessKey: string;
16815
+ /**
16816
+ *
16817
+ * @type {DmsServiceAccountUpdateRequest}
16818
+ * @memberof SharedApiUpdateServiceAccount
16819
+ */
16820
+ readonly body: DmsServiceAccountUpdateRequest;
16821
+ }
16461
16822
  /**
16462
16823
  * Request parameters for updateSqlAudit operation in SharedApi.
16463
16824
  * @export
@@ -16877,6 +17238,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
16877
17238
  * @memberof SharedApi
16878
17239
  */
16879
17240
  createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
17241
+ /**
17242
+ * create a MinIO service account access key
17243
+ * @summary Create MinIO access key
17244
+ * @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
17245
+ * @param {*} [options] Override http request option.
17246
+ * @throws {RequiredError}
17247
+ * @memberof SharedApi
17248
+ */
17249
+ createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
16880
17250
  /**
16881
17251
  * create tag
16882
17252
  * @summary Create cluster tags
@@ -17111,6 +17481,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
17111
17481
  * @memberof SharedApi
17112
17482
  */
17113
17483
  deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17484
+ /**
17485
+ * delete a MinIO service account access key
17486
+ * @summary Delete MinIO access key
17487
+ * @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
17488
+ * @param {*} [options] Override http request option.
17489
+ * @throws {RequiredError}
17490
+ * @memberof SharedApi
17491
+ */
17492
+ deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17114
17493
  /**
17115
17494
  * delete cluster tag
17116
17495
  * @summary Delete tag
@@ -17588,6 +17967,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
17588
17967
  * @memberof SharedApi
17589
17968
  */
17590
17969
  getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
17970
+ /**
17971
+ * get a MinIO service account access key
17972
+ * @summary Get MinIO access key
17973
+ * @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
17974
+ * @param {*} [options] Override http request option.
17975
+ * @throws {RequiredError}
17976
+ * @memberof SharedApi
17977
+ */
17978
+ getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
17591
17979
  /**
17592
17980
  * Get statistics summary for slow logs of a cluster. When the same slow log filters are supplied, totalSlowLogs can be used as the filtered list preview count.
17593
17981
  * @summary Get cluster slow log statistics
@@ -18151,6 +18539,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
18151
18539
  * @memberof SharedApi
18152
18540
  */
18153
18541
  listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleList, any, {}>>;
18542
+ /**
18543
+ * list MinIO service account access keys
18544
+ * @summary List MinIO access keys
18545
+ * @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
18546
+ * @param {*} [options] Override http request option.
18547
+ * @throws {RequiredError}
18548
+ * @memberof SharedApi
18549
+ */
18550
+ listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount[], any, {}>>;
18154
18551
  /**
18155
18552
  * list the service version of the engine
18156
18553
  * @summary list the service version of the engine
@@ -18735,6 +19132,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
18735
19132
  * @memberof SharedApi
18736
19133
  */
18737
19134
  updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
19135
+ /**
19136
+ * update a MinIO service account access key
19137
+ * @summary Update MinIO access key
19138
+ * @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
19139
+ * @param {*} [options] Override http request option.
19140
+ * @throws {RequiredError}
19141
+ * @memberof SharedApi
19142
+ */
19143
+ updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
18738
19144
  /**
18739
19145
  * Enable or disable SQL audit log for a cluster component
18740
19146
  * @summary Update SQL audit log status