forked from virtuozzo/OnApp-PHP-Wrapper-External
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EdgeServer.php
39 lines (37 loc) · 892 Bytes
/
EdgeServer.php
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
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* Managing Edge Servers
*
*
* @category API wrapper
* @package OnApp
* @author Yakubskiy Yuriy
* @copyright © 2011 OnApp
* @link http://www.onapp.com/
* @see OnApp
*/
/**
* Edge Server
*
* The Edge Server class represents the Edge Server of the OnAPP installation.
*
* The OnApp_EdgeServer class uses the following basic methods:
* {@link getList} and {@link load} and .
*
* For full fields reference and curl request details visit: ( http://help.onapp.com/manual.php?m=2 )
*/
class OnApp_EdgeServer extends OnApp_VirtualMachine {
/**
* root tag used in the API request
*
* @var string
*/
var $_tagRoot = 'edge_server';
/**
* alias processing the object data
*
* @var string
*/
var $_resource = 'edge_servers';
}