| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049 |
- <?xml version="1.0" encoding="utf-8"?>
- <sect1 id="zend.service.rackspace.servers">
- <title>Zend_Service_Rackspace_Servers</title>
- <sect2 id="zend.service.rackspace.servers.intro">
- <title>Overview</title>
- <para>
- The <classname>Zend_Service_Rackspace_Servers</classname> is a class that provides a
- simple <acronym>API</acronym> to manage the <ulink url="http://www.rackspace.com/cloud/cloud_hosting_products/servers/">Rackspace
- Cloud Servers</ulink>. Using this class you can:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- Create new servers
- </para>
- </listitem>
- <listitem>
- <para>
- List and get information on each server
- </para>
- </listitem>
- <listitem>
- <para>
- Delete a server
- </para>
- </listitem>
-
- <listitem>
- <para>
- Manage the public/private IP addresses of a server
- </para>
- </listitem>
- <listitem>
- <para>
- Resize the server capacity
- </para>
- </listitem>
- <listitem>
- <para>
- Reboot a server
- </para>
- </listitem>
- <listitem>
- <para>
- Create new images for a server
- </para>
- </listitem>
- <listitem>
- <para>
- Manage the backup of a server
- </para>
- </listitem>
- <listitem>
- <para>
- Create a group of server to share the IP addresses for High Availability architecture
- </para>
- </listitem>
- </itemizedlist>
- </sect2>
- <sect2 id="zend.service.rackspace.servers.terminology">
- <title>Terminology</title>
-
- <para>
- A <emphasis>server</emphasis> is a virtual machine instance in the Cloud Servers system. Flavor and image are
- requisite elements when creating a server.
- </para>
-
- <para>
- A <emphasis>server</emphasis> is managed using the the class <classname>Zend_Service_Rackspace_Servers_Server</classname>.
- </para>
-
- <para>
- A <emphasis>flavor</emphasis> is an available hardware configuration for a server. Each flavor has a unique
- combination of disk space, memory capacity and priority for CPU time.
- </para>
-
- <para>
- An <emphasis>image</emphasis> is a collection of files used to create or rebuild a server. Rackspace provides a
- number of pre-built OS images by default. You may also create custom images from cloud
- servers you have launched. These custom images are useful for backup purposes or for
- producing “gold” server images if you plan to deploy a particular server configuration
- frequently.
- </para>
-
- <para>
- An <emphasis>image</emphasis> is managed using the the class <classname>Zend_Service_Rackspace_Servers_Image</classname>.
- </para>
-
- <para>
- A <emphasis>backup schedule</emphasis> can be defined to create server images at regular intervals (daily and
- weekly). Backup schedules are configurable per server.
- </para>
-
- <para>
- <emphasis>Public IP addresses</emphasis> can be shared across multiple servers for use in various high availability
- scenarios. When an IP address is shared to another server, the cloud network restrictions
- are modified to allow each server to listen to and respond on that IP address (you may
- optionally specify that the target server network configuration be modified). Shared
- IP addresses can be used with many standard heartbeat facilities (e.g. keepalived) that
- monitor for failure and manage IP failover.
- </para>
-
- <para>
- A <emphasis>shared IP group</emphasis> is a collection of servers that can share IPs with other members of the
- group. Any server in a group can share one or more public IPs with any other server in the
- group. With the exception of the first server in a shared IP group, servers must be launched
- into shared IP groups. A server may only be a member of one shared IP group.
- </para>
-
- <para>
- A <emphasis>shared IP group</emphasis> is managed using the the class <classname>Zend_Service_Rackspace_Servers_SharedIpGroup</classname>.
- </para>
- </sect2>
-
- <sect2 id="zend.service.rackspace.servers.quick-start">
- <title>Quick Start</title>
-
- <para>
- To use this class you have to pass the username and the API's key
- of Rackspace in the construction of the class.
- </para>
-
- <programlisting language="php"><![CDATA[
- $user = 'username';
- $key = 'secret key';
- $rackspace = new Zend_Service_Rackspace_Servers($user,$key);
- ]]></programlisting>
-
- <para>
- To create a new server you can use the <emphasis>createServer</emphasis> method.
- </para>
-
- <programlisting language="php"><![CDATA[
- $data = array (
- 'name' => 'test',
- 'imageId' => '49',
- 'flavorId' => '1',
- );
- $server= $rackspace->createServer($data);
- if (!$rackspace->isSuccessful()) {
- die('ERROR: '.$rackspace->getErrorMsg());
- }
- printf("Server name : %s\n",$server->getName());
- printf("Server Id : %s\n",$server->getId());
- printf("Admin password : %s\n",$server->getAdminPass());
- ]]></programlisting>
- <para>
- This example create a server with name <emphasis>test</emphasis>, imageId 49, and
- flavorId 1. The attributes <emphasis>name</emphasis>, <emphasis>imageId</emphasis> and
- <emphasis>flavorId</emphasis> are required to create a new server. The result of
- <emphasis>createServer</emphasis> is an instance of
- <classname>Zend_Service_Rackspace_Servers_Server</classname>.
- </para>
-
- <para>
- To get the public and private IP addresses of a server you can use the
- <emphasis>getServerIp</emphasis> method.
- </para>
-
- <programlisting language="php"><![CDATA[
- $id = '20054631';
- $ips = $rackspace->getServerIp($id);
- if (!$rackspace->isSuccessful()) {
- die('ERROR: '.$rackspace->getErrorMsg());
- }
- echo "Private IPs:\n";
- print_r($ips['private']);
- echo "Public IPs:\n";
- print_r($ips['public']);
- ]]></programlisting>
- <para>
- This example get the IP addresses of the server with Id <emphasis>20054631</emphasis>.
- The result of <emphasis>getServerIp</emphasis> is an associative arrays with keys
- 'private' and 'public' contains all the private IP addresses and the public IP addresses
- of the server.
- </para>
-
- <para>
- To get the list of all the available servers you can use the
- <emphasis>listServers</emphasis> method.
- </para>
-
- <programlisting language="php"><![CDATA[
- $servers= $rackspace->listServer(true);
- if (!$rackspace->isSuccessful()) {
- die('ERROR: '.$rackspace->getErrorMsg());
- }
- foreach ($servers as $srv) {
- printf("Name : %s\n",$srv->getName());
- printf("Server Id : %s\n",$srv->getId());
- printf("Image Id : %s\n",$srv->getImageId());
- printf("Flavor Id : %s\n",$srv->getFlavorId());
- printf("Status : %s (%d\%)\n",$srv->getStatus(),$srv->getProgress());
- }
- ]]></programlisting>
-
- </sect2>
-
- <sect2 id="zend.service.rackspace.servers.methods">
- <title>Available Methods</title>
-
- <variablelist>
- <varlistentry id="zend.service.rackspace.servers.methods.change-backup-schedule">
- <term>
- <methodsynopsis>
- <methodname>changeBackupSchedule</methodname>
- <methodparam>
- <funcparams>string $id, string $weekly, string $daily</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- This operation creates a new backup schedule or updates an existing backup schedule for
- the specified server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the ID of the server
- </para>
- <para>
- <emphasis>$weekly</emphasis>, the day of the week for the backup (for instance "THURSDAY")
- </para>
- <para>
- <emphasis>$daily</emphasis>, specify the hours for the backup (for instance "H_0400_0600")
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.change-server-name">
- <term>
- <methodsynopsis>
- <methodname>changeServerName</methodname>
- <methodparam>
- <funcparams>string $id, string $name</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Change the name of a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the ID of the server
- </para>
- <para>
- <emphasis>$name</emphasis> is an optional parameter that specify the new name of the server
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.change-server-password">
- <term>
- <methodsynopsis>
- <methodname>changeServerPassword</methodname>
- <methodparam>
- <funcparams>string $id, string $password</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Change the admin password of a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the ID of the server
- </para>
- <para>
- <emphasis>$password</emphasis> is an optional parameter that specify the new admin password of the server
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.confirm-resize-server">
- <term>
- <methodsynopsis>
- <methodname>confirmResizeServer</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Confirm the resize of a server. During a resize operation, the original server is saved for a period of time to allow roll
- back if there is a problem. Once the newly resized server is tested and has been confirmed
- to be functioning properly, use this operation to confirm the resize. After confirmation,
- the original server is removed and cannot be rolled back to. All resizes are automatically
- confirmed after 24 hours if they are not explicitly confirmed or reverted.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.create-image">
- <term>
- <methodsynopsis>
- <methodname>createImage</methodname>
- <methodparam>
- <funcparams>string $serverId,string $name</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Create an image from a server.
- Return a new instance of <classname>Zend_Service_Rackspace_Servers_Image</classname>.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$serverId</emphasis> is the Id of the server to use to create the image.
- </para>
- <para>
- <emphasis>$name</emphasis>, is the name of image to create
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.create-shared-ip-group">
- <term>
- <methodsynopsis>
- <methodname>createSharedIpGroup</methodname>
- <methodparam>
- <funcparams>string $name, string $serverId</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- This operation creates a new shared IP group. Please note, on a create request, the shared IP
- group can be created empty or can be initially populated with a single server.
- Return the shared IP group as instance of <classname>Zend_Service_Rackspace_Servers_SharedIpGroup</classname>
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$name</emphasis> is the name of the shared IP group to create.
- </para>
- <para>
- <emphasis>$serverId</emphasis> is the Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.create-server">
- <term>
- <methodsynopsis>
- <methodname>createServer</methodname>
- <methodparam>
- <funcparams>array $data, $metadata=array(),$files=array()</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Create a server with the attributes specified in <emphasis>$data</emphasis>. You can specify also
- optional parameters: <emphasis>metadata</emphasis> and <emphasis>files</emphasis>.
- Metadata is an array contains key/value of metadata related to the server and files is an array
- contains the paths of some files to upload into the server. The syntax used for the uploading
- of the files is 'serverPath' => 'localPath'.
- Return a new instance of <classname>Zend_Service_Rackspace_Servers_Server</classname>.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$data</emphasis> contains the parameters for the server.
- The required attributes to create a new server are:
- <itemizedlist>
- <listitem>
- <para>
- <emphasis>name</emphasis>, contains the name of the server
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>flavorId</emphasis>, contains the flavor's Id to use
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>imageId</emphasis>, contains the image's Id to use
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- <emphasis>$metadata</emphasis>, contains the array of metadata information
- </para>
- <para>
- <emphasis>$files</emphasis>, contains the path of the files to upload in the server
- using the syntax 'serverPath' => 'localPath'.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.disable-backup-schedule">
- <term>
- <methodsynopsis>
- <methodname>disableBackupSchedule</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Disable the backup of a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.delete-image">
- <term>
- <methodsynopsis>
- <methodname>deleteImage</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Delete a image.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the image.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.delete-shared-ip-group">
- <term>
- <methodsynopsis>
- <methodname>deleteSharedIpGroup</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Delete a shared IP group.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the shared IP group.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.delete-server">
- <term>
- <methodsynopsis>
- <methodname>deleteServer</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Delete a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-backup-schedule">
- <term>
- <methodsynopsis>
- <methodname>getBackupSchedule</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the backup schedule of a server. The return is an associative array with the following values: enabled, weekly, daily.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-flavor">
- <term>
- <methodsynopsis>
- <methodname>getFlavor</methodname>
- <methodparam>
- <funcparams>string $flavorId</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the information about a flavor. The return is an associative array with the following values: id, ram, disk, name.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$flavorId</emphasis> is the Id of the flavor.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-image">
- <term>
- <methodsynopsis>
- <methodname>getImage</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return an image as instance of <classname>Zend_Service_Rackspace_Servers_Image</classname>.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the image.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-shared-ip-group">
- <term>
- <methodsynopsis>
- <methodname>getSharedIpGroup</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the shared IP group as instance of <classname>Zend_Service_Rackspace_Servers_SharedIpGroup</classname>
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is the Id of the shared IP group.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-server">
- <term>
- <methodsynopsis>
- <methodname>getServer</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the server specified by the Id as instance of <classname>Zend_Service_Rackspace_Servers_Server</classname>.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-server-ip">
- <term>
- <methodsynopsis>
- <methodname>getServerIp</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the public and private IP addresses of a server.
- Return an associative array contains the key <emphasis>'public'</emphasis> and <emphasis>'private'</emphasis> for the IP addresses.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-server-private-ip">
- <term>
- <methodsynopsis>
- <methodname>getServerPrivateIp</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the private IP addresses of the server.
- Return an associative array contains the IP addresses.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.get-server-public-ip">
- <term>
- <methodsynopsis>
- <methodname>getServerPublicIp</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return the public IP addresses of the server.
- Return an associative array contains the IP addresses.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.list-flavors">
- <term>
- <methodsynopsis>
- <methodname>listFlavors</methodname>
- <methodparam>
- <funcparams>boolean $details=false</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return all the available flavors as associative array.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- If <emphasis>$details</emphasis> is <emphasis>true</emphasis> return a detailed list, if is <emphasis>false</emphasis> return only the <emphasis>name</emphasis> and the <emphasis>Id</emphasis> of the flavor.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.list-images">
- <term>
- <methodsynopsis>
- <methodname>listImages</methodname>
- <methodparam>
- <funcparams>boolean $details=false</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return all the available images as instance of <classname>Zend_Service_Rackspace_Servers_ImageList</classname>
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- If <emphasis>$details</emphasis> is <emphasis>true</emphasis> return a detailed list, if is <emphasis>false</emphasis> return only the <emphasis>name</emphasis> and the <emphasis>Id</emphasis> of the Image.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.list-server">
- <term>
- <methodsynopsis>
- <methodname>listServer</methodname>
- <methodparam>
- <funcparams>boolean $details=false</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return all the available servers with a new instance of <classname>Zend_Service_Rackspace_Servers_ServerList</classname>.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- If <emphasis>$details</emphasis> is <emphasis>true</emphasis> return a detailed list, if is <emphasis>false</emphasis> return only the <emphasis>name</emphasis> and the <emphasis>Id</emphasis> of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.list-shared-ip-groups">
- <term>
- <methodsynopsis>
- <methodname>listSharedIpGroups</methodname>
- <methodparam>
- <funcparams>boolean $details=false</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return all the shared IP groups as instance of <classname>Zend_Service_Rackspace_Servers_SharedIpGroupList</classname>
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- If <emphasis>$details</emphasis> is <emphasis>true</emphasis> return a detailed list, if is <emphasis>false</emphasis> return only the <emphasis>name</emphasis> and the <emphasis>Id</emphasis> of the shared IP group.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.reboot-server">
- <term>
- <methodsynopsis>
- <methodname>rebootServer</methodname>
- <methodparam>
- <funcparams>string $id, boolean $hard=false</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Reboot a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- <para>
- If <emphasis>$hard</emphasis> is <emphasis>false</emphasis> (default) the server is rebooted in soft mode.
- That means the operating system is signaled to restart, which allows for a graceful shutdown of
- all processes. If <emphasis>$hard</emphasis> is <emphasis>true</emphasis> the server is rebooted in hard mode.
- A hard reboot is the equivalent of power cycling the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.rebuild-server">
- <term>
- <methodsynopsis>
- <methodname>rebuildServer</methodname>
- <methodparam>
- <funcparams>string $id, string $imageId</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Rebuild a server. The rebuild function removes all data on the server and replaces it with the specified image,
- server's Id and IP addresses will remain the same.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- <para>
- <emphasis>$imageId</emphasis> is the new Image Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.resize-server">
- <term>
- <methodsynopsis>
- <methodname>resizeServer</methodname>
- <methodparam>
- <funcparams>string $id, string $flavorId</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Resize a server. The resize function converts an existing server to a different flavor, in essence, scaling the
- server up or down. The original server is saved for a period of time to allow rollback if there
- is a problem. All resizes should be tested and explicitly confirmed, at which time the original
- server is removed. All resizes are automatically confirmed after 24 hours if they are not
- explicitly confirmed or reverted.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- <para>
- <emphasis>$flavorId</emphasis> is the new flavor Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.revert-resize-server">
- <term>
- <methodsynopsis>
- <methodname>revertResizeServer</methodname>
- <methodparam>
- <funcparams>string $id</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Revert the resize of a server. During a resize operation, the original server is saved for a period of time to allow for roll
- back if there is a problem. If you determine there is a problem with a newly resized server,
- use this operation to revert the resize and roll back to the original server. All resizes are
- automatically confirmed after 24 hours if they have not already been confirmed explicitly or
- reverted.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.share-ip-address">
- <term>
- <methodsynopsis>
- <methodname>shareIpAddress</methodname>
- <methodparam>
- <funcparams>string $id, string $ip, string $groupId, boolean $configure=true</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Share an IP address for a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- <para>
- <emphasis>$ip</emphasis> is the IP address to share.
- </para>
- <para>
- <emphasis>$groupId</emphasis> is the group Id to use.
- </para>
- <para>
- If <emphasis>$configure</emphasis> attribute is set to true, the server is configured
- with the new address, though the address is not enabled. Note that configuring the server
- does require a reboot.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.unshare-ip-address">
- <term>
- <methodsynopsis>
- <methodname>unshareIpAddress</methodname>
- <methodparam>
- <funcparams>string $id, string $ip</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Unshare an IP address for a server.
- Return <emphasis>true</emphasis> in case of success, <emphasis>false</emphasis> in case of error.
- </para>
- <para>
- <emphasis>$id</emphasis> is Id of the server.
- </para>
- <para>
- <emphasis>$ip</emphasis> is the IP address to share.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.servers.methods.update-server">
- <term>
- <methodsynopsis>
- <methodname>updateServer</methodname>
- <methodparam>
- <funcparams>string $id,string $name=null,string $password=null</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Change the name or/and the admin password of a server.
- In case of error the return is <emphasis>false</emphasis>.
- </para>
- <para>
- <emphasis>$id</emphasis> is the ID of the server
- </para>
- <para>
- <emphasis>$name</emphasis> is an optional parameter that specify the new name of the server
- </para>
- <para>
- <emphasis>$password</emphasis> is an optional parameter that specify the new admin password of the server
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
- </sect2>
-
- <sect2 id="zend.service.rackspace.servers.examples">
- <title>Examples</title>
-
- <example id="zend.service.rackspace.servers.examples.authenticate">
- <title>Authenticate</title>
-
- <para>Check if the username and the key are valid for the Rackspace authentication.</para>
-
- <programlisting language="php"><![CDATA[
- $user = 'username';
- $key = 'secret key';
- $rackspace = new Zend_Service_Rackspace_Servers($user,$key);
- if ($rackspace->authenticate()) {
- printf("Authenticated with token: %s",$rackspace->getToken());
- } else {
- printf("ERROR: %s",$rackspace->getErrorMsg());
- }
- ]]></programlisting>
- </example>
-
- <example id="zend.service.rackspace.servers.examples.create-server">
- <title>Create a server with metadata information and upload of a file</title>
-
- <para>
- Create a server with some metadata information and upload the file <emphasis>build.sh</emphasis>
- from the local path <emphasis>/home/user</emphasis> to the remote path <emphasis>/root</emphasis>.
- </para>
-
- <programlisting language="php"><![CDATA[
- $data = array (
- 'name' => 'test',
- 'imageId' => '49',
- 'flavorId' => '1',
- );
- $metadata = array (
- 'foo' => 'bar',
- );
- $files = array (
- '/root/build.sh' => '/home/user/build.sh',
- );
- $server= $rackspace->createServer($data,$metadata,$files);
- if (!$rackspace->isSuccessful()) {
- die('ERROR: '.$rackspace->getErrorMsg());
- }
- $publicIp= $server->getPublicIp();
- printf("Server name : %s\n",$server->getName());
- printf("Server Id : %s\n",$server->getId());
- printf("Public IP : %s\n",$publicIp[0]);
- printf("Admin password : %s\n",$server->getAdminPass());
- ]]></programlisting>
- </example>
-
- <example id="zend.service.rackspace.servers.examples.reboot-server">
- <title>Reboot a server</title>
-
- <para>
- Reboot a server in hard mode (is the equivalent of power cycling the server).
- </para>
-
- <programlisting language="php"><![CDATA[
- $flavors= $rackspace->rebootServer('server id',true)
- if (!$rackspace->isSuccessful()) {
- die('ERROR: '.$rackspace->getErrorMsg());
- }
- echo "The server has been rebooted successfully";
- ]]></programlisting>
- </example>
- <example id="zend.service.rackspace.servers.examples.list-flavors">
- <title>List all the available flavors</title>
-
- <para>
- List all the available flavors with all the detailed information.
- </para>
-
- <programlisting language="php"><![CDATA[
- $flavors= $rackspace->listFlavors(true);
- if (!$rackspace->isSuccessful()) {
- die('ERROR: '.$rackspace->getErrorMsg());
- }
- print_r($flavors);
- ]]></programlisting>
- </example>
- </sect2>
- </sect1>
|