kb-cloud-client-typescript 2.3.0-alpha.87 → 2.3.0-alpha.88
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/dms-api.d.ts +111 -8
- package/dist/adminapi/apis/dms-api.d.ts.map +1 -1
- package/dist/adminapi/apis/dms-api.js +116 -20
- package/dist/adminapi/apis/dms-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +111 -8
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +116 -20
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/apis/dms-api.d.ts +111 -8
- package/dist/openapi/apis/dms-api.d.ts.map +1 -1
- package/dist/openapi/apis/dms-api.js +116 -20
- package/dist/openapi/apis/dms-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +111 -8
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +116 -20
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/package.json +1 -1
- package/src/sdk/adminapi/apis/dms-api.ts +192 -20
- package/src/sdk/adminapi/apis/shared-api.ts +192 -20
- package/src/sdk/adminapi.yaml +57 -0
- package/src/sdk/openapi/apis/dms-api.ts +192 -20
- package/src/sdk/openapi/apis/shared-api.ts +192 -20
- package/src/sdk/openapi.yaml +57 -0
|
@@ -4202,10 +4202,11 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
4202
4202
|
* @param {string} schema schema or database name
|
|
4203
4203
|
* @param {string} type object type
|
|
4204
4204
|
* @param {string} objectName object name
|
|
4205
|
+
* @param {string} [database] database name, used by engines such as MSSQL when reading object metadata inside a schema
|
|
4205
4206
|
* @param {*} [options] Override http request option.
|
|
4206
4207
|
* @throws {RequiredError}
|
|
4207
4208
|
*/
|
|
4208
|
-
getObjectInfo: async (orgName, clusterName, id, schema, type, objectName, options = {}) => {
|
|
4209
|
+
getObjectInfo: async (orgName, clusterName, id, schema, type, objectName, database, options = {}) => {
|
|
4209
4210
|
// verify required parameter 'orgName' is not null or undefined
|
|
4210
4211
|
(0, common_1.assertParamExists)('getObjectInfo', 'orgName', orgName);
|
|
4211
4212
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -4236,6 +4237,9 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
4236
4237
|
const localVarQueryParameter = {};
|
|
4237
4238
|
// authentication BearerToken required
|
|
4238
4239
|
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "authorization", configuration);
|
|
4240
|
+
if (database !== undefined) {
|
|
4241
|
+
localVarQueryParameter['database'] = database;
|
|
4242
|
+
}
|
|
4239
4243
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
4240
4244
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4241
4245
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -4511,10 +4515,11 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
4511
4515
|
* @param {string} orgName name of the Org
|
|
4512
4516
|
* @param {string} clusterName name of the cluster
|
|
4513
4517
|
* @param {string} id id of the datasource
|
|
4518
|
+
* @param {string} [database] database name, used by engines such as MSSQL when listing schemas inside a database
|
|
4514
4519
|
* @param {*} [options] Override http request option.
|
|
4515
4520
|
* @throws {RequiredError}
|
|
4516
4521
|
*/
|
|
4517
|
-
getSchemaList: async (orgName, clusterName, id, options = {}) => {
|
|
4522
|
+
getSchemaList: async (orgName, clusterName, id, database, options = {}) => {
|
|
4518
4523
|
// verify required parameter 'orgName' is not null or undefined
|
|
4519
4524
|
(0, common_1.assertParamExists)('getSchemaList', 'orgName', orgName);
|
|
4520
4525
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -4536,6 +4541,9 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
4536
4541
|
const localVarQueryParameter = {};
|
|
4537
4542
|
// authentication BearerToken required
|
|
4538
4543
|
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "authorization", configuration);
|
|
4544
|
+
if (database !== undefined) {
|
|
4545
|
+
localVarQueryParameter['database'] = database;
|
|
4546
|
+
}
|
|
4539
4547
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
4540
4548
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4541
4549
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -5462,6 +5470,45 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
5462
5470
|
options: localVarRequestOptions,
|
|
5463
5471
|
};
|
|
5464
5472
|
},
|
|
5473
|
+
/**
|
|
5474
|
+
*
|
|
5475
|
+
* @summary list all databases of the datasource
|
|
5476
|
+
* @param {string} orgName name of the Org
|
|
5477
|
+
* @param {string} clusterName name of the cluster
|
|
5478
|
+
* @param {string} id id of the datasource
|
|
5479
|
+
* @param {*} [options] Override http request option.
|
|
5480
|
+
* @throws {RequiredError}
|
|
5481
|
+
*/
|
|
5482
|
+
listDmsDatabases: async (orgName, clusterName, id, options = {}) => {
|
|
5483
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
5484
|
+
(0, common_1.assertParamExists)('listDmsDatabases', 'orgName', orgName);
|
|
5485
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
5486
|
+
(0, common_1.assertParamExists)('listDmsDatabases', 'clusterName', clusterName);
|
|
5487
|
+
// verify required parameter 'id' is not null or undefined
|
|
5488
|
+
(0, common_1.assertParamExists)('listDmsDatabases', 'id', id);
|
|
5489
|
+
const localVarPath = `/api/v1/organizations/{orgName}/clusters/{clusterName}/datasource/{id}/databases`
|
|
5490
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
5491
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
5492
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
5493
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5494
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
5495
|
+
let baseOptions;
|
|
5496
|
+
if (configuration) {
|
|
5497
|
+
baseOptions = configuration.baseOptions;
|
|
5498
|
+
}
|
|
5499
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
5500
|
+
const localVarHeaderParameter = {};
|
|
5501
|
+
const localVarQueryParameter = {};
|
|
5502
|
+
// authentication BearerToken required
|
|
5503
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "authorization", configuration);
|
|
5504
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5505
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5506
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5507
|
+
return {
|
|
5508
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
5509
|
+
options: localVarRequestOptions,
|
|
5510
|
+
};
|
|
5511
|
+
},
|
|
5465
5512
|
/**
|
|
5466
5513
|
*
|
|
5467
5514
|
* @summary List cluster endpoints
|
|
@@ -6051,10 +6098,11 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
6051
6098
|
* @param {string} id id of the datasource
|
|
6052
6099
|
* @param {string} schema schema or database name
|
|
6053
6100
|
* @param {string} type object type
|
|
6101
|
+
* @param {string} [database] database name, used by engines such as MSSQL when listing object names inside a schema
|
|
6054
6102
|
* @param {*} [options] Override http request option.
|
|
6055
6103
|
* @throws {RequiredError}
|
|
6056
6104
|
*/
|
|
6057
|
-
listObjectNamesByType: async (orgName, clusterName, id, schema, type, options = {}) => {
|
|
6105
|
+
listObjectNamesByType: async (orgName, clusterName, id, schema, type, database, options = {}) => {
|
|
6058
6106
|
// verify required parameter 'orgName' is not null or undefined
|
|
6059
6107
|
(0, common_1.assertParamExists)('listObjectNamesByType', 'orgName', orgName);
|
|
6060
6108
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -6082,6 +6130,9 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
6082
6130
|
const localVarQueryParameter = {};
|
|
6083
6131
|
// authentication BearerToken required
|
|
6084
6132
|
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "authorization", configuration);
|
|
6133
|
+
if (database !== undefined) {
|
|
6134
|
+
localVarQueryParameter['database'] = database;
|
|
6135
|
+
}
|
|
6085
6136
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6086
6137
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6087
6138
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -6097,10 +6148,11 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
6097
6148
|
* @param {string} clusterName name of the cluster
|
|
6098
6149
|
* @param {string} id id of the datasource
|
|
6099
6150
|
* @param {string} schema schema or database name
|
|
6151
|
+
* @param {string} [database] database name, used by engines such as MSSQL when listing objects inside a schema
|
|
6100
6152
|
* @param {*} [options] Override http request option.
|
|
6101
6153
|
* @throws {RequiredError}
|
|
6102
6154
|
*/
|
|
6103
|
-
listObjectTypesInSchema: async (orgName, clusterName, id, schema, options = {}) => {
|
|
6155
|
+
listObjectTypesInSchema: async (orgName, clusterName, id, schema, database, options = {}) => {
|
|
6104
6156
|
// verify required parameter 'orgName' is not null or undefined
|
|
6105
6157
|
(0, common_1.assertParamExists)('listObjectTypesInSchema', 'orgName', orgName);
|
|
6106
6158
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -6125,6 +6177,9 @@ const SharedApiAxiosParamCreator = function (configuration) {
|
|
|
6125
6177
|
const localVarQueryParameter = {};
|
|
6126
6178
|
// authentication BearerToken required
|
|
6127
6179
|
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "authorization", configuration);
|
|
6180
|
+
if (database !== undefined) {
|
|
6181
|
+
localVarQueryParameter['database'] = database;
|
|
6182
|
+
}
|
|
6128
6183
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6129
6184
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6130
6185
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -11943,12 +11998,13 @@ const SharedApiFp = function (configuration) {
|
|
|
11943
11998
|
* @param {string} schema schema or database name
|
|
11944
11999
|
* @param {string} type object type
|
|
11945
12000
|
* @param {string} objectName object name
|
|
12001
|
+
* @param {string} [database] database name, used by engines such as MSSQL when reading object metadata inside a schema
|
|
11946
12002
|
* @param {*} [options] Override http request option.
|
|
11947
12003
|
* @throws {RequiredError}
|
|
11948
12004
|
*/
|
|
11949
|
-
async getObjectInfo(orgName, clusterName, id, schema, type, objectName, options) {
|
|
12005
|
+
async getObjectInfo(orgName, clusterName, id, schema, type, objectName, database, options) {
|
|
11950
12006
|
var _a, _b, _c;
|
|
11951
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectInfo(orgName, clusterName, id, schema, type, objectName, options);
|
|
12007
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectInfo(orgName, clusterName, id, schema, type, objectName, database, options);
|
|
11952
12008
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11953
12009
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.getObjectInfo']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11954
12010
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -12067,12 +12123,13 @@ const SharedApiFp = function (configuration) {
|
|
|
12067
12123
|
* @param {string} orgName name of the Org
|
|
12068
12124
|
* @param {string} clusterName name of the cluster
|
|
12069
12125
|
* @param {string} id id of the datasource
|
|
12126
|
+
* @param {string} [database] database name, used by engines such as MSSQL when listing schemas inside a database
|
|
12070
12127
|
* @param {*} [options] Override http request option.
|
|
12071
12128
|
* @throws {RequiredError}
|
|
12072
12129
|
*/
|
|
12073
|
-
async getSchemaList(orgName, clusterName, id, options) {
|
|
12130
|
+
async getSchemaList(orgName, clusterName, id, database, options) {
|
|
12074
12131
|
var _a, _b, _c;
|
|
12075
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSchemaList(orgName, clusterName, id, options);
|
|
12132
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSchemaList(orgName, clusterName, id, database, options);
|
|
12076
12133
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12077
12134
|
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;
|
|
12078
12135
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -12426,6 +12483,22 @@ const SharedApiFp = function (configuration) {
|
|
|
12426
12483
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listDatabases']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
12427
12484
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12428
12485
|
},
|
|
12486
|
+
/**
|
|
12487
|
+
*
|
|
12488
|
+
* @summary list all databases of the datasource
|
|
12489
|
+
* @param {string} orgName name of the Org
|
|
12490
|
+
* @param {string} clusterName name of the cluster
|
|
12491
|
+
* @param {string} id id of the datasource
|
|
12492
|
+
* @param {*} [options] Override http request option.
|
|
12493
|
+
* @throws {RequiredError}
|
|
12494
|
+
*/
|
|
12495
|
+
async listDmsDatabases(orgName, clusterName, id, options) {
|
|
12496
|
+
var _a, _b, _c;
|
|
12497
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listDmsDatabases(orgName, clusterName, id, options);
|
|
12498
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12499
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listDmsDatabases']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
12500
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12501
|
+
},
|
|
12429
12502
|
/**
|
|
12430
12503
|
*
|
|
12431
12504
|
* @summary List cluster endpoints
|
|
@@ -12672,12 +12745,13 @@ const SharedApiFp = function (configuration) {
|
|
|
12672
12745
|
* @param {string} id id of the datasource
|
|
12673
12746
|
* @param {string} schema schema or database name
|
|
12674
12747
|
* @param {string} type object type
|
|
12748
|
+
* @param {string} [database] database name, used by engines such as MSSQL when listing object names inside a schema
|
|
12675
12749
|
* @param {*} [options] Override http request option.
|
|
12676
12750
|
* @throws {RequiredError}
|
|
12677
12751
|
*/
|
|
12678
|
-
async listObjectNamesByType(orgName, clusterName, id, schema, type, options) {
|
|
12752
|
+
async listObjectNamesByType(orgName, clusterName, id, schema, type, database, options) {
|
|
12679
12753
|
var _a, _b, _c;
|
|
12680
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listObjectNamesByType(orgName, clusterName, id, schema, type, options);
|
|
12754
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listObjectNamesByType(orgName, clusterName, id, schema, type, database, options);
|
|
12681
12755
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12682
12756
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listObjectNamesByType']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
12683
12757
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -12689,12 +12763,13 @@ const SharedApiFp = function (configuration) {
|
|
|
12689
12763
|
* @param {string} clusterName name of the cluster
|
|
12690
12764
|
* @param {string} id id of the datasource
|
|
12691
12765
|
* @param {string} schema schema or database name
|
|
12766
|
+
* @param {string} [database] database name, used by engines such as MSSQL when listing objects inside a schema
|
|
12692
12767
|
* @param {*} [options] Override http request option.
|
|
12693
12768
|
* @throws {RequiredError}
|
|
12694
12769
|
*/
|
|
12695
|
-
async listObjectTypesInSchema(orgName, clusterName, id, schema, options) {
|
|
12770
|
+
async listObjectTypesInSchema(orgName, clusterName, id, schema, database, options) {
|
|
12696
12771
|
var _a, _b, _c;
|
|
12697
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listObjectTypesInSchema(orgName, clusterName, id, schema, options);
|
|
12772
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listObjectTypesInSchema(orgName, clusterName, id, schema, database, options);
|
|
12698
12773
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
12699
12774
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SharedApi.listObjectTypesInSchema']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
12700
12775
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -15339,7 +15414,7 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15339
15414
|
* @throws {RequiredError}
|
|
15340
15415
|
*/
|
|
15341
15416
|
getObjectInfo(requestParameters, options) {
|
|
15342
|
-
return localVarFp.getObjectInfo(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, requestParameters.objectName, options).then((request) => request(axios, basePath));
|
|
15417
|
+
return localVarFp.getObjectInfo(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, requestParameters.objectName, requestParameters.database, options).then((request) => request(axios, basePath));
|
|
15343
15418
|
},
|
|
15344
15419
|
/**
|
|
15345
15420
|
*
|
|
@@ -15419,7 +15494,7 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15419
15494
|
* @throws {RequiredError}
|
|
15420
15495
|
*/
|
|
15421
15496
|
getSchemaList(requestParameters, options) {
|
|
15422
|
-
return localVarFp.getSchemaList(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, options).then((request) => request(axios, basePath));
|
|
15497
|
+
return localVarFp.getSchemaList(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.database, options).then((request) => request(axios, basePath));
|
|
15423
15498
|
},
|
|
15424
15499
|
/**
|
|
15425
15500
|
* Get statistics summary for slow logs of a cluster
|
|
@@ -15621,6 +15696,16 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15621
15696
|
listDatabases(requestParameters, options) {
|
|
15622
15697
|
return localVarFp.listDatabases(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, options).then((request) => request(axios, basePath));
|
|
15623
15698
|
},
|
|
15699
|
+
/**
|
|
15700
|
+
*
|
|
15701
|
+
* @summary list all databases of the datasource
|
|
15702
|
+
* @param {SharedApiListDmsDatabasesRequest} requestParameters Request parameters.
|
|
15703
|
+
* @param {*} [options] Override http request option.
|
|
15704
|
+
* @throws {RequiredError}
|
|
15705
|
+
*/
|
|
15706
|
+
listDmsDatabases(requestParameters, options) {
|
|
15707
|
+
return localVarFp.listDmsDatabases(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, options).then((request) => request(axios, basePath));
|
|
15708
|
+
},
|
|
15624
15709
|
/**
|
|
15625
15710
|
*
|
|
15626
15711
|
* @summary List cluster endpoints
|
|
@@ -15778,7 +15863,7 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15778
15863
|
* @throws {RequiredError}
|
|
15779
15864
|
*/
|
|
15780
15865
|
listObjectNamesByType(requestParameters, options) {
|
|
15781
|
-
return localVarFp.listObjectNamesByType(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, options).then((request) => request(axios, basePath));
|
|
15866
|
+
return localVarFp.listObjectNamesByType(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, requestParameters.database, options).then((request) => request(axios, basePath));
|
|
15782
15867
|
},
|
|
15783
15868
|
/**
|
|
15784
15869
|
*
|
|
@@ -15788,7 +15873,7 @@ const SharedApiFactory = function (configuration, basePath, axios) {
|
|
|
15788
15873
|
* @throws {RequiredError}
|
|
15789
15874
|
*/
|
|
15790
15875
|
listObjectTypesInSchema(requestParameters, options) {
|
|
15791
|
-
return localVarFp.listObjectTypesInSchema(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, options).then((request) => request(axios, basePath));
|
|
15876
|
+
return localVarFp.listObjectTypesInSchema(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.database, options).then((request) => request(axios, basePath));
|
|
15792
15877
|
},
|
|
15793
15878
|
/**
|
|
15794
15879
|
*
|
|
@@ -17878,7 +17963,7 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
17878
17963
|
* @memberof SharedApi
|
|
17879
17964
|
*/
|
|
17880
17965
|
getObjectInfo(requestParameters, options) {
|
|
17881
|
-
return (0, exports.SharedApiFp)(this.configuration).getObjectInfo(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, requestParameters.objectName, options).then((request) => request(this.axios, this.basePath));
|
|
17966
|
+
return (0, exports.SharedApiFp)(this.configuration).getObjectInfo(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, requestParameters.objectName, requestParameters.database, options).then((request) => request(this.axios, this.basePath));
|
|
17882
17967
|
}
|
|
17883
17968
|
/**
|
|
17884
17969
|
*
|
|
@@ -17966,7 +18051,7 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
17966
18051
|
* @memberof SharedApi
|
|
17967
18052
|
*/
|
|
17968
18053
|
getSchemaList(requestParameters, options) {
|
|
17969
|
-
return (0, exports.SharedApiFp)(this.configuration).getSchemaList(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
18054
|
+
return (0, exports.SharedApiFp)(this.configuration).getSchemaList(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.database, options).then((request) => request(this.axios, this.basePath));
|
|
17970
18055
|
}
|
|
17971
18056
|
/**
|
|
17972
18057
|
* Get statistics summary for slow logs of a cluster
|
|
@@ -18188,6 +18273,17 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
18188
18273
|
listDatabases(requestParameters, options) {
|
|
18189
18274
|
return (0, exports.SharedApiFp)(this.configuration).listDatabases(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, options).then((request) => request(this.axios, this.basePath));
|
|
18190
18275
|
}
|
|
18276
|
+
/**
|
|
18277
|
+
*
|
|
18278
|
+
* @summary list all databases of the datasource
|
|
18279
|
+
* @param {SharedApiListDmsDatabasesRequest} requestParameters Request parameters.
|
|
18280
|
+
* @param {*} [options] Override http request option.
|
|
18281
|
+
* @throws {RequiredError}
|
|
18282
|
+
* @memberof SharedApi
|
|
18283
|
+
*/
|
|
18284
|
+
listDmsDatabases(requestParameters, options) {
|
|
18285
|
+
return (0, exports.SharedApiFp)(this.configuration).listDmsDatabases(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
18286
|
+
}
|
|
18191
18287
|
/**
|
|
18192
18288
|
*
|
|
18193
18289
|
* @summary List cluster endpoints
|
|
@@ -18361,7 +18457,7 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
18361
18457
|
* @memberof SharedApi
|
|
18362
18458
|
*/
|
|
18363
18459
|
listObjectNamesByType(requestParameters, options) {
|
|
18364
|
-
return (0, exports.SharedApiFp)(this.configuration).listObjectNamesByType(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, options).then((request) => request(this.axios, this.basePath));
|
|
18460
|
+
return (0, exports.SharedApiFp)(this.configuration).listObjectNamesByType(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.type, requestParameters.database, options).then((request) => request(this.axios, this.basePath));
|
|
18365
18461
|
}
|
|
18366
18462
|
/**
|
|
18367
18463
|
*
|
|
@@ -18372,7 +18468,7 @@ class SharedApi extends base_1.BaseAPI {
|
|
|
18372
18468
|
* @memberof SharedApi
|
|
18373
18469
|
*/
|
|
18374
18470
|
listObjectTypesInSchema(requestParameters, options) {
|
|
18375
|
-
return (0, exports.SharedApiFp)(this.configuration).listObjectTypesInSchema(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, options).then((request) => request(this.axios, this.basePath));
|
|
18471
|
+
return (0, exports.SharedApiFp)(this.configuration).listObjectTypesInSchema(requestParameters.orgName, requestParameters.clusterName, requestParameters.id, requestParameters.schema, requestParameters.database, options).then((request) => request(this.axios, this.basePath));
|
|
18376
18472
|
}
|
|
18377
18473
|
/**
|
|
18378
18474
|
*
|