Skip to content

Commit d44b0ff

Browse files
authoredNov 16, 2023
Auto-generated code for 8.10 (#2077)
1 parent 745919c commit d44b0ff

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
 

‎docs/reference.asciidoc

+1
Original file line numberDiff line numberDiff line change
@@ -6355,6 +6355,7 @@ client.ml.startTrainedModelDeployment({ model_id })
63556355
** *`cache_size` (Optional, number | string)*: The inference cache size (in memory outside the JVM heap) per node for the model.
63566356
The default value is the same size as the `model_size_bytes`. To disable the cache,
63576357
`0b` can be provided.
6358+
** *`deployment_id` (Optional, string)*: A unique identifier for the deployment of the model.
63586359
** *`number_of_allocations` (Optional, number)*: The number of model allocations on each node where the model is deployed.
63596360
All allocations on a node share the same copy of the model in memory but use
63606361
a separate set of threads to evaluate the model.

‎src/api/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14087,6 +14087,7 @@ export interface MlStartDatafeedResponse {
1408714087
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1408814088
model_id: Id
1408914089
cache_size?: ByteSize
14090+
deployment_id?: string
1409014091
number_of_allocations?: integer
1409114092
priority?: MlTrainingPriority
1409214093
queue_capacity?: integer

‎src/api/typesWithBodyKey.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14356,6 +14356,7 @@ export interface MlStartDatafeedResponse {
1435614356
export interface MlStartTrainedModelDeploymentRequest extends RequestBase {
1435714357
model_id: Id
1435814358
cache_size?: ByteSize
14359+
deployment_id?: string
1435914360
number_of_allocations?: integer
1436014361
priority?: MlTrainingPriority
1436114362
queue_capacity?: integer

0 commit comments

Comments
 (0)