-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexample.php
46 lines (30 loc) · 1.62 KB
/
example.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
40
41
42
43
44
45
46
<?php
require __DIR__ . '/vendor/autoload.php';
use Corbpie\VultrAPIv2\VultrAPI;
$vultr = new VultrAPI();
echo $vultr->listServers();//Data for all current account instances
$vultr->setSubId('31828385');//Must be set if interacting with a single instance actions
$vultr->serverReboot(); //Reboots/restarts instance with id:31828385
echo $vultr->responseAsString($vultr->serverDestroy());//Prints Success on HTTP 200 returned, else says Failed
$vultr->listRegions();//Returns regions
$vultr->listPlans();//Returns plans
$vultr->listISOs();//Returns ISO's
$vultr->listApps();//Returns Vultr one click apps
$vultr->listSnapshots();//Returns account snapshots
$vultr->listOS();//Returns vultr operating systems
//Creating a new instance
//First view:
$vultr->serverCreateOptions();
//For all options
//Create instance from snapshot:
$vultr->serverCreateDC('syd');//Sydney Australia location
$vultr->serverCreatePlan('vc2-2c-4gb');
$vultr->serverCreateType('SNAPSHOT', 'YQrb72d9-ded9-4f68-a5cg-7d4f96a534de');//Deploy with my snapshot id:YQrb72d9-ded9-4f68-a5cg-7d4f96a534de
$vultr->serverCreateLabel('Created with API x2');//label instance as "Created with API"
echo $vultr->serverCreate();//Creates instance/server with parameters set above (returns subid)
//DC, plan and type are required
$vultr->serverCreateDC('syd');//Sydney Australia location
$vultr->serverCreatePlan('vc2-2c-4gb');
$vultr->serverCreateType('ISO', 146817);//Deploy with my custom ISO id:146817
$vultr->serverCreateLabel('Created with API');//label instance as "Created with API"
echo $vultr->serverCreate();//Creates instance/server with parameters set above (returns subid)