MINOR - Add ingestion runner for reverse metadata (#20791)

This commit is contained in:
Pere Miquel Brull 2025-04-13 12:20:33 +02:00 committed by GitHub
parent 6d02ed8b5c
commit a15ce5b185
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -80,6 +80,10 @@
"items": { "items": {
"$ref": "#/definitions/operation" "$ref": "#/definitions/operation"
} }
},
"ingestionRunner": {
"description": "Optional value of the ingestion runner name responsible for running the workflow",
"type": "string"
} }
}, },
"additionalProperties": false, "additionalProperties": false,

View File

@ -14,6 +14,10 @@
* Apply a set of operations on a service * Apply a set of operations on a service
*/ */
export interface ReverseIngestionPipeline { 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 * List of operations to be performed on the service
*/ */