Uses of Class
com.azure.security.keyvault.keys.models.KeyOperation
Packages that use KeyOperation
Package
Description
Package containing classes for creating
KeyAsyncClient and
KeyClient to perform operations on Azure Key Vault.Package containing classes used for representing keys, deleted keys and their attributes in
Azure Key Vault.
-
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 theattributesandkey operationsassociated with the specifiedkey, but not the cryptographic key material of the specifiedkeyin the key vault.KeyClient.updateKeyProperties(KeyProperties keyProperties, KeyOperation... keyOperations) Updates theattributesandkey operationsassociated with the specifiedkey, but not the cryptographic key material of the specifiedkeyin the key vault.Mono<com.azure.core.http.rest.Response<KeyVaultKey>>KeyAsyncClient.updateKeyPropertiesWithResponse(KeyProperties keyProperties, KeyOperation... keyOperations) Updates theattributesandkey operationsassociated with the specifiedkey, but not the cryptographic key material of the specifiedkeyin the key vault.com.azure.core.http.rest.Response<KeyVaultKey>KeyClient.updateKeyPropertiesWithResponse(KeyProperties keyProperties, com.azure.core.util.Context context, KeyOperation... keyOperations) Updates theattributesandkey operationsassociated with the specifiedkey, but not the cryptographic key material of the specifiedkeyin 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 KeyOperationKeyOperation.DECRYPTStatic value Decrypt for KeyOperation.static final KeyOperationKeyOperation.ENCRYPTStatic value Encrypt for KeyOperation.static final KeyOperationKeyOperation.IMPORTStatic value Import for KeyOperation.static final KeyOperationKeyOperation.SIGNStatic value Sign for KeyOperation.static final KeyOperationKeyOperation.UNWRAP_KEYStatic value Unwrap Key for KeyOperation.static final KeyOperationKeyOperation.VERIFYStatic value Verify for KeyOperation.static final KeyOperationKeyOperation.WRAP_KEYStatic value Wrap Key for KeyOperation.Methods in com.azure.security.keyvault.keys.models that return KeyOperationModifier and TypeMethodDescriptionstatic KeyOperationKeyOperation.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()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 JsonWebKeyJsonWebKey.fromAes(SecretKey secretKey, List<KeyOperation> keyOperations) Converts AES key to JSON web key.static JsonWebKeyJsonWebKey.fromEc(KeyPair keyPair, Provider provider, List<KeyOperation> keyOperations) Converts EC key pair to JSON web key.static JsonWebKeyJsonWebKey.fromRsa(KeyPair keyPair, List<KeyOperation> keyOperations) Converts RSA key pair to JSON web key.JsonWebKey.setKeyOps(List<KeyOperation> keyOps) Set the keyOps value.