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

Update deployment_id in ML trained model deployment start request #2325

Merged
merged 5 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -47,6 +47,11 @@ export interface Request extends RequestBase {
* `0b` can be provided.
*/
cache_size?: ByteSize
/**
* A unique identifier for the deployment of the model.
* @availability stack since=8.8.0
*/
deployment_id?: string
/**
* The number of model allocations on each node where the model is deployed.
* All allocations on a node share the same copy of the model in memory but use
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ import { Id } from '@_types/common'
export interface Request extends RequestBase {
path_parts: {
/**
* The unique identifier of the trained model.
* The unique identifier for the deployment of the model.
*/
model_id: Id
deployment_id: Id
}
query_parameters: {
/**
Expand Down
Loading