Test run of new docs
This commit is contained in:
62
docs/reference-ml-put_trained_model_alias.asciidoc
Normal file
62
docs/reference-ml-put_trained_model_alias.asciidoc
Normal file
@ -0,0 +1,62 @@
|
||||
[[reference-ml-put_trained_model_alias]]
|
||||
|
||||
////////
|
||||
===========================================================================================================================
|
||||
|| ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
||||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
||||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
||||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
||||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
||||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|
||||
|| You should update the script that does the generation, which can be found in: ||
|
||||
|| https://github.com/elastic/elastic-client-generator-js ||
|
||||
|| ||
|
||||
|| You can run the script with the following command: ||
|
||||
|| npm run elasticsearch -- --version <version> ||
|
||||
|| ||
|
||||
|| ||
|
||||
|| ||
|
||||
===========================================================================================================================
|
||||
////////
|
||||
|
||||
[discrete]
|
||||
=== client.ml.putTrainedModelAlias
|
||||
|
||||
Create or update a trained model alias. A trained model alias is a logical name used to reference a single trained model. You can use aliases instead of trained model identifiers to make it easier to reference your models. For example, you can use aliases in inference aggregations and processors. An alias must be unique and refer to only a single trained model. However, you can have multiple aliases for each trained model. If you use this API to update an alias such that it references a different trained model ID and the model uses a different type of data frame analytics, an error occurs. For example, this situation occurs if you have a trained model for regression analysis and a trained model for classification analysis; you cannot reassign an alias from one type of trained model to another. If you use this API to update an alias and there are very few input fields in common between the old and new trained models for the model alias, the API returns a warning.
|
||||
|
||||
{ref}/put-trained-models-aliases.html[{es} documentation]
|
||||
|
||||
[discrete]
|
||||
==== Function signature
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
(MlPutTrainedModelAliasRequest, options?): Promise<MlPutTrainedModelAliasResponse>
|
||||
----
|
||||
|
||||
[discrete]
|
||||
===== `MlPutTrainedModelAliasRequest`
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
interface MlPutTrainedModelAliasRequest extends <<shared-type-request-base, RequestBase>> {
|
||||
model_alias: <<shared-type-name, Name>>
|
||||
model_id: <<shared-type-id, Id>>
|
||||
reassign?: boolean
|
||||
}
|
||||
----
|
||||
|
||||
[discrete]
|
||||
===== `MlPutTrainedModelAliasResponse`
|
||||
|
||||
[source,ts]
|
||||
----
|
||||
type MlPutTrainedModelAliasResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user