diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 22689c9ce1..91ca41da20 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -21049,9 +21049,6 @@ "parameters": [ { "$ref": "#/components/parameters/ingest.get_ip_location_database-id" - }, - { - "$ref": "#/components/parameters/ingest.get_ip_location_database-master_timeout" } ], "responses": { @@ -21468,11 +21465,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" @@ -115638,16 +115630,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 e68d358b1f..b874735e11 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -180360,22 +180360,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 e1dd8663e5..b32adeb015 100644 --- a/output/schema/validation-errors.json +++ b/output/schema/validation-errors.json @@ -49,12 +49,6 @@ ], "response": [] }, - "ingest.get_ip_location_database": { - "request": [ - "Request: query parameter 'master_timeout' does not exist in the json spec" - ], - "response": [] - }, "msearch": { "request": [ "Request: query parameter 'allow_no_indices' does not exist in the json spec", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index e08829744b..a96756925a 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -15032,7 +15032,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 - } }