Skip to content

Commit 70eca3e

Browse files
committed
Add doc_id for new API URLs
1 parent 9b5f8c8 commit 70eca3e

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

specification/_doc_ids/table.csv

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ drop-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/
175175
enrich-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/enrich-processor.html
176176
enrich-stats-api,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/enrich-stats-api.html
177177
eql-async-search-api,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/get-async-eql-search-api.html
178+
eql-async-search-delete,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-eql-delete
178179
eql-async-search-status-api,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/get-async-eql-status-api.html
179180
eql-basic-syntax,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/eql-syntax.html#eql-basic-syntax
180181
eql-search-api,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/eql-search-api.html
@@ -208,6 +209,9 @@ fuzziness,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/commo
208209
gap-policy,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-aggregations-pipeline.html#gap-policy
209210
geo-shape,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/geo-shape.html
210211
geo-grid-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/ingest-geo-grid-processor.html
212+
geoip-delete-database,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ingest-delete-geoip-database
213+
geoip-get-database,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ingest-get-geoip-database
214+
geoip-put-database,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ingest-put-geoip-database
211215
geoip-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/geoip-processor.html
212216
geoip-stats-api,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/geoip-stats-api.html
213217
get-basic-status,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/get-basic-status.html
@@ -255,8 +259,10 @@ index,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/index.htm
255259
indexing-buffer,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indexing-buffer.html
256260
index-modules-merge,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/index-modules-merge.html
257261
index-templates,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/index-templates.html
262+
index-templates-exist,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-exists-index-template
258263
index-templates-v1,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indices-templates-v1.html
259264
indices-aliases,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indices-aliases.html
265+
indices-aliases-exist,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-exists-alias
260266
indices-analyze,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indices-analyze.html
261267
indices-clearcache,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indices-clearcache.html
262268
indices-clone-index,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indices-clone-index.html

specification/eql/delete/EqlDeleteRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Id } from '@_types/common'
2727
* @rest_spec_name eql.delete
2828
* @availability stack since=7.9.0 stability=stable
2929
* @availability serverless stability=stable visibility=public
30-
* @doc_id apis
30+
* @doc_id eql-async-search-delete
3131
*/
3232
export interface Request extends RequestBase {
3333
urls: [

specification/indices/exists_alias/IndicesExistsAliasRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { Duration } from '@_types/Time'
2828
* @rest_spec_name indices.exists_alias
2929
* @availability stack stability=stable
3030
* @availability serverless stability=stable visibility=public
31-
* @doc_id apis
31+
* @doc_id indices-aliases-exist
3232
*/
3333
export interface Request extends RequestBase {
3434
urls: [

specification/indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ import { Duration } from '@_types/Time'
2323

2424
/**
2525
* Check index templates.
26+
*
2627
* Check whether index templates exist.
2728
* @rest_spec_name indices.exists_index_template
2829
* @availability stack stability=stable
2930
* @availability serverless stability=stable visibility=public
30-
* @doc_id apis
31+
* @doc_id index-templates-exist
3132
*/
3233
export interface Request extends RequestBase {
3334
urls: [

specification/ingest/delete_geoip_database/DeleteGeoipDatabaseRequest.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ import { Duration } from '@_types/Time'
2323

2424
/**
2525
* Delete GeoIP database configurations.
26+
*
2627
* Delete one or more IP geolocation database configurations.
2728
* @rest_spec_name ingest.delete_geoip_database
2829
* @availability stack since=8.15.0 stability=stable
2930
* @availability serverless visibility=private
30-
* @doc_id apis
31+
* @doc_id geoip-delete-database
3132
*/
3233
export interface Request extends RequestBase {
3334
urls: [
@@ -44,12 +45,12 @@ export interface Request extends RequestBase {
4445
}
4546
query_parameters: {
4647
/**
47-
* Period to wait for a connection to the master node.
48+
* The period to wait for a connection to the master node.
4849
* If no response is received before the timeout expires, the request fails and returns an error.
4950
* @server_default 30s */
5051
master_timeout?: Duration
5152
/**
52-
* Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
53+
* The period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
5354
* @server_default 30s */
5455
timeout?: Duration
5556
}

specification/ingest/get_geoip_database/GetGeoipDatabaseRequest.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ import { Ids } from '@_types/common'
2222

2323
/**
2424
* Get GeoIP database configurations.
25+
*
2526
* Get information about one or more IP geolocation database configurations.
2627
* @rest_spec_name ingest.get_geoip_database
2728
* @availability stack since=8.15.0 stability=stable
2829
* @availability serverless visibility=private
29-
* @doc_id apis
30+
* @doc_id geoip-get-database
3031
*/
3132
export interface Request extends RequestBase {
3233
urls: [
@@ -41,7 +42,7 @@ export interface Request extends RequestBase {
4142
]
4243
path_parts: {
4344
/**
44-
* Comma-separated list of database configuration IDs to retrieve.
45+
* A comma-separated list of database configuration IDs to retrieve.
4546
* Wildcard (`*`) expressions are supported.
4647
* To get all database configurations, omit this parameter or use `*`.
4748
*/

specification/ingest/put_geoip_database/PutGeoipDatabaseRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { Duration } from '@_types/Time'
2929
* @rest_spec_name ingest.put_geoip_database
3030
* @availability stack since=8.15.0 stability=stable
3131
* @availability serverless visibility=private
32-
* @doc_id apis
32+
* @doc_id geoip-put-database
3333
*/
3434
export interface Request extends RequestBase {
3535
urls: [

0 commit comments

Comments
 (0)