interface TaskAgentPoolStatus {
    assignedRequestCount?: number;
    id?: number;
    isHosted?: boolean;
    isLegacy?: boolean;
    name?: string;
    options?: TaskAgentPoolOptions;
    poolType?: TaskAgentPoolType;
    queuedRequestCount?: number;
    runningRequestCount?: number;
    scope?: string;
    size?: number;
}

Hierarchy (View Summary)

Properties

assignedRequestCount?: number

Number of requests queued and assigned to an agent. Not running yet.

id?: number
isHosted?: boolean

Gets or sets a value indicating whether or not this pool is managed by the service.

isLegacy?: boolean

Determines whether the pool is legacy.

name?: string

Additional pool settings and details

Gets or sets the type of the pool

queuedRequestCount?: number

Number of queued requests which are not assigned to any agents

runningRequestCount?: number

Number of currently running requests

scope?: string
size?: number

Gets the current size of the pool.