Function CommandApiFactory
- CommandApiFactory(configuration?, basePath?, axios?): {
commandControllerCreate(commandCreateDTO?: CommandCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
commandControllerCreateArgument(commandArgumentCreateDTO?: CommandArgumentCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandArgumentDTOAPI>;
commandControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
commandControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
commandControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
commandControllerSearch(commandSearchInputDTO?: CommandSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputArrayDTOAPI>;
commandControllerTrigger(id: string, commandTriggerDTO?: CommandTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
commandControllerUpdate(id: string, commandUpdateDTO?: CommandUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
commandControllerUpdateArgument(id: string, commandArgumentUpdateDTO?: CommandArgumentUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandArgumentDTOAPI>;
} Parameters
Optional
configuration: ConfigurationOptional
basePath: stringOptional
axios: AxiosInstance
Returns {
commandControllerCreate(commandCreateDTO?: CommandCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
commandControllerCreateArgument(commandArgumentCreateDTO?: CommandArgumentCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandArgumentDTOAPI>;
commandControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
commandControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
commandControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
commandControllerSearch(commandSearchInputDTO?: CommandSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputArrayDTOAPI>;
commandControllerTrigger(id: string, commandTriggerDTO?: CommandTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
commandControllerUpdate(id: string, commandUpdateDTO?: CommandUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
commandControllerUpdateArgument(id: string, commandArgumentUpdateDTO?: CommandArgumentUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandArgumentDTOAPI>;
}
commandControllerCreate:function
- commandControllerCreate(commandCreateDTO?, options?): AxiosPromise<CommandOutputDTOAPI>
Parameters
Optional
commandCreateDTO: CommandCreateDTOOptional
options: RawAxiosRequestConfig
commandControllerCreateArgument:function
- commandControllerCreateArgument(commandArgumentCreateDTO?, options?): AxiosPromise<CommandArgumentDTOAPI>
commandControllerGetExecutions:function
- commandControllerGetExecutions(id, success?, eventSearchInputDTO?, options?): AxiosPromise<EventOutputArrayDTOAPI>
Parameters
- id: string
Optional
success: anyOptional
eventSearchInputDTO: EventSearchInputDTOOptional
options: RawAxiosRequestConfig
commandControllerGetOne:function
- commandControllerGetOne(id, options?): AxiosPromise<CommandOutputDTOAPI>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig
commandControllerRemove:function
- commandControllerRemove(id, options?): AxiosPromise<APIOutput>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig
Returns AxiosPromise<APIOutput>
commandControllerRemoveArgument:function
- commandControllerRemoveArgument(id, options?): AxiosPromise<APIOutput>
Parameters
- id: string
Optional
options: RawAxiosRequestConfig
Returns AxiosPromise<APIOutput>
commandControllerSearch:function
commandControllerTrigger:function
- commandControllerTrigger(id, commandTriggerDTO?, options?): AxiosPromise<void>
Parameters
- id: string
Optional
commandTriggerDTO: CommandTriggerDTOOptional
options: RawAxiosRequestConfig
Returns AxiosPromise<void>
commandControllerUpdate:function
- commandControllerUpdate(id, commandUpdateDTO?, options?): AxiosPromise<CommandOutputDTOAPI>
Parameters
- id: string
Optional
commandUpdateDTO: CommandUpdateDTOOptional
options: RawAxiosRequestConfig
commandControllerUpdateArgument:function
- commandControllerUpdateArgument(id, commandArgumentUpdateDTO?, options?): AxiosPromise<CommandArgumentDTOAPI>
CommandApi - factory interface
Export