public class VMGroup extends PoolElement
client, id, xml, xpath
Modifier | Constructor | Description |
---|---|---|
|
VMGroup(int id,
Client client) |
Creates a new vmgroup representation.
|
protected |
VMGroup(org.w3c.dom.Node xmlElement,
Client client) |
Modifier and Type | Method | Description |
---|---|---|
static OneResponse |
allocate(Client client,
java.lang.String description) |
Allocates a new vmgroup in OpenNebula.
|
OneResponse |
chgrp(int gid) |
Changes the group
|
OneResponse |
chmod(int octet) |
Changes the permissions
|
OneResponse |
chmod(int owner_u,
int owner_m,
int owner_a,
int group_u,
int group_m,
int group_a,
int other_u,
int other_m,
int other_a) |
Changes the vmgroup permissions
|
OneResponse |
chmod(java.lang.String octet) |
Changes the permissions
|
static OneResponse |
chmod(Client client,
int id,
int octet) |
Changes the permissions
|
static OneResponse |
chmod(Client client,
int id,
int owner_u,
int owner_m,
int owner_a,
int group_u,
int group_m,
int group_a,
int other_u,
int other_m,
int other_a) |
Changes the vmgroup permissions
|
static OneResponse |
chmod(Client client,
int id,
java.lang.String octet) |
Changes the permissions
|
OneResponse |
chown(int uid) |
Changes the owner
|
OneResponse |
chown(int uid,
int gid) |
Changes the owner/group
|
static OneResponse |
chown(Client client,
int id,
int uid,
int gid) |
Changes the owner/group
|
OneResponse |
delete() |
Deletes the vmgroup from OpenNebula.
|
static OneResponse |
delete(Client client,
int id) |
Deletes a vmgroup from OpenNebula.
|
OneResponse |
info() |
Loads the xml representation of the vmgroup.
|
static OneResponse |
info(Client client,
int id) |
Retrieves the information of the given vmgroup
|
OneResponse |
lock(int level) |
Lock this vmgroup
|
static OneResponse |
lock(Client client,
int id,
int level) |
lock this vmgroup
|
OneResponse |
rename(java.lang.String name) |
Renames this vmgroup
|
static OneResponse |
rename(Client client,
int id,
java.lang.String name) |
Renames this vmgroup
|
OneResponse |
unlock() |
Unlock this vmgroup
|
static OneResponse |
unlock(Client client,
int id) |
Unlock this vmgroup
|
OneResponse |
update(java.lang.String new_template) |
Replaces the vmgroup template contents.
|
OneResponse |
update(java.lang.String new_template,
boolean append) |
Replaces the vmgroup template contents.
|
static OneResponse |
update(Client client,
int id,
java.lang.String new_template,
boolean append) |
Replaces the vmgroup template contents.
|
public VMGroup(int id, Client client)
id
- The vmgroup id.client
- XML-RPC Client.protected VMGroup(org.w3c.dom.Node xmlElement, Client client)
PoolElement
public static OneResponse allocate(Client client, java.lang.String description)
client
- XML-RPC Client.description
- A string containing the template
of the vmgroup.public static OneResponse info(Client client, int id)
client
- XML-RPC Client.id
- the id for the vmgroup to
retrieve the information from.public static OneResponse delete(Client client, int id)
client
- XML-RPC Client.id
- The id of the target vmgroup.public static OneResponse chown(Client client, int id, int uid, int gid)
client
- XML-RPC Client.id
- The id of the target vmgroup.uid
- The new owner user ID. Set it to -1 to leave the current one.gid
- The new group ID. Set it to -1 to leave the current one.public static OneResponse chmod(Client client, int id, int owner_u, int owner_m, int owner_a, int group_u, int group_m, int group_a, int other_u, int other_m, int other_a)
client
- XML-RPC Client.id
- The id of the target vmgroup.owner_u
- 1 to allow, 0 deny, -1 do not changeowner_m
- 1 to allow, 0 deny, -1 do not changeowner_a
- 1 to allow, 0 deny, -1 do not changegroup_u
- 1 to allow, 0 deny, -1 do not changegroup_m
- 1 to allow, 0 deny, -1 do not changegroup_a
- 1 to allow, 0 deny, -1 do not changeother_u
- 1 to allow, 0 deny, -1 do not changeother_m
- 1 to allow, 0 deny, -1 do not changeother_a
- 1 to allow, 0 deny, -1 do not changepublic static OneResponse chmod(Client client, int id, java.lang.String octet)
client
- XML-RPC Client.id
- The id of the target object.octet
- Permissions octed , e.g. 640public static OneResponse chmod(Client client, int id, int octet)
client
- XML-RPC Client.id
- The id of the target object.octet
- Permissions octed , e.g. 640public static OneResponse update(Client client, int id, java.lang.String new_template, boolean append)
client
- XML-RPC Client.id
- The id of the target vmgroup we want to modify.new_template
- New template contents.append
- True to append new attributes instead of replace the whole templatepublic static OneResponse rename(Client client, int id, java.lang.String name)
client
- XML-RPC Client.id
- The id of the target vmgroup.name
- New name for the vmgroup.public static OneResponse lock(Client client, int id, int level)
client
- XML-RPC Client.id
- The id of the target vmgroup.level
- Lock level.public static OneResponse unlock(Client client, int id)
client
- XML-RPC Client.id
- The id of the target vmgroup.public OneResponse info()
info(Client, int)
public OneResponse delete()
public OneResponse chown(int uid, int gid)
uid
- The new owner user ID. Set it to -1 to leave the current one.gid
- The new group ID. Set it to -1 to leave the current one.public OneResponse chown(int uid)
uid
- The new owner user ID.public OneResponse chgrp(int gid)
gid
- The new group ID.public OneResponse chmod(int owner_u, int owner_m, int owner_a, int group_u, int group_m, int group_a, int other_u, int other_m, int other_a)
owner_u
- 1 to allow, 0 deny, -1 do not changeowner_m
- 1 to allow, 0 deny, -1 do not changeowner_a
- 1 to allow, 0 deny, -1 do not changegroup_u
- 1 to allow, 0 deny, -1 do not changegroup_m
- 1 to allow, 0 deny, -1 do not changegroup_a
- 1 to allow, 0 deny, -1 do not changeother_u
- 1 to allow, 0 deny, -1 do not changeother_m
- 1 to allow, 0 deny, -1 do not changeother_a
- 1 to allow, 0 deny, -1 do not changepublic OneResponse chmod(java.lang.String octet)
octet
- Permissions octed , e.g. 640public OneResponse chmod(int octet)
octet
- Permissions octed , e.g. 640public OneResponse update(java.lang.String new_template)
new_template
- New template contents.public OneResponse update(java.lang.String new_template, boolean append)
new_template
- New template contents.append
- True to append new attributes instead of replace the whole templatepublic OneResponse rename(java.lang.String name)
name
- New name for the vmgroup.public OneResponse lock(int level)
level
- Lock level.public OneResponse unlock()
Visit OpenNebula.org
Copyright 2002-2018 ©
OpenNebula Project, OpenNebula Systems.