Class: Fog::Proxmox::Identity::Domains

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/identity/proxmox/models/domains.rb

Overview

class Domains collection authentication

Instance Method Summary collapse

Instance Method Details

#allObject



29
30
31
# File 'lib/fog/identity/proxmox/models/domains.rb', line 29

def all
  load service.list_domains
end

#destroy(id) ⇒ Object



37
38
39
40
# File 'lib/fog/identity/proxmox/models/domains.rb', line 37

def destroy(id)
  domain = get(id)
  domain.destroy
end

#get(id) ⇒ Object



33
34
35
# File 'lib/fog/identity/proxmox/models/domains.rb', line 33

def get(id)
  all.find { |domain| domain.identity === id }
end