interface ServerSummary {
    createdAt?: Date;
    datacenterName: string;
    expiredAt?: Date;
    hostname: string;
    id: number;
    interfaces: NetworkInterface[];
    isOutsourced: boolean;
    level?: ServiceLevel;
    offerId: number;
    offerName: string;
    organizationId: string;
    osId?: number;
    projectId: string;
    qinq: boolean;
    rpnVersion?: number;
    status: Dedibox.v1.ServerStatus;
    updatedAt?: Date;
    zone: Zone;
}

Properties

createdAt?: Date

Date of creation of the server.

datacenterName: string

Datacenter of the server.

expiredAt?: Date

Date of release of the server.

hostname: string

Hostname of the server.

id: number

ID of the server.

interfaces: NetworkInterface[]

Network interfaces of the server.

isOutsourced: boolean

Whether the server is outsourced or not.

level?: ServiceLevel

Service level of the server.

offerId: number

Offer ID of the server.

offerName: string

Offer name of the server.

organizationId: string

Organization ID the server is attached to.

osId?: number

OS ID installed on server.

projectId: string

Project ID the server is attached to.

qinq: boolean

Whether the server is compatible with QinQ.

rpnVersion?: number

Supported RPN version.

Status of the server.

updatedAt?: Date

Date of last modification of the server.

zone: Zone

The zone in which is the server.