Uses of Class
com.azure.security.keyvault.keys.models.KeyOperation
Packages that use KeyOperation
Package
Description
Package containing the data models for Keys clients.
-
Uses of KeyOperation in com.azure.security.keyvault.keys
Methods in com.azure.security.keyvault.keys with parameters of type KeyOperationModifier and TypeMethodDescriptionKeyAsyncClient.updateKeyProperties
(KeyProperties keyProperties, KeyOperation... keyOperations) Updates theattributes
andkey operations
associated with the specifiedkey
, but not the cryptographic key material of the specifiedkey
in the key vault.KeyClient.updateKeyProperties
(KeyProperties keyProperties, KeyOperation... keyOperations) Updates theattributes
andkey operations
associated with the specifiedkey
, but not the cryptographic key material of the specifiedkey
in the key vault.Mono
<com.azure.core.http.rest.Response<KeyVaultKey>> KeyAsyncClient.updateKeyPropertiesWithResponse
(KeyProperties keyProperties, KeyOperation... keyOperations) Updates theattributes
andkey operations
associated with the specifiedkey
, but not the cryptographic key material of the specifiedkey
in the key vault.com.azure.core.http.rest.Response
<KeyVaultKey> KeyClient.updateKeyPropertiesWithResponse
(KeyProperties keyProperties, com.azure.core.util.Context context, KeyOperation... keyOperations) Updates theattributes
andkey operations
associated with the specifiedkey
, but not the cryptographic key material of the specifiedkey
in the key vault. -
Uses of KeyOperation in com.azure.security.keyvault.keys.models
Fields in com.azure.security.keyvault.keys.models declared as KeyOperationModifier and TypeFieldDescriptionstatic final KeyOperation
KeyOperation.DECRYPT
Indicates that the key can be used to decrypt.static final KeyOperation
KeyOperation.ENCRYPT
Indicates that the key can be used to encrypt.static final KeyOperation
KeyOperation.IMPORT
Indicates that the key can be imported during creation.static final KeyOperation
KeyOperation.SIGN
Indicates that the key can be used to sign.static final KeyOperation
KeyOperation.UNWRAP_KEY
Indicates that the key can be used to unwrap another key.static final KeyOperation
KeyOperation.VERIFY
Indicates that the key can be used to verify.static final KeyOperation
KeyOperation.WRAP_KEY
Indicates that the key can be used to wrap another key.Methods in com.azure.security.keyvault.keys.models that return KeyOperationModifier and TypeMethodDescriptionstatic KeyOperation
KeyOperation.fromString
(String name) Creates or finds a KeyOperation from its string representation.Methods in com.azure.security.keyvault.keys.models that return types with arguments of type KeyOperationModifier and TypeMethodDescriptionCreateKeyOptions.getKeyOperations()
Get the key operations.KeyVaultKey.getKeyOperations()
Get the key operations.JsonWebKey.getKeyOps()
Get the immutable key operations list.static Collection
<KeyOperation> KeyOperation.values()
Gets known KeyOperation values.Methods in com.azure.security.keyvault.keys.models with parameters of type KeyOperationModifier and TypeMethodDescriptionCreateEcKeyOptions.setKeyOperations
(KeyOperation... keyOperations) Set the key operations.CreateKeyOptions.setKeyOperations
(KeyOperation... keyOperations) Set the key operations.CreateOctKeyOptions.setKeyOperations
(KeyOperation... keyOperations) Set the key operations.CreateRsaKeyOptions.setKeyOperations
(KeyOperation... keyOperations) Set the key operations.Method parameters in com.azure.security.keyvault.keys.models with type arguments of type KeyOperationModifier and TypeMethodDescriptionstatic JsonWebKey
JsonWebKey.fromAes
(SecretKey secretKey, List<KeyOperation> keyOperations) Converts AES key to JSON web key.static JsonWebKey
JsonWebKey.fromEc
(KeyPair keyPair, Provider provider, List<KeyOperation> keyOperations) Converts EC key pair to JSON web key.static JsonWebKey
JsonWebKey.fromRsa
(KeyPair keyPair, List<KeyOperation> keyOperations) Converts RSA key pair to JSON web key.JsonWebKey.setKeyOps
(List<KeyOperation> keyOps) Set the keyOps value.