Skip to content

Commit ab10e46

Browse files
Auto-generated code for main (#2058)
1 parent 3c5178c commit ab10e46

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
@@ -17380,6 +17380,7 @@ export interface TransformTimeSync {
1738017380
export interface TransformDeleteTransformRequest extends RequestBase {
1738117381
transform_id: Id
1738217382
force?: boolean
17383+
delete_dest_index?: boolean
1738317384
timeout?: Duration
1738417385
}
1738517386

src/api/typesWithBodyKey.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17790,6 +17790,7 @@ export interface TransformTimeSync {
1779017790
export interface TransformDeleteTransformRequest extends RequestBase {
1779117791
transform_id: Id
1779217792
force?: boolean
17793+
delete_dest_index?: boolean
1779317794
timeout?: Duration
1779417795
}
1779517796

0 commit comments

Comments
 (0)