UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 637 B
/** vps.reinstall.post */ export interface Post { /** If asked, the installation password will NOT be sent (only if sshKey defined) */ doNotSendPassword: boolean; /** Distribution language. default : en */ language: string; /** Public SSH key to pre-install on your VPS */ publicSshKey: string; /** Id of the vps.Software type fetched in /template/{id}/software */ softwareId: number[]; /** SSH key names to pre-install on your VPS (name from /me/sshKey) */ sshKey: string[]; /** Id of the vps.Template fetched in /templates list */ templateId: number; } //# sourceMappingURL=Post.d.ts.map