You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2025. It is now read-only.
* @param string $model_id The ID of the trained models stats to fetch
395
+
* @param string $model_id A unique identifier for the trained model.
396
396
* @param array{
397
-
* allow_no_match: bool, // Whether to ignore if a wildcard expression matches no trained models. (This includes `_all` string or when no trained models have been specified)
398
-
* bytes: string, // The unit in which to display byte values
399
-
* h: string|array, // Comma-separated list of column names to display
400
-
* s: string|array, // Comma-separated list of column names or column aliases to sort by
401
-
* from: integer, // skips a number of trained models
402
-
* size: integer, // specifies a max number of trained models to get
397
+
* allow_no_match: bool, // Specifies what to do when the request: contains wildcard expressions and there are no models that match; contains the `_all` string or no identifiers and there are no matches; contains wildcard expressions and there are only partial matches.If `true`, the API returns an empty array when there are no matches and the subset of results when there are partial matches.If `false`, the API returns a 404 status code when there are no matches or only partial matches.
398
+
* bytes: string, // The unit used to display byte values.
399
+
* h: string|array, // A comma-separated list of column names to display.
400
+
* s: string|array, // A comma-separated list of column names or aliases used to sort the response.
401
+
* from: integer, // Skips the specified number of transforms.
402
+
* size: integer, // The maximum number of transforms to display.
403
403
* pretty: bool, // Pretty format the returned JSON response. (DEFAULT: false)
404
404
* human: bool, // Return human readable values for statistics. (DEFAULT: true)
405
405
* error_trace: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -415,7 +415,7 @@ public function mlJobs(string $job_id = null, array $params = []): Elasticsearch
* @param string $transform_id The id of the transform for which to get stats. '_all' or '*' implies all transforms
449
+
* @param string $transform_id A transform identifier or a wildcard expression.
450
+
* If you do not specify one of these options, the API returns information for all transforms.
450
451
* @param array{
451
-
* allow_no_match: bool, // Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
452
-
* from: integer, // skips a number of transform configs, defaults to 0
452
+
* allow_no_match: bool, // Specifies what to do when the request: contains wildcard expressions and there are no transforms that match; contains the `_all` string or no identifiers and there are no matches; contains wildcard expressions and there are only partial matches.If `true`, it returns an empty transforms array when there are no matches and the subset of results when there are partial matches.If `false`, the request returns a 404 status code when there are no matches or only partial matches.
453
+
* from: integer, // Skips the specified number of transforms.
453
454
* h: string|array, // Comma-separated list of column names to display.
454
-
* s: string|array, // Comma-separated list of column names or column aliases used to sort theresponse.
455
-
* time: string, // Unit used to display time values.
456
-
* size: integer, // specifies a max number of transforms to get, defaults to 100
455
+
* s: string|array, // Comma-separated list of column names or column aliases used to sort the response.
456
+
* time: string, // The unit used to display time values.
457
+
* size: integer, // The maximum number of transforms to obtain.
457
458
* pretty: bool, // Pretty format the returned JSON response. (DEFAULT: false)
458
459
* human: bool, // Return human readable values for statistics. (DEFAULT: true)
459
460
* error_trace: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -469,7 +470,7 @@ public function mlTrainedModels(string $model_id = null, array $params = []): El
0 commit comments