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 KeyAttributes
keyAttributes()
Get the keyAttributes value.List<JsonWebKeyOperation>
keyOps()
Get the keyOps value.Map<String,String>
tags()
Get the tags value.KeyUpdateParameters
withKeyAttributes(KeyAttributes keyAttributes)
Set the keyAttributes value.KeyUpdateParameters
withKeyOps(List<JsonWebKeyOperation> keyOps)
Set the keyOps value.KeyUpdateParameters
withTags(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.
-
-