Auto-generated code for main (#2058)

This commit is contained in:
Elastic Machine
2023-11-04 02:39:04 +11:00
committed by GitHub
parent 3c5178c7ae
commit ab10e462e7
3 changed files with 4 additions and 0 deletions

View File

@ -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]

View File

@ -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
} }

View File

@ -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
} }