@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 348 B
TypeScript
import { Key } from './user/Key';
/** Representation of Ceph Rados Gateway user */
export interface User {
/** Display Name of Ceph Rados Gateway user */
displayName: string;
/** Keys of Ceph Rados Gateway user */
keys: Key[];
/** Identifier of Ceph Rados Gateway user */
userId: string;
}
//# sourceMappingURL=User.d.ts.map