Auto-generated code for main (#2058)
This commit is contained in:
@ -9065,6 +9065,8 @@ client.transform.deleteTransform({ transform_id })
|
|||||||
** *`transform_id` (string)*: Identifier for the transform.
|
** *`transform_id` (string)*: Identifier for the transform.
|
||||||
** *`force` (Optional, boolean)*: If this value is false, the transform must be stopped before it can be deleted. If true, the transform is
|
** *`force` (Optional, boolean)*: If this value is false, the transform must be stopped before it can be deleted. If true, the transform is
|
||||||
deleted regardless of its current state.
|
deleted regardless of its current state.
|
||||||
|
** *`delete_dest_index` (Optional, boolean)*: If this value is true, the destination index is deleted together with the transform. If false, the destination
|
||||||
|
index will not be deleted
|
||||||
** *`timeout` (Optional, string | -1 | 0)*: Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
|
** *`timeout` (Optional, string | -1 | 0)*: Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
|
||||||
|
|
||||||
[discrete]
|
[discrete]
|
||||||
|
|||||||
@ -17380,6 +17380,7 @@ export interface TransformTimeSync {
|
|||||||
export interface TransformDeleteTransformRequest extends RequestBase {
|
export interface TransformDeleteTransformRequest extends RequestBase {
|
||||||
transform_id: Id
|
transform_id: Id
|
||||||
force?: boolean
|
force?: boolean
|
||||||
|
delete_dest_index?: boolean
|
||||||
timeout?: Duration
|
timeout?: Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -17790,6 +17790,7 @@ export interface TransformTimeSync {
|
|||||||
export interface TransformDeleteTransformRequest extends RequestBase {
|
export interface TransformDeleteTransformRequest extends RequestBase {
|
||||||
transform_id: Id
|
transform_id: Id
|
||||||
force?: boolean
|
force?: boolean
|
||||||
|
delete_dest_index?: boolean
|
||||||
timeout?: Duration
|
timeout?: Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user