Class KeyVaultKey
- java.lang.Object
-
- com.azure.security.keyvault.keys.models.KeyVaultKey
-
- Direct Known Subclasses:
DeletedKey
public class KeyVaultKey extends Object
Key is the resource consisting of name,JsonWebKeyand its attributes specified inKeyProperties. It is managed by Key Service.- See Also:
KeyClient,KeyAsyncClient
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Get the key identifier.JsonWebKeygetKey()Get the JSON Web Key.List<KeyOperation>getKeyOperations()Get the key operations.KeyTypegetKeyType()Get the key type.StringgetName()Get the key name.KeyPropertiesgetProperties()Get the key properties.
-
-
-
Method Detail
-
getKey
public JsonWebKey getKey()
Get the JSON Web Key.- Returns:
- The JSON Web Key.
-
getProperties
public KeyProperties getProperties()
Get the key properties.- Returns:
- The key properties.
-
getId
public String getId()
Get the key identifier.- Returns:
- The key identifier.
-
getName
public String getName()
Get the key name.- Returns:
- The key name.
-
getKeyType
public KeyType getKeyType()
Get the key type.- Returns:
- The key type.
-
getKeyOperations
public List<KeyOperation> getKeyOperations()
Get the key operations.- Returns:
- The key operations.
-
-