GetPropertyResult

data class GetPropertyResult(val displayName: String, val id: String, val name: String, val secret: Boolean? = null, val tags: List<String>? = null, val type: String, val value: String)

Property details.

Constructors

Link copied to clipboard
constructor(displayName: String, id: String, name: String, secret: Boolean? = null, tags: List<String>? = null, type: String, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
val id: String

Resource ID.

Link copied to clipboard

Resource name.

Link copied to clipboard
val secret: Boolean? = null

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

Link copied to clipboard
val tags: List<String>? = null

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

Link copied to clipboard

Resource type for API Management resource.

Link copied to clipboard

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