View Source Ravix.Operations.Database.Commands.CreateDatabaseCommand (ravix v0.6.3)

Command to create a RavenDB database

fields

Fields

  • Disabled: true/false - If the database is created disabled as default
  • Encrypted: true/false - If the database is encrypted as default
  • DatabaseName: Name - the database name
  • ReplicationFactor: int - the replication factor of the database

Link to this section Summary

Link to this section Types

@type t() :: %Ravix.Operations.Database.Commands.CreateDatabaseCommand{
  DatabaseName: String.t(),
  Disabled: boolean(),
  Encrypted: boolean(),
  ReplicationFactor: non_neg_integer(),
  data: term(),
  headers: term(),
  is_read_request: term(),
  is_stream: term(),
  method: term(),
  query_params: term(),
  url: term()
}