@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
20 lines • 669 B
TypeScript
import { BillingNameEnum } from './BillingNameEnum';
import { Ip } from '../../Ip';
import { NodeProfileEnum } from './NodeProfileEnum';
import { NodeStateEnum } from './NodeStateEnum';
/** Physical or Virtual Node */
export interface Node {
/** Name of the billing profile attached to the node */
billingProfileName: BillingNameEnum;
/** Hostname of the node */
hostname: string;
/** IP of the Node */
ip: Ip;
/** Whether or not the Node is removable */
isRemovable: boolean;
/** Profile of the Node */
softwareProfile: NodeProfileEnum;
/** State of the Node */
state: NodeStateEnum;
}
//# sourceMappingURL=Node.d.ts.map