Class: Fog::Proxmox::Identity::Groups

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

Overview

class Groups authentication

Instance Method Summary collapse

Instance Method Details

#allObject



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

def all
  load service.list_groups
end

#destroy(id) ⇒ Object



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

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

#get(id) ⇒ Object



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

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