ArchAstro. Types. ConfigVersion
(archastro v0.2.0)
Copy Markdown
A single immutable snapshot of a config's content, created each time the config is saved.
Summary
Types
@type t() :: %ArchAstro.Types.ConfigVersion{ change_description: String.t() | ArchAstro.Unset.t(), content_hash: String.t() | ArchAstro.Unset.t(), created_at: DateTime.t() | ArchAstro.Unset.t(), data: %{optional(String.t()) => ArchAstro.JSON.t()} | ArchAstro.Unset.t(), id: String.t(), org: String.t() | ArchAstro.Unset.t(), sandbox: String.t() | ArchAstro.Unset.t(), source_solution_config_version: String.t() | ArchAstro.Unset.t(), version_number: integer() }
Functions
@spec from_map(ArchAstro.JSON.object()) :: t()
@spec matches?(ArchAstro.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.JSON.object()