Class: OpenNebula::VMGroup

Inherits:
PoolElement show all
Defined in:
lib/opennebula/vm_group.rb

Constant Summary collapse

VMGROUP_METHODS =

Constants and Class Methods

{
    :allocate    => "vmgroup.allocate",
    :info        => "vmgroup.info",
    :update      => "vmgroup.update",
    :delete      => "vmgroup.delete",
    :chown       => "vmgroup.chown",
    :chmod       => "vmgroup.chmod",
    :rename      => "vmgroup.rename",
    :lock        => "vmgroup.lock",
    :unlock        => "vmgroup.unlock"
}

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from PoolElement

#id, #name, new_with_id, #replace, #to_str

Methods inherited from XMLElement

#[], #add_element, #attr, #delete_element, #each, #each_xpath, #element_xml, #has_elements?, #initialize_xml, #name, #retrieve_elements, #retrieve_xmlelements, #set_content, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml, #xml_nil?

Constructor Details

#initialize(xml, client) ⇒ VMGroup

Class constructor



51
52
53
54
55
56
57
# File 'lib/opennebula/vm_group.rb', line 51

def initialize(xml, client)
    LockableExt.make_lockable(self, VMGROUP_METHODS)

    super(xml,client)

    @client = client
end

Class Method Details

.build_xml(pe_id = nil) ⇒ Object

Creates a VMGroup description with just its identifier this method should be used to create plain VMGroup objects.

Parameters:

  • pe_id (Integer) (defaults to: nil)

    the id of the object



40
41
42
43
44
45
46
47
48
# File 'lib/opennebula/vm_group.rb', line 40

def VMGroup.build_xml(pe_id=nil)
    if pe_id
        obj_xml = "<VM_GROUP><ID>#{pe_id}</ID></VM_GROUP>"
    else
        obj_xml = "<VM_GROUP></VM_GROUP>"
    end

    XMLElement.build_xml(obj_xml,'VM_GROUP')
end

Instance Method Details

#allocate(description) ⇒ nil, OpenNebula::Error

Allocates a new VMGroup in OpenNebula

Parameters:

  • description (String)

    The contents of the VMGroup.

Returns:



76
77
78
# File 'lib/opennebula/vm_group.rb', line 76

def allocate(description)
    super(VMGROUP_METHODS[:allocate], description)
end

#chmod(owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u, other_m, other_a) ⇒ nil, OpenNebula::Error

Changes the SecurityGroup permissions. Each [Integer] argument must be 1 to allow, 0 deny, -1 do not change

Returns:



121
122
123
124
125
# File 'lib/opennebula/vm_group.rb', line 121

def chmod(owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u,
        other_m, other_a)
    super(VMGROUP_METHODS[:chmod], owner_u, owner_m, owner_a, group_u,
        group_m, group_a, other_u, other_m, other_a)
end

#chmod_octet(octet) ⇒ nil, OpenNebula::Error

Changes the SecurityGroup permissions.

Parameters:

  • octet (String)

    Permissions octed , e.g. 640

Returns:



112
113
114
# File 'lib/opennebula/vm_group.rb', line 112

def chmod_octet(octet)
    super(VMGROUP_METHODS[:chmod], octet)
end

#chown(uid, gid) ⇒ nil, OpenNebula::Error

Changes the owner/group

Parameters:

  • uid (Integer)

    the new owner id. Set to -1 to leave the current one

  • gid (Integer)

    the new group id. Set to -1 to leave the current one

Returns:



103
104
105
# File 'lib/opennebula/vm_group.rb', line 103

def chown(uid, gid)
    super(VMGROUP_METHODS[:chown], uid, gid)
end

#deleteObject

Deletes the SecurityGroup



81
82
83
# File 'lib/opennebula/vm_group.rb', line 81

def delete()
    super(VMGROUP_METHODS[:delete])
end

#gidObject

Returns the group identifier

return

Integer the element’s group ID



143
144
145
# File 'lib/opennebula/vm_group.rb', line 143

def gid
    self['GID'].to_i
end

#infoObject Also known as: info!

Retrieves the information of the VMGroup.



64
65
66
# File 'lib/opennebula/vm_group.rb', line 64

def info()
    super(VMGROUP_METHODS[:info], 'VM_GROUP')
end

#owner_idObject



147
148
149
# File 'lib/opennebula/vm_group.rb', line 147

def owner_id
    self['UID'].to_i
end

#rename(name) ⇒ nil, OpenNebula::Error

Renames this VMGroup

Parameters:

  • name (String)

    New name for the VMGroup.

Returns:



133
134
135
# File 'lib/opennebula/vm_group.rb', line 133

def rename(name)
    return call(VMGROUP_METHODS[:rename], @pe_id, name)
end

#role_namesObject

return

Array with the name of roles



152
153
154
# File 'lib/opennebula/vm_group.rb', line 152

def role_names
    self.retrieve_elements('ROLES/ROLE/NAME')
end

#update(new_vmgroup, append = false) ⇒ nil, OpenNebula::Error

Replaces the vm group contents

Parameters:

  • new_vmgroup (String)

    New vmgroup contents

  • append (true, false) (defaults to: false)

    True to append new attributes instead of replace the whole securitygroup

Returns:



93
94
95
# File 'lib/opennebula/vm_group.rb', line 93

def update(new_vmgroup, append=false)
    super(VMGROUP_METHODS[:update], new_vmgroup, append ? 1 : 0)
end