From eeb5b974f9705d55a2e655df0eb042d716a5d431 Mon Sep 17 00:00:00 2001 From: Max Hniebergall Date: Thu, 6 Jun 2024 11:55:36 -0400 Subject: [PATCH] fixes from review --- specification/inference/_types/Results.ts | 4 ++-- specification/inference/delete/DeleteResponse.ts | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) 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 }