Environment.

interface EnvironmentInstance {
    createdBy?: IdentityRef;
    createdOn?: Date;
    description?: string;
    id?: number;
    lastModifiedBy?: IdentityRef;
    lastModifiedOn?: Date;
    name?: string;
    project?: ProjectReference;
    resources?: EnvironmentResourceReference[];
}

Properties

createdBy?: IdentityRef

Identity reference of the user who created the Environment.

createdOn?: Date

Creation time of the Environment

description?: string

Description of the Environment.

id?: number

Id of the Environment

lastModifiedBy?: IdentityRef

Identity reference of the user who last modified the Environment.

lastModifiedOn?: Date

Last modified time of the Environment

name?: string

Name of the Environment.

Project information for environment.