mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 09:35:39 -05:00
Clean up bdc devDependencies (#7872)
* Clean up bgc devDependencies * Add extra files to .vscodeignore
This commit is contained in:
@@ -489,7 +489,7 @@ export class BdcRouterApi {
|
||||
* @param data Cluster configuration in JSON format
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public createCluster (xRequestId: string, connection: string, data: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public createCluster (xRequestId: string, connection: string, data: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -537,7 +537,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -557,7 +557,7 @@ export class BdcRouterApi {
|
||||
* @param endpointName
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public endpointsByNameGet (endpointName: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: EndpointModel; }> {
|
||||
public endpointsByNameGet (endpointName: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: EndpointModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/endpoints/{endpointName}'
|
||||
.replace('{' + 'endpointName' + '}', encodeURIComponent(String(endpointName)));
|
||||
let localVarQueryParameters: any = {};
|
||||
@@ -591,7 +591,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: EndpointModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: EndpointModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -610,7 +610,7 @@ export class BdcRouterApi {
|
||||
*
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public endpointsGet (options: any = {}) : Promise<{ response: http.ClientResponse; body: Array<EndpointModel>; }> {
|
||||
public endpointsGet (options: any = {}) : Promise<{ response: http.IncomingMessage; body: Array<EndpointModel>; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/endpoints';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -638,7 +638,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: Array<EndpointModel>; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: Array<EndpointModel>; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -662,7 +662,7 @@ export class BdcRouterApi {
|
||||
* @param all Whether you want all of the instances within the given resource
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getBdcResourceStatus (resourceName: string, xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.ClientResponse; body: BdcStatusModel; }> {
|
||||
public getBdcResourceStatus (resourceName: string, xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.IncomingMessage; body: BdcStatusModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/resources/{resourceName}/status'
|
||||
.replace('{' + 'resourceName' + '}', encodeURIComponent(String(resourceName)));
|
||||
let localVarQueryParameters: any = {};
|
||||
@@ -704,7 +704,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: BdcStatusModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: BdcStatusModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -729,7 +729,7 @@ export class BdcRouterApi {
|
||||
* @param all Whether you want all of the instances within the given resource
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getBdcServiceResourceStatus (serviceName: string, resourceName: string, xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.ClientResponse; body: ResourceStatusModel; }> {
|
||||
public getBdcServiceResourceStatus (serviceName: string, resourceName: string, xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.IncomingMessage; body: ResourceStatusModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/services/{serviceName}/resources/{resourceName}/status'
|
||||
.replace('{' + 'serviceName' + '}', encodeURIComponent(String(serviceName)))
|
||||
.replace('{' + 'resourceName' + '}', encodeURIComponent(String(resourceName)));
|
||||
@@ -777,7 +777,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: ResourceStatusModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: ResourceStatusModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -800,7 +800,7 @@ export class BdcRouterApi {
|
||||
* @param all Whether you want all of the instances within the given resource
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getBdcStatus (xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.ClientResponse; body: BdcStatusModel; }> {
|
||||
public getBdcStatus (xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.IncomingMessage; body: BdcStatusModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/status';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -836,7 +836,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: BdcStatusModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: BdcStatusModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -859,7 +859,7 @@ export class BdcRouterApi {
|
||||
* @param connection
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getCluster (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public getCluster (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -901,7 +901,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -924,7 +924,7 @@ export class BdcRouterApi {
|
||||
* @param offset
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getLogs (xRequestId: string, connection: string, offset: number, options: any = {}) : Promise<{ response: http.ClientResponse; body: string; }> {
|
||||
public getLogs (xRequestId: string, connection: string, offset: number, options: any = {}) : Promise<{ response: http.IncomingMessage; body: string; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/log';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -975,7 +975,7 @@ export class BdcRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: string; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: string; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1053,7 +1053,7 @@ export class ControlRouterApi {
|
||||
* @param connection
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getControlStatus (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public getControlStatus (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/control/status';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1095,7 +1095,7 @@ export class ControlRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1176,7 +1176,7 @@ export class DefaultApi {
|
||||
* @param credentials Credentials to create the mount
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public createMount (xRequestId: string, connection: string, remote: string, mount: string, credentials?: any, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public createMount (xRequestId: string, connection: string, remote: string, mount: string, credentials?: any, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/storage/mounts';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1237,7 +1237,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1259,7 +1259,7 @@ export class DefaultApi {
|
||||
* @param connection
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public deleteCluster (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public deleteCluster (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1301,7 +1301,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1324,7 +1324,7 @@ export class DefaultApi {
|
||||
* @param mount Local HDFS mount path
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public deleteMount (xRequestId: string, connection: string, mount: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public deleteMount (xRequestId: string, connection: string, mount: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/storage/mounts';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1375,7 +1375,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1398,7 +1398,7 @@ export class DefaultApi {
|
||||
* @param query The query in the json format for the health properties
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getHealthProperties (xRequestId: string, connection: string, query: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public getHealthProperties (xRequestId: string, connection: string, query: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/health';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1449,7 +1449,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1471,7 +1471,7 @@ export class DefaultApi {
|
||||
* @param connection
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getHome (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public getHome (xRequestId: string, connection: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1513,7 +1513,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1537,7 +1537,7 @@ export class DefaultApi {
|
||||
* @param all Whether you want all of the instances within the given resource
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public getPoolStatus (bdcName: string, serviceName: string, xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.ClientResponse; body: ServiceStatusModel; }> {
|
||||
public getPoolStatus (bdcName: string, serviceName: string, xRequestId?: string, connection?: string, all?: boolean, options: any = {}) : Promise<{ response: http.IncomingMessage; body: ServiceStatusModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/bdc/services/{serviceName}/status'
|
||||
.replace('{' + 'bdcName' + '}', encodeURIComponent(String(bdcName)))
|
||||
.replace('{' + 'serviceName' + '}', encodeURIComponent(String(serviceName)));
|
||||
@@ -1585,7 +1585,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: ServiceStatusModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: ServiceStatusModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1608,7 +1608,7 @@ export class DefaultApi {
|
||||
* @param mount
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public listMounts (xRequestId: string, connection: string, mount?: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public listMounts (xRequestId: string, connection: string, mount?: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/storage/mounts';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1654,7 +1654,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1677,7 +1677,7 @@ export class DefaultApi {
|
||||
* @param mount Local path to mount on HDFS
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public refreshMount (xRequestId: string, connection: string, mount: string, options: any = {}) : Promise<{ response: http.ClientResponse; body: any; }> {
|
||||
public refreshMount (xRequestId: string, connection: string, mount: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/storage/mounts/refresh';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1728,7 +1728,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1753,7 +1753,7 @@ export class DefaultApi {
|
||||
* @param data Password and cluster name in JSON format
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public updatePassword (xRequestId: string, connection: string, serviceName: string, serviceUsername: string, data: string, options: any = {}) : Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public updatePassword (xRequestId: string, connection: string, serviceName: string, serviceUsername: string, data: string, options: any = {}) : Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/passwords/{serviceName}/{serviceUsername}'
|
||||
.replace('{' + 'serviceName' + '}', encodeURIComponent(String(serviceName)))
|
||||
.replace('{' + 'serviceUsername' + '}', encodeURIComponent(String(serviceUsername)));
|
||||
@@ -1813,7 +1813,7 @@ export class DefaultApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
|
||||
@@ -383,7 +383,7 @@ export class AppRouterApi {
|
||||
* @param version
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppByNameAndVersionDelete(name: string, version: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1AppByNameAndVersionDelete(name: string, version: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app/{name}/{version}'
|
||||
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
||||
.replace('{' + 'version' + '}', encodeURIComponent(String(version)));
|
||||
@@ -425,7 +425,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -446,7 +446,7 @@ export class AppRouterApi {
|
||||
* @param version
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppByNameAndVersionGet(name: string, version: string, options: any = {}): Promise<{ response: http.ClientResponse; body: AppModel; }> {
|
||||
public apiV1AppByNameAndVersionGet(name: string, version: string, options: any = {}): Promise<{ response: http.IncomingMessage; body: AppModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app/{name}/{version}'
|
||||
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
||||
.replace('{' + 'version' + '}', encodeURIComponent(String(version)));
|
||||
@@ -488,7 +488,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: AppModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: AppModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -509,7 +509,7 @@ export class AppRouterApi {
|
||||
* @param name
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppByNameGet(name: string, options: any = {}): Promise<{ response: http.ClientResponse; body: Array<AppModel>; }> {
|
||||
public apiV1AppByNameGet(name: string, options: any = {}): Promise<{ response: http.IncomingMessage; body: Array<AppModel>; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app/{name}'
|
||||
.replace('{' + 'name' + '}', encodeURIComponent(String(name)));
|
||||
let localVarQueryParameters: any = {};
|
||||
@@ -545,7 +545,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: Array<AppModel>; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: Array<AppModel>; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -565,7 +565,7 @@ export class AppRouterApi {
|
||||
* @summary ApiV1App_GET
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppGet(options: any = {}): Promise<{ response: http.ClientResponse; body: Array<AppModel>; }> {
|
||||
public apiV1AppGet(options: any = {}): Promise<{ response: http.IncomingMessage; body: Array<AppModel>; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -595,7 +595,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: Array<AppModel>; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: Array<AppModel>; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -617,7 +617,7 @@ export class AppRouterApi {
|
||||
* @param _package
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppPatch(spec?: Buffer, _package?: Buffer, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1AppPatch(spec?: Buffer, _package?: Buffer, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -657,7 +657,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -678,7 +678,7 @@ export class AppRouterApi {
|
||||
* @param _package
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppPost(spec?: Buffer, _package?: Buffer, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1AppPost(spec?: Buffer, _package?: Buffer, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -718,7 +718,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -739,7 +739,7 @@ export class AppRouterApi {
|
||||
* @param version
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1AppSwaggerJsonByNameAndVersionGet(name: string, version: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1AppSwaggerJsonByNameAndVersionGet(name: string, version: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/app/{name}/{version}/swagger.json'
|
||||
.replace('{' + 'name' + '}', encodeURIComponent(String(name)))
|
||||
.replace('{' + 'version' + '}', encodeURIComponent(String(version)));
|
||||
@@ -781,7 +781,7 @@ export class AppRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -857,7 +857,7 @@ export class FileRouterApi {
|
||||
* @param filePath
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1FilesByFilePathGet(filePath: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1FilesByFilePathGet(filePath: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/files/{filePath}'
|
||||
.replace('{' + 'filePath' + '}', encodeURIComponent(String(filePath)));
|
||||
let localVarQueryParameters: any = {};
|
||||
@@ -893,7 +893,7 @@ export class FileRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -914,7 +914,7 @@ export class FileRouterApi {
|
||||
* @param containerName
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1FilesFilelistByPodNameAndContainerNameGet(podName: string, containerName: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1FilesFilelistByPodNameAndContainerNameGet(podName: string, containerName: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/files/filelist/{podName}/{containerName}'
|
||||
.replace('{' + 'podName' + '}', encodeURIComponent(String(podName)))
|
||||
.replace('{' + 'containerName' + '}', encodeURIComponent(String(containerName)));
|
||||
@@ -956,7 +956,7 @@ export class FileRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -976,7 +976,7 @@ export class FileRouterApi {
|
||||
* @param filePath
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public filesByFilePathGet(filePath: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public filesByFilePathGet(filePath: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/files/{filePath}'
|
||||
.replace('{' + 'filePath' + '}', encodeURIComponent(String(filePath)));
|
||||
let localVarQueryParameters: any = {};
|
||||
@@ -1012,7 +1012,7 @@ export class FileRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1033,7 +1033,7 @@ export class FileRouterApi {
|
||||
* @param containerName
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public filesFilelistByPodNameAndContainerNameGet(podName: string, containerName: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public filesFilelistByPodNameAndContainerNameGet(podName: string, containerName: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/files/filelist/{podName}/{containerName}'
|
||||
.replace('{' + 'podName' + '}', encodeURIComponent(String(podName)))
|
||||
.replace('{' + 'containerName' + '}', encodeURIComponent(String(containerName)));
|
||||
@@ -1075,7 +1075,7 @@ export class FileRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1151,7 +1151,7 @@ export class HealthRouterApi {
|
||||
* @param query
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1HealthGet(query?: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1HealthGet(query?: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/health';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1185,7 +1185,7 @@ export class HealthRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1204,7 +1204,7 @@ export class HealthRouterApi {
|
||||
* @summary ApiV1Health_POST
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1HealthPost(options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public apiV1HealthPost(options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/health';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1234,7 +1234,7 @@ export class HealthRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1254,7 +1254,7 @@ export class HealthRouterApi {
|
||||
* @param query
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public healthGet(query?: string, options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public healthGet(query?: string, options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/health';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1288,7 +1288,7 @@ export class HealthRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1307,7 +1307,7 @@ export class HealthRouterApi {
|
||||
* @summary Health_POST
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public healthPost(options: any = {}): Promise<{ response: http.ClientResponse; body?: any; }> {
|
||||
public healthPost(options: any = {}): Promise<{ response: http.IncomingMessage; body?: any; }> {
|
||||
const localVarPath = this.basePath + '/health';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1337,7 +1337,7 @@ export class HealthRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body?: any; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body?: any; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1412,7 +1412,7 @@ export class TokenRouterApi {
|
||||
* @summary ApiV1Token_POST
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public apiV1TokenPost(options: any = {}): Promise<{ response: http.ClientResponse; body: TokenModel; }> {
|
||||
public apiV1TokenPost(options: any = {}): Promise<{ response: http.IncomingMessage; body: TokenModel; }> {
|
||||
const localVarPath = this.basePath + '/api/v1/token';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1442,7 +1442,7 @@ export class TokenRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: TokenModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: TokenModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
@@ -1462,7 +1462,7 @@ export class TokenRouterApi {
|
||||
* @summary Token_POST
|
||||
* @param {*} [options] Override http request options.
|
||||
*/
|
||||
public tokenPost(options: any = {}): Promise<{ response: http.ClientResponse; body: TokenModel; }> {
|
||||
public tokenPost(options: any = {}): Promise<{ response: http.IncomingMessage; body: TokenModel; }> {
|
||||
const localVarPath = this.basePath + '/token';
|
||||
let localVarQueryParameters: any = {};
|
||||
let localVarHeaderParams: any = (<any>Object).assign({}, this.defaultHeaders);
|
||||
@@ -1492,7 +1492,7 @@ export class TokenRouterApi {
|
||||
localVarRequestOptions.form = localVarFormParams;
|
||||
}
|
||||
}
|
||||
return new Promise<{ response: http.ClientResponse; body: TokenModel; }>((resolve, reject) => {
|
||||
return new Promise<{ response: http.IncomingMessage; body: TokenModel; }>((resolve, reject) => {
|
||||
localVarRequest(localVarRequestOptions, (error, response, body) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
|
||||
Reference in New Issue
Block a user