fix: SSH Tunnel creation with dynamic form (#24196)

(cherry picked from commit 226c7f807d)
This commit is contained in:
Hugh A. Miles II
2023-07-02 23:48:48 -04:00
committed by Elizabeth Thompson
parent 0bc0865692
commit f3bb63be26
11 changed files with 188 additions and 127 deletions

View File

@@ -1773,6 +1773,10 @@ class BasicParametersSchema(Schema):
encryption = fields.Boolean(
required=False, description=__("Use an encrypted connection to the database")
)
ssh = fields.Boolean(
required=False,
metadata={"description": __("Use an ssh tunnel connection to the database")},
)
class BasicParametersType(TypedDict, total=False):