UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 497 B
/** User allowed to access interfaces on your cluster */ export interface User { /** Whether or not the User is allowed to access to the Cloudera Manager interface */ clouderaManager: boolean; /** Whether or not the User is allowed to access to the WebUI interfaces */ httpFrontend: boolean; /** Whether or not the User is allowed to access to the Hue interface */ hue: boolean; /** The username of the User */ username: string; } //# sourceMappingURL=User.d.ts.map