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 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
Subclasses with type arguments of type KeyOperation in com.azure.security.keyvault.keys.modelsFields in com.azure.security.keyvault.keys.models declared as KeyOperationModifier and TypeFieldDescriptionstatic final KeyOperationKeyOperation.DECRYPTIndicates that the key can be used to decrypt.static final KeyOperationKeyOperation.ENCRYPTIndicates that the key can be used to encrypt.static final KeyOperationKeyOperation.IMPORTIndicates that the key can be imported during creation.static final KeyOperationKeyOperation.SIGNIndicates that the key can be used to sign.static final KeyOperationKeyOperation.UNWRAP_KEYIndicates that the key can be used to unwrap another key.static final KeyOperationKeyOperation.VERIFYIndicates that the key can be used to verify.static final KeyOperationKeyOperation.WRAP_KEYIndicates that the key can be used to wrap another key.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()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 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.