PropertyUpdateParameters Class
- java.
lang. Object - com.
microsoft. azure. management. apimanagement. v2019_01_01.PropertyUpdateParameters
- com.
public class PropertyUpdateParameters
Property update Parameters.
Constructor Summary
| Constructor | Description | |
|---|---|---|
| PropertyUpdateParameters() | ||
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| java.lang.String |
displayName()
Get unique name of Property. |
| java.lang.Boolean |
secret()
Get determines whether the value is a secret and should be encrypted or not. |
| java.util.List<java.lang.String> |
tags()
Get optional tags that when provided can be used to filter the property list. |
| java.lang.String |
value()
Get value of the property. |
|
Property |
withDisplayName(String displayName)
Set unique name of Property. |
|
Property |
withSecret(Boolean secret)
Set determines whether the value is a secret and should be encrypted or not. |
|
Property |
withTags(List<String> tags)
Set optional tags that when provided can be used to filter the property list. |
|
Property |
withValue(String value)
Set value of the property. |
Methods inherited from java.lang.Object
Constructor Details
PropertyUpdateParameters
public PropertyUpdateParameters()
Method Details
displayName
public String displayName()
Get unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.
Returns:
secret
public Boolean secret()
Get determines whether the value is a secret and should be encrypted or not. Default value is false.
Returns:
tags
public List<String> tags()
Get optional tags that when provided can be used to filter the property list.
Returns:
value
public String value()
Get value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.
Returns:
withDisplayName
public PropertyUpdateParameters withDisplayName(String displayName)
Set unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.
Parameters:
Returns:
withSecret
public PropertyUpdateParameters withSecret(Boolean secret)
Set determines whether the value is a secret and should be encrypted or not. Default value is false.
Parameters:
Returns:
withTags
public PropertyUpdateParameters withTags(List<String> tags)
Set optional tags that when provided can be used to filter the property list.
Parameters:
Returns:
withValue
public PropertyUpdateParameters withValue(String value)
Set value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.
Parameters:
Returns: