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
@@ -74,6 +74,9 @@ import type { DmsQueryHistory } from '../models';
74
74
  import type { DmsQueryRequest } from '../models';
75
75
  import type { DmsQueryResponse } from '../models';
76
76
  import type { DmsResult } from '../models';
77
+ import type { DmsServiceAccount } from '../models';
78
+ import type { DmsServiceAccountCreateRequest } from '../models';
79
+ import type { DmsServiceAccountUpdateRequest } from '../models';
77
80
  import type { DmsSession } from '../models';
78
81
  import type { DmsTaskInfo } from '../models';
79
82
  import type { DmsTaskList } from '../models';
@@ -468,6 +471,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
468
471
  * @throws {RequiredError}
469
472
  */
470
473
  createRole: (orgName: string, roleCreate: RoleCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
474
+ /**
475
+ * create a MinIO service account access key
476
+ * @summary Create MinIO access key
477
+ * @param {string} engineName name of the engine
478
+ * @param {string} orgName name of the organization
479
+ * @param {string} clusterName name of the cluster
480
+ * @param {DmsServiceAccountCreateRequest} body
481
+ * @param {*} [options] Override http request option.
482
+ * @throws {RequiredError}
483
+ */
484
+ createServiceAccount: (engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
471
485
  /**
472
486
  * create tag
473
487
  * @summary Create cluster tags
@@ -763,6 +777,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
763
777
  * @throws {RequiredError}
764
778
  */
765
779
  deleteRoleByName: (orgName: string, roleName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
780
+ /**
781
+ * delete a MinIO service account access key
782
+ * @summary Delete MinIO access key
783
+ * @param {string} engineName name of the engine
784
+ * @param {string} orgName name of the organization
785
+ * @param {string} clusterName name of the cluster
786
+ * @param {string} accessKey MinIO access key
787
+ * @param {*} [options] Override http request option.
788
+ * @throws {RequiredError}
789
+ */
790
+ deleteServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
766
791
  /**
767
792
  * delete cluster tag
768
793
  * @summary Delete tag
@@ -1324,6 +1349,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
1324
1349
  * @throws {RequiredError}
1325
1350
  */
1326
1351
  getSchemaList: (orgName: string, clusterName: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1352
+ /**
1353
+ * get a MinIO service account access key
1354
+ * @summary Get MinIO access key
1355
+ * @param {string} engineName name of the engine
1356
+ * @param {string} orgName name of the organization
1357
+ * @param {string} clusterName name of the cluster
1358
+ * @param {string} accessKey MinIO access key
1359
+ * @param {*} [options] Override http request option.
1360
+ * @throws {RequiredError}
1361
+ */
1362
+ getServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1327
1363
  /**
1328
1364
  * Get statistics summary for slow logs of a cluster
1329
1365
  * @summary Get cluster slow log statistics
@@ -1952,6 +1988,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
1952
1988
  * @throws {RequiredError}
1953
1989
  */
1954
1990
  listRoles: (orgName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1991
+ /**
1992
+ * list MinIO service account access keys
1993
+ * @summary List MinIO access keys
1994
+ * @param {string} engineName name of the engine
1995
+ * @param {string} orgName name of the organization
1996
+ * @param {string} clusterName name of the cluster
1997
+ * @param {string} [userName] MinIO user that owns the service accounts
1998
+ * @param {*} [options] Override http request option.
1999
+ * @throws {RequiredError}
2000
+ */
2001
+ listServiceAccounts: (engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1955
2002
  /**
1956
2003
  * list the service version of the engine
1957
2004
  * @summary list the service version of the engine
@@ -2700,6 +2747,18 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2700
2747
  * @throws {RequiredError}
2701
2748
  */
2702
2749
  updateRoleByName: (orgName: string, roleName: string, roleUpdate: RoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2750
+ /**
2751
+ * update a MinIO service account access key
2752
+ * @summary Update MinIO access key
2753
+ * @param {string} engineName name of the engine
2754
+ * @param {string} orgName name of the organization
2755
+ * @param {string} clusterName name of the cluster
2756
+ * @param {string} accessKey MinIO access key
2757
+ * @param {DmsServiceAccountUpdateRequest} body
2758
+ * @param {*} [options] Override http request option.
2759
+ * @throws {RequiredError}
2760
+ */
2761
+ updateServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2703
2762
  /**
2704
2763
  * Enable or disable SQL audit log for a cluster component
2705
2764
  * @summary Update SQL audit log status
@@ -3032,6 +3091,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3032
3091
  * @throws {RequiredError}
3033
3092
  */
3034
3093
  createRole(orgName: string, roleCreate: RoleCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
3094
+ /**
3095
+ * create a MinIO service account access key
3096
+ * @summary Create MinIO access key
3097
+ * @param {string} engineName name of the engine
3098
+ * @param {string} orgName name of the organization
3099
+ * @param {string} clusterName name of the cluster
3100
+ * @param {DmsServiceAccountCreateRequest} body
3101
+ * @param {*} [options] Override http request option.
3102
+ * @throws {RequiredError}
3103
+ */
3104
+ createServiceAccount(engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
3035
3105
  /**
3036
3106
  * create tag
3037
3107
  * @summary Create cluster tags
@@ -3327,6 +3397,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3327
3397
  * @throws {RequiredError}
3328
3398
  */
3329
3399
  deleteRoleByName(orgName: string, roleName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3400
+ /**
3401
+ * delete a MinIO service account access key
3402
+ * @summary Delete MinIO access key
3403
+ * @param {string} engineName name of the engine
3404
+ * @param {string} orgName name of the organization
3405
+ * @param {string} clusterName name of the cluster
3406
+ * @param {string} accessKey MinIO access key
3407
+ * @param {*} [options] Override http request option.
3408
+ * @throws {RequiredError}
3409
+ */
3410
+ deleteServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3330
3411
  /**
3331
3412
  * delete cluster tag
3332
3413
  * @summary Delete tag
@@ -3890,6 +3971,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3890
3971
  * @throws {RequiredError}
3891
3972
  */
3892
3973
  getSchemaList(orgName: string, clusterName: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
3974
+ /**
3975
+ * get a MinIO service account access key
3976
+ * @summary Get MinIO access key
3977
+ * @param {string} engineName name of the engine
3978
+ * @param {string} orgName name of the organization
3979
+ * @param {string} clusterName name of the cluster
3980
+ * @param {string} accessKey MinIO access key
3981
+ * @param {*} [options] Override http request option.
3982
+ * @throws {RequiredError}
3983
+ */
3984
+ getServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
3893
3985
  /**
3894
3986
  * Get statistics summary for slow logs of a cluster
3895
3987
  * @summary Get cluster slow log statistics
@@ -4524,6 +4616,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4524
4616
  * @throws {RequiredError}
4525
4617
  */
4526
4618
  listRoles(orgName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
4619
+ /**
4620
+ * list MinIO service account access keys
4621
+ * @summary List MinIO access keys
4622
+ * @param {string} engineName name of the engine
4623
+ * @param {string} orgName name of the organization
4624
+ * @param {string} clusterName name of the cluster
4625
+ * @param {string} [userName] MinIO user that owns the service accounts
4626
+ * @param {*} [options] Override http request option.
4627
+ * @throws {RequiredError}
4628
+ */
4629
+ listServiceAccounts(engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DmsServiceAccount>>>;
4527
4630
  /**
4528
4631
  * list the service version of the engine
4529
4632
  * @summary list the service version of the engine
@@ -5272,6 +5375,18 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
5272
5375
  * @throws {RequiredError}
5273
5376
  */
5274
5377
  updateRoleByName(orgName: string, roleName: string, roleUpdate: RoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
5378
+ /**
5379
+ * update a MinIO service account access key
5380
+ * @summary Update MinIO access key
5381
+ * @param {string} engineName name of the engine
5382
+ * @param {string} orgName name of the organization
5383
+ * @param {string} clusterName name of the cluster
5384
+ * @param {string} accessKey MinIO access key
5385
+ * @param {DmsServiceAccountUpdateRequest} body
5386
+ * @param {*} [options] Override http request option.
5387
+ * @throws {RequiredError}
5388
+ */
5389
+ updateServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
5275
5390
  /**
5276
5391
  * Enable or disable SQL audit log for a cluster component
5277
5392
  * @summary Update SQL audit log status
@@ -5552,6 +5667,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
5552
5667
  * @throws {RequiredError}
5553
5668
  */
5554
5669
  createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
5670
+ /**
5671
+ * create a MinIO service account access key
5672
+ * @summary Create MinIO access key
5673
+ * @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
5674
+ * @param {*} [options] Override http request option.
5675
+ * @throws {RequiredError}
5676
+ */
5677
+ createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
5555
5678
  /**
5556
5679
  * create tag
5557
5680
  * @summary Create cluster tags
@@ -5792,6 +5915,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
5792
5915
  * @throws {RequiredError}
5793
5916
  */
5794
5917
  deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5918
+ /**
5919
+ * delete a MinIO service account access key
5920
+ * @summary Delete MinIO access key
5921
+ * @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
5922
+ * @param {*} [options] Override http request option.
5923
+ * @throws {RequiredError}
5924
+ */
5925
+ deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5795
5926
  /**
5796
5927
  * delete cluster tag
5797
5928
  * @summary Delete tag
@@ -6234,6 +6365,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
6234
6365
  * @throws {RequiredError}
6235
6366
  */
6236
6367
  getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
6368
+ /**
6369
+ * get a MinIO service account access key
6370
+ * @summary Get MinIO access key
6371
+ * @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
6372
+ * @param {*} [options] Override http request option.
6373
+ * @throws {RequiredError}
6374
+ */
6375
+ getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
6237
6376
  /**
6238
6377
  * Get statistics summary for slow logs of a cluster
6239
6378
  * @summary Get cluster slow log statistics
@@ -6748,6 +6887,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
6748
6887
  * @throws {RequiredError}
6749
6888
  */
6750
6889
  listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<RoleList>;
6890
+ /**
6891
+ * list MinIO service account access keys
6892
+ * @summary List MinIO access keys
6893
+ * @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
6894
+ * @param {*} [options] Override http request option.
6895
+ * @throws {RequiredError}
6896
+ */
6897
+ listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
6751
6898
  /**
6752
6899
  * list the service version of the engine
6753
6900
  * @summary list the service version of the engine
@@ -7299,6 +7446,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
7299
7446
  * @throws {RequiredError}
7300
7447
  */
7301
7448
  updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
7449
+ /**
7450
+ * update a MinIO service account access key
7451
+ * @summary Update MinIO access key
7452
+ * @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
7453
+ * @param {*} [options] Override http request option.
7454
+ * @throws {RequiredError}
7455
+ */
7456
+ updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
7302
7457
  /**
7303
7458
  * Enable or disable SQL audit log for a cluster component
7304
7459
  * @summary Update SQL audit log status
@@ -7596,6 +7751,15 @@ export interface SharedApiInterface {
7596
7751
  * @memberof SharedApiInterface
7597
7752
  */
7598
7753
  createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
7754
+ /**
7755
+ * create a MinIO service account access key
7756
+ * @summary Create MinIO access key
7757
+ * @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
7758
+ * @param {*} [options] Override http request option.
7759
+ * @throws {RequiredError}
7760
+ * @memberof SharedApiInterface
7761
+ */
7762
+ createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
7599
7763
  /**
7600
7764
  * create tag
7601
7765
  * @summary Create cluster tags
@@ -7866,6 +8030,15 @@ export interface SharedApiInterface {
7866
8030
  * @memberof SharedApiInterface
7867
8031
  */
7868
8032
  deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8033
+ /**
8034
+ * delete a MinIO service account access key
8035
+ * @summary Delete MinIO access key
8036
+ * @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
8037
+ * @param {*} [options] Override http request option.
8038
+ * @throws {RequiredError}
8039
+ * @memberof SharedApiInterface
8040
+ */
8041
+ deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
7869
8042
  /**
7870
8043
  * delete cluster tag
7871
8044
  * @summary Delete tag
@@ -8363,6 +8536,15 @@ export interface SharedApiInterface {
8363
8536
  * @memberof SharedApiInterface
8364
8537
  */
8365
8538
  getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
8539
+ /**
8540
+ * get a MinIO service account access key
8541
+ * @summary Get MinIO access key
8542
+ * @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
8543
+ * @param {*} [options] Override http request option.
8544
+ * @throws {RequiredError}
8545
+ * @memberof SharedApiInterface
8546
+ */
8547
+ getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
8366
8548
  /**
8367
8549
  * Get statistics summary for slow logs of a cluster
8368
8550
  * @summary Get cluster slow log statistics
@@ -8941,6 +9123,15 @@ export interface SharedApiInterface {
8941
9123
  * @memberof SharedApiInterface
8942
9124
  */
8943
9125
  listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<RoleList>;
9126
+ /**
9127
+ * list MinIO service account access keys
9128
+ * @summary List MinIO access keys
9129
+ * @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
9130
+ * @param {*} [options] Override http request option.
9131
+ * @throws {RequiredError}
9132
+ * @memberof SharedApiInterface
9133
+ */
9134
+ listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
8944
9135
  /**
8945
9136
  * list the service version of the engine
8946
9137
  * @summary list the service version of the engine
@@ -9561,6 +9752,15 @@ export interface SharedApiInterface {
9561
9752
  * @memberof SharedApiInterface
9562
9753
  */
9563
9754
  updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
9755
+ /**
9756
+ * update a MinIO service account access key
9757
+ * @summary Update MinIO access key
9758
+ * @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
9759
+ * @param {*} [options] Override http request option.
9760
+ * @throws {RequiredError}
9761
+ * @memberof SharedApiInterface
9762
+ */
9763
+ updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
9564
9764
  /**
9565
9765
  * Enable or disable SQL audit log for a cluster component
9566
9766
  * @summary Update SQL audit log status
@@ -10265,6 +10465,37 @@ export interface SharedApiCreateRoleRequest {
10265
10465
  */
10266
10466
  readonly roleCreate: RoleCreate;
10267
10467
  }
10468
+ /**
10469
+ * Request parameters for createServiceAccount operation in SharedApi.
10470
+ * @export
10471
+ * @interface SharedApiCreateServiceAccountRequest
10472
+ */
10473
+ export interface SharedApiCreateServiceAccountRequest {
10474
+ /**
10475
+ * name of the engine
10476
+ * @type {string}
10477
+ * @memberof SharedApiCreateServiceAccount
10478
+ */
10479
+ readonly engineName: string;
10480
+ /**
10481
+ * name of the organization
10482
+ * @type {string}
10483
+ * @memberof SharedApiCreateServiceAccount
10484
+ */
10485
+ readonly orgName: string;
10486
+ /**
10487
+ * name of the cluster
10488
+ * @type {string}
10489
+ * @memberof SharedApiCreateServiceAccount
10490
+ */
10491
+ readonly clusterName: string;
10492
+ /**
10493
+ *
10494
+ * @type {DmsServiceAccountCreateRequest}
10495
+ * @memberof SharedApiCreateServiceAccount
10496
+ */
10497
+ readonly body: DmsServiceAccountCreateRequest;
10498
+ }
10268
10499
  /**
10269
10500
  * Request parameters for createTag operation in SharedApi.
10270
10501
  * @export
@@ -10985,6 +11216,37 @@ export interface SharedApiDeleteRoleByNameRequest {
10985
11216
  */
10986
11217
  readonly roleName: string;
10987
11218
  }
11219
+ /**
11220
+ * Request parameters for deleteServiceAccount operation in SharedApi.
11221
+ * @export
11222
+ * @interface SharedApiDeleteServiceAccountRequest
11223
+ */
11224
+ export interface SharedApiDeleteServiceAccountRequest {
11225
+ /**
11226
+ * name of the engine
11227
+ * @type {string}
11228
+ * @memberof SharedApiDeleteServiceAccount
11229
+ */
11230
+ readonly engineName: string;
11231
+ /**
11232
+ * name of the organization
11233
+ * @type {string}
11234
+ * @memberof SharedApiDeleteServiceAccount
11235
+ */
11236
+ readonly orgName: string;
11237
+ /**
11238
+ * name of the cluster
11239
+ * @type {string}
11240
+ * @memberof SharedApiDeleteServiceAccount
11241
+ */
11242
+ readonly clusterName: string;
11243
+ /**
11244
+ * MinIO access key
11245
+ * @type {string}
11246
+ * @memberof SharedApiDeleteServiceAccount
11247
+ */
11248
+ readonly accessKey: string;
11249
+ }
10988
11250
  /**
10989
11251
  * Request parameters for deleteTag operation in SharedApi.
10990
11252
  * @export
@@ -12426,6 +12688,37 @@ export interface SharedApiGetSchemaListRequest {
12426
12688
  */
12427
12689
  readonly id: string;
12428
12690
  }
12691
+ /**
12692
+ * Request parameters for getServiceAccount operation in SharedApi.
12693
+ * @export
12694
+ * @interface SharedApiGetServiceAccountRequest
12695
+ */
12696
+ export interface SharedApiGetServiceAccountRequest {
12697
+ /**
12698
+ * name of the engine
12699
+ * @type {string}
12700
+ * @memberof SharedApiGetServiceAccount
12701
+ */
12702
+ readonly engineName: string;
12703
+ /**
12704
+ * name of the organization
12705
+ * @type {string}
12706
+ * @memberof SharedApiGetServiceAccount
12707
+ */
12708
+ readonly orgName: string;
12709
+ /**
12710
+ * name of the cluster
12711
+ * @type {string}
12712
+ * @memberof SharedApiGetServiceAccount
12713
+ */
12714
+ readonly clusterName: string;
12715
+ /**
12716
+ * MinIO access key
12717
+ * @type {string}
12718
+ * @memberof SharedApiGetServiceAccount
12719
+ */
12720
+ readonly accessKey: string;
12721
+ }
12429
12722
  /**
12430
12723
  * Request parameters for getSlowLogStats operation in SharedApi.
12431
12724
  * @export
@@ -13926,6 +14219,37 @@ export interface SharedApiListRolesRequest {
13926
14219
  */
13927
14220
  readonly orgName: string;
13928
14221
  }
14222
+ /**
14223
+ * Request parameters for listServiceAccounts operation in SharedApi.
14224
+ * @export
14225
+ * @interface SharedApiListServiceAccountsRequest
14226
+ */
14227
+ export interface SharedApiListServiceAccountsRequest {
14228
+ /**
14229
+ * name of the engine
14230
+ * @type {string}
14231
+ * @memberof SharedApiListServiceAccounts
14232
+ */
14233
+ readonly engineName: string;
14234
+ /**
14235
+ * name of the organization
14236
+ * @type {string}
14237
+ * @memberof SharedApiListServiceAccounts
14238
+ */
14239
+ readonly orgName: string;
14240
+ /**
14241
+ * name of the cluster
14242
+ * @type {string}
14243
+ * @memberof SharedApiListServiceAccounts
14244
+ */
14245
+ readonly clusterName: string;
14246
+ /**
14247
+ * MinIO user that owns the service accounts
14248
+ * @type {string}
14249
+ * @memberof SharedApiListServiceAccounts
14250
+ */
14251
+ readonly userName?: string;
14252
+ }
13929
14253
  /**
13930
14254
  * Request parameters for listServiceVersion operation in SharedApi.
13931
14255
  * @export
@@ -15969,6 +16293,43 @@ export interface SharedApiUpdateRoleByNameRequest {
15969
16293
  */
15970
16294
  readonly roleUpdate: RoleUpdate;
15971
16295
  }
16296
+ /**
16297
+ * Request parameters for updateServiceAccount operation in SharedApi.
16298
+ * @export
16299
+ * @interface SharedApiUpdateServiceAccountRequest
16300
+ */
16301
+ export interface SharedApiUpdateServiceAccountRequest {
16302
+ /**
16303
+ * name of the engine
16304
+ * @type {string}
16305
+ * @memberof SharedApiUpdateServiceAccount
16306
+ */
16307
+ readonly engineName: string;
16308
+ /**
16309
+ * name of the organization
16310
+ * @type {string}
16311
+ * @memberof SharedApiUpdateServiceAccount
16312
+ */
16313
+ readonly orgName: string;
16314
+ /**
16315
+ * name of the cluster
16316
+ * @type {string}
16317
+ * @memberof SharedApiUpdateServiceAccount
16318
+ */
16319
+ readonly clusterName: string;
16320
+ /**
16321
+ * MinIO access key
16322
+ * @type {string}
16323
+ * @memberof SharedApiUpdateServiceAccount
16324
+ */
16325
+ readonly accessKey: string;
16326
+ /**
16327
+ *
16328
+ * @type {DmsServiceAccountUpdateRequest}
16329
+ * @memberof SharedApiUpdateServiceAccount
16330
+ */
16331
+ readonly body: DmsServiceAccountUpdateRequest;
16332
+ }
15972
16333
  /**
15973
16334
  * Request parameters for updateSqlAudit operation in SharedApi.
15974
16335
  * @export
@@ -16363,6 +16724,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
16363
16724
  * @memberof SharedApi
16364
16725
  */
16365
16726
  createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
16727
+ /**
16728
+ * create a MinIO service account access key
16729
+ * @summary Create MinIO access key
16730
+ * @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
16731
+ * @param {*} [options] Override http request option.
16732
+ * @throws {RequiredError}
16733
+ * @memberof SharedApi
16734
+ */
16735
+ createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
16366
16736
  /**
16367
16737
  * create tag
16368
16738
  * @summary Create cluster tags
@@ -16633,6 +17003,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
16633
17003
  * @memberof SharedApi
16634
17004
  */
16635
17005
  deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17006
+ /**
17007
+ * delete a MinIO service account access key
17008
+ * @summary Delete MinIO access key
17009
+ * @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
17010
+ * @param {*} [options] Override http request option.
17011
+ * @throws {RequiredError}
17012
+ * @memberof SharedApi
17013
+ */
17014
+ deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16636
17015
  /**
16637
17016
  * delete cluster tag
16638
17017
  * @summary Delete tag
@@ -17130,6 +17509,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
17130
17509
  * @memberof SharedApi
17131
17510
  */
17132
17511
  getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
17512
+ /**
17513
+ * get a MinIO service account access key
17514
+ * @summary Get MinIO access key
17515
+ * @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
17516
+ * @param {*} [options] Override http request option.
17517
+ * @throws {RequiredError}
17518
+ * @memberof SharedApi
17519
+ */
17520
+ getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
17133
17521
  /**
17134
17522
  * Get statistics summary for slow logs of a cluster
17135
17523
  * @summary Get cluster slow log statistics
@@ -17708,6 +18096,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
17708
18096
  * @memberof SharedApi
17709
18097
  */
17710
18098
  listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleList, any, {}>>;
18099
+ /**
18100
+ * list MinIO service account access keys
18101
+ * @summary List MinIO access keys
18102
+ * @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
18103
+ * @param {*} [options] Override http request option.
18104
+ * @throws {RequiredError}
18105
+ * @memberof SharedApi
18106
+ */
18107
+ listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount[], any, {}>>;
17711
18108
  /**
17712
18109
  * list the service version of the engine
17713
18110
  * @summary list the service version of the engine
@@ -18328,6 +18725,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
18328
18725
  * @memberof SharedApi
18329
18726
  */
18330
18727
  updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
18728
+ /**
18729
+ * update a MinIO service account access key
18730
+ * @summary Update MinIO access key
18731
+ * @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
18732
+ * @param {*} [options] Override http request option.
18733
+ * @throws {RequiredError}
18734
+ * @memberof SharedApi
18735
+ */
18736
+ updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
18331
18737
  /**
18332
18738
  * Enable or disable SQL audit log for a cluster component
18333
18739
  * @summary Update SQL audit log status