kb-cloud-client-typescript 2.3.0-alpha.120 → 2.3.0-alpha.122
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.
- package/dist/adminapi/models/account-option.d.ts +6 -0
- package/dist/adminapi/models/account-option.d.ts.map +1 -1
- package/dist/openapi/apis/account-api.d.ts +406 -0
- package/dist/openapi/apis/account-api.d.ts.map +1 -1
- package/dist/openapi/apis/account-api.js +427 -0
- package/dist/openapi/apis/account-api.js.map +1 -1
- package/dist/openapi/apis/rdbms-api.d.ts +406 -0
- package/dist/openapi/apis/rdbms-api.d.ts.map +1 -1
- package/dist/openapi/apis/rdbms-api.js +427 -0
- package/dist/openapi/apis/rdbms-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +406 -0
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +427 -0
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/account-option.d.ts +6 -0
- package/dist/openapi/models/account-option.d.ts.map +1 -1
- package/dist/openapi/models/dms-service-account-create-request.d.ts +55 -0
- package/dist/openapi/models/dms-service-account-create-request.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account-create-request.js +16 -0
- package/dist/openapi/models/dms-service-account-create-request.js.map +1 -0
- package/dist/openapi/models/dms-service-account-status.d.ts +22 -0
- package/dist/openapi/models/dms-service-account-status.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account-status.js +26 -0
- package/dist/openapi/models/dms-service-account-status.js.map +1 -0
- package/dist/openapi/models/dms-service-account-update-request.d.ts +32 -0
- package/dist/openapi/models/dms-service-account-update-request.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account-update-request.js +16 -0
- package/dist/openapi/models/dms-service-account-update-request.js.map +1 -0
- package/dist/openapi/models/dms-service-account.d.ts +73 -0
- package/dist/openapi/models/dms-service-account.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account.js +16 -0
- package/dist/openapi/models/dms-service-account.js.map +1 -0
- package/dist/openapi/models/index.d.ts +4 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +4 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/models/account-option.ts +6 -0
- package/src/adminapi.yaml +3 -0
- package/src/openapi/.openapi-generator/FILES +4 -0
- package/src/openapi/apis/account-api.ts +703 -0
- package/src/openapi/apis/rdbms-api.ts +703 -0
- package/src/openapi/apis/shared-api.ts +703 -0
- package/src/openapi/models/account-option.ts +6 -0
- package/src/openapi/models/dms-service-account-create-request.ts +60 -0
- package/src/openapi/models/dms-service-account-status.ts +31 -0
- package/src/openapi/models/dms-service-account-update-request.ts +41 -0
- package/src/openapi/models/dms-service-account.ts +78 -0
- package/src/openapi/models/index.ts +4 -0
- package/src/openapi.yaml +333 -0
|
@@ -80,6 +80,9 @@ import type { DmsQueryHistory } from '../models';
|
|
|
80
80
|
import type { DmsQueryRequest } from '../models';
|
|
81
81
|
import type { DmsQueryResponse } from '../models';
|
|
82
82
|
import type { DmsResult } from '../models';
|
|
83
|
+
import type { DmsServiceAccount } from '../models';
|
|
84
|
+
import type { DmsServiceAccountCreateRequest } from '../models';
|
|
85
|
+
import type { DmsServiceAccountUpdateRequest } from '../models';
|
|
83
86
|
import type { DmsSession } from '../models';
|
|
84
87
|
import type { DmsTaskInfo } from '../models';
|
|
85
88
|
import type { DmsTaskList } from '../models';
|
|
@@ -485,6 +488,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
485
488
|
* @throws {RequiredError}
|
|
486
489
|
*/
|
|
487
490
|
createRole: (orgName: string, roleCreate: RoleCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
491
|
+
/**
|
|
492
|
+
* create a MinIO service account access key
|
|
493
|
+
* @summary Create MinIO access key
|
|
494
|
+
* @param {string} engineName name of the engine
|
|
495
|
+
* @param {string} orgName name of the organization
|
|
496
|
+
* @param {string} clusterName name of the cluster
|
|
497
|
+
* @param {DmsServiceAccountCreateRequest} body
|
|
498
|
+
* @param {*} [options] Override http request option.
|
|
499
|
+
* @throws {RequiredError}
|
|
500
|
+
*/
|
|
501
|
+
createServiceAccount: (engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
488
502
|
/**
|
|
489
503
|
* create tag
|
|
490
504
|
* @summary Create cluster tags
|
|
@@ -787,6 +801,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
787
801
|
* @throws {RequiredError}
|
|
788
802
|
*/
|
|
789
803
|
deleteRoleByName: (orgName: string, roleName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
804
|
+
/**
|
|
805
|
+
* delete a MinIO service account access key
|
|
806
|
+
* @summary Delete MinIO access key
|
|
807
|
+
* @param {string} engineName name of the engine
|
|
808
|
+
* @param {string} orgName name of the organization
|
|
809
|
+
* @param {string} clusterName name of the cluster
|
|
810
|
+
* @param {string} accessKey MinIO access key
|
|
811
|
+
* @param {*} [options] Override http request option.
|
|
812
|
+
* @throws {RequiredError}
|
|
813
|
+
*/
|
|
814
|
+
deleteServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
790
815
|
/**
|
|
791
816
|
* delete cluster tag
|
|
792
817
|
* @summary Delete tag
|
|
@@ -1397,6 +1422,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1397
1422
|
* @throws {RequiredError}
|
|
1398
1423
|
*/
|
|
1399
1424
|
getSchemaList: (orgName: string, clusterName: string, id: string, database?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1425
|
+
/**
|
|
1426
|
+
* get a MinIO service account access key
|
|
1427
|
+
* @summary Get MinIO access key
|
|
1428
|
+
* @param {string} engineName name of the engine
|
|
1429
|
+
* @param {string} orgName name of the organization
|
|
1430
|
+
* @param {string} clusterName name of the cluster
|
|
1431
|
+
* @param {string} accessKey MinIO access key
|
|
1432
|
+
* @param {*} [options] Override http request option.
|
|
1433
|
+
* @throws {RequiredError}
|
|
1434
|
+
*/
|
|
1435
|
+
getServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1400
1436
|
/**
|
|
1401
1437
|
* 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.
|
|
1402
1438
|
* @summary Get cluster slow log statistics
|
|
@@ -2004,6 +2040,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2004
2040
|
* @throws {RequiredError}
|
|
2005
2041
|
*/
|
|
2006
2042
|
listRoles: (orgName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2043
|
+
/**
|
|
2044
|
+
* list MinIO service account access keys
|
|
2045
|
+
* @summary List MinIO access keys
|
|
2046
|
+
* @param {string} engineName name of the engine
|
|
2047
|
+
* @param {string} orgName name of the organization
|
|
2048
|
+
* @param {string} clusterName name of the cluster
|
|
2049
|
+
* @param {string} [userName] MinIO user that owns the service accounts
|
|
2050
|
+
* @param {*} [options] Override http request option.
|
|
2051
|
+
* @throws {RequiredError}
|
|
2052
|
+
*/
|
|
2053
|
+
listServiceAccounts: (engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2007
2054
|
/**
|
|
2008
2055
|
* list the service version of the engine
|
|
2009
2056
|
* @summary list the service version of the engine
|
|
@@ -2836,6 +2883,18 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2836
2883
|
* @throws {RequiredError}
|
|
2837
2884
|
*/
|
|
2838
2885
|
updateRoleByName: (orgName: string, roleName: string, roleUpdate: RoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2886
|
+
/**
|
|
2887
|
+
* update a MinIO service account access key
|
|
2888
|
+
* @summary Update MinIO access key
|
|
2889
|
+
* @param {string} engineName name of the engine
|
|
2890
|
+
* @param {string} orgName name of the organization
|
|
2891
|
+
* @param {string} clusterName name of the cluster
|
|
2892
|
+
* @param {string} accessKey MinIO access key
|
|
2893
|
+
* @param {DmsServiceAccountUpdateRequest} body
|
|
2894
|
+
* @param {*} [options] Override http request option.
|
|
2895
|
+
* @throws {RequiredError}
|
|
2896
|
+
*/
|
|
2897
|
+
updateServiceAccount: (engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2839
2898
|
/**
|
|
2840
2899
|
* Enable or disable SQL audit log for a cluster component
|
|
2841
2900
|
* @summary Update SQL audit log status
|
|
@@ -3204,6 +3263,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
3204
3263
|
* @throws {RequiredError}
|
|
3205
3264
|
*/
|
|
3206
3265
|
createRole(orgName: string, roleCreate: RoleCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
|
|
3266
|
+
/**
|
|
3267
|
+
* create a MinIO service account access key
|
|
3268
|
+
* @summary Create MinIO access key
|
|
3269
|
+
* @param {string} engineName name of the engine
|
|
3270
|
+
* @param {string} orgName name of the organization
|
|
3271
|
+
* @param {string} clusterName name of the cluster
|
|
3272
|
+
* @param {DmsServiceAccountCreateRequest} body
|
|
3273
|
+
* @param {*} [options] Override http request option.
|
|
3274
|
+
* @throws {RequiredError}
|
|
3275
|
+
*/
|
|
3276
|
+
createServiceAccount(engineName: string, orgName: string, clusterName: string, body: DmsServiceAccountCreateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
|
|
3207
3277
|
/**
|
|
3208
3278
|
* create tag
|
|
3209
3279
|
* @summary Create cluster tags
|
|
@@ -3506,6 +3576,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
3506
3576
|
* @throws {RequiredError}
|
|
3507
3577
|
*/
|
|
3508
3578
|
deleteRoleByName(orgName: string, roleName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3579
|
+
/**
|
|
3580
|
+
* delete a MinIO service account access key
|
|
3581
|
+
* @summary Delete MinIO access key
|
|
3582
|
+
* @param {string} engineName name of the engine
|
|
3583
|
+
* @param {string} orgName name of the organization
|
|
3584
|
+
* @param {string} clusterName name of the cluster
|
|
3585
|
+
* @param {string} accessKey MinIO access key
|
|
3586
|
+
* @param {*} [options] Override http request option.
|
|
3587
|
+
* @throws {RequiredError}
|
|
3588
|
+
*/
|
|
3589
|
+
deleteServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3509
3590
|
/**
|
|
3510
3591
|
* delete cluster tag
|
|
3511
3592
|
* @summary Delete tag
|
|
@@ -4116,6 +4197,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4116
4197
|
* @throws {RequiredError}
|
|
4117
4198
|
*/
|
|
4118
4199
|
getSchemaList(orgName: string, clusterName: string, id: string, database?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
4200
|
+
/**
|
|
4201
|
+
* get a MinIO service account access key
|
|
4202
|
+
* @summary Get MinIO access key
|
|
4203
|
+
* @param {string} engineName name of the engine
|
|
4204
|
+
* @param {string} orgName name of the organization
|
|
4205
|
+
* @param {string} clusterName name of the cluster
|
|
4206
|
+
* @param {string} accessKey MinIO access key
|
|
4207
|
+
* @param {*} [options] Override http request option.
|
|
4208
|
+
* @throws {RequiredError}
|
|
4209
|
+
*/
|
|
4210
|
+
getServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
|
|
4119
4211
|
/**
|
|
4120
4212
|
* 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.
|
|
4121
4213
|
* @summary Get cluster slow log statistics
|
|
@@ -4723,6 +4815,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4723
4815
|
* @throws {RequiredError}
|
|
4724
4816
|
*/
|
|
4725
4817
|
listRoles(orgName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleList>>;
|
|
4818
|
+
/**
|
|
4819
|
+
* list MinIO service account access keys
|
|
4820
|
+
* @summary List MinIO access keys
|
|
4821
|
+
* @param {string} engineName name of the engine
|
|
4822
|
+
* @param {string} orgName name of the organization
|
|
4823
|
+
* @param {string} clusterName name of the cluster
|
|
4824
|
+
* @param {string} [userName] MinIO user that owns the service accounts
|
|
4825
|
+
* @param {*} [options] Override http request option.
|
|
4826
|
+
* @throws {RequiredError}
|
|
4827
|
+
*/
|
|
4828
|
+
listServiceAccounts(engineName: string, orgName: string, clusterName: string, userName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DmsServiceAccount>>>;
|
|
4726
4829
|
/**
|
|
4727
4830
|
* list the service version of the engine
|
|
4728
4831
|
* @summary list the service version of the engine
|
|
@@ -5555,6 +5658,18 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5555
5658
|
* @throws {RequiredError}
|
|
5556
5659
|
*/
|
|
5557
5660
|
updateRoleByName(orgName: string, roleName: string, roleUpdate: RoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
|
|
5661
|
+
/**
|
|
5662
|
+
* update a MinIO service account access key
|
|
5663
|
+
* @summary Update MinIO access key
|
|
5664
|
+
* @param {string} engineName name of the engine
|
|
5665
|
+
* @param {string} orgName name of the organization
|
|
5666
|
+
* @param {string} clusterName name of the cluster
|
|
5667
|
+
* @param {string} accessKey MinIO access key
|
|
5668
|
+
* @param {DmsServiceAccountUpdateRequest} body
|
|
5669
|
+
* @param {*} [options] Override http request option.
|
|
5670
|
+
* @throws {RequiredError}
|
|
5671
|
+
*/
|
|
5672
|
+
updateServiceAccount(engineName: string, orgName: string, clusterName: string, accessKey: string, body: DmsServiceAccountUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DmsServiceAccount>>;
|
|
5558
5673
|
/**
|
|
5559
5674
|
* Enable or disable SQL audit log for a cluster component
|
|
5560
5675
|
* @summary Update SQL audit log status
|
|
@@ -5838,6 +5953,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
5838
5953
|
* @throws {RequiredError}
|
|
5839
5954
|
*/
|
|
5840
5955
|
createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
5956
|
+
/**
|
|
5957
|
+
* create a MinIO service account access key
|
|
5958
|
+
* @summary Create MinIO access key
|
|
5959
|
+
* @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
5960
|
+
* @param {*} [options] Override http request option.
|
|
5961
|
+
* @throws {RequiredError}
|
|
5962
|
+
*/
|
|
5963
|
+
createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
|
|
5841
5964
|
/**
|
|
5842
5965
|
* create tag
|
|
5843
5966
|
* @summary Create cluster tags
|
|
@@ -6086,6 +6209,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
6086
6209
|
* @throws {RequiredError}
|
|
6087
6210
|
*/
|
|
6088
6211
|
deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6212
|
+
/**
|
|
6213
|
+
* delete a MinIO service account access key
|
|
6214
|
+
* @summary Delete MinIO access key
|
|
6215
|
+
* @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
6216
|
+
* @param {*} [options] Override http request option.
|
|
6217
|
+
* @throws {RequiredError}
|
|
6218
|
+
*/
|
|
6219
|
+
deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6089
6220
|
/**
|
|
6090
6221
|
* delete cluster tag
|
|
6091
6222
|
* @summary Delete tag
|
|
@@ -6533,6 +6664,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
6533
6664
|
* @throws {RequiredError}
|
|
6534
6665
|
*/
|
|
6535
6666
|
getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
6667
|
+
/**
|
|
6668
|
+
* get a MinIO service account access key
|
|
6669
|
+
* @summary Get MinIO access key
|
|
6670
|
+
* @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
6671
|
+
* @param {*} [options] Override http request option.
|
|
6672
|
+
* @throws {RequiredError}
|
|
6673
|
+
*/
|
|
6674
|
+
getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
|
|
6536
6675
|
/**
|
|
6537
6676
|
* 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.
|
|
6538
6677
|
* @summary Get cluster slow log statistics
|
|
@@ -6987,6 +7126,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
6987
7126
|
* @throws {RequiredError}
|
|
6988
7127
|
*/
|
|
6989
7128
|
listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<RoleList>;
|
|
7129
|
+
/**
|
|
7130
|
+
* list MinIO service account access keys
|
|
7131
|
+
* @summary List MinIO access keys
|
|
7132
|
+
* @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
7133
|
+
* @param {*} [options] Override http request option.
|
|
7134
|
+
* @throws {RequiredError}
|
|
7135
|
+
*/
|
|
7136
|
+
listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
|
|
6990
7137
|
/**
|
|
6991
7138
|
* list the service version of the engine
|
|
6992
7139
|
* @summary list the service version of the engine
|
|
@@ -7554,6 +7701,14 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
7554
7701
|
* @throws {RequiredError}
|
|
7555
7702
|
*/
|
|
7556
7703
|
updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
7704
|
+
/**
|
|
7705
|
+
* update a MinIO service account access key
|
|
7706
|
+
* @summary Update MinIO access key
|
|
7707
|
+
* @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
7708
|
+
* @param {*} [options] Override http request option.
|
|
7709
|
+
* @throws {RequiredError}
|
|
7710
|
+
*/
|
|
7711
|
+
updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
|
|
7557
7712
|
/**
|
|
7558
7713
|
* Enable or disable SQL audit log for a cluster component
|
|
7559
7714
|
* @summary Update SQL audit log status
|
|
@@ -7851,6 +8006,15 @@ export interface SharedApiInterface {
|
|
|
7851
8006
|
* @memberof SharedApiInterface
|
|
7852
8007
|
*/
|
|
7853
8008
|
createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
8009
|
+
/**
|
|
8010
|
+
* create a MinIO service account access key
|
|
8011
|
+
* @summary Create MinIO access key
|
|
8012
|
+
* @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
8013
|
+
* @param {*} [options] Override http request option.
|
|
8014
|
+
* @throws {RequiredError}
|
|
8015
|
+
* @memberof SharedApiInterface
|
|
8016
|
+
*/
|
|
8017
|
+
createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
|
|
7854
8018
|
/**
|
|
7855
8019
|
* create tag
|
|
7856
8020
|
* @summary Create cluster tags
|
|
@@ -8130,6 +8294,15 @@ export interface SharedApiInterface {
|
|
|
8130
8294
|
* @memberof SharedApiInterface
|
|
8131
8295
|
*/
|
|
8132
8296
|
deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8297
|
+
/**
|
|
8298
|
+
* delete a MinIO service account access key
|
|
8299
|
+
* @summary Delete MinIO access key
|
|
8300
|
+
* @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
8301
|
+
* @param {*} [options] Override http request option.
|
|
8302
|
+
* @throws {RequiredError}
|
|
8303
|
+
* @memberof SharedApiInterface
|
|
8304
|
+
*/
|
|
8305
|
+
deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8133
8306
|
/**
|
|
8134
8307
|
* delete cluster tag
|
|
8135
8308
|
* @summary Delete tag
|
|
@@ -8633,6 +8806,15 @@ export interface SharedApiInterface {
|
|
|
8633
8806
|
* @memberof SharedApiInterface
|
|
8634
8807
|
*/
|
|
8635
8808
|
getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
8809
|
+
/**
|
|
8810
|
+
* get a MinIO service account access key
|
|
8811
|
+
* @summary Get MinIO access key
|
|
8812
|
+
* @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
8813
|
+
* @param {*} [options] Override http request option.
|
|
8814
|
+
* @throws {RequiredError}
|
|
8815
|
+
* @memberof SharedApiInterface
|
|
8816
|
+
*/
|
|
8817
|
+
getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
|
|
8636
8818
|
/**
|
|
8637
8819
|
* 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.
|
|
8638
8820
|
* @summary Get cluster slow log statistics
|
|
@@ -9144,6 +9326,15 @@ export interface SharedApiInterface {
|
|
|
9144
9326
|
* @memberof SharedApiInterface
|
|
9145
9327
|
*/
|
|
9146
9328
|
listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): AxiosPromise<RoleList>;
|
|
9329
|
+
/**
|
|
9330
|
+
* list MinIO service account access keys
|
|
9331
|
+
* @summary List MinIO access keys
|
|
9332
|
+
* @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
9333
|
+
* @param {*} [options] Override http request option.
|
|
9334
|
+
* @throws {RequiredError}
|
|
9335
|
+
* @memberof SharedApiInterface
|
|
9336
|
+
*/
|
|
9337
|
+
listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<DmsServiceAccount>>;
|
|
9147
9338
|
/**
|
|
9148
9339
|
* list the service version of the engine
|
|
9149
9340
|
* @summary list the service version of the engine
|
|
@@ -9782,6 +9973,15 @@ export interface SharedApiInterface {
|
|
|
9782
9973
|
* @memberof SharedApiInterface
|
|
9783
9974
|
*/
|
|
9784
9975
|
updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
9976
|
+
/**
|
|
9977
|
+
* update a MinIO service account access key
|
|
9978
|
+
* @summary Update MinIO access key
|
|
9979
|
+
* @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
9980
|
+
* @param {*} [options] Override http request option.
|
|
9981
|
+
* @throws {RequiredError}
|
|
9982
|
+
* @memberof SharedApiInterface
|
|
9983
|
+
*/
|
|
9984
|
+
updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<DmsServiceAccount>;
|
|
9785
9985
|
/**
|
|
9786
9986
|
* Enable or disable SQL audit log for a cluster component
|
|
9787
9987
|
* @summary Update SQL audit log status
|
|
@@ -10693,6 +10893,37 @@ export interface SharedApiCreateRoleRequest {
|
|
|
10693
10893
|
*/
|
|
10694
10894
|
readonly roleCreate: RoleCreate;
|
|
10695
10895
|
}
|
|
10896
|
+
/**
|
|
10897
|
+
* Request parameters for createServiceAccount operation in SharedApi.
|
|
10898
|
+
* @export
|
|
10899
|
+
* @interface SharedApiCreateServiceAccountRequest
|
|
10900
|
+
*/
|
|
10901
|
+
export interface SharedApiCreateServiceAccountRequest {
|
|
10902
|
+
/**
|
|
10903
|
+
* name of the engine
|
|
10904
|
+
* @type {string}
|
|
10905
|
+
* @memberof SharedApiCreateServiceAccount
|
|
10906
|
+
*/
|
|
10907
|
+
readonly engineName: string;
|
|
10908
|
+
/**
|
|
10909
|
+
* name of the organization
|
|
10910
|
+
* @type {string}
|
|
10911
|
+
* @memberof SharedApiCreateServiceAccount
|
|
10912
|
+
*/
|
|
10913
|
+
readonly orgName: string;
|
|
10914
|
+
/**
|
|
10915
|
+
* name of the cluster
|
|
10916
|
+
* @type {string}
|
|
10917
|
+
* @memberof SharedApiCreateServiceAccount
|
|
10918
|
+
*/
|
|
10919
|
+
readonly clusterName: string;
|
|
10920
|
+
/**
|
|
10921
|
+
*
|
|
10922
|
+
* @type {DmsServiceAccountCreateRequest}
|
|
10923
|
+
* @memberof SharedApiCreateServiceAccount
|
|
10924
|
+
*/
|
|
10925
|
+
readonly body: DmsServiceAccountCreateRequest;
|
|
10926
|
+
}
|
|
10696
10927
|
/**
|
|
10697
10928
|
* Request parameters for createTag operation in SharedApi.
|
|
10698
10929
|
* @export
|
|
@@ -11420,6 +11651,37 @@ export interface SharedApiDeleteRoleByNameRequest {
|
|
|
11420
11651
|
*/
|
|
11421
11652
|
readonly roleName: string;
|
|
11422
11653
|
}
|
|
11654
|
+
/**
|
|
11655
|
+
* Request parameters for deleteServiceAccount operation in SharedApi.
|
|
11656
|
+
* @export
|
|
11657
|
+
* @interface SharedApiDeleteServiceAccountRequest
|
|
11658
|
+
*/
|
|
11659
|
+
export interface SharedApiDeleteServiceAccountRequest {
|
|
11660
|
+
/**
|
|
11661
|
+
* name of the engine
|
|
11662
|
+
* @type {string}
|
|
11663
|
+
* @memberof SharedApiDeleteServiceAccount
|
|
11664
|
+
*/
|
|
11665
|
+
readonly engineName: string;
|
|
11666
|
+
/**
|
|
11667
|
+
* name of the organization
|
|
11668
|
+
* @type {string}
|
|
11669
|
+
* @memberof SharedApiDeleteServiceAccount
|
|
11670
|
+
*/
|
|
11671
|
+
readonly orgName: string;
|
|
11672
|
+
/**
|
|
11673
|
+
* name of the cluster
|
|
11674
|
+
* @type {string}
|
|
11675
|
+
* @memberof SharedApiDeleteServiceAccount
|
|
11676
|
+
*/
|
|
11677
|
+
readonly clusterName: string;
|
|
11678
|
+
/**
|
|
11679
|
+
* MinIO access key
|
|
11680
|
+
* @type {string}
|
|
11681
|
+
* @memberof SharedApiDeleteServiceAccount
|
|
11682
|
+
*/
|
|
11683
|
+
readonly accessKey: string;
|
|
11684
|
+
}
|
|
11423
11685
|
/**
|
|
11424
11686
|
* Request parameters for deleteTag operation in SharedApi.
|
|
11425
11687
|
* @export
|
|
@@ -13126,6 +13388,37 @@ export interface SharedApiGetSchemaListRequest {
|
|
|
13126
13388
|
*/
|
|
13127
13389
|
readonly database?: string;
|
|
13128
13390
|
}
|
|
13391
|
+
/**
|
|
13392
|
+
* Request parameters for getServiceAccount operation in SharedApi.
|
|
13393
|
+
* @export
|
|
13394
|
+
* @interface SharedApiGetServiceAccountRequest
|
|
13395
|
+
*/
|
|
13396
|
+
export interface SharedApiGetServiceAccountRequest {
|
|
13397
|
+
/**
|
|
13398
|
+
* name of the engine
|
|
13399
|
+
* @type {string}
|
|
13400
|
+
* @memberof SharedApiGetServiceAccount
|
|
13401
|
+
*/
|
|
13402
|
+
readonly engineName: string;
|
|
13403
|
+
/**
|
|
13404
|
+
* name of the organization
|
|
13405
|
+
* @type {string}
|
|
13406
|
+
* @memberof SharedApiGetServiceAccount
|
|
13407
|
+
*/
|
|
13408
|
+
readonly orgName: string;
|
|
13409
|
+
/**
|
|
13410
|
+
* name of the cluster
|
|
13411
|
+
* @type {string}
|
|
13412
|
+
* @memberof SharedApiGetServiceAccount
|
|
13413
|
+
*/
|
|
13414
|
+
readonly clusterName: string;
|
|
13415
|
+
/**
|
|
13416
|
+
* MinIO access key
|
|
13417
|
+
* @type {string}
|
|
13418
|
+
* @memberof SharedApiGetServiceAccount
|
|
13419
|
+
*/
|
|
13420
|
+
readonly accessKey: string;
|
|
13421
|
+
}
|
|
13129
13422
|
/**
|
|
13130
13423
|
* Request parameters for getSlowLogStats operation in SharedApi.
|
|
13131
13424
|
* @export
|
|
@@ -14759,6 +15052,37 @@ export interface SharedApiListRolesRequest {
|
|
|
14759
15052
|
*/
|
|
14760
15053
|
readonly orgName: string;
|
|
14761
15054
|
}
|
|
15055
|
+
/**
|
|
15056
|
+
* Request parameters for listServiceAccounts operation in SharedApi.
|
|
15057
|
+
* @export
|
|
15058
|
+
* @interface SharedApiListServiceAccountsRequest
|
|
15059
|
+
*/
|
|
15060
|
+
export interface SharedApiListServiceAccountsRequest {
|
|
15061
|
+
/**
|
|
15062
|
+
* name of the engine
|
|
15063
|
+
* @type {string}
|
|
15064
|
+
* @memberof SharedApiListServiceAccounts
|
|
15065
|
+
*/
|
|
15066
|
+
readonly engineName: string;
|
|
15067
|
+
/**
|
|
15068
|
+
* name of the organization
|
|
15069
|
+
* @type {string}
|
|
15070
|
+
* @memberof SharedApiListServiceAccounts
|
|
15071
|
+
*/
|
|
15072
|
+
readonly orgName: string;
|
|
15073
|
+
/**
|
|
15074
|
+
* name of the cluster
|
|
15075
|
+
* @type {string}
|
|
15076
|
+
* @memberof SharedApiListServiceAccounts
|
|
15077
|
+
*/
|
|
15078
|
+
readonly clusterName: string;
|
|
15079
|
+
/**
|
|
15080
|
+
* MinIO user that owns the service accounts
|
|
15081
|
+
* @type {string}
|
|
15082
|
+
* @memberof SharedApiListServiceAccounts
|
|
15083
|
+
*/
|
|
15084
|
+
readonly userName?: string;
|
|
15085
|
+
}
|
|
14762
15086
|
/**
|
|
14763
15087
|
* Request parameters for listServiceVersion operation in SharedApi.
|
|
14764
15088
|
* @export
|
|
@@ -17236,6 +17560,43 @@ export interface SharedApiUpdateRoleByNameRequest {
|
|
|
17236
17560
|
*/
|
|
17237
17561
|
readonly roleUpdate: RoleUpdate;
|
|
17238
17562
|
}
|
|
17563
|
+
/**
|
|
17564
|
+
* Request parameters for updateServiceAccount operation in SharedApi.
|
|
17565
|
+
* @export
|
|
17566
|
+
* @interface SharedApiUpdateServiceAccountRequest
|
|
17567
|
+
*/
|
|
17568
|
+
export interface SharedApiUpdateServiceAccountRequest {
|
|
17569
|
+
/**
|
|
17570
|
+
* name of the engine
|
|
17571
|
+
* @type {string}
|
|
17572
|
+
* @memberof SharedApiUpdateServiceAccount
|
|
17573
|
+
*/
|
|
17574
|
+
readonly engineName: string;
|
|
17575
|
+
/**
|
|
17576
|
+
* name of the organization
|
|
17577
|
+
* @type {string}
|
|
17578
|
+
* @memberof SharedApiUpdateServiceAccount
|
|
17579
|
+
*/
|
|
17580
|
+
readonly orgName: string;
|
|
17581
|
+
/**
|
|
17582
|
+
* name of the cluster
|
|
17583
|
+
* @type {string}
|
|
17584
|
+
* @memberof SharedApiUpdateServiceAccount
|
|
17585
|
+
*/
|
|
17586
|
+
readonly clusterName: string;
|
|
17587
|
+
/**
|
|
17588
|
+
* MinIO access key
|
|
17589
|
+
* @type {string}
|
|
17590
|
+
* @memberof SharedApiUpdateServiceAccount
|
|
17591
|
+
*/
|
|
17592
|
+
readonly accessKey: string;
|
|
17593
|
+
/**
|
|
17594
|
+
*
|
|
17595
|
+
* @type {DmsServiceAccountUpdateRequest}
|
|
17596
|
+
* @memberof SharedApiUpdateServiceAccount
|
|
17597
|
+
*/
|
|
17598
|
+
readonly body: DmsServiceAccountUpdateRequest;
|
|
17599
|
+
}
|
|
17239
17600
|
/**
|
|
17240
17601
|
* Request parameters for updateSqlAudit operation in SharedApi.
|
|
17241
17602
|
* @export
|
|
@@ -17647,6 +18008,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
17647
18008
|
* @memberof SharedApi
|
|
17648
18009
|
*/
|
|
17649
18010
|
createRole(requestParameters: SharedApiCreateRoleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
18011
|
+
/**
|
|
18012
|
+
* create a MinIO service account access key
|
|
18013
|
+
* @summary Create MinIO access key
|
|
18014
|
+
* @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
18015
|
+
* @param {*} [options] Override http request option.
|
|
18016
|
+
* @throws {RequiredError}
|
|
18017
|
+
* @memberof SharedApi
|
|
18018
|
+
*/
|
|
18019
|
+
createServiceAccount(requestParameters: SharedApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
|
|
17650
18020
|
/**
|
|
17651
18021
|
* create tag
|
|
17652
18022
|
* @summary Create cluster tags
|
|
@@ -17926,6 +18296,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
17926
18296
|
* @memberof SharedApi
|
|
17927
18297
|
*/
|
|
17928
18298
|
deleteRoleByName(requestParameters: SharedApiDeleteRoleByNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
18299
|
+
/**
|
|
18300
|
+
* delete a MinIO service account access key
|
|
18301
|
+
* @summary Delete MinIO access key
|
|
18302
|
+
* @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
18303
|
+
* @param {*} [options] Override http request option.
|
|
18304
|
+
* @throws {RequiredError}
|
|
18305
|
+
* @memberof SharedApi
|
|
18306
|
+
*/
|
|
18307
|
+
deleteServiceAccount(requestParameters: SharedApiDeleteServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
17929
18308
|
/**
|
|
17930
18309
|
* delete cluster tag
|
|
17931
18310
|
* @summary Delete tag
|
|
@@ -18429,6 +18808,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
18429
18808
|
* @memberof SharedApi
|
|
18430
18809
|
*/
|
|
18431
18810
|
getSchemaList(requestParameters: SharedApiGetSchemaListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
|
|
18811
|
+
/**
|
|
18812
|
+
* get a MinIO service account access key
|
|
18813
|
+
* @summary Get MinIO access key
|
|
18814
|
+
* @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
18815
|
+
* @param {*} [options] Override http request option.
|
|
18816
|
+
* @throws {RequiredError}
|
|
18817
|
+
* @memberof SharedApi
|
|
18818
|
+
*/
|
|
18819
|
+
getServiceAccount(requestParameters: SharedApiGetServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
|
|
18432
18820
|
/**
|
|
18433
18821
|
* 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.
|
|
18434
18822
|
* @summary Get cluster slow log statistics
|
|
@@ -18940,6 +19328,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
18940
19328
|
* @memberof SharedApi
|
|
18941
19329
|
*/
|
|
18942
19330
|
listRoles(requestParameters: SharedApiListRolesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleList, any, {}>>;
|
|
19331
|
+
/**
|
|
19332
|
+
* list MinIO service account access keys
|
|
19333
|
+
* @summary List MinIO access keys
|
|
19334
|
+
* @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
19335
|
+
* @param {*} [options] Override http request option.
|
|
19336
|
+
* @throws {RequiredError}
|
|
19337
|
+
* @memberof SharedApi
|
|
19338
|
+
*/
|
|
19339
|
+
listServiceAccounts(requestParameters: SharedApiListServiceAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount[], any, {}>>;
|
|
18943
19340
|
/**
|
|
18944
19341
|
* list the service version of the engine
|
|
18945
19342
|
* @summary list the service version of the engine
|
|
@@ -19578,6 +19975,15 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
19578
19975
|
* @memberof SharedApi
|
|
19579
19976
|
*/
|
|
19580
19977
|
updateRoleByName(requestParameters: SharedApiUpdateRoleByNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Role, any, {}>>;
|
|
19978
|
+
/**
|
|
19979
|
+
* update a MinIO service account access key
|
|
19980
|
+
* @summary Update MinIO access key
|
|
19981
|
+
* @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
19982
|
+
* @param {*} [options] Override http request option.
|
|
19983
|
+
* @throws {RequiredError}
|
|
19984
|
+
* @memberof SharedApi
|
|
19985
|
+
*/
|
|
19986
|
+
updateServiceAccount(requestParameters: SharedApiUpdateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DmsServiceAccount, any, {}>>;
|
|
19581
19987
|
/**
|
|
19582
19988
|
* Enable or disable SQL audit log for a cluster component
|
|
19583
19989
|
* @summary Update SQL audit log status
|