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
|
@@ -180,6 +180,7 @@ import type { TdeRequest } from '../models';
|
|
|
180
180
|
import type { TdeResponse } from '../models';
|
|
181
181
|
import type { TdeStatus } from '../models';
|
|
182
182
|
import type { Tenant } from '../models';
|
|
183
|
+
import type { TestConnectResponse } from '../models';
|
|
183
184
|
import type { TlsCert } from '../models';
|
|
184
185
|
import type { TlsRequest } from '../models';
|
|
185
186
|
import type { Topic } from '../models';
|
|
@@ -5408,7 +5409,7 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5408
5409
|
* @param {*} [options] Override http request option.
|
|
5409
5410
|
* @throws {RequiredError}
|
|
5410
5411
|
*/
|
|
5411
|
-
testDataSourceV2(orgName: string, clusterName: string, datasource: Datasource, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5412
|
+
testDataSourceV2(orgName: string, clusterName: string, datasource: Datasource, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestConnectResponse>>;
|
|
5412
5413
|
/**
|
|
5413
5414
|
*
|
|
5414
5415
|
* @summary Enable or disable cluster TLS
|
|
@@ -7516,7 +7517,7 @@ export declare const SharedApiFactory: (configuration?: Configuration, basePath?
|
|
|
7516
7517
|
* @param {*} [options] Override http request option.
|
|
7517
7518
|
* @throws {RequiredError}
|
|
7518
7519
|
*/
|
|
7519
|
-
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
7520
|
+
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<TestConnectResponse>;
|
|
7520
7521
|
/**
|
|
7521
7522
|
*
|
|
7522
7523
|
* @summary Enable or disable cluster TLS
|
|
@@ -9765,7 +9766,7 @@ export interface SharedApiInterface {
|
|
|
9765
9766
|
* @throws {RequiredError}
|
|
9766
9767
|
* @memberof SharedApiInterface
|
|
9767
9768
|
*/
|
|
9768
|
-
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
9769
|
+
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): AxiosPromise<TestConnectResponse>;
|
|
9769
9770
|
/**
|
|
9770
9771
|
*
|
|
9771
9772
|
* @summary Enable or disable cluster TLS
|
|
@@ -19767,7 +19768,7 @@ export declare class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
19767
19768
|
* @throws {RequiredError}
|
|
19768
19769
|
* @memberof SharedApi
|
|
19769
19770
|
*/
|
|
19770
|
-
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19771
|
+
testDataSourceV2(requestParameters: SharedApiTestDataSourceV2Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestConnectResponse, any, {}>>;
|
|
19771
19772
|
/**
|
|
19772
19773
|
*
|
|
19773
19774
|
* @summary Enable or disable cluster TLS
|