diff --git a/openmetadata-spec/src/main/resources/json/schema/entity/automations/testServiceConnection.json b/openmetadata-spec/src/main/resources/json/schema/entity/automations/testServiceConnection.json index 9b906a36014..8647e7a9459 100644 --- a/openmetadata-spec/src/main/resources/json/schema/entity/automations/testServiceConnection.json +++ b/openmetadata-spec/src/main/resources/json/schema/entity/automations/testServiceConnection.json @@ -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 diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts index 21295f133ae..444493b576c 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/automations/testServiceConnection.ts @@ -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. */