You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2
+
3
+
importtype{ActionType}from'./actionType';
4
+
importtype{Notifications}from'./notifications';
5
+
importtype{Policies}from'./policies';
6
+
importtype{TaskInput}from'./taskInput';
7
+
8
+
/**
9
+
* API request body for updating a task.
10
+
*/
11
+
exporttypeTaskReplace={
12
+
/**
13
+
* Universally unique identifier (UUID) of a destination resource.
14
+
*/
15
+
destinationID: string;
16
+
17
+
action: ActionType;
18
+
19
+
subscriptionAction?: ActionType|undefined;
20
+
21
+
/**
22
+
* Cron expression for the task\'s schedule.
23
+
*/
24
+
cron?: string|undefined;
25
+
26
+
/**
27
+
* Whether the task is enabled.
28
+
*/
29
+
enabled?: boolean|undefined;
30
+
31
+
/**
32
+
* Maximum accepted percentage of failures for a task run to finish successfully.
0 commit comments