1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
<?php
/**
* PHP OpenCloud library.
*
* @copyright 2014 Rackspace Hosting, Inc. See LICENSE for information.
* @license https://www.apache.org/licenses/LICENSE-2.0
* @author Glen Campbell <glen.campbell@rackspace.com>
* @author Jamie Hannaford <jamie.hannaford@rackspace.com>
*/
namespace OpenCloud\Database;
use OpenCloud\Common\Service\NovaService;
use OpenCloud\OpenStack;
/**
* The Rackspace Database As A Service (aka "Red Dwarf")
*/
class Service extends NovaService
{
const DEFAULT_TYPE = 'rax:database';
const DEFAULT_NAME = 'cloudDatabases';
/**
* Returns a list of flavors
*
* just call the parent FlavorList() method, but pass FALSE
* because the /flavors/detail resource is not supported
*
* @api
* @return \OpenCloud\Compute\FlavorList
*/
public function flavorList($details = false, array $filter = array())
{
return parent::flavorList(false);
}
/**
* Creates a Instance object
*
* @api
* @param string $id the ID of the instance to retrieve
* @return DbService\Instance
*/
public function instance($id = null)
{
return new Resource\Instance($this, $id);
}
/**
* Creates a Collection of Instance objects
*
* @api
* @param array $params array of parameters to pass to the request as
* query strings
* @return Collection
*/
public function instanceList($params = array())
{
return $this->collection('OpenCloud\Database\Resource\Instance', null, null, $params);
}
}
|