Miosa.Types.CustomDomain (Miosa v1.0.0)

Copy Markdown View Source

Represents a custom domain registered for a MIOSA computer.

Summary

Types

status()

@type status() :: :pending | :verifying | :active | :failed

t()

@type t() :: %Miosa.Types.CustomDomain{
  computer_id: String.t() | nil,
  created_at: String.t() | nil,
  dns_instructions: map() | nil,
  domain: String.t(),
  id: String.t(),
  port: pos_integer() | nil,
  status: status(),
  tls: boolean() | nil
}

Functions

from_map(map)

@spec from_map(map()) :: t()