Skip to content

Commit 9b5f8c8

Browse files
committed
Add more missing doc ID
1 parent 034bfbd commit 9b5f8c8

File tree

16 files changed

+32
-19
lines changed

16 files changed

+32
-19
lines changed

specification/_doc_ids/table.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ infer-trained-model-deployment,https://www.elastic.co/guide/en/elasticsearch/ref
303303
inference-api-delete,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/delete-inference-api.html
304304
inference-api-get,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/get-inference-api.html
305305
inference-api-post,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/post-inference-api.html
306+
inference-api-put,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/put-inference-api.html
306307
inference-api-stream,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/stream-inference-api.html
307308
inference-api-update,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/update-inference-api.html
308309
inference-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/inference-processor.html
@@ -311,6 +312,9 @@ ingest,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/ingest.h
311312
ingest-circle-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/ingest-circle-processor.html
312313
ingest-node-set-security-user-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{banch}/ingest-node-set-security-user-processor.html
313314
inner-hits,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/inner-hits.html
315+
ip-location-delete-database,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/delete-ip-location-database-api.html
316+
ip-location-get-database,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/get-ip-location-database-api.html
317+
ip-location-put-database,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/put-ip-location-database-api.html
314318
join-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/join-processor.html
315319
json-processor,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/json-processor.html
316320
k-precision,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#k-precision
@@ -638,6 +642,10 @@ search-aggregations-metrics-valuecount-aggregation,https://www.elastic.co/guide/
638642
search-aggregations-metrics-weight-avg-aggregation,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-aggregations-metrics-weight-avg-aggregation.html
639643
search-aggregations-bucket-variablewidthhistogram-aggregation,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-aggregations-bucket-variablewidthhistogram-aggregation.html
640644
search-analyzer,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-analyzer.html
645+
search-application-delete,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/delete-search-application.html
646+
search-application-get,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/get-search-application.html
647+
search-application-put,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/put-search-application.html
648+
search-application-search,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-application-search.html
641649
search-render-query,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-application-render-query.html
642650
search-count,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-count.html
643651
search-explain,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-explain.html

specification/inference/put/PutRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { Id } from '@_types/common'
3737
* @availability stack since=8.11.0 stability=stable visibility=public
3838
* @availability serverless stability=stable visibility=public
3939
* @cluster_privileges manage_inference
40-
* @doc_id apis
40+
* @doc_id inference-api-put
4141
*/
4242
export interface Request extends RequestBase {
4343
urls: [

specification/ingest/delete_ip_location_database/DeleteIpLocationDatabaseRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Duration } from '@_types/Time'
2727
* @availability stack since=8.15.0 stability=stable
2828
* @availability serverless visibility=private
2929
* @cluster_privileges manage
30-
* @doc_id apis
30+
* @doc_id ip-location-delete-database
3131
*/
3232
export interface Request extends RequestBase {
3333
urls: [

specification/ingest/delete_pipeline/DeletePipelineRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Duration } from '@_types/Time'
2727
* @rest_spec_name ingest.delete_pipeline
2828
* @availability stack since=5.0.0 stability=stable
2929
* @availability serverless stability=stable visibility=public
30-
* @doc_id apis
30+
* @doc_id delete-pipeline-api
3131
* @ext_doc_id ingest
3232
*/
3333
export interface Request extends RequestBase {

specification/ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Duration } from '@_types/Time'
2727
* @availability stack since=8.15.0 stability=stable
2828
* @availability serverless visibility=private
2929
* @cluster_privileges manage
30-
* @doc_id apis
30+
* @doc_id ip-location-get-database
3131
*/
3232
export interface Request extends RequestBase {
3333
urls: [

specification/ingest/get_pipeline/GetPipelineRequest.ts

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

2424
/**
2525
* Get pipelines.
26+
*
2627
* Get information about one or more ingest pipelines.
2728
* This API returns a local reference of the pipeline.
2829
* @rest_spec_name ingest.get_pipeline
2930
* @availability stack since=5.0.0 stability=stable
3031
* @availability serverless stability=stable visibility=public
31-
* @doc_id apis
32+
* @doc_id get-pipeline-api
3233
* @ext_doc_id ingest
3334
*/
3435
export interface Request extends RequestBase {

specification/ingest/put_geoip_database/PutGeoipDatabaseRequest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { Duration } from '@_types/Time'
2424

2525
/**
2626
* Create or update a GeoIP database configuration.
27+
*
2728
* Refer to the create or update IP geolocation database configuration API.
2829
* @rest_spec_name ingest.put_geoip_database
2930
* @availability stack since=8.15.0 stability=stable

specification/ingest/put_ip_location_database/PutIpLocationDatabaseRequest.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
* @availability stack since=8.15.0 stability=stable
2929
* @availability serverless visibility=private
3030
* @cluster_privileges manage
31-
* @doc_id apis
31+
* @doc_id ip-location-put-database
3232
*/
3333
export interface Request extends RequestBase {
3434
urls: [

specification/ingest/simulate/SimulatePipelineRequest.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ import { Document } from '../_types/Simulation'
2424

2525
/**
2626
* Simulate a pipeline.
27+
*
2728
* Run an ingest pipeline against a set of provided documents.
2829
* You can either specify an existing pipeline to use with the provided documents or supply a pipeline definition in the body of the request.
2930
* @rest_spec_name ingest.simulate
3031
* @availability stack since=5.0.0 stability=stable
3132
* @availability serverless stability=stable visibility=public
32-
* @doc_id apis
33+
* @cluster_privileges read_pipeline
34+
* @doc_id simulate-pipeline-api
3335
*/
3436
export interface Request extends RequestBase {
3537
urls: [
@@ -44,8 +46,8 @@ export interface Request extends RequestBase {
4446
]
4547
path_parts: {
4648
/**
47-
* Pipeline to test.
48-
* If you dont specify a `pipeline` in the request body, this parameter is required.
49+
* The pipeline to test.
50+
* If you don't specify a `pipeline` in the request body, this parameter is required.
4951
*/
5052
id?: Id
5153
}
@@ -61,8 +63,8 @@ export interface Request extends RequestBase {
6163
*/
6264
docs: Document[]
6365
/**
64-
* Pipeline to test.
65-
* If you dont specify the `pipeline` request path parameter, this parameter is required.
66+
* The pipeline to test.
67+
* If you don't specify the `pipeline` request path parameter, this parameter is required.
6668
* If you specify both this and the request path parameter, the API only uses the request path parameter.
6769
*/
6870
pipeline?: Pipeline

specification/license/get_basic_status/GetBasicLicenseStatusRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { RequestBase } from '@_types/Base'
2424
* @rest_spec_name license.get_basic_status
2525
* @availability stack since=6.3.0 stability=stable
2626
* @cluster_privileges monitor
27-
* @doc_id apis
27+
* @doc_id get-basic-status
2828
*/
2929
export interface Request extends RequestBase {
3030
urls: [

0 commit comments

Comments
 (0)