| Package | Description |
|---|---|
| com.azure.security.keyvault.keys |
Package containing classes for creating
KeyAsyncClient and
KeyClient to 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.
|
| Modifier and Type | Method and Description |
|---|---|
KeyVaultKey |
KeyClient.updateKeyProperties(KeyProperties keyProperties,
KeyOperation... keyOperations)
Updates the
attributes and key operations associated with the
specified key, but not the cryptographic key material of the specified
key in the key vault. |
Mono<KeyVaultKey> |
KeyAsyncClient.updateKeyProperties(KeyProperties keyProperties,
KeyOperation... keyOperations)
Updates the
attributes and key operations associated with the
specified key, but not the cryptographic key material of the specified
key in the key vault. |
com.azure.core.http.rest.Response<KeyVaultKey> |
KeyClient.updateKeyPropertiesWithResponse(KeyProperties keyProperties,
com.azure.core.util.Context context,
KeyOperation... keyOperations)
Updates the
attributes and key operations associated with the
specified key, but not the cryptographic key material of the specified
key in the key vault. |
Mono<com.azure.core.http.rest.Response<KeyVaultKey>> |
KeyAsyncClient.updateKeyPropertiesWithResponse(KeyProperties keyProperties,
KeyOperation... keyOperations)
Updates the
attributes and key operations associated with the
specified key, but not the cryptographic key material of the specified
key in the key vault. |
| Modifier and Type | Class and Description |
|---|---|
class |
ImportKeyOptions
Represents the configurable options to import a key.
|
| Modifier and Type | Method and Description |
|---|---|
KeyProperties |
KeyVaultKey.getProperties()
Get the key properties.
|
KeyProperties |
KeyProperties.setEnabled(Boolean enabled)
Set a value that indicates if the key is enabled.
|
KeyProperties |
KeyProperties.setExpiresOn(OffsetDateTime expiresOn)
Set the
key expiration time in UTC. |
KeyProperties |
KeyProperties.setNotBefore(OffsetDateTime notBefore)
Set the
key's notBefore time in UTC. |
KeyProperties |
KeyProperties.setTags(Map<String,String> tags)
Set the tags to be associated with the key.
|
Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.