CommandApi - factory interface

  • Parameters

    • Optionalconfiguration: Configuration
    • OptionalbasePath: string
    • Optionalaxios: 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>;
    }