Skip to content

Commit

Permalink
Update rest-api-spec
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin authored and github-actions[bot] committed Oct 22, 2024
1 parent 2fdec29 commit ce56dba
Show file tree
Hide file tree
Showing 12 changed files with 273 additions and 11 deletions.
10 changes: 7 additions & 3 deletions compiler/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

112 changes: 112 additions & 0 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions output/schema/validation-errors.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams-delete-lifecycle.html",
"description": "Deletes the data stream lifecycle of the selected data streams."
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams-explain-lifecycle.html",
"description": "Retrieves information about the index's current data stream lifecycle, such as any potential encountered error, time since creation etc."
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/indices.get_data_lifecycle.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams-get-lifecycle.html",
"description": "Returns the data stream lifecycle of the selected data streams."
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/indices.put_data_lifecycle.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/data-streams-put-lifecycle.html",
"description": "Updates the data stream lifecycle of the selected data streams."
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
28 changes: 28 additions & 0 deletions specification/_json_spec/ingest.delete_ip_location_database.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"ingest.delete_ip_location_database": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-ip-location-database-api.html",
"description": "Deletes an ip location database configuration"
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_ingest/ip_location/database/{id}",
"methods": ["DELETE"],
"parts": {
"id": {
"type": "list",
"description": "A comma-separated list of ip location database configurations to delete"
}
}
}
]
},
"params": {}
}
}
32 changes: 32 additions & 0 deletions specification/_json_spec/ingest.get_ip_location_database.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"ingest.get_ip_location_database": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-ip-location-database-api.html",
"description": "Returns the specified ip location database configuration"
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_ingest/ip_location/database",
"methods": ["GET"]
},
{
"path": "/_ingest/ip_location/database/{id}",
"methods": ["GET"],
"parts": {
"id": {
"type": "list",
"description": "A comma-separated list of ip location database configurations to get; use `*` to get all ip location database configurations"
}
}
}
]
},
"params": {}
}
}
33 changes: 33 additions & 0 deletions specification/_json_spec/ingest.put_ip_location_database.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"ingest.put_ip_location_database": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-ip-location-database-api.html",
"description": "Puts the configuration for a ip location database to be downloaded"
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_ingest/ip_location/database/{id}",
"methods": ["PUT"],
"parts": {
"id": {
"type": "string",
"description": "The id of the database configuration"
}
}
}
]
},
"params": {},
"body": {
"description": "The database configuration definition",
"required": true
}
}
}
32 changes: 32 additions & 0 deletions specification/_json_spec/query_rules.test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"query_rules.test": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/test-query-ruleset.html",
"description": "Tests a query ruleset to identify the rules that would match input criteria"
},
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_query_rules/{ruleset_id}/_test",
"methods": ["POST"],
"parts": {
"ruleset_id": {
"type": "string",
"description": "The unique identifier of the ruleset to test."
}
}
}
]
},
"body": {
"description": "The match criteria to test against the ruleset",
"required": true
}
}
}
Loading

0 comments on commit ce56dba

Please sign in to comment.