diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index d27e8ac84d..c4f90095c3 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -19995,9 +19995,6 @@ "parameters": [ { "$ref": "#/components/parameters/ingest.get_ip_location_database-id" - }, - { - "$ref": "#/components/parameters/ingest.get_ip_location_database-master_timeout" } ], "responses": { @@ -20404,11 +20401,6 @@ "summary": "Get IP geolocation database configurations", "description": "\n\n## Required authorization\n\n* Cluster privileges: `manage`\n", "operationId": "ingest-get-ip-location-database", - "parameters": [ - { - "$ref": "#/components/parameters/ingest.get_ip_location_database-master_timeout" - } - ], "responses": { "200": { "$ref": "#/components/responses/ingest.get_ip_location_database-200" @@ -113171,16 +113163,6 @@ }, "style": "simple" }, - "ingest.get_ip_location_database-master_timeout": { - "in": "query", - "name": "master_timeout", - "description": "The period to wait for a connection to the master node.\nIf no response is received before the timeout expires, the request fails and returns an error.\nA value of `-1` indicates that the request should never time out.", - "deprecated": false, - "schema": { - "$ref": "#/components/schemas/_types.Duration" - }, - "style": "form" - }, "ingest.get_pipeline-id": { "in": "path", "name": "id", diff --git a/output/schema/schema.json b/output/schema/schema.json index 407fe2e72b..c1ae71774f 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -176678,22 +176678,8 @@ } } ], - "query": [ - { - "description": "The period to wait for a connection to the master node.\nIf no response is received before the timeout expires, the request fails and returns an error.\nA value of `-1` indicates that the request should never time out.", - "name": "master_timeout", - "required": false, - "serverDefault": "30s", - "type": { - "kind": "instance_of", - "type": { - "name": "Duration", - "namespace": "_types" - } - } - } - ], - "specLocation": "ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts#L24-L59" + "query": [], + "specLocation": "ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts#L23-L50" }, { "kind": "response", diff --git a/output/schema/validation-errors.json b/output/schema/validation-errors.json index 53635103d7..7725061332 100644 --- a/output/schema/validation-errors.json +++ b/output/schema/validation-errors.json @@ -261,12 +261,6 @@ ], "response": [] }, - "ingest.get_ip_location_database": { - "request": [ - "Request: query parameter 'master_timeout' does not exist in the json spec" - ], - "response": [] - }, "ingest.put_geoip_database": { "request": [ "Request: query parameter 'master_timeout' does not exist in the json spec", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 23ece8165e..de9f059875 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -14776,7 +14776,6 @@ export interface IngestGetIpLocationDatabaseDatabaseConfigurationMetadata { export interface IngestGetIpLocationDatabaseRequest extends RequestBase { id?: Ids - master_timeout?: Duration } export interface IngestGetIpLocationDatabaseResponse { diff --git a/specification/ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts b/specification/ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts index e3e8e4b28e..b38a64f029 100644 --- a/specification/ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts +++ b/specification/ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts @@ -19,7 +19,6 @@ import { RequestBase } from '@_types/Base' import { Ids } from '@_types/common' -import { Duration } from '@_types/Time' /** * Get IP geolocation database configurations. @@ -48,12 +47,4 @@ export interface Request extends RequestBase { */ id?: Ids } - query_parameters: { - /** - * The period to wait for a connection to the master node. - * If no response is received before the timeout expires, the request fails and returns an error. - * A value of `-1` indicates that the request should never time out. - * @server_default 30s */ - master_timeout?: Duration - } }