@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 379 B
TypeScript
/** DNS zone dynHost login creation */
export interface LoginCreate {
/** Suffix that will be concatenated to the zoneName to create the login */
loginSuffix: string;
/** Password of the login */
password: string;
/** Subdomain that the login will be allowed to update (use * to allow all) */
subDomain: string;
}
//# sourceMappingURL=LoginCreate.d.ts.map