GetLimitResult

data class GetLimitResult(val currentCount: Int? = null, val description: String? = null, val displayName: String? = null, val limitId: String? = null, val maxCount: Int? = null)

Constructors

Link copied to clipboard
constructor(currentCount: Int? = null, description: String? = null, displayName: String? = null, limitId: String? = null, maxCount: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val currentCount: Int? = null

The number of resources from the limit that are being used by jobs. The result is delayed and may not be the count at the time that you called the operation.

Link copied to clipboard
val description: String? = null

A description of the limit. A clear description helps you identify the purpose of the limit.

Link copied to clipboard
val displayName: String? = null

The name of the limit used in lists to identify the limit.

Link copied to clipboard
val limitId: String? = null

The unique identifier of the limit.

Link copied to clipboard
val maxCount: Int? = null

The maximum number of resources constrained by this limit. When all of the resources are in use, steps that require the limit won't be scheduled until the resource is available. The maxValue must not be 0. If the value is -1, there is no restriction on the number of resources that can be acquired for this limit.