API generation

This commit is contained in:
delvedor
2021-02-19 08:31:16 +01:00
parent f150872726
commit 059a2c91ce
74 changed files with 1170 additions and 1019 deletions

View File

@ -6148,6 +6148,27 @@ link:{ref}/delete-trained-models.html[Documentation] +
|===
[discrete]
=== ml.deleteTrainedModelAlias
*Stability:* beta
[source,ts]
----
client.ml.deleteTrainedModelAlias({
model_alias: string,
model_id: string
})
----
link:{ref}/delete-trained-models-aliases.html[Documentation] +
[cols=2*]
|===
|`model_alias` or `modelAlias`
|`string` - The trained model alias to delete
|`model_id` or `modelId`
|`string` - The trained model where the model alias is assigned
|===
[discrete]
=== ml.estimateModelMemory
@ -7200,6 +7221,31 @@ link:{ref}/put-trained-models.html[Documentation] +
|===
[discrete]
=== ml.putTrainedModelAlias
*Stability:* beta
[source,ts]
----
client.ml.putTrainedModelAlias({
model_alias: string,
model_id: string,
reassign: boolean
})
----
link:{ref}/put-trained-models-aliases.html[Documentation] +
[cols=2*]
|===
|`model_alias` or `modelAlias`
|`string` - The trained model alias to update
|`model_id` or `modelId`
|`string` - The trained model where the model alias should be assigned
|`reassign`
|`boolean` - If the model_alias already exists and points to a separate model_id, this parameter must be true. Defaults to false.
|===
[discrete]
=== ml.revertModelSnapshot