PHP code example of leolabs / gdapi-php
1. Go to this page and download the library: Download leolabs/gdapi-php library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
leolabs / gdapi-php example snippets
= 'https://api.cloud.secureserver.net/v1/schemas';
$access_key = 'your-access-key';
$secret_key = 'your-secret-key';
$client = new \GDAPI\Client($url, $access_key, $secret_key);
= 'https://api.cloud.secureserver.net/v1/schemas';
$access_key = 'your-access-key';
$secret_key = 'your-secret-key';
$client = new \GDAPI\Client($url, $access_key, $secret_key);
$machines = $client->virtualmachine->query();
echo "There are " . count($machines) . " machines:\n";
foreach ( $machines as $machine )
{
echo $machine->getName() . "\n";
}
$http_balancers = $client->loadbalancers->query(array(
'publicStartPort' => 80,
));
$privileged_portforwards = $client->portforwards->query(array(
'publicStartPort' => array('modifier' => 'lt', 'value' => 1024)
));
$active_machines = $client->virtualmachine->query(array(
'removed' => array('modifier' => 'null')
));
$complicated = $client->portforwards->query(array(
'name' => 'asdf',
'removed' => array('modifier' => 'null'),
'publicStartPort' => array(
array('modifier' => 'gt', 'value' => 1024)
array('modifier' => 'lt', 'value' => 2048)
),
));
$machine = $client->virtualmachine->getById('your-machine-id');
$machine = $client->virtualmachine->getById('your-machine-id');
$privateIp = $machine->getPrivateIpv4Address(); // e.g. '10.1.1.3'
$size = $machine->getRamSizeMb(); // e.g. 1024
$machine = $client->virtualmachine->getById('your-machine-id');
$machine->setName('bigger machine');
$machine->setOffering('2gb-4cpu');
// Save the changes
$result = $machine->save();
$network = $client->network->create(array(
'name' => 'My Network',
'domain' => 'mynetwork.local',
'ipv4Cidr' => '192.168.0.0/24'
));
$machine = $client->virtualmachine->getById('your-machine-id');
$result = $machine->remove();
$result = $client->virtualmachine->remove('your-machine-id');
$machine = $client->virtualmachine->getById('your-machine-id');
$result = $machine->doRestart();
$machine = $client->virtualmachine->getById('your-machine-id');
$network = $machine->fetchNetwork(); // Network resource
$volumes = $machine->fetchVolumes(); // Collection of Volume resources
try
{
$machine = $client->virtualmachine->getById('your-machine-id');
echo "I found it";
}
catch ( \GDAPI\NotFoundException $e )
{
echo "I couldn't find that machine";
}
catch ( \GDAPI\APIException $e )
{
echo "Something else went wrong";
}
$options = array(
'throw_exceptions' => false
);
$client = new \GDAPI\Client($url, $access_key, $secret_key, $options);
$result = $client->virtualmachine->getById('your-machine-id');
if ( $result instanceof \GDAPI\Error )
{
if ( $result->getStatus() == 404 )
{
echo "I couldn't find that machine";
}
else
{
echo "Something else went wrong: " . print_r($result,true);
}
}
else
{
echo "I found it";
}
class MyVM extends \GDAPI\Resource
{
function getFQDN()
{
$network = $this->fetchNetwork();
return $this->getName() . "." . $network->getDomain();
}
}
class MyLoadBalancer extends \GDAPI\Resource
{
function getFQDN()
{
$network = $this->fetchNetwork();
return $this->getName() . "." . $network->getDomain();
}
}
$classmap = array(
'virtualmachine' => 'MyVM',
'loadbalancer' => 'MyLoadBalancer'
);
$options = array(
'classmap' => $classmap
);
$client = new \GDAPI\Client($url, $access_key, $secret_key, $options);
$machines = $client->virtualmachine->query();
echo "There are " . count($machines) . " machines:\n";
foreach ( $machines as $machine )
{
echo $machine->getFQDN() ."\n";
}
$options = array(
'ca_cert' => '/path/to/cacert.pem'
);
$client = new \GDAPI\Client($url, $access_key, $secret_key, $options);