Skip to content

Commit 613574f

Browse files
authored
Mark ML model APIs as beta
1 parent 128fd1e commit 613574f

13 files changed

+18
-20
lines changed

output/schema/schema.json

Lines changed: 7 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_json_spec/ml.clear_trained_model_deployment_cache.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/clear-trained-model-deployment-cache.html",
55
"description": "Clear the cached results from a trained model deployment"
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/_json_spec/ml.infer_trained_model.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/infer-trained-model.html",
55
"description": "Evaluate a trained model."
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/_json_spec/ml.put_trained_model_definition_part.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-model-definition-part.html",
55
"description": "Creates part of a trained model definition"
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/_json_spec/ml.put_trained_model_vocabulary.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-model-vocabulary.html",
55
"description": "Creates a trained model vocabulary"
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/_json_spec/ml.start_trained_model_deployment.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/start-trained-model-deployment.html",
55
"description": "Start a trained model deployment."
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/_json_spec/ml.stop_trained_model_deployment.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/stop-trained-model-deployment.html",
55
"description": "Stop a trained model deployment."
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"],

specification/ml/_types/ModelPlot.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ export class ModelPlotConfig {
3535
/**
3636
* Limits data collection to this comma separated list of partition or by field values. If terms are not specified or it is an empty string, no filtering is applied. Wildcards are not supported. Only the specified terms can be viewed when using the Single Metric Viewer.
3737
* @since 7.9.0
38-
* @stability experimental
3938
*/
4039
terms?: Field
4140
}

specification/ml/infer_trained_model/MlInferTrainedModelRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2828
* Evaluates a trained model.
2929
* @rest_spec_name ml.infer_trained_model
3030
* @since 8.3.0
31-
* @stability experimental
31+
* @stability beta
3232
*/
3333
export interface Request extends RequestBase {
3434
path_parts: {

specification/ml/put_trained_model_definition_part/MlPutTrainedModelDefinitionPartRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { Id } from '@_types/common'
2525
* Creates part of a trained model definition.
2626
* @rest_spec_name ml.put_trained_model_definition_part
2727
* @since 8.0.0
28-
* @stability experimental
28+
* @stability beta
2929
* @cluster_privileges manage_ml
3030
*/
3131
export interface Request extends RequestBase {

specification/ml/put_trained_model_vocabulary/MlPutTrainedModelVocabularyRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { Id } from '@_types/common'
2626
* The vocabulary is stored in the index as described in `inference_config.*.vocabulary` of the trained model definition.
2727
* @rest_spec_name ml.put_trained_model_vocabulary
2828
* @since 8.0.0
29-
* @stability experimental
29+
* @stability beta
3030
* @cluster_privileges manage_ml
3131
*/
3232
export interface Request extends RequestBase {

specification/ml/start_trained_model_deployment/MlStartTrainedModelDeploymentRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { DeploymentAllocationState } from '../_types/TrainedModel'
2727
* Starts a trained model deployment, which allocates the model to every machine learning node.
2828
* @rest_spec_name ml.start_trained_model_deployment
2929
* @since 8.0.0
30-
* @stability experimental
30+
* @stability beta
3131
* @cluster_privileges manage_ml
3232
*/
3333
export interface Request extends RequestBase {

specification/ml/stop_trained_model_deployment/MlStopTrainedModelDeploymentRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { Id } from '@_types/common'
2424
* Stops a trained model deployment.
2525
* @rest_spec_name ml.stop_trained_model_deployment
2626
* @since 8.0.0
27-
* @stability experimental
27+
* @stability beta
2828
* @cluster_privileges manage_ml
2929
*/
3030
export interface Request extends RequestBase {

0 commit comments

Comments
 (0)