UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

19 lines (16 loc) 424 B
import { CloudKubeNodeStatusEnum } from './CloudKubeNodeStatusEnum.js'; type CloudKubeNode = { createdAt?: Date; deployedAt?: Date | null; flavor?: string; id?: string; instanceId?: string | null; isUpToDate?: boolean; name?: string; nodePoolId?: string; projectId?: string; status?: CloudKubeNodeStatusEnum; updatedAt?: Date; version?: string; }; export { CloudKubeNode };