Skip to content

Commit

Permalink
Fix: wrongly removed dependency between identifier type and service n…
Browse files Browse the repository at this point in the history
…ame (#133)

* fix: wrongly removed dependency between identifier type and service name

* be explicit on the combination to re-enable service name using basic method and service identifier service name
  • Loading branch information
bigorn0 authored Sep 21, 2024
1 parent febd83b commit 65ea7f9
Showing 1 changed file with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,26 @@
"description": "Specify the service name of the Oracle Instance",
"inputType": "text",
"dependency": {
"key": "connectionMethod",
"value": ["TNS"]
"type": "or",
"values": [
{
"key": "connectionMethod",
"value": ["TNS"]
},
{
"type": "and",
"values": [
{
"key": "connectionMethod",
"value": ["Basic"]
},
{
"key": "identifierType",
"value": ["serviceName"]
}
]
}
]
}
},
{
Expand Down

0 comments on commit 65ea7f9

Please sign in to comment.