Class: Fog::DNS::SakuraCloud::Zones

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/sakuracloud/models/dns/zones.rb

Instance Method Summary collapse

Instance Method Details

#allObject



10
11
12
# File 'lib/fog/sakuracloud/models/dns/zones.rb', line 10

def all
  load service.list_zones.body['CommonServiceItems']
end

#delete(id) ⇒ Object



20
21
22
23
# File 'lib/fog/sakuracloud/models/dns/zones.rb', line 20

def delete(id)
  service.delete_zone(id)
  true
end

#get(id) ⇒ Object



14
15
16
17
18
# File 'lib/fog/sakuracloud/models/dns/zones.rb', line 14

def get(id)
  all.find { |f| f.id == id }
rescue Fog::Errors::NotFound
  nil
end