BackendPoolItemArgs

data class BackendPoolItemArgs(val id: Output<String>, val priority: Output<Int>? = null, val weight: Output<Int>? = null) : ConvertibleToJava<BackendPoolItemArgs>

Backend pool service information

Constructors

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

Properties

Link copied to clipboard
val id: Output<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: Output<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: Output<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.

Functions

Link copied to clipboard
open override fun toJava(): BackendPoolItemArgs