1: <?php
2: /**
3: * PHP OpenCloud library.
4: *
5: * @copyright Copyright 2013 Rackspace US, Inc. See COPYING for licensing information.
6: * @license https://www.apache.org/licenses/LICENSE-2.0 Apache 2.0
7: * @version 1.6.0
8: * @author Glen Campbell <glen.campbell@rackspace.com>
9: * @author Jamie Hannaford <jamie.hannaford@rackspace.com>
10: */
11:
12: namespace OpenCloud\LoadBalancer\Resources;
13:
14: /**
15: * Used to get a list of billable load balancers for a specific date range
16: */
17: class BillableLoadBalancer extends ReadOnly
18: {
19:
20: protected static $url_resource = 'loadbalancers/billable';
21: protected static $json_name = null;
22: }
23: