Skip to content

Commit 777e438

Browse files
committed
API generation
1 parent 29beb44 commit 777e438

File tree

3 files changed

+0
-292
lines changed

3 files changed

+0
-292
lines changed

api/api/data_frame.get_data_frame_transform_stats.js

Lines changed: 0 additions & 125 deletions
This file was deleted.

api/requestParams.d.ts

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,17 +1066,8 @@ export interface RenderSearchTemplate<T = any> extends Generic {
10661066
body?: T;
10671067
}
10681068

1069-
<<<<<<< HEAD
1070-
export interface ScriptsPainlessExecute extends Generic {
1071-
body?: any;
1072-
=======
1073-
export interface ScriptsPainlessContext extends Generic {
1074-
context?: string;
1075-
}
1076-
10771069
export interface ScriptsPainlessExecute<T = any> extends Generic {
10781070
body?: T;
1079-
>>>>>>> a21281f... Improve typings (#813)
10801071
}
10811072

10821073
export interface Scroll<T = any> extends Generic {
@@ -1380,47 +1371,7 @@ export interface CcrUnfollow extends Generic {
13801371
index: string;
13811372
}
13821373

1383-
<<<<<<< HEAD
1384-
export interface GraphExplore extends Generic {
1385-
=======
1386-
export interface DataFrameDeleteDataFrameTransform extends Generic {
1387-
transform_id: string;
1388-
}
1389-
1390-
export interface DataFrameGetDataFrameTransform extends Generic {
1391-
transform_id?: string;
1392-
from?: number;
1393-
size?: number;
1394-
}
1395-
1396-
export interface DataFrameGetDataFrameTransformStats extends Generic {
1397-
transform_id?: string;
1398-
from?: number;
1399-
size?: number;
1400-
}
1401-
1402-
export interface DataFramePreviewDataFrameTransform<T = any> extends Generic {
1403-
body: T;
1404-
}
1405-
1406-
export interface DataFramePutDataFrameTransform<T = any> extends Generic {
1407-
transform_id: string;
1408-
body: T;
1409-
}
1410-
1411-
export interface DataFrameStartDataFrameTransform extends Generic {
1412-
transform_id: string;
1413-
timeout?: string;
1414-
}
1415-
1416-
export interface DataFrameStopDataFrameTransform extends Generic {
1417-
transform_id: string;
1418-
wait_for_completion?: boolean;
1419-
timeout?: string;
1420-
}
1421-
14221374
export interface GraphExplore<T = any> extends Generic {
1423-
>>>>>>> a21281f... Improve typings (#813)
14241375
index?: string | string[];
14251376
type?: string | string[];
14261377
routing?: string;

docs/reference.asciidoc

Lines changed: 0 additions & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -4282,124 +4282,6 @@ link:http://www.elastic.co/guide/en/elasticsearch/reference/current[Reference]
42824282

42834283
|===
42844284

4285-
<<<<<<< HEAD
4286-
=======
4287-
=== dataFrame.deleteDataFrameTransform
4288-
[source,js]
4289-
----
4290-
client.dataFrame.deleteDataFrameTransform([params] [, options] [, callback])
4291-
----
4292-
link:{ref}/delete-data-frame-transform.html[Reference]
4293-
[cols=2*]
4294-
|===
4295-
|`transform_id` or `transformId`
4296-
|`string` - The id of the transform to delete
4297-
4298-
|===
4299-
4300-
=== dataFrame.getDataFrameTransform
4301-
[source,js]
4302-
----
4303-
client.dataFrame.getDataFrameTransform([params] [, options] [, callback])
4304-
----
4305-
link:{ref}/get-data-frame-transform.html[Reference]
4306-
[cols=2*]
4307-
|===
4308-
|`transform_id` or `transformId`
4309-
|`string` - The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms
4310-
4311-
|`from`
4312-
|`number` - skips a number of transform configs, defaults to 0
4313-
4314-
|`size`
4315-
|`number` - specifies a max number of transforms to get, defaults to 100
4316-
4317-
|===
4318-
4319-
=== dataFrame.getDataFrameTransformStats
4320-
[source,js]
4321-
----
4322-
client.dataFrame.getDataFrameTransformStats([params] [, options] [, callback])
4323-
----
4324-
link:{ref}/get-data-frame-transform-stats.html[Reference]
4325-
[cols=2*]
4326-
|===
4327-
|`transform_id` or `transformId`
4328-
|`string` - The id of the transform for which to get stats. '_all' or '*' implies all transforms
4329-
4330-
|`from`
4331-
|`number` - skips a number of transform stats, defaults to 0
4332-
4333-
|`size`
4334-
|`number` - specifies a max number of transform stats to get, defaults to 100
4335-
4336-
|===
4337-
4338-
=== dataFrame.previewDataFrameTransform
4339-
[source,js]
4340-
----
4341-
client.dataFrame.previewDataFrameTransform([params] [, options] [, callback])
4342-
----
4343-
link:{ref}/preview-data-frame-transform.html[Reference]
4344-
[cols=2*]
4345-
|===
4346-
|`body`
4347-
|`object` - The definition for the data_frame transform to preview
4348-
4349-
|===
4350-
4351-
=== dataFrame.putDataFrameTransform
4352-
[source,js]
4353-
----
4354-
client.dataFrame.putDataFrameTransform([params] [, options] [, callback])
4355-
----
4356-
link:{ref}/put-data-frame-transform.html[Reference]
4357-
[cols=2*]
4358-
|===
4359-
|`transform_id` or `transformId`
4360-
|`string` - The id of the new transform.
4361-
4362-
|`body`
4363-
|`object` - The data frame transform definition
4364-
4365-
|===
4366-
4367-
=== dataFrame.startDataFrameTransform
4368-
[source,js]
4369-
----
4370-
client.dataFrame.startDataFrameTransform([params] [, options] [, callback])
4371-
----
4372-
link:{ref}/start-data-frame-transform.html[Reference]
4373-
[cols=2*]
4374-
|===
4375-
|`transform_id` or `transformId`
4376-
|`string` - The id of the transform to start
4377-
4378-
|`timeout`
4379-
|`string` - Controls the time to wait for the transform to start
4380-
4381-
|===
4382-
4383-
=== dataFrame.stopDataFrameTransform
4384-
[source,js]
4385-
----
4386-
client.dataFrame.stopDataFrameTransform([params] [, options] [, callback])
4387-
----
4388-
link:{ref}/stop-data-frame-transform.html[Reference]
4389-
[cols=2*]
4390-
|===
4391-
|`transform_id` or `transformId`
4392-
|`string` - The id of the transform to stop
4393-
4394-
|`wait_for_completion` or `waitForCompletion`
4395-
|`boolean` - Whether to wait for the transform to fully stop before returning or not. Default to false
4396-
4397-
|`timeout`
4398-
|`string` - Controls the time to wait until the transform has stopped. Default to 30 seconds
4399-
4400-
|===
4401-
4402-
>>>>>>> a21281f... Improve typings (#813)
44034285
=== graph.explore
44044286
[source,js]
44054287
----

0 commit comments

Comments
 (0)