All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.funkode.arangodb.model.DatabaseCreate.scala Maven / Gradle / Ivy

There is a newer version: 0.3.6
Show newest version
/*
 * Copyright 2022 Carlos Verdes
 *
 * SPDX-License-Identifier: MIT
 */

package io.funkode.arangodb.model

case class DatabaseCreate(
    name: DatabaseName,
    users: List[DatabaseCreate.User] = List.empty,
    options: Map[String, String] = Map.empty
)

object DatabaseCreate:

  final case class User(
      username: String,
      passwd: Option[String] = None,
      active: Boolean = true
      //  extra: Option[Any],
  )




© 2015 - 2025 Weber Informatics LLC | Privacy Policy