mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
# Backport This will backport the following commits from `main` to `8.3`: - [[DOCS] Lint ML sync API specification (#148841)](https://github.com/elastic/kibana/pull/148841) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Lisa Cawley","email":"lcawley@elastic.co"},"sourceCommit":{"committedDate":"2023-01-13T16:44:07Z","message":"[DOCS] Lint ML sync API specification (#148841)","sha":"b174b1908fae1d79ed1904a365be69cfec96edd6","branchLabelMapping":{"^v8.7.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":[":ml","release_note:skip","docs","backport:prev-minor","v8.7.0"],"number":148841,"url":"https://github.com/elastic/kibana/pull/148841","mergeCommit":{"message":"[DOCS] Lint ML sync API specification (#148841)","sha":"b174b1908fae1d79ed1904a365be69cfec96edd6"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.7.0","labelRegex":"^v8.7.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/148841","number":148841,"mergeCommit":{"message":"[DOCS] Lint ML sync API specification (#148841)","sha":"b174b1908fae1d79ed1904a365be69cfec96edd6"}},{"url":"https://github.com/elastic/kibana/pull/148904","number":148904,"branch":"8.6","state":"OPEN"}]}] BACKPORT-->
This commit is contained in:
parent
c589f7437e
commit
03e9f47623
2 changed files with 27 additions and 43 deletions
|
@ -10,9 +10,10 @@ The `ml_apis_v2.json` file uses OpenAPI Specification Version 2.0.
|
|||
|
||||
## Tools
|
||||
|
||||
It is possible to validate the docs before bundling them by running the following command in the `x-pack/plugins/ml/common/openapi/` folder:
|
||||
It is possible to validate the docs before bundling them by running these commands in the `x-pack/plugins/ml/common/openapi/` folder:
|
||||
```
|
||||
npx swagger-cli validate ml_apis_v3.yaml
|
||||
npx @redocly/cli lint ml_apis_v3.yaml
|
||||
```
|
||||
|
||||
You can optionally generate `bundled` files with the following commands:
|
||||
|
|
|
@ -10,7 +10,7 @@ tags:
|
|||
- name: ml
|
||||
description: Machine learning
|
||||
servers:
|
||||
- url: https://localhost:5601/
|
||||
- url: https://localhost:5601
|
||||
paths:
|
||||
/s/{spaceId}/api/ml/saved_objects/sync:
|
||||
get:
|
||||
|
@ -31,31 +31,16 @@ paths:
|
|||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/mlSyncResponse'
|
||||
$ref: '#/components/schemas/mlSync200Response'
|
||||
examples:
|
||||
syncExample:
|
||||
$ref: '#/components/examples/mlSyncExample'
|
||||
/api/ml/saved_objects/sync:
|
||||
get:
|
||||
summary: Synchronizes Kibana saved objects for machine learning jobs and trained models in the default space.
|
||||
description: >
|
||||
You must have `all` privileges for the **Machine Learning** feature in the **Analytics** section of the Kibana feature privileges.
|
||||
This API runs automatically when you start Kibana and periodically thereafter.
|
||||
operationId: ml-sync-default
|
||||
tags:
|
||||
- ml
|
||||
parameters:
|
||||
- $ref: '#/components/parameters/simulateParam'
|
||||
responses:
|
||||
'200':
|
||||
description: Indicates a successful call
|
||||
'401':
|
||||
description: Authorization information is missing or invalid.
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/mlSyncResponse'
|
||||
examples:
|
||||
syncExample:
|
||||
$ref: '#/components/examples/mlSyncExample'
|
||||
$ref: '#/components/schemas/mlSync4xxResponse'
|
||||
components:
|
||||
parameters:
|
||||
spaceParam:
|
||||
|
@ -103,8 +88,9 @@ components:
|
|||
properties:
|
||||
success:
|
||||
$ref: '#/components/schemas/mlSyncResponseSuccess'
|
||||
mlSyncResponse:
|
||||
mlSync200Response:
|
||||
type: object
|
||||
title: Successful sync API response
|
||||
properties:
|
||||
datafeedsAdded:
|
||||
type: object
|
||||
|
@ -133,36 +119,33 @@ components:
|
|||
additionalProperties:
|
||||
$ref: '#/components/schemas/mlSyncResponseModels'
|
||||
savedObjectsDeleted:
|
||||
type: object
|
||||
description: If saved objects exist for machine learning jobs or trained models that no longer exist, they are deleted when you run the sync machine learning saved objects API.
|
||||
properties:
|
||||
anomaly-detector:
|
||||
type: object
|
||||
additionalProperties:
|
||||
$ref: '#/components/schemas/mlSyncResponseJobs'
|
||||
data-frame-analytics:
|
||||
type: object
|
||||
additionalProperties:
|
||||
$ref: '#/components/schemas/mlSyncResponseJobs'
|
||||
trained-model:
|
||||
type: object
|
||||
additionalProperties:
|
||||
$ref: '#/components/schemas/mlSyncResponseModels'
|
||||
$ref: '#/components/schemas/mlSyncResponseSavedObjectsDeleted'
|
||||
mlSync4xxResponse:
|
||||
type: object
|
||||
title: Unsuccessful sync API response
|
||||
properties:
|
||||
error:
|
||||
type: string
|
||||
example: Unauthorized
|
||||
message:
|
||||
type: string
|
||||
statusCode:
|
||||
type: integer
|
||||
example: 401
|
||||
examples:
|
||||
mlSyncExample:
|
||||
summary: Two anomaly detection jobs required synchronization in this example.
|
||||
value:
|
||||
{
|
||||
"savedObjectsCreated": {
|
||||
"anomaly_detector": {
|
||||
"anomaly-detector": {
|
||||
"myjob1": { "success":true },
|
||||
"myjob2":{ "success":true }
|
||||
"myjob2": { "success":true }
|
||||
}
|
||||
},
|
||||
"savedObjectsDeleted": {},
|
||||
"datafeedsAdded":{},
|
||||
"datafeedsRemoved":{}
|
||||
"datafeedsAdded": {},
|
||||
"datafeedsRemoved": {}
|
||||
}
|
||||
security:
|
||||
- basicAuth: [ ]
|
||||
- ApiKeyAuth: [ ]
|
||||
- basicAuth: [ ]
|
Loading…
Add table
Add a link
Reference in a new issue