Deployment group.

interface DeploymentGroup {
    description?: string;
    id?: number;
    machineCount?: number;
    machines?: DeploymentMachine[];
    machineTags?: string[];
    name?: string;
    pool?: TaskAgentPoolReference;
    project?: ProjectReference;
}

Hierarchy (View Summary)

Properties

description?: string

Description of the deployment group.

id?: number

Deployment group identifier.

machineCount?: number

Number of deployment targets in the deployment group.

machines?: DeploymentMachine[]

List of deployment targets in the deployment group.

machineTags?: string[]

List of unique tags across all deployment targets in the deployment group.

name?: string

Name of the deployment group.

Deployment pool in which deployment agents are registered.

Project to which the deployment group belongs.