Skip to content

Commit 7c4a987

Browse files
Auto-generated code for 8.11 (#2076)
1 parent f9007d3 commit 7c4a987

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

docs/reference.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6491,6 +6491,7 @@ client.ml.startTrainedModelDeployment({ model_id })
64916491
** *`cache_size` (Optional, number | string)*: The inference cache size (in memory outside the JVM heap) per node for the model.
64926492
The default value is the same size as the `model_size_bytes`. To disable the cache,
64936493
`0b` can be provided.
6494+
** *`deployment_id` (Optional, string)*: A unique identifier for the deployment of the model.
64946495
** *`number_of_allocations` (Optional, number)*: The number of model allocations on each node where the model is deployed.
64956496
All allocations on a node share the same copy of the model in memory but use
64966497
a separate set of threads to evaluate the model.

src/api/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14107,6 +14107,7 @@ export interface MlStartDatafeedResponse {
1410714107
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1410814108
model_id: Id
1410914109
cache_size?: ByteSize
14110+
deployment_id?: string
1411014111
number_of_allocations?: integer
1411114112
priority?: MlTrainingPriority
1411214113
queue_capacity?: integer

src/api/typesWithBodyKey.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14376,6 +14376,7 @@ export interface MlStartDatafeedResponse {
1437614376
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1437714377
model_id: Id
1437814378
cache_size?: ByteSize
14379+
deployment_id?: string
1437914380
number_of_allocations?: integer
1438014381
priority?: MlTrainingPriority
1438114382
queue_capacity?: integer

0 commit comments

Comments
 (0)