InfluxEx.Org (influx_ex v0.3.1)

Data structure for an Org in InfluxDB

Link to this section Summary

Link to this section Types

@type id() :: binary()
@type links() :: %{
  buckets: binary(),
  dashboards: binary(),
  labels: binary(),
  members: binary(),
  owners: binary(),
  secrets: binary(),
  self: binary(),
  tasks: binary()
}
@type name() :: binary()
@type status() :: :active | :inactive
@type t() :: %InfluxEx.Org{
  created_at: DateTime.t(),
  description: binary() | nil,
  id: id() | nil,
  links: links(),
  name: name(),
  status: status() | nil,
  updated_at: DateTime.t()
}

Link to this section Functions

Link to this function

from_map(weak_map)