Sha256: 98cfc7397042fa36361213f8d9f69611e6d892c88d98bc5366427c48d48034c4
Contents?: true
Size: 584 Bytes
Versions: 43
Compression:
Stored size: 584 Bytes
Contents
require 'fog/core/collection' require 'fog/rage4/models/dns/zone' module Fog module DNS class Rage4 class Zones < Fog::Collection model Fog::DNS::Rage4::Zone def all clear data = service.list_domains.body load(data) end def get(zone_name) data = service.get_domain_by_name(zone_name).body if data["status"] && !data["status"] nil else new(data) end rescue Excon::Errors::NotFound nil end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems