Packages

This package implements the full CloudAPI for managing Joyent Triton clusters

Current section

Files

Jump to
cloudapi lib vlan.ex
Raw

lib/vlan.ex

defmodule CloudAPI.VLAN do
@typedoc """
This structure represents a CloudAPI VLAN
"""
use Ecto.Schema
import Ecto.Changeset
@primary_key false
embedded_schema do
field :name, :string
field :vlan_id, :integer
field :description, :string
end
end