kb-cloud-client-typescript 2.3.0-alpha.170 → 2.3.0-alpha.172
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 +5 -4
- package/dist/adminapi/apis/dms-api.d.ts.map +1 -1
- package/dist/adminapi/apis/dms-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +5 -4
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/index.d.ts +1 -0
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +1 -0
- package/dist/adminapi/models/index.js.map +1 -1
- package/dist/adminapi/models/test-connect-response.d.ts +39 -0
- package/dist/adminapi/models/test-connect-response.d.ts.map +1 -0
- package/dist/adminapi/models/test-connect-response.js +16 -0
- package/dist/adminapi/models/test-connect-response.js.map +1 -0
- package/dist/openapi/apis/dms-api.d.ts +5 -4
- package/dist/openapi/apis/dms-api.d.ts.map +1 -1
- package/dist/openapi/apis/dms-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +5 -4
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/index.d.ts +1 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +1 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/dist/openapi/models/test-connect-response.d.ts +39 -0
- package/dist/openapi/models/test-connect-response.d.ts.map +1 -0
- package/dist/openapi/models/test-connect-response.js +16 -0
- package/dist/openapi/models/test-connect-response.js.map +1 -0
- package/package.json +1 -1
- package/src/adminapi/.openapi-generator/FILES +1 -0
- package/src/adminapi/apis/dms-api.ts +5 -3
- package/src/adminapi/apis/shared-api.ts +5 -3
- package/src/adminapi/models/index.ts +1 -0
- package/src/adminapi/models/test-connect-response.ts +42 -0
- package/src/adminapi.yaml +14 -1
- package/src/openapi/.openapi-generator/FILES +1 -0
- package/src/openapi/apis/dms-api.ts +5 -3
- package/src/openapi/apis/shared-api.ts +5 -3
- package/src/openapi/models/index.ts +1 -0
- package/src/openapi/models/test-connect-response.ts +42 -0
- package/src/openapi.yaml +14 -1
|
@@ -187,6 +187,7 @@ import type { TdeRequest } from '../models';
|
|
|
187
187
|
import type { TdeResponse } from '../models';
|
|
188
188
|
import type { TdeStatus } from '../models';
|
|
189
189
|
import type { Tenant } from '../models';
|
|
190
|
+
import type { TestConnectResponse } from '../models';
|
|
190
191
|
import type { TlsCert } from '../models';
|
|
191
192
|
import type { TlsRequest } from '../models';
|
|
192
193
|
import type { Topic } from '../models';
|
|
@@ -5248,7 +5249,7 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5248
5249
|
* @param {*} [options] Override http request option.
|
|
5249
5250
|
* @throws {RequiredError}
|
|
5250
5251
|
*/
|
|
5251
|
-
testDataSourceV2(orgName: string, clusterName: string, datasource: Datasource, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5252
|
+
testDataSourceV2(orgName: string, clusterName: string, datasource: Datasource, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestConnectResponse>>;
|
|
5252
5253
|
/**
|
|
5253
5254
|
*
|
|
5254
5255
|
* @summary Enable or disable cluster TLS
|
|
@@ -7298,7 +7299,7 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
7298
7299
|
* @param {*} [options] Override http request option.
|
|
7299
7300
|
* @throws {RequiredError}
|
|
7300
7301
|
*/
|
|
7301
|
-
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
7302
|
+
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<TestConnectResponse>;
|
|
7302
7303
|
/**
|
|
7303
7304
|
*
|
|
7304
7305
|
* @summary Enable or disable cluster TLS
|
|
@@ -9494,7 +9495,7 @@ export interface SharedApiInterface {
|
|
|
9494
9495
|
* @throws {RequiredError}
|
|
9495
9496
|
* @memberof SharedApiInterface
|
|
9496
9497
|
*/
|
|
9497
|
-
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
9498
|
+
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<TestConnectResponse>;
|
|
9498
9499
|
/**
|
|
9499
9500
|
*
|
|
9500
9501
|
* @summary Enable or disable cluster TLS
|
|
@@ -19023,7 +19024,7 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
19023
19024
|
* @throws {RequiredError}
|
|
19024
19025
|
* @memberof SharedApi
|
|
19025
19026
|
*/
|
|
19026
|
-
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19027
|
+
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestConnectResponse, any, {}>>;
|
|
19027
19028
|
/**
|
|
19028
19029
|
*
|
|
19029
19030
|
* @summary Enable or disable cluster TLS
|