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.
- package/dist/adminapi/apis/account-api.d.ts +406 -0
- package/dist/adminapi/apis/account-api.d.ts.map +1 -1
- package/dist/adminapi/apis/account-api.js +427 -0
- package/dist/adminapi/apis/account-api.js.map +1 -1
- package/dist/adminapi/apis/rdbms-api.d.ts +406 -0
- package/dist/adminapi/apis/rdbms-api.d.ts.map +1 -1
- package/dist/adminapi/apis/rdbms-api.js +427 -0
- package/dist/adminapi/apis/rdbms-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +406 -0
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +427 -0
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/dms-service-account-create-request.d.ts +55 -0
- package/dist/adminapi/models/dms-service-account-create-request.d.ts.map +1 -0
- package/dist/adminapi/models/dms-service-account-create-request.js +16 -0
- package/dist/adminapi/models/dms-service-account-create-request.js.map +1 -0
- package/dist/adminapi/models/dms-service-account-status.d.ts +22 -0
- package/dist/adminapi/models/dms-service-account-status.d.ts.map +1 -0
- package/dist/adminapi/models/dms-service-account-status.js +26 -0
- package/dist/adminapi/models/dms-service-account-status.js.map +1 -0
- package/dist/adminapi/models/dms-service-account-update-request.d.ts +32 -0
- package/dist/adminapi/models/dms-service-account-update-request.d.ts.map +1 -0
- package/dist/adminapi/models/dms-service-account-update-request.js +16 -0
- package/dist/adminapi/models/dms-service-account-update-request.js.map +1 -0
- package/dist/adminapi/models/dms-service-account.d.ts +73 -0
- package/dist/adminapi/models/dms-service-account.d.ts.map +1 -0
- package/dist/adminapi/models/dms-service-account.js +16 -0
- package/dist/adminapi/models/dms-service-account.js.map +1 -0
- package/dist/adminapi/models/index.d.ts +4 -0
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +4 -0
- package/dist/adminapi/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/.openapi-generator/FILES +4 -0
- package/src/adminapi/apis/account-api.ts +703 -0
- package/src/adminapi/apis/rdbms-api.ts +703 -0
- package/src/adminapi/apis/shared-api.ts +703 -0
- package/src/adminapi/models/dms-service-account-create-request.ts +60 -0
- package/src/adminapi/models/dms-service-account-status.ts +31 -0
- package/src/adminapi/models/dms-service-account-update-request.ts +41 -0
- package/src/adminapi/models/dms-service-account.ts +78 -0
- package/src/adminapi/models/index.ts +4 -0
- package/src/adminapi.yaml +330 -0
|
@@ -1264,6 +1264,53 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
1264
1264
|
options: localVarRequestOptions,
|
|
1265
1265
|
};
|
|
1266
1266
|
},
|
|
1267
|
+
/**
|
|
1268
|
+
* create a MinIO service account access key
|
|
1269
|
+
* @summary Create MinIO access key
|
|
1270
|
+
* @param {string} engineName name of the engine
|
|
1271
|
+
* @param {string} orgName name of the organization
|
|
1272
|
+
* @param {string} clusterName name of the cluster
|
|
1273
|
+
* @param {DmsServiceAccountCreateRequest} body
|
|
1274
|
+
* @param {*} [options] Override http request option.
|
|
1275
|
+
* @throws {RequiredError}
|
|
1276
|
+
*/
|
|
1277
|
+
createServiceAccount: async (engineName, orgName, clusterName, body, options = {}) => {
|
|
1278
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
1279
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'engineName', engineName);
|
|
1280
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
1281
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'orgName', orgName);
|
|
1282
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
1283
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'clusterName', clusterName);
|
|
1284
|
+
// verify required parameter 'body' is not null or undefined
|
|
1285
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'body', body);
|
|
1286
|
+
const localVarPath = `/admin/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys`
|
|
1287
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
1288
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
1289
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)));
|
|
1290
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1291
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1292
|
+
let baseOptions;
|
|
1293
|
+
if (configuration) {
|
|
1294
|
+
baseOptions = configuration.baseOptions;
|
|
1295
|
+
}
|
|
1296
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1297
|
+
const localVarHeaderParameter = {};
|
|
1298
|
+
const localVarQueryParameter = {};
|
|
1299
|
+
// authentication BearerToken required
|
|
1300
|
+
// http bearer authentication required
|
|
1301
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1302
|
+
// authentication DigestAuth required
|
|
1303
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
1304
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1305
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1306
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1307
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1308
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
|
|
1309
|
+
return {
|
|
1310
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1311
|
+
options: localVarRequestOptions,
|
|
1312
|
+
};
|
|
1313
|
+
},
|
|
1267
1314
|
/**
|
|
1268
1315
|
* create tag
|
|
1269
1316
|
* @summary Create cluster tags
|
|
@@ -2345,6 +2392,52 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
2345
2392
|
options: localVarRequestOptions,
|
|
2346
2393
|
};
|
|
2347
2394
|
},
|
|
2395
|
+
/**
|
|
2396
|
+
* delete a MinIO service account access key
|
|
2397
|
+
* @summary Delete MinIO access key
|
|
2398
|
+
* @param {string} engineName name of the engine
|
|
2399
|
+
* @param {string} orgName name of the organization
|
|
2400
|
+
* @param {string} clusterName name of the cluster
|
|
2401
|
+
* @param {string} accessKey MinIO access key
|
|
2402
|
+
* @param {*} [options] Override http request option.
|
|
2403
|
+
* @throws {RequiredError}
|
|
2404
|
+
*/
|
|
2405
|
+
deleteServiceAccount: async (engineName, orgName, clusterName, accessKey, options = {}) => {
|
|
2406
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
2407
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'engineName', engineName);
|
|
2408
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
2409
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'orgName', orgName);
|
|
2410
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
2411
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'clusterName', clusterName);
|
|
2412
|
+
// verify required parameter 'accessKey' is not null or undefined
|
|
2413
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'accessKey', accessKey);
|
|
2414
|
+
const localVarPath = `/admin/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys/{accessKey}`
|
|
2415
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
2416
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
2417
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
2418
|
+
.replace(`{${"accessKey"}}`, encodeURIComponent(String(accessKey)));
|
|
2419
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2420
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2421
|
+
let baseOptions;
|
|
2422
|
+
if (configuration) {
|
|
2423
|
+
baseOptions = configuration.baseOptions;
|
|
2424
|
+
}
|
|
2425
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
2426
|
+
const localVarHeaderParameter = {};
|
|
2427
|
+
const localVarQueryParameter = {};
|
|
2428
|
+
// authentication BearerToken required
|
|
2429
|
+
// http bearer authentication required
|
|
2430
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
2431
|
+
// authentication DigestAuth required
|
|
2432
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
2433
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2434
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2435
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2436
|
+
return {
|
|
2437
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2438
|
+
options: localVarRequestOptions,
|
|
2439
|
+
};
|
|
2440
|
+
},
|
|
2348
2441
|
/**
|
|
2349
2442
|
* delete cluster tag
|
|
2350
2443
|
* @summary Delete tag
|
|
@@ -4723,6 +4816,52 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
4723
4816
|
options: localVarRequestOptions,
|
|
4724
4817
|
};
|
|
4725
4818
|
},
|
|
4819
|
+
/**
|
|
4820
|
+
* get a MinIO service account access key
|
|
4821
|
+
* @summary Get MinIO access key
|
|
4822
|
+
* @param {string} engineName name of the engine
|
|
4823
|
+
* @param {string} orgName name of the organization
|
|
4824
|
+
* @param {string} clusterName name of the cluster
|
|
4825
|
+
* @param {string} accessKey MinIO access key
|
|
4826
|
+
* @param {*} [options] Override http request option.
|
|
4827
|
+
* @throws {RequiredError}
|
|
4828
|
+
*/
|
|
4829
|
+
getServiceAccount: async (engineName, orgName, clusterName, accessKey, options = {}) => {
|
|
4830
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
4831
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'engineName', engineName);
|
|
4832
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
4833
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'orgName', orgName);
|
|
4834
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
4835
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'clusterName', clusterName);
|
|
4836
|
+
// verify required parameter 'accessKey' is not null or undefined
|
|
4837
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'accessKey', accessKey);
|
|
4838
|
+
const localVarPath = `/admin/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys/{accessKey}`
|
|
4839
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
4840
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
4841
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
4842
|
+
.replace(`{${"accessKey"}}`, encodeURIComponent(String(accessKey)));
|
|
4843
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4844
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
4845
|
+
let baseOptions;
|
|
4846
|
+
if (configuration) {
|
|
4847
|
+
baseOptions = configuration.baseOptions;
|
|
4848
|
+
}
|
|
4849
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
4850
|
+
const localVarHeaderParameter = {};
|
|
4851
|
+
const localVarQueryParameter = {};
|
|
4852
|
+
// authentication BearerToken required
|
|
4853
|
+
// http bearer authentication required
|
|
4854
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
4855
|
+
// authentication DigestAuth required
|
|
4856
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
4857
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
4858
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4859
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4860
|
+
return {
|
|
4861
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
4862
|
+
options: localVarRequestOptions,
|
|
4863
|
+
};
|
|
4864
|
+
},
|
|
4726
4865
|
/**
|
|
4727
4866
|
* 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.
|
|
4728
4867
|
* @summary Get cluster slow log statistics
|
|
@@ -7511,6 +7650,52 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
7511
7650
|
options: localVarRequestOptions,
|
|
7512
7651
|
};
|
|
7513
7652
|
},
|
|
7653
|
+
/**
|
|
7654
|
+
* list MinIO service account access keys
|
|
7655
|
+
* @summary List MinIO access keys
|
|
7656
|
+
* @param {string} engineName name of the engine
|
|
7657
|
+
* @param {string} orgName name of the organization
|
|
7658
|
+
* @param {string} clusterName name of the cluster
|
|
7659
|
+
* @param {string} [userName] MinIO user that owns the service accounts
|
|
7660
|
+
* @param {*} [options] Override http request option.
|
|
7661
|
+
* @throws {RequiredError}
|
|
7662
|
+
*/
|
|
7663
|
+
listServiceAccounts: async (engineName, orgName, clusterName, userName, options = {}) => {
|
|
7664
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
7665
|
+
(0, common_1.assertParamExists)('listServiceAccounts', 'engineName', engineName);
|
|
7666
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
7667
|
+
(0, common_1.assertParamExists)('listServiceAccounts', 'orgName', orgName);
|
|
7668
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
7669
|
+
(0, common_1.assertParamExists)('listServiceAccounts', 'clusterName', clusterName);
|
|
7670
|
+
const localVarPath = `/admin/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys`
|
|
7671
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
7672
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
7673
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)));
|
|
7674
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7675
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
7676
|
+
let baseOptions;
|
|
7677
|
+
if (configuration) {
|
|
7678
|
+
baseOptions = configuration.baseOptions;
|
|
7679
|
+
}
|
|
7680
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
7681
|
+
const localVarHeaderParameter = {};
|
|
7682
|
+
const localVarQueryParameter = {};
|
|
7683
|
+
// authentication BearerToken required
|
|
7684
|
+
// http bearer authentication required
|
|
7685
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
7686
|
+
// authentication DigestAuth required
|
|
7687
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
7688
|
+
if (userName !== undefined) {
|
|
7689
|
+
localVarQueryParameter['userName'] = userName;
|
|
7690
|
+
}
|
|
7691
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7692
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7693
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7694
|
+
return {
|
|
7695
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7696
|
+
options: localVarRequestOptions,
|
|
7697
|
+
};
|
|
7698
|
+
},
|
|
7514
7699
|
/**
|
|
7515
7700
|
* list the service version of the engine
|
|
7516
7701
|
* @summary list the service version of the engine
|
|
@@ -10790,6 +10975,57 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
10790
10975
|
options: localVarRequestOptions,
|
|
10791
10976
|
};
|
|
10792
10977
|
},
|
|
10978
|
+
/**
|
|
10979
|
+
* update a MinIO service account access key
|
|
10980
|
+
* @summary Update MinIO access key
|
|
10981
|
+
* @param {string} engineName name of the engine
|
|
10982
|
+
* @param {string} orgName name of the organization
|
|
10983
|
+
* @param {string} clusterName name of the cluster
|
|
10984
|
+
* @param {string} accessKey MinIO access key
|
|
10985
|
+
* @param {DmsServiceAccountUpdateRequest} body
|
|
10986
|
+
* @param {*} [options] Override http request option.
|
|
10987
|
+
* @throws {RequiredError}
|
|
10988
|
+
*/
|
|
10989
|
+
updateServiceAccount: async (engineName, orgName, clusterName, accessKey, body, options = {}) => {
|
|
10990
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
10991
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'engineName', engineName);
|
|
10992
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
10993
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'orgName', orgName);
|
|
10994
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
10995
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'clusterName', clusterName);
|
|
10996
|
+
// verify required parameter 'accessKey' is not null or undefined
|
|
10997
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'accessKey', accessKey);
|
|
10998
|
+
// verify required parameter 'body' is not null or undefined
|
|
10999
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'body', body);
|
|
11000
|
+
const localVarPath = `/admin/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys/{accessKey}`
|
|
11001
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
11002
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
11003
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
11004
|
+
.replace(`{${"accessKey"}}`, encodeURIComponent(String(accessKey)));
|
|
11005
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
11006
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
11007
|
+
let baseOptions;
|
|
11008
|
+
if (configuration) {
|
|
11009
|
+
baseOptions = configuration.baseOptions;
|
|
11010
|
+
}
|
|
11011
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
11012
|
+
const localVarHeaderParameter = {};
|
|
11013
|
+
const localVarQueryParameter = {};
|
|
11014
|
+
// authentication BearerToken required
|
|
11015
|
+
// http bearer authentication required
|
|
11016
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
11017
|
+
// authentication DigestAuth required
|
|
11018
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
11019
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11020
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
11021
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11022
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11023
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
|
|
11024
|
+
return {
|
|
11025
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
11026
|
+
options: localVarRequestOptions,
|
|
11027
|
+
};
|
|
11028
|
+
},
|
|
10793
11029
|
/**
|
|
10794
11030
|
* Enable or disable SQL audit log for a cluster component
|
|
10795
11031
|
* @summary Update SQL audit log status
|
|
@@ -11545,6 +11781,23 @@ const SharedApiFp = function (configuration) {
|
|
|
11545
11781
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.createRole']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11546
11782
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11547
11783
|
},
|
|
11784
|
+
/**
|
|
11785
|
+
* create a MinIO service account access key
|
|
11786
|
+
* @summary Create MinIO access key
|
|
11787
|
+
* @param {string} engineName name of the engine
|
|
11788
|
+
* @param {string} orgName name of the organization
|
|
11789
|
+
* @param {string} clusterName name of the cluster
|
|
11790
|
+
* @param {DmsServiceAccountCreateRequest} body
|
|
11791
|
+
* @param {*} [options] Override http request option.
|
|
11792
|
+
* @throws {RequiredError}
|
|
11793
|
+
*/
|
|
11794
|
+
async createServiceAccount(engineName, orgName, clusterName, body, options) {
|
|
11795
|
+
var _a, _b, _c;
|
|
11796
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createServiceAccount(engineName, orgName, clusterName, body, options);
|
|
11797
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11798
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.createServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11799
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11800
|
+
},
|
|
11548
11801
|
/**
|
|
11549
11802
|
* create tag
|
|
11550
11803
|
* @summary Create cluster tags
|
|
@@ -11956,6 +12209,23 @@ const SharedApiFp = function (configuration) {
|
|
|
11956
12209
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.deleteRoleByName']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11957
12210
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
11958
12211
|
},
|
|
12212
|
+
/**
|
|
12213
|
+
* delete a MinIO service account access key
|
|
12214
|
+
* @summary Delete MinIO access key
|
|
12215
|
+
* @param {string} engineName name of the engine
|
|
12216
|
+
* @param {string} orgName name of the organization
|
|
12217
|
+
* @param {string} clusterName name of the cluster
|
|
12218
|
+
* @param {string} accessKey MinIO access key
|
|
12219
|
+
* @param {*} [options] Override http request option.
|
|
12220
|
+
* @throws {RequiredError}
|
|
12221
|
+
*/
|
|
12222
|
+
async deleteServiceAccount(engineName, orgName, clusterName, accessKey, options) {
|
|
12223
|
+
var _a, _b, _c;
|
|
12224
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteServiceAccount(engineName, orgName, clusterName, accessKey, options);
|
|
12225
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12226
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.deleteServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
12227
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12228
|
+
},
|
|
11959
12229
|
/**
|
|
11960
12230
|
* delete cluster tag
|
|
11961
12231
|
* @summary Delete tag
|
|
@@ -12837,6 +13107,23 @@ const SharedApiFp = function (configuration) {
|
|
|
12837
13107
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.getSchemaList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
12838
13108
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12839
13109
|
},
|
|
13110
|
+
/**
|
|
13111
|
+
* get a MinIO service account access key
|
|
13112
|
+
* @summary Get MinIO access key
|
|
13113
|
+
* @param {string} engineName name of the engine
|
|
13114
|
+
* @param {string} orgName name of the organization
|
|
13115
|
+
* @param {string} clusterName name of the cluster
|
|
13116
|
+
* @param {string} accessKey MinIO access key
|
|
13117
|
+
* @param {*} [options] Override http request option.
|
|
13118
|
+
* @throws {RequiredError}
|
|
13119
|
+
*/
|
|
13120
|
+
async getServiceAccount(engineName, orgName, clusterName, accessKey, options) {
|
|
13121
|
+
var _a, _b, _c;
|
|
13122
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getServiceAccount(engineName, orgName, clusterName, accessKey, options);
|
|
13123
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
13124
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.getServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
13125
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13126
|
+
},
|
|
12840
13127
|
/**
|
|
12841
13128
|
* 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.
|
|
12842
13129
|
* @summary Get cluster slow log statistics
|
|
@@ -13872,6 +14159,23 @@ const SharedApiFp = function (configuration) {
|
|
|
13872
14159
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listRoles']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
13873
14160
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13874
14161
|
},
|
|
14162
|
+
/**
|
|
14163
|
+
* list MinIO service account access keys
|
|
14164
|
+
* @summary List MinIO access keys
|
|
14165
|
+
* @param {string} engineName name of the engine
|
|
14166
|
+
* @param {string} orgName name of the organization
|
|
14167
|
+
* @param {string} clusterName name of the cluster
|
|
14168
|
+
* @param {string} [userName] MinIO user that owns the service accounts
|
|
14169
|
+
* @param {*} [options] Override http request option.
|
|
14170
|
+
* @throws {RequiredError}
|
|
14171
|
+
*/
|
|
14172
|
+
async listServiceAccounts(engineName, orgName, clusterName, userName, options) {
|
|
14173
|
+
var _a, _b, _c;
|
|
14174
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listServiceAccounts(engineName, orgName, clusterName, userName, options);
|
|
14175
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
14176
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listServiceAccounts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
14177
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14178
|
+
},
|
|
13875
14179
|
/**
|
|
13876
14180
|
* list the service version of the engine
|
|
13877
14181
|
* @summary list the service version of the engine
|
|
@@ -15031,6 +15335,24 @@ const SharedApiFp = function (configuration) {
|
|
|
15031
15335
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.updateRoleByName']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
15032
15336
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15033
15337
|
},
|
|
15338
|
+
/**
|
|
15339
|
+
* update a MinIO service account access key
|
|
15340
|
+
* @summary Update MinIO access key
|
|
15341
|
+
* @param {string} engineName name of the engine
|
|
15342
|
+
* @param {string} orgName name of the organization
|
|
15343
|
+
* @param {string} clusterName name of the cluster
|
|
15344
|
+
* @param {string} accessKey MinIO access key
|
|
15345
|
+
* @param {DmsServiceAccountUpdateRequest} body
|
|
15346
|
+
* @param {*} [options] Override http request option.
|
|
15347
|
+
* @throws {RequiredError}
|
|
15348
|
+
*/
|
|
15349
|
+
async updateServiceAccount(engineName, orgName, clusterName, accessKey, body, options) {
|
|
15350
|
+
var _a, _b, _c;
|
|
15351
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateServiceAccount(engineName, orgName, clusterName, accessKey, body, options);
|
|
15352
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
15353
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.updateServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
15354
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15355
|
+
},
|
|
15034
15356
|
/**
|
|
15035
15357
|
* Enable or disable SQL audit log for a cluster component
|
|
15036
15358
|
* @summary Update SQL audit log status
|
|
@@ -15421,6 +15743,16 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15421
15743
|
createRole(requestParameters, options) {
|
|
15422
15744
|
return localVarFp.createRole(requestParameters.orgName, requestParameters.roleCreate, options).then((request) => request(axios, basePath));
|
|
15423
15745
|
},
|
|
15746
|
+
/**
|
|
15747
|
+
* create a MinIO service account access key
|
|
15748
|
+
* @summary Create MinIO access key
|
|
15749
|
+
* @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
15750
|
+
* @param {*} [options] Override http request option.
|
|
15751
|
+
* @throws {RequiredError}
|
|
15752
|
+
*/
|
|
15753
|
+
createServiceAccount(requestParameters, options) {
|
|
15754
|
+
return localVarFp.createServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(axios, basePath));
|
|
15755
|
+
},
|
|
15424
15756
|
/**
|
|
15425
15757
|
* create tag
|
|
15426
15758
|
* @summary Create cluster tags
|
|
@@ -15681,6 +16013,16 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15681
16013
|
deleteRoleByName(requestParameters, options) {
|
|
15682
16014
|
return localVarFp.deleteRoleByName(requestParameters.orgName, requestParameters.roleName, options).then((request) => request(axios, basePath));
|
|
15683
16015
|
},
|
|
16016
|
+
/**
|
|
16017
|
+
* delete a MinIO service account access key
|
|
16018
|
+
* @summary Delete MinIO access key
|
|
16019
|
+
* @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
16020
|
+
* @param {*} [options] Override http request option.
|
|
16021
|
+
* @throws {RequiredError}
|
|
16022
|
+
*/
|
|
16023
|
+
deleteServiceAccount(requestParameters, options) {
|
|
16024
|
+
return localVarFp.deleteServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(axios, basePath));
|
|
16025
|
+
},
|
|
15684
16026
|
/**
|
|
15685
16027
|
* delete cluster tag
|
|
15686
16028
|
* @summary Delete tag
|
|
@@ -16211,6 +16553,16 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
16211
16553
|
getSchemaList(requestParameters, options) {
|
|
16212
16554
|
return localVarFp.getSchemaList(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.database, options).then((request) => request(axios, basePath));
|
|
16213
16555
|
},
|
|
16556
|
+
/**
|
|
16557
|
+
* get a MinIO service account access key
|
|
16558
|
+
* @summary Get MinIO access key
|
|
16559
|
+
* @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
16560
|
+
* @param {*} [options] Override http request option.
|
|
16561
|
+
* @throws {RequiredError}
|
|
16562
|
+
*/
|
|
16563
|
+
getServiceAccount(requestParameters, options) {
|
|
16564
|
+
return localVarFp.getServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(axios, basePath));
|
|
16565
|
+
},
|
|
16214
16566
|
/**
|
|
16215
16567
|
* 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.
|
|
16216
16568
|
* @summary Get cluster slow log statistics
|
|
@@ -16837,6 +17189,16 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
16837
17189
|
listRoles(requestParameters, options) {
|
|
16838
17190
|
return localVarFp.listRoles(requestParameters.orgName, options).then((request) => request(axios, basePath));
|
|
16839
17191
|
},
|
|
17192
|
+
/**
|
|
17193
|
+
* list MinIO service account access keys
|
|
17194
|
+
* @summary List MinIO access keys
|
|
17195
|
+
* @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
17196
|
+
* @param {*} [options] Override http request option.
|
|
17197
|
+
* @throws {RequiredError}
|
|
17198
|
+
*/
|
|
17199
|
+
listServiceAccounts(requestParameters, options) {
|
|
17200
|
+
return localVarFp.listServiceAccounts(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.userName, options).then((request) => request(axios, basePath));
|
|
17201
|
+
},
|
|
16840
17202
|
/**
|
|
16841
17203
|
* list the service version of the engine
|
|
16842
17204
|
* @summary list the service version of the engine
|
|
@@ -17486,6 +17848,16 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
17486
17848
|
updateRoleByName(requestParameters, options) {
|
|
17487
17849
|
return localVarFp.updateRoleByName(requestParameters.orgName, requestParameters.roleName, requestParameters.roleUpdate, options).then((request) => request(axios, basePath));
|
|
17488
17850
|
},
|
|
17851
|
+
/**
|
|
17852
|
+
* update a MinIO service account access key
|
|
17853
|
+
* @summary Update MinIO access key
|
|
17854
|
+
* @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
17855
|
+
* @param {*} [options] Override http request option.
|
|
17856
|
+
* @throws {RequiredError}
|
|
17857
|
+
*/
|
|
17858
|
+
updateServiceAccount(requestParameters, options) {
|
|
17859
|
+
return localVarFp.updateServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, requestParameters.body, options).then((request) => request(axios, basePath));
|
|
17860
|
+
},
|
|
17489
17861
|
/**
|
|
17490
17862
|
* Enable or disable SQL audit log for a cluster component
|
|
17491
17863
|
* @summary Update SQL audit log status
|
|
@@ -17862,6 +18234,17 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
17862
18234
|
createRole(requestParameters, options) {
|
|
17863
18235
|
return (0, exports.SharedApiFp)(this.configuration).createRole(requestParameters.orgName, requestParameters.roleCreate, options).then((request) => request(this.axios, this.basePath));
|
|
17864
18236
|
}
|
|
18237
|
+
/**
|
|
18238
|
+
* create a MinIO service account access key
|
|
18239
|
+
* @summary Create MinIO access key
|
|
18240
|
+
* @param {SharedApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
18241
|
+
* @param {*} [options] Override http request option.
|
|
18242
|
+
* @throws {RequiredError}
|
|
18243
|
+
* @memberof SharedApi
|
|
18244
|
+
*/
|
|
18245
|
+
createServiceAccount(requestParameters, options) {
|
|
18246
|
+
return (0, exports.SharedApiFp)(this.configuration).createServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
18247
|
+
}
|
|
17865
18248
|
/**
|
|
17866
18249
|
* create tag
|
|
17867
18250
|
* @summary Create cluster tags
|
|
@@ -18148,6 +18531,17 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
18148
18531
|
deleteRoleByName(requestParameters, options) {
|
|
18149
18532
|
return (0, exports.SharedApiFp)(this.configuration).deleteRoleByName(requestParameters.orgName, requestParameters.roleName, options).then((request) => request(this.axios, this.basePath));
|
|
18150
18533
|
}
|
|
18534
|
+
/**
|
|
18535
|
+
* delete a MinIO service account access key
|
|
18536
|
+
* @summary Delete MinIO access key
|
|
18537
|
+
* @param {SharedApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
18538
|
+
* @param {*} [options] Override http request option.
|
|
18539
|
+
* @throws {RequiredError}
|
|
18540
|
+
* @memberof SharedApi
|
|
18541
|
+
*/
|
|
18542
|
+
deleteServiceAccount(requestParameters, options) {
|
|
18543
|
+
return (0, exports.SharedApiFp)(this.configuration).deleteServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(this.axios, this.basePath));
|
|
18544
|
+
}
|
|
18151
18545
|
/**
|
|
18152
18546
|
* delete cluster tag
|
|
18153
18547
|
* @summary Delete tag
|
|
@@ -18731,6 +19125,17 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
18731
19125
|
getSchemaList(requestParameters, options) {
|
|
18732
19126
|
return (0, exports.SharedApiFp)(this.configuration).getSchemaList(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.database, options).then((request) => request(this.axios, this.basePath));
|
|
18733
19127
|
}
|
|
19128
|
+
/**
|
|
19129
|
+
* get a MinIO service account access key
|
|
19130
|
+
* @summary Get MinIO access key
|
|
19131
|
+
* @param {SharedApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
19132
|
+
* @param {*} [options] Override http request option.
|
|
19133
|
+
* @throws {RequiredError}
|
|
19134
|
+
* @memberof SharedApi
|
|
19135
|
+
*/
|
|
19136
|
+
getServiceAccount(requestParameters, options) {
|
|
19137
|
+
return (0, exports.SharedApiFp)(this.configuration).getServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(this.axios, this.basePath));
|
|
19138
|
+
}
|
|
18734
19139
|
/**
|
|
18735
19140
|
* 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.
|
|
18736
19141
|
* @summary Get cluster slow log statistics
|
|
@@ -19420,6 +19825,17 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
19420
19825
|
listRoles(requestParameters, options) {
|
|
19421
19826
|
return (0, exports.SharedApiFp)(this.configuration).listRoles(requestParameters.orgName, options).then((request) => request(this.axios, this.basePath));
|
|
19422
19827
|
}
|
|
19828
|
+
/**
|
|
19829
|
+
* list MinIO service account access keys
|
|
19830
|
+
* @summary List MinIO access keys
|
|
19831
|
+
* @param {SharedApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
19832
|
+
* @param {*} [options] Override http request option.
|
|
19833
|
+
* @throws {RequiredError}
|
|
19834
|
+
* @memberof SharedApi
|
|
19835
|
+
*/
|
|
19836
|
+
listServiceAccounts(requestParameters, options) {
|
|
19837
|
+
return (0, exports.SharedApiFp)(this.configuration).listServiceAccounts(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.userName, options).then((request) => request(this.axios, this.basePath));
|
|
19838
|
+
}
|
|
19423
19839
|
/**
|
|
19424
19840
|
* list the service version of the engine
|
|
19425
19841
|
* @summary list the service version of the engine
|
|
@@ -20134,6 +20550,17 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
20134
20550
|
updateRoleByName(requestParameters, options) {
|
|
20135
20551
|
return (0, exports.SharedApiFp)(this.configuration).updateRoleByName(requestParameters.orgName, requestParameters.roleName, requestParameters.roleUpdate, options).then((request) => request(this.axios, this.basePath));
|
|
20136
20552
|
}
|
|
20553
|
+
/**
|
|
20554
|
+
* update a MinIO service account access key
|
|
20555
|
+
* @summary Update MinIO access key
|
|
20556
|
+
* @param {SharedApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
20557
|
+
* @param {*} [options] Override http request option.
|
|
20558
|
+
* @throws {RequiredError}
|
|
20559
|
+
* @memberof SharedApi
|
|
20560
|
+
*/
|
|
20561
|
+
updateServiceAccount(requestParameters, options) {
|
|
20562
|
+
return (0, exports.SharedApiFp)(this.configuration).updateServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
20563
|
+
}
|
|
20137
20564
|
/**
|
|
20138
20565
|
* Enable or disable SQL audit log for a cluster component
|
|
20139
20566
|
* @summary Update SQL audit log status
|