From a15ce5b185f8dd502ee5d7a3d1147bd1d652ad3a Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Sun, 13 Apr 2025 12:20:33 +0200 Subject: [PATCH] MINOR - Add ingestion runner for reverse metadata (#20791) --- .../schema/metadataIngestion/reverseIngestionPipeline.json | 4 ++++ .../generated/metadataIngestion/reverseIngestionPipeline.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/openmetadata-spec/src/main/resources/json/schema/metadataIngestion/reverseIngestionPipeline.json b/openmetadata-spec/src/main/resources/json/schema/metadataIngestion/reverseIngestionPipeline.json index e258a19373e..7cc41a9dd3e 100644 --- a/openmetadata-spec/src/main/resources/json/schema/metadataIngestion/reverseIngestionPipeline.json +++ b/openmetadata-spec/src/main/resources/json/schema/metadataIngestion/reverseIngestionPipeline.json @@ -80,6 +80,10 @@ "items": { "$ref": "#/definitions/operation" } + }, + "ingestionRunner": { + "description": "Optional value of the ingestion runner name responsible for running the workflow", + "type": "string" } }, "additionalProperties": false, diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/reverseIngestionPipeline.ts b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/reverseIngestionPipeline.ts index 637cbfa64f8..9d415822e45 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/reverseIngestionPipeline.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/metadataIngestion/reverseIngestionPipeline.ts @@ -14,6 +14,10 @@ * Apply a set of operations on a service */ export interface ReverseIngestionPipeline { + /** + * Optional value of the ingestion runner name responsible for running the workflow + */ + ingestionRunner?: string; /** * List of operations to be performed on the service */