Type alias CreateUserOptions

CreateUserOptions: { active?: boolean; extra?: Record<string, any>; passwd: string; user: string }

Options for creating an ArangoDB user.

Type declaration

  • Optional active?: boolean

    Whether the ArangoDB user account is enabled and can authenticate.

    Default: true

  • Optional extra?: Record<string, any>

    Additional information to store about this user.

    Default: {}

  • passwd: string

    Password the ArangoDB user will use for authentication.

  • user: string

    ArangoDB username of the user.

Generated using TypeDoc