You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.MachineLearning.cs
+104Lines changed: 104 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -215,6 +215,110 @@ public class ExplainDataFrameAnalyticsRequestParameters : RequestParameters<Expl
215
215
publicoverrideboolSupportsBody=>true;
216
216
}
217
217
218
+
///<summary>Request options for FindFileStructure <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/find-structure.html</para></summary>
///<summary>Optional parameter to specify the character set of the file</summary>
224
+
publicstringCharset
225
+
{
226
+
get=>Q<string>("charset");
227
+
set=>Q("charset",value);
228
+
}
229
+
230
+
///<summary>Optional parameter containing a comma separated list of the column names for a delimited file</summary>
231
+
publicstring[]ColumnNames
232
+
{
233
+
get=>Q<string[]>("column_names");
234
+
set=>Q("column_names",value);
235
+
}
236
+
237
+
///<summary>Optional parameter to specify the delimiter character for a delimited file - must be a single character</summary>
238
+
publicstringDelimiter
239
+
{
240
+
get=>Q<string>("delimiter");
241
+
set=>Q("delimiter",value);
242
+
}
243
+
244
+
///<summary>Whether to include a commentary on how the structure was derived</summary>
245
+
publicbool?Explain
246
+
{
247
+
get=>Q<bool?>("explain");
248
+
set=>Q("explain",value);
249
+
}
250
+
251
+
///<summary>Optional parameter to specify the high level file format</summary>
252
+
publicFormat?Format
253
+
{
254
+
get=>Q<Format?>("format");
255
+
set=>Q("format",value);
256
+
}
257
+
258
+
///<summary>Optional parameter to specify the Grok pattern that should be used to extract fields from messages in a semi-structured text file</summary>
259
+
publicstringGrokPattern
260
+
{
261
+
get=>Q<string>("grok_pattern");
262
+
set=>Q("grok_pattern",value);
263
+
}
264
+
265
+
///<summary>Optional parameter to specify whether a delimited file includes the column names in its first row</summary>
266
+
publicbool?HasHeaderRow
267
+
{
268
+
get=>Q<bool?>("has_header_row");
269
+
set=>Q("has_header_row",value);
270
+
}
271
+
272
+
///<summary>Maximum number of characters permitted in a single message when lines are merged to create messages.</summary>
273
+
publicint?LineMergeSizeLimit
274
+
{
275
+
get=>Q<int?>("line_merge_size_limit");
276
+
set=>Q("line_merge_size_limit",value);
277
+
}
278
+
279
+
///<summary>How many lines of the file should be included in the analysis</summary>
280
+
publicint?LinesToSample
281
+
{
282
+
get=>Q<int?>("lines_to_sample");
283
+
set=>Q("lines_to_sample",value);
284
+
}
285
+
286
+
///<summary>Optional parameter to specify the quote character for a delimited file - must be a single character</summary>
287
+
publicstringQuote
288
+
{
289
+
get=>Q<string>("quote");
290
+
set=>Q("quote",value);
291
+
}
292
+
293
+
///<summary>Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them</summary>
294
+
publicbool?ShouldTrimFields
295
+
{
296
+
get=>Q<bool?>("should_trim_fields");
297
+
set=>Q("should_trim_fields",value);
298
+
}
299
+
300
+
///<summary>Timeout after which the analysis will be aborted</summary>
301
+
publicTimeSpanTimeout
302
+
{
303
+
get=>Q<TimeSpan>("timeout");
304
+
set=>Q("timeout",value);
305
+
}
306
+
307
+
///<summary>Optional parameter to specify the timestamp field in the file</summary>
308
+
publicstringTimestampField
309
+
{
310
+
get=>Q<string>("timestamp_field");
311
+
set=>Q("timestamp_field",value);
312
+
}
313
+
314
+
///<summary>Optional parameter to specify the timestamp format in the file - may be either a Joda or Java time format</summary>
315
+
publicstringTimestampFormat
316
+
{
317
+
get=>Q<string>("timestamp_format");
318
+
set=>Q("timestamp_format",value);
319
+
}
320
+
}
321
+
218
322
///<summary>Request options for FlushJob <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-flush-job.html</para></summary>
0 commit comments