Class SecretUpdateParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.SecretUpdateParameters
-
public class SecretUpdateParameters extends Object
The secret update parameters.
-
-
Constructor Summary
Constructors Constructor Description SecretUpdateParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcontentType()Get the contentType value.SecretAttributessecretAttributes()Get the secretAttributes value.Map<String,String>tags()Get the tags value.SecretUpdateParameterswithContentType(String contentType)Set the contentType value.SecretUpdateParameterswithSecretAttributes(SecretAttributes secretAttributes)Set the secretAttributes value.SecretUpdateParameterswithTags(Map<String,String> tags)Set the tags value.
-
-
-
Method Detail
-
contentType
public String contentType()
Get the contentType value.- Returns:
- the contentType value
-
withContentType
public SecretUpdateParameters withContentType(String contentType)
Set the contentType value.- Parameters:
contentType- the contentType value to set- Returns:
- the SecretUpdateParameters object itself.
-
secretAttributes
public SecretAttributes secretAttributes()
Get the secretAttributes value.- Returns:
- the secretAttributes value
-
withSecretAttributes
public SecretUpdateParameters withSecretAttributes(SecretAttributes secretAttributes)
Set the secretAttributes value.- Parameters:
secretAttributes- the secretAttributes value to set- Returns:
- the SecretUpdateParameters object itself.
-
withTags
public SecretUpdateParameters withTags(Map<String,String> tags)
Set the tags value.- Parameters:
tags- the tags value to set- Returns:
- the SecretUpdateParameters object itself.
-
-