@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 534 B
TypeScript
/** vps.rebuild.post */
export interface Post {
/** If asked, the installation password will NOT be sent (only if sshKey defined) */
doNotSendPassword: boolean;
/** Id of the vps.Image fetched in /images list */
imageId: string;
/** If asked, RTM will be installed on your VPS */
installRTM: boolean;
/** Public SSH key to pre-install on your VPS */
publicSshKey: string;
/** SSH key name to pre-install on your VPS (name from /me/sshKey) */
sshKey: string;
}
//# sourceMappingURL=Post.d.ts.map