Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 27 additions & 32 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 27 additions & 32 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

97 changes: 39 additions & 58 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion output/schema/validation-errors.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"endpointErrors": {},
"generalErrors": [
"ResponseBody is present in multiple namespaces: _global.search and ml.evaluate_data_frame",
"Dangling type '_global.scripts_painless_execute:PainlessExecutionPosition'",
"Dangling type '_global.scripts_painless_execute:PainlessScript'",
"Dangling type '_global.search._types:HitMetadata'",
Expand Down
4 changes: 1 addition & 3 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,20 @@ import {
} from './types'

export class Response {
/** @codegen_name result */
body: ResponseBody
}

/** @variants container */
export class ResponseBody {
/**
* Evaluation results for a classification analysis.
* It outputs a prediction that identifies to which of the classes each document belongs.
*/
classification?: DataframeClassificationSummary
/**
* Evaluation results for an outlier detection analysis.
* It outputs the probability that each document is an outlier.
*/
outlier_detection?: DataframeOutlierDetectionSummary
/**
* Evaluation results for a regression analysis which outputs a prediction of values.
*/
regression?: DataframeRegressionSummary
body: {
/**
* Evaluation results for a classification analysis.
* It outputs a prediction that identifies to which of the classes each document belongs.
*/
classification?: DataframeClassificationSummary
/**
* Evaluation results for an outlier detection analysis.
* It outputs the probability that each document is an outlier.
*/
outlier_detection?: DataframeOutlierDetectionSummary
/**
* Evaluation results for a regression analysis which outputs a prediction of values.
*/
regression?: DataframeRegressionSummary
}
}
Loading