import { UnitAndValueDouble } from '../../complexType/UnitAndValueDouble';
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
/** Detailed information on a node billing profile */
export interface NodeBillingProfile {
    /** Frequency of one CPU core */
    CPUFrequency: UnitAndValueDouble;
    /** Total capacity available for HDFS */
    diskCapacity: UnitAndValueLong;
    /** Total number of the CPU cores */
    nbCPUCores: number;
    /** Total number of the CPU threads */
    nbCPUThreads: number;
    /** Network speed of the link used for the Hadoop process */
    networkBandwidth: UnitAndValueLong;
    /** Name of the Node billing profile */
    nodeProfile: string;
    /** Total amount of RAM */
    ramQuantity: UnitAndValueLong;
}
//# sourceMappingURL=NodeBillingProfile.d.ts.map