diff --git a/specification/inference/_types/Results.ts b/specification/inference/_types/Results.ts index a760119f54..d6dc17d8d7 100644 --- a/specification/inference/_types/Results.ts +++ b/specification/inference/_types/Results.ts @@ -89,8 +89,8 @@ export class InferenceResult { } /** - * Acknowledged response. For dry_run, contains the list of ingest processors which reference the inference endpoint + * Acknowledged response. For dry_run, contains the list of pipelines which reference the inference endpoint */ export class DeleteInferenceEndpointResult extends AcknowledgedResponseBase { - ingest_processors: Array + pipelines: Array } diff --git a/specification/inference/delete/DeleteResponse.ts b/specification/inference/delete/DeleteResponse.ts index 6cf319fad4..25a812a097 100644 --- a/specification/inference/delete/DeleteResponse.ts +++ b/specification/inference/delete/DeleteResponse.ts @@ -20,7 +20,5 @@ import { DeleteInferenceEndpointResult } from '@inference/_types/Results' export class Response { - body: { - dryRunResult: DeleteInferenceEndpointResult - } + body: DeleteInferenceEndpointResult }