Uses of Class
com.azure.security.keyvault.keys.models.KeyOperation
-
Packages that use KeyOperation Package Description com.azure.security.keyvault.keys Package containing classes for creatingKeyAsyncClientandKeyClientto perform operations on Azure Key Vault.com.azure.security.keyvault.keys.models 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 KeyOperation Modifier and Type Method Description Mono<KeyVaultKey>KeyAsyncClient. updateKeyProperties(KeyProperties keyProperties, KeyOperation... keyOperations)Updates theattributesandkey operationsassociated with the specifiedkey, but not the cryptographic key material of the specifiedkeyin the key vault.KeyVaultKeyKeyClient. 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 KeyOperation Modifier and Type Field Description static KeyOperationKeyOperation. DECRYPTStatic value Decrypt for KeyOperation.static KeyOperationKeyOperation. ENCRYPTStatic value Encrypt for KeyOperation.static KeyOperationKeyOperation. IMPORTStatic value Import for KeyOperation.static KeyOperationKeyOperation. SIGNStatic value Sign for KeyOperation.static KeyOperationKeyOperation. UNWRAP_KEYStatic value Unwrap Key for KeyOperation.static KeyOperationKeyOperation. VERIFYStatic value Verify for KeyOperation.static KeyOperationKeyOperation. WRAP_KEYStatic value Wrap Key for KeyOperation.Methods in com.azure.security.keyvault.keys.models that return KeyOperation Modifier and Type Method Description static 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 KeyOperation Modifier and Type Method Description List<KeyOperation>CreateKeyOptions. getKeyOperations()Get the key operations.List<KeyOperation>KeyVaultKey. getKeyOperations()Get the key operations.List<KeyOperation>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 KeyOperation Modifier and Type Method Description CreateEcKeyOptionsCreateEcKeyOptions. setKeyOperations(KeyOperation... keyOperations)Set the key operations.CreateKeyOptionsCreateKeyOptions. setKeyOperations(KeyOperation... keyOperations)Set the key operations.CreateOctKeyOptionsCreateOctKeyOptions. setKeyOperations(KeyOperation... keyOperations)Set the key operations.CreateRsaKeyOptionsCreateRsaKeyOptions. setKeyOperations(KeyOperation... keyOperations)Set the key operations.Method parameters in com.azure.security.keyvault.keys.models with type arguments of type KeyOperation Modifier and Type Method Description static 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.JsonWebKeyJsonWebKey. setKeyOps(List<KeyOperation> keyOps)Set the keyOps value.
-