# -*- encoding: utf-8 -*- module Simplenet module Client class Zone < Base def initialize(url) @url = url @fullurl = "#{url}/zones" end def create(datacenter_id, name) simplenet_post(@fullurl, { :name => name, :datacenter_id => datacenter_id }) end end end end