Skip to content

Commit

Permalink
Updating the schema to adhere to the new design changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pabowers committed Apr 26, 2019
1 parent 97a0c18 commit a6fb84a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
"resourceGroupName": "myResourceGroup",
"hanaInstanceName": "myHanaInstance",
"monitoringParameter": {
"hanaVnet": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet",
"hanaSubnet": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
"hanaHostname": "hana.hostname",
"hanaInstanceNum": "04",
"dbContainer": "single",
"hanaDbSqlPort": 50,
"hanaDbUsername": "SYSTEM",
"hanaDbPassword": "passExample"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -671,34 +671,21 @@
"MonitoringDetails": {
"type": "object",
"properties": {
"hanaVnet": {
"hanaSubnet": {
"type": "string",
"description": "ARM ID of an Azure Vnet with access to the HANA instance."
"description": "ARM ID of an Azure Subnet with access to the HANA instance."
},
"hanaHostname": {
"type": "string",
"description": "Hostname of the HANA Instance blade."
},
"hanaInstanceNum": {
"hanaDbName": {
"type": "string",
"description": "A number between 00 and 99, stored as a string to maintain leading zero."
"description": "Name of the database itself."
},
"dbContainer": {
"type": "string",
"enum": [
"single",
"multiple"
],
"default": "single",
"x-ms-enum": {
"name": "HanaDatabaseContainersEnum",
"modelAsString": true
},
"description": "Either single or multiple depending on the use of MDC(Multiple Database Containers)"
},
"hanaDatabase": {
"type": "string",
"description": "Name of the database itself. It only needs to be specified if using MDC"
"hanaDbSqlPort": {
"type": "integer",
"description": "The port number of the tenant DB. Used to connect to the DB."
},
"hanaDbUsername": {
"type": "string",
Expand Down

0 comments on commit a6fb84a

Please sign in to comment.