Skip to content

Commit

Permalink
Auto-generated API code
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine committed Nov 3, 2023
1 parent 3c5178c commit f94485b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/reference.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9065,6 +9065,8 @@ client.transform.deleteTransform({ transform_id })
** *`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
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.

[discrete]
Expand Down
1 change: 1 addition & 0 deletions src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17380,6 +17380,7 @@ export interface TransformTimeSync {
export interface TransformDeleteTransformRequest extends RequestBase {
transform_id: Id
force?: boolean
delete_dest_index?: boolean
timeout?: Duration
}

Expand Down
1 change: 1 addition & 0 deletions src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17790,6 +17790,7 @@ export interface TransformTimeSync {
export interface TransformDeleteTransformRequest extends RequestBase {
transform_id: Id
force?: boolean
delete_dest_index?: boolean
timeout?: Duration
}

Expand Down

0 comments on commit f94485b

Please sign in to comment.