Skip to content

Commit

Permalink
Fixing the parameters because they should not be readonly (#5658)
Browse files Browse the repository at this point in the history
  • Loading branch information
pabowers authored and lmazuel committed Apr 15, 2019
1 parent c3d951e commit 7a2d595
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -672,22 +672,18 @@
"type": "object",
"properties": {
"hanaVnet": {
"readOnly": true,
"type": "string",
"description": "ARM ID of an Azure Vnet with access to the HANA instance."
},
"hanaHostname": {
"readOnly": true,
"type": "string",
"description": "Hostname of the HANA Instance blade."
},
"hanaInstanceNum": {
"readOnly": true,
"type": "string",
"description": "A number between 00 and 99, stored as a string to maintain leading zero."
},
"dbContainer": {
"readOnly": true,
"type": "string",
"enum": [
"single",
Expand All @@ -701,17 +697,14 @@
"description": "Either single or multiple depending on the use of MDC(Multiple Database Containers)"
},
"hanaDatabase": {
"readOnly": true,
"type": "string",
"description": "Name of the database itself. It only needs to be specified if using MDC"
},
"hanaDbUsername": {
"readOnly": true,
"type": "string",
"description": "Username for the HANA database to login to for monitoring"
},
"hanaDbPassword": {
"readOnly": true,
"type": "string",
"description": "Password for the HANA database to login for monitoring"
}
Expand Down Expand Up @@ -771,4 +764,4 @@
"x-ms-parameter-location": "method"
}
}
}
}

0 comments on commit 7a2d595

Please sign in to comment.