From 775370fdb51567c0794e5521c37617ca175fd44e Mon Sep 17 00:00:00 2001 From: Naveed Aziz Date: Wed, 7 Oct 2015 10:50:32 -0700 Subject: [PATCH] Change metric properties to KVP list --- arm-web/2015-08-01/swagger/service.json | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/arm-web/2015-08-01/swagger/service.json b/arm-web/2015-08-01/swagger/service.json index de91df5b2080..531e2ffba483 100644 --- a/arm-web/2015-08-01/swagger/service.json +++ b/arm-web/2015-08-01/swagger/service.json @@ -17652,9 +17652,9 @@ }, "properties": { "description": "Properties", - "type": "object", - "additionalProperties": { - "type": "string" + "type": "array", + "items": { + "$ref": "#/definitions/KeyValuePair[String,String]" } } } @@ -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 } } },