Function ScheduledTasksApiAxiosParamCreator
- ScheduledTasksApiAxiosParamCreator(
configuration?: Configuration,
): {
getTask: (
taskId: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getTasks: (
isHidden?: boolean,
isEnabled?: boolean,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
startTask: (
taskId: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
stopTask: (
taskId: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
updateTask: (
taskId: string,
taskTriggerInfo: TaskTriggerInfo[],
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
} Returns {
getTask: (
taskId: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getTasks: (
isHidden?: boolean,
isEnabled?: boolean,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
startTask: (
taskId: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
stopTask: (
taskId: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
updateTask: (
taskId: string,
taskTriggerInfo: TaskTriggerInfo[],
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
getTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
getTasks: (
isHidden?: boolean,
isEnabled?: boolean,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
startTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
stopTask: (taskId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
updateTask: (
taskId: string,
taskTriggerInfo: TaskTriggerInfo[],
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
ScheduledTasksApi - axios parameter creator
Export