@ -8053,18 +8053,18 @@ export const JobApiAxiosParamCreator = function (configuration?: Configuration)
} ,
/ * *
*
* @param { JobName } jobI d
* @param { JobName } i d
* @param { JobCommandDto } jobCommandDto
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
sendJobCommand : async ( jobI d: JobName , jobCommandDto : JobCommandDto , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' jobI d' is not null or undefined
assertParamExists ( 'sendJobCommand' , ' jobId', jobI d)
sendJobCommand : async ( i d: JobName , jobCommandDto : JobCommandDto , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter ' i d' is not null or undefined
assertParamExists ( 'sendJobCommand' , ' id', i d)
// verify required parameter 'jobCommandDto' is not null or undefined
assertParamExists ( 'sendJobCommand' , 'jobCommandDto' , jobCommandDto )
const localVarPath = ` /jobs/{ jobI d}`
. replace ( ` { ${ " jobI d"} } ` , encodeURIComponent ( String ( jobI d) ) ) ;
const localVarPath = ` /jobs/{ i d}`
. replace ( ` { ${ " i d"} } ` , encodeURIComponent ( String ( i d) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
@ -8120,13 +8120,13 @@ export const JobApiFp = function(configuration?: Configuration) {
} ,
/ * *
*
* @param { JobName } jobI d
* @param { JobName } i d
* @param { JobCommandDto } jobCommandDto
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async sendJobCommand ( jobI d: JobName , jobCommandDto : JobCommandDto , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < JobStatusDto > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . sendJobCommand ( jobI d, jobCommandDto , options ) ;
async sendJobCommand ( i d: JobName , jobCommandDto : JobCommandDto , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < JobStatusDto > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . sendJobCommand ( i d, jobCommandDto , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
}
@ -8149,13 +8149,13 @@ export const JobApiFactory = function (configuration?: Configuration, basePath?:
} ,
/ * *
*
* @param { JobName } jobI d
* @param { JobName } i d
* @param { JobCommandDto } jobCommandDto
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
sendJobCommand ( jobI d: JobName , jobCommandDto : JobCommandDto , options? : any ) : AxiosPromise < JobStatusDto > {
return localVarFp . sendJobCommand ( jobI d, jobCommandDto , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
sendJobCommand ( i d: JobName , jobCommandDto : JobCommandDto , options? : any ) : AxiosPromise < JobStatusDto > {
return localVarFp . sendJobCommand ( i d, jobCommandDto , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
} ;
} ;
@ -8171,7 +8171,7 @@ export interface JobApiSendJobCommandRequest {
* @type { JobName }
* @memberof JobApiSendJobCommand
* /
readonly jobI d: JobName
readonly i d: JobName
/ * *
*
@ -8206,7 +8206,7 @@ export class JobApi extends BaseAPI {
* @memberof JobApi
* /
public sendJobCommand ( requestParameters : JobApiSendJobCommandRequest , options? : AxiosRequestConfig ) {
return JobApiFp ( this . configuration ) . sendJobCommand ( requestParameters . jobI d, requestParameters . jobCommandDto , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
return JobApiFp ( this . configuration ) . sendJobCommand ( requestParameters . i d, requestParameters . jobCommandDto , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
}