Interface IInstanceDetails

interface IInstanceDetails {
    cpuInMillis: number;
    lastUpdated: ILastUpdated;
    memoryInBytes: number;
    restarts: number;
    scheduled: boolean;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

cpuInMillis: number
lastUpdated: ILastUpdated
memoryInBytes: number
restarts: number
scheduled: boolean