Skip to content

Commit

Permalink
Keyvault properties to Array
Browse files Browse the repository at this point in the history
  • Loading branch information
v-ajnava committed May 6, 2020
1 parent 9977c0d commit 41ef7a4
Showing 1 changed file with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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"
Expand Down

0 comments on commit 41ef7a4

Please sign in to comment.