BackendPoolItemResponse

data class BackendPoolItemResponse(val id: String, val priority: Int? = null, val weight: Int? = null)

Backend pool service information

Constructors

Link copied to clipboard
constructor(id: String, priority: Int? = null, weight: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val id: String

The unique ARM id of the backend entity. The ARM id should refer to an already existing backend entity.

Link copied to clipboard
val priority: Int? = null

The priority of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified.

Link copied to clipboard
val weight: Int? = null

The weight of the backend entity in the backend pool. Must be between 0 and 100. It can be also null if the value not specified.