UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 503 B
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