Skip to content

Commit

Permalink
Merge pull request #24 from naveedaz/master
Browse files Browse the repository at this point in the history
Change metric properties to KVP list
  • Loading branch information
devigned committed Oct 8, 2015
2 parents d7f090e + 775370f commit 3f43f35
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions arm-web/2015-08-01/swagger/service.json
Original file line number Diff line number Diff line change
Expand Up @@ -17652,9 +17652,9 @@
},
"properties": {
"description": "Properties",
"type": "object",
"additionalProperties": {
"type": "string"
"type": "array",
"items": {
"$ref": "#/definitions/KeyValuePair[String,String]"
}
}
}
Expand Down Expand Up @@ -17705,13 +17705,19 @@
"format": "float",
"description": "Value count",
"type": "number"
}
}
},
"KeyValuePair[String,String]": {
"type": "object",
"properties": {
"key": {
"type": "string",
"readOnly": true
},
"properties": {
"description": "Value properties",
"type": "object",
"additionalProperties": {
"type": "string"
}
"value": {
"type": "string",
"readOnly": true
}
}
},
Expand Down

0 comments on commit 3f43f35

Please sign in to comment.