import { BillingNameEnum } from './BillingNameEnum';
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
/** Detailed information on a node consumption of a Hadoop Cluster */
export interface NodeConsumption {
    /** Hostname of the consumed resource */
    hostname: string;
    /** Name of the node profile for the consumptions */
    nodeProfile: BillingNameEnum;
    /** Number of hours consummed */
    quantity: UnitAndValueLong;
}
//# sourceMappingURL=NodeConsumption.d.ts.map