Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the parameters because they should not be readonly #5658

Merged
merged 1 commit into from
Apr 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}
}
}