Function CommandApiFactory
- CommandApiFactory(
configuration?: Configuration,
basePath?: string,
axios?: AxiosInstance,
): {
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
commandControllerCreateArgument:function
commandControllerGetExecutions:function
commandControllerGetOne:function
- commandControllerGetOne(
id: string,
options?: RawAxiosRequestConfig,
): AxiosPromise<CommandOutputDTOAPI> Parameters
- id: string
Optional
options: RawAxiosRequestConfig
commandControllerRemove:function
- commandControllerRemove(
id: string,
options?: RawAxiosRequestConfig,
): AxiosPromise<APIOutput> Parameters
- id: string
Optional
options: RawAxiosRequestConfig
Returns AxiosPromise<APIOutput>
commandControllerRemoveArgument:function
- commandControllerRemoveArgument(
id: string,
options?: RawAxiosRequestConfig,
): AxiosPromise<APIOutput> Parameters
- id: string
Optional
options: RawAxiosRequestConfig
Returns AxiosPromise<APIOutput>
commandControllerSearch:function
commandControllerTrigger:function
- commandControllerTrigger(
id: string,
commandTriggerDTO?: CommandTriggerDTO,
options?: RawAxiosRequestConfig,
): AxiosPromise<void> Parameters
- id: string
Optional
commandTriggerDTO: CommandTriggerDTOOptional
options: RawAxiosRequestConfig
Returns AxiosPromise<void>
commandControllerUpdate:function
commandControllerUpdateArgument:function
CommandApi - factory interface
Export