Skip to content

Commit d64edd7

Browse files
Auto-generated code for 8.11 (#2057)
1 parent 272d04f commit d64edd7

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

docs/reference.asciidoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9065,6 +9065,8 @@ client.transform.deleteTransform({ transform_id })
90659065
** *`transform_id` (string)*: Identifier for the transform.
90669066
** *`force` (Optional, boolean)*: If this value is false, the transform must be stopped before it can be deleted. If true, the transform is
90679067
deleted regardless of its current state.
9068+
** *`delete_dest_index` (Optional, boolean)*: If this value is true, the destination index is deleted together with the transform. If false, the destination
9069+
index will not be deleted
90689070
** *`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.
90699071

90709072
[discrete]

src/api/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17373,6 +17373,7 @@ export interface TransformTimeSync {
1737317373
export interface TransformDeleteTransformRequest extends RequestBase {
1737417374
transform_id: Id
1737517375
force?: boolean
17376+
delete_dest_index?: boolean
1737617377
timeout?: Duration
1737717378
}
1737817379

src/api/typesWithBodyKey.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17783,6 +17783,7 @@ export interface TransformTimeSync {
1778317783
export interface TransformDeleteTransformRequest extends RequestBase {
1778417784
transform_id: Id
1778517785
force?: boolean
17786+
delete_dest_index?: boolean
1778617787
timeout?: Duration
1778717788
}
1778817789

0 commit comments

Comments
 (0)