Class KeyUpdateParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.KeyUpdateParameters
-
public class KeyUpdateParameters extends Object
The key update parameters.
-
-
Constructor Summary
Constructors Constructor Description KeyUpdateParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeyAttributeskeyAttributes()Get the keyAttributes value.List<JsonWebKeyOperation>keyOps()Get the keyOps value.Map<String,String>tags()Get the tags value.KeyUpdateParameterswithKeyAttributes(KeyAttributes keyAttributes)Set the keyAttributes value.KeyUpdateParameterswithKeyOps(List<JsonWebKeyOperation> keyOps)Set the keyOps value.KeyUpdateParameterswithTags(Map<String,String> tags)Set the tags value.
-
-
-
Method Detail
-
keyOps
public List<JsonWebKeyOperation> keyOps()
Get the keyOps value.- Returns:
- the keyOps value
-
withKeyOps
public KeyUpdateParameters withKeyOps(List<JsonWebKeyOperation> keyOps)
Set the keyOps value.- Parameters:
keyOps- the keyOps value to set- Returns:
- the KeyUpdateParameters object itself.
-
keyAttributes
public KeyAttributes keyAttributes()
Get the keyAttributes value.- Returns:
- the keyAttributes value
-
withKeyAttributes
public KeyUpdateParameters withKeyAttributes(KeyAttributes keyAttributes)
Set the keyAttributes value.- Parameters:
keyAttributes- the keyAttributes value to set- Returns:
- the KeyUpdateParameters object itself.
-
withTags
public KeyUpdateParameters withTags(Map<String,String> tags)
Set the tags value.- Parameters:
tags- the tags value to set- Returns:
- the KeyUpdateParameters object itself.
-
-