Add ingestion runner field (#20757)

This commit is contained in:
Gyowanny P. Queiroz 2025-04-10 15:16:15 -03:00 committed by GitHub
parent f88d9ba392
commit bd77b7d3d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -55,6 +55,10 @@
"description": "Secrets Manager Provider to use for fetching secrets.",
"$ref": "../../security/secrets/secretsManagerProvider.json",
"default": "db"
},
"ingestionRunner": {
"description": "Optional value of the ingestion runner name responsible for running the test",
"type": "string"
}
},
"additionalProperties": false

View File

@ -22,6 +22,10 @@ export interface TestServiceConnection {
* Type of the connection to test such as Snowflake, MySQL, Looker, etc.
*/
connectionType?: string;
/**
* Optional value of the ingestion runner name responsible for running the test
*/
ingestionRunner?: string;
/**
* Secrets Manager Provider to use for fetching secrets.
*/