Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/KeyVault/KeyVault/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* Added support to bring your own key (BYOK)
- `Add-AzKeyVaultKey` supports generating a key exchange key
- `Get-AzKeyVaultKey` supports downloading a public key in PEM format
* Updated the "KeyOps" part of the help document of `Add-AzKeyVaultKey`

## Version 1.6.0
* Added a new cmdlet `Update-AzKeyVault` that can enable soft delete and purge protection on a vault
Expand Down
13 changes: 7 additions & 6 deletions src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,12 +393,13 @@ Specifies an array of operations that can be performed by using the key that thi
If you do not specify this parameter, all operations can be performed.
The acceptable values for this parameter are a comma-separated list of key operations as defined by
the [JSON Web Key (JWK) specification](http://go.microsoft.com/fwlink/?LinkID=613300):
- Encrypt
- Decrypt
- Wrap
- Unwrap
- Sign
- Verify
- encrypt
- decrypt
- wrapKey
- unwrapKey
- sign
- verify
- import (for KEK only, see example 7)

```yaml
Type: System.String[]
Expand Down