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] Adds description to the DELETE DFA API spec #538

Merged
merged 2 commits into from
Aug 17, 2021
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
3 changes: 3 additions & 0 deletions output/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -107772,6 +107772,7 @@
},
"path": [
{
"description": "Identifier for the data frame analytics job.",
"name": "id",
"required": true,
"type": {
Expand All @@ -107785,6 +107786,7 @@
],
"query": [
{
"description": "If `true`, it deletes a job that is not stopped; this method is quicker than stopping and deleting the job.",
"name": "force",
"required": false,
"serverDefault": false,
Expand All @@ -107797,6 +107799,7 @@
}
},
{
"description": "The time to wait for the job to be deleted.",
"name": "timeout",
"required": false,
"serverDefault": "1m",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,21 @@ import { Time } from '@_types/Time'
*/
export interface Request extends RequestBase {
path_parts?: {
/**
* Identifier for the data frame analytics job.
*/
id: Id
}
query_parameters?: {
/** @server_default false */
/**
* If `true`, it deletes a job that is not stopped; this method is quicker than stopping and deleting the job.
* @server_default false
*/
force?: boolean
/** @server_default 1m */
/**
* The time to wait for the job to be deleted.
* @server_default 1m
*/
timeout?: Time
}
}