A variable group is a collection of related variables.

interface VariableGroup {
    createdBy?: IdentityRef;
    createdOn?: Date;
    description?: string;
    id?: number;
    isShared?: boolean;
    modifiedBy?: IdentityRef;
    modifiedOn?: Date;
    name?: string;
    providerData?: VariableGroupProviderData;
    type?: string;
    variableGroupProjectReferences?: VariableGroupProjectReference[];
    variables?: { [key: string]: VariableValue };
}

Properties

createdBy?: IdentityRef

Gets or sets the identity who created the variable group.

createdOn?: Date

Gets or sets the time when variable group was created.

description?: string

Gets or sets description of the variable group.

id?: number

Gets or sets id of the variable group.

isShared?: boolean

Indicates whether variable group is shared with other projects or not.

modifiedBy?: IdentityRef

Gets or sets the identity who modified the variable group.

modifiedOn?: Date

Gets or sets the time when variable group was modified

name?: string

Gets or sets name of the variable group.

Gets or sets provider data.

type?: string

Gets or sets type of the variable group.

variableGroupProjectReferences?: VariableGroupProjectReference[]

all project references where the variable group is shared with other projects.

variables?: { [key: string]: VariableValue }

Gets or sets variables contained in the variable group.