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