UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 470 B
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[]; /** Max buckets per user: -1 (not allowed), 0 (unlimited), or a positive integer (limited) */ maxBuckets: number; /** Identifier of Ceph Rados Gateway user */ userId: string; } //# sourceMappingURL=User.d.ts.map