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
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,16 @@ export interface Request extends RequestBase {
*/
timeout?: Duration
}
body?: {
/**
* If provided, must be the same identifier as in the path.
*/
id?: Id
/**
* Controls the amount of time to wait until the data frame analytics job
* starts.
* @server_default 20s
*/
timeout?: Duration
}
Comment on lines +69 to +80
Copy link
Member Author

}
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,36 @@ export interface Request extends RequestBase {
*/
timeout?: Duration
}
body?: {
/**
* If provided, must be the same identifier as in the path.
*/
id?: Id
/**
* Specifies what to do when the request:
*
* 1. Contains wildcard expressions and there are no data frame analytics
* jobs that match.
* 2. Contains the _all string or no identifiers and there are no matches.
* 3. Contains wildcard expressions and there are only partial matches.
*
* The default value is true, which returns an empty data_frame_analytics
* array when there are no matches and the subset of results when there are
* partial matches. If this parameter is false, the request returns a 404
* status code when there are no matches or only partial matches.
* @server_default true
*/
allow_no_match?: boolean
/**
* If true, the data frame analytics job is stopped forcefully.
* @server_default false
*/
force?: boolean
/**
* Controls the amount of time to wait until the data frame analytics job
* stops. Defaults to 20 seconds.
* @server_default 20s
*/
timeout?: Duration
}
Comment on lines +79 to +110
Copy link
Member Author

}
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,24 @@ export interface Request extends RequestBase {
*/
force?: boolean
}
body?: {
/**
* If provided, must be the same identifier as in the path.
*/
id?: Id
/**
* Specifies what to do when the request: contains wildcard expressions and there are no deployments that match;
* contains the `_all` string or no identifiers and there are no matches; or contains wildcard expressions and
* there are only partial matches. By default, it returns an empty array when there are no matches and the subset of results when there are partial matches.
* If `false`, the request returns a 404 status code when there are no matches or only partial matches.
* @server_default true
*/
allow_no_match?: boolean
/**
* Forcefully stops the deployment, even if it is used by ingest pipelines. You can't use these pipelines until you
* restart the model deployment.
* @server_default false
*/
force?: boolean
}
Comment on lines +62 to +81
Copy link
Member Author

}