@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
8 lines • 317 B
TypeScript
/** Payload used to create a user on a Web Cloud Database */
export interface CreatePayload {
/** Password for the new user ( alphanumeric and 8 characters minimum ) */
password: string;
/** User name used to connect on your databases */
userName: string;
}
//# sourceMappingURL=CreatePayload.d.ts.map