From 41ef7a4e015eb88994a8d731d7e14363ba28ab15 Mon Sep 17 00:00:00 2001 From: v-ajnava Date: Tue, 5 May 2020 21:07:43 -0700 Subject: [PATCH] Keyvault properties to Array --- .../2018-01-01-preview/namespaces-preview.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/namespaces-preview.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/namespaces-preview.json index a9925a360375..0f2174cfb648 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/namespaces-preview.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/namespaces-preview.json @@ -493,7 +493,11 @@ "x-ms-client-flatten": true, "properties": { "keyVaultProperties": { - "$ref": "#/definitions/KeyVaultProperties", + "type": "array", + "items": { + "$ref": "#/definitions/KeyVaultProperties" + }, + "x-ms-client-name": "KeyVaultProperties", "description": "Properties of KeyVault" }, "keySource": { @@ -515,15 +519,18 @@ "properties": { "keyName": { "type": "string", - "description": "Name of the Key from KeyVault" + "description": "Name of the Key from KeyVault", + "x-ms-client-name": "KeyName" }, "keyVaultUri": { "type": "string", - "description": "Uri of KeyVault" + "description": "Uri of KeyVault", + "x-ms-client-name": "KeyVaultUri" }, "keyVersion": { "type": "string", - "description": "Key Version" + "description": "Key Version", + "x-ms-client-name": "KeyVersion" } }, "description": "Properties to configure keyVault Properties"