/* tslint:disable */
/* eslint-disable */
/**
* TeamCity REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2018.1 (current)
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { AgentTypes } from './agent-types';
// May contain unused imports in some cases
// @ts-ignore
import type { Agents } from './agents';
// May contain unused imports in some cases
// @ts-ignore
import type { Project } from './project';
// May contain unused imports in some cases
// @ts-ignore
import type { Projects } from './projects';
/**
* An agent pool that is the group of agents with shared permissions and available projects.
* @export
* @interface AgentPool
*/
export interface AgentPool {
/**
* The unique ID of this pool. The Default pool has the ID value of *0*.
* @type {number}
* @memberof AgentPool
*/
id?: number;
/**
* The public name of the pool.
* @type {string}
* @memberof AgentPool
*/
name?: string;
/**
* Returns the shortened (without the server URL) link to the current pool.
* @type {string}
* @memberof AgentPool
*/
href?: string;
/**
* The pool capacity. Returns *null* for pools with the unlimited number of agent slots.
* @type {number}
* @memberof AgentPool
*/
maxAgents?: number;
/**
*
* @type {Project}
* @memberof AgentPool
*/
ownerProject?: Project;
/**
*
* @type {Projects}
* @memberof AgentPool
*/
projects?: Projects;
/**
*
* @type {Agents}
* @memberof AgentPool
*/
agents?: Agents;
/**
*
* @type {string}
* @memberof AgentPool
*/
locator?: string;
/**
*
* @type {AgentTypes}
* @memberof AgentPool
*/
agentTypes?: AgentTypes;
}