Share via


PropertyUpdateParameters Class

  • java.lang.Object
    • com.microsoft.azure.management.apimanagement.v2019_01_01.PropertyUpdateParameters

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.

PropertyUpdateParameters withDisplayName(String displayName)

Set unique name of Property.

PropertyUpdateParameters withSecret(Boolean secret)

Set determines whether the value is a secret and should be encrypted or not.

PropertyUpdateParameters withTags(List<String> tags)

Set optional tags that when provided can be used to filter the property list.

PropertyUpdateParameters withValue(String value)

Set value of the property.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

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:

the displayName value

secret

public Boolean secret()

Get determines whether the value is a secret and should be encrypted or not. Default value is false.

Returns:

the secret value

tags

public List<String> tags()

Get optional tags that when provided can be used to filter the property list.

Returns:

the tags value

value

public String value()

Get value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.

Returns:

the value value

withDisplayName

public PropertyUpdateParameters withDisplayName(String displayName)

Set unique name of Property. It may contain only letters, digits, period, dash, and underscore characters.

Parameters:

displayName - the displayName value to set

Returns:

the PropertyUpdateParameters object itself.

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:

secret - the secret value to set

Returns:

the PropertyUpdateParameters object itself.

withTags

public PropertyUpdateParameters withTags(List<String> tags)

Set optional tags that when provided can be used to filter the property list.

Parameters:

tags - the tags value to set

Returns:

the PropertyUpdateParameters object itself.

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:

value - the value value to set

Returns:

the PropertyUpdateParameters object itself.

Applies to