| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- <?xml version="1.0" encoding="utf-8"?>
- <sect1 id="zend.service.rackspace">
- <title>Zend_Service_Rackspace</title>
- <sect2 id="zend.service.rackspace.introduction">
- <title>Introduction</title>
- <para>
- The <classname>Zend_Service_Rackspace</classname> is a class that
- provides a simple <acronym>API</acronym> to manage the Rackspace services
- Cloud Files and Cloud Servers.
- </para>
-
- <note><title>Load balancers service</title>
-
- <para>
- The load balancers service of Rackspace is not implemented yet.
- We are planning to release it in the next future.
- </para>
- </note>
- </sect2>
- <sect2 id="zend.service.rackspace.registering">
- <title>Registering with Rackspace</title>
- <para>
- Before you can get started with <classname>Zend_Service_Rackspace</classname>, you must
- first register for an account. Please see the
- <ulink url="http://www.rackspace.com/cloud/">Cloud services</ulink>
- page on the Rackspace website for more information.
- </para>
- <para>
- After registering, you can get the Username and the API Key from the Rackspace management
- console under the menu "Your Account" > "API Access".
- These informations are required to use the <classname>Zend_Service_Rackspace</classname>
- classes.
- </para>
- </sect2>
- <sect2 id="zend.service.rackspace.feature.files">
- <title>Cloud Files</title>
- <para>
- The Cloud Files is a service to store any files in a cloud environment.
- A user can store an unlimited quantity of files and each file can be as
- large as 5 gigabytes. The files can be private or public. The private files
- can be accessed using the API of Rackspace. The public files are accessed using
- a <acronym>CDN</acronym> (Content Delivery Network).
- Rackspace exposes a <acronym>REST</acronym> API to manage the Cloud Files.
- </para>
- <para>
- <classname>Zend_Service_Rackspace_Files</classname> provides the following functionality:
- <itemizedlist>
- <listitem>
- <para>
- Upload files programmatically for tight integration with your application
- </para>
- </listitem>
- <listitem>
- <para>
- Enable Cloud Files CDN integration on any container for public distribution
- </para>
- </listitem>
- <listitem>
- <para>
- Create Containers programmatically
- </para>
- </listitem>
- <listitem>
- <para>
- Retrieve lists of containers and files
- </para>
- </listitem>
- </itemizedlist>
- </para>
- </sect2>
- <sect2 id="zend.service.rackspace.feature.servers">
- <title>Cloud Servers</title>
- <para>
- Rackspace Cloud Servers is a compute service that provides server capacity in the cloud.
- Cloud Servers come in different flavors of memory, disk space, and CPU.
- </para>
- <para>
- <classname>Zend_Service_Rackspace_Servers</classname> provides the following functionality:
- <itemizedlist>
- <listitem>
- <para>
- Create/delete new servers
- </para>
- </listitem>
- <listitem>
- <para>
- List and get information on each 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>
- </para>
- </sect2>
- <sect2 id="zend.service.rackspace.methods">
- <title>Available Methods</title>
-
- <para>
- Eeach service class (Files, Servers) of Rackspace extends the <classname>Zend_Service_Rackspace</classname> abstract class.
- This class contains a set of public methods shared with all the service.
- This public methods are reported as follow:
- </para>
-
- <variablelist>
- <varlistentry id="zend.service.rackspace.files.methods.authenticate">
- <term>
- <methodsynopsis>
- <methodname>authenticate</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Authenticate the Rackspace API using the user and the key specified in the concrete class
- that extend <classname>Zend_Service_Rackspace</classname>.
- Return <emphasis>true</emphasis> in case of success and <emphasis>false</emphasis> in case of error.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.set-service-net">
- <term>
- <methodsynopsis>
- <methodname>setServiceNet</methodname>
- <methodparam>
- <funcparams>boolean $useServiceNet = true</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Use the Rackspace 'ServiceNet' internal network.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry id="zend.service.rackspace.files.methods.get-service-net">
- <term>
- <methodsynopsis>
- <methodname>getServiceNet</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Are we using the Rackspace 'ServiceNet' internal network?
- Returns a boolean.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry id="zend.service.rackspace.files.methods.get-auth-url">
- <term>
- <methodsynopsis>
- <methodname>getAuthUrl</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the authentication URL of Rackspace.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-cdn-url">
- <term>
- <methodsynopsis>
- <methodname>getCdnUrl</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the URL for the CDN.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-error-code">
- <term>
- <methodsynopsis>
- <methodname>getErrorCode</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the last HTTP error code.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-error-msg">
- <term>
- <methodsynopsis>
- <methodname>getErrorMsg</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the last error message.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-http-client">
- <term>
- <methodsynopsis>
- <methodname>getHttpClient</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the HTTP client used to call the API of the Rackspace.
- Returns a <classname>Zend_Http_Client</classname> instance.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-key">
- <term>
- <methodsynopsis>
- <methodname>getKey</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the authentication key.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-management-url">
- <term>
- <methodsynopsis>
- <methodname>getManagementUrl</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the URL for the management services.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-storage-url">
- <term>
- <methodsynopsis>
- <methodname>getStorageUrl</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the URL for the storage (files) service.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-token">
- <term>
- <methodsynopsis>
- <methodname>getToken</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the token returned after a successful authentication.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.get-user">
- <term>
- <methodsynopsis>
- <methodname>getUser</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Get the user authenticated with the Rackspace service.
- Returns a string.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.is-successful">
- <term>
- <methodsynopsis>
- <methodname>isSuccessful</methodname>
- <methodparam>
- <funcparams/>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Return <emphasis>true</emphasis> if the last service call was successful, false otherwise.
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.set-auth-url">
- <term>
- <methodsynopsis>
- <methodname>setAuthUrl</methodname>
- <methodparam>
- <funcparams>string $url</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Set the authentication URL to be used.
- </para>
- <para>
- <emphasis>$url</emphasis> is the URL for the authentication
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.set-key">
- <term>
- <methodsynopsis>
- <methodname>setKey</methodname>
- <methodparam>
- <funcparams>string $key</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Set the key for the API authentication.
- </para>
- <para>
- <emphasis>$key</emphasis> is the key string for the authentication
- </para>
- </listitem>
- </varlistentry>
-
- <varlistentry id="zend.service.rackspace.files.methods.set-user">
- <term>
- <methodsynopsis>
- <methodname>setUser</methodname>
- <methodparam>
- <funcparams>string $user</funcparams>
- </methodparam>
- </methodsynopsis>
- </term>
-
- <listitem>
- <para>
- Set the user for the API authentication.
- </para>
- <para>
- <emphasis>$user</emphasis> is the user string for the authentication
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
- </sect2>
- </sect1>
|