Skip to content

Commit

Permalink
EventHub: added optional keyVersion property in KeyVaultProperties (#…
Browse files Browse the repository at this point in the history
…9335)

* added optional keyVersion property in KeyVaultProperties

* Keyvault properties to Array

Co-authored-by: v-ajnava <[email protected]>
  • Loading branch information
Ajit Navasare and v-ajnava authored May 7, 2020
1 parent bc2ffad commit 42df7cf
Showing 1 changed file with 14 additions and 3 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,11 +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",
"x-ms-client-name": "KeyVersion"
}
},
"description": "Properties to configure keyVault Properties"
Expand Down

0 comments on commit 42df7cf

Please sign in to comment.