diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index ab22e1eac4..0430cf39e0 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -21270,7 +21270,8 @@ }, { "in": "query", - "name": "type_query_string", + "name": "type", + "description": "The type of trial license to generate (default: \"trial\")", "deprecated": false, "schema": { "type": "string" diff --git a/output/schema/schema.json b/output/schema/schema.json index 8adb75255a..3022c72978 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -179896,7 +179896,8 @@ } }, { - "name": "type_query_string", + "description": "The type of trial license to generate (default: \"trial\")", + "name": "type", "required": false, "type": { "kind": "instance_of", diff --git a/output/schema/validation-errors.json b/output/schema/validation-errors.json index 829c2c8dc3..a1e5347665 100644 --- a/output/schema/validation-errors.json +++ b/output/schema/validation-errors.json @@ -61,13 +61,6 @@ ], "response": [] }, - "license.post_start_trial": { - "request": [ - "Request: query parameter 'type_query_string' does not exist in the json spec", - "Request: missing json spec query parameter 'type'" - ], - "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 f65c4e3623..796ede867b 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -14971,7 +14971,7 @@ export interface LicensePostStartBasicResponse { export interface LicensePostStartTrialRequest extends RequestBase { acknowledge?: boolean - type_query_string?: string + type?: string master_timeout?: Duration } diff --git a/specification/license/post_start_trial/StartTrialLicenseRequest.ts b/specification/license/post_start_trial/StartTrialLicenseRequest.ts index ba1b56f738..ad33b3072a 100644 --- a/specification/license/post_start_trial/StartTrialLicenseRequest.ts +++ b/specification/license/post_start_trial/StartTrialLicenseRequest.ts @@ -42,7 +42,7 @@ export interface Request extends RequestBase { ] query_parameters: { acknowledge?: boolean - type_query_string?: string + type?: string /** * Period to wait for a connection to the master node. * @server_default 30s