Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML] DF Analytics creation: update schema definition for create route #56979

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@ export const dataAnalyticsJobConfigSchema = {
results_field: schema.maybe(schema.string()),
}),
source: schema.object({
index: schema.string(),
index: schema.oneOf([schema.string(), schema.arrayOf(schema.string())]),
query: schema.maybe(schema.any()),
peteharverson marked this conversation as resolved.
Show resolved Hide resolved
_source: schema.maybe(
schema.object({
includes: schema.maybe(schema.arrayOf(schema.maybe(schema.string()))),
excludes: schema.maybe(schema.arrayOf(schema.maybe(schema.string()))),
})
),
}),
allow_lazy_start: schema.maybe(schema.boolean()),
analysis: schema.any(),
analyzed_fields: schema.any(),
model_memory_limit: schema.string(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function dataFrameAnalyticsRoutes({ xpackMainPlugin, router }: RouteIniti
params: schema.object({
analyticsId: schema.string(),
}),
body: schema.object({ ...dataAnalyticsJobConfigSchema }),
body: schema.object(dataAnalyticsJobConfigSchema),
},
},
licensePreRoutingFactory(xpackMainPlugin, async (context, request, response) => {
Expand Down