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.

createdOn?: Date

Gets date on which it got created.

description?: string

Gets or sets description.

id?: number

Gets the unique identifier of this field.

isShared?: boolean

Denotes if a variable group is shared with other project or not.

modifiedBy?: IdentityRef

Gets or sets the identity who modified.

modifiedOn?: Date

Gets date on which it got modified.

name?: string

Gets or sets name.

Gets or sets provider data.

type?: string

Gets or sets type.

variableGroupProjectReferences?: VariableGroupProjectReference[]

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

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

Gets and sets the dictionary of variables.