Class KeyOperationsParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.KeyOperationsParameters
-
public class KeyOperationsParameters extends Object
The key operations parameters.
-
-
Constructor Summary
Constructors Constructor Description KeyOperationsParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonWebKeyEncryptionAlgorithm
algorithm()
Get the algorithm value.byte[]
value()
Get the value value.KeyOperationsParameters
withAlgorithm(JsonWebKeyEncryptionAlgorithm algorithm)
Set the algorithm value.KeyOperationsParameters
withValue(byte[] value)
Set the value value.
-
-
-
Method Detail
-
algorithm
public JsonWebKeyEncryptionAlgorithm algorithm()
Get the algorithm value.- Returns:
- the algorithm value
-
withAlgorithm
public KeyOperationsParameters withAlgorithm(JsonWebKeyEncryptionAlgorithm algorithm)
Set the algorithm value.- Parameters:
algorithm
- the algorithm value to set- Returns:
- the KeyOperationsParameters object itself.
-
value
public byte[] value()
Get the value value.- Returns:
- the value value
-
withValue
public KeyOperationsParameters withValue(byte[] value)
Set the value value.- Parameters:
value
- the value value to set- Returns:
- the KeyOperationsParameters object itself.
-
-