PHP code example of webfoersterei / hetzner-cloud-api-client
1. Go to this page and download the library: Download webfoersterei/hetzner-cloud-api-client 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/ */
webfoersterei / hetzner-cloud-api-client example snippets
define('API_KEY', 'MYSECRETAPIKEY'); # See https://docs.hetzner.cloud/#header-authentication-1
$cloudApiClient = Webfoersterei\HetznerCloudApiClient\ClientFactory::create(API_KEY);
# You can now use the cloudApiClient. E.g:
$cloudApiClient->getServers();
# Require vendors/autoload.php here
define('API_KEY', 'MYSECRETAPIKEY');
$client = \Webfoersterei\HetznerCloudApiClient\ClientFactory::create(API_KEY);
$serverTypes = $client->getServerTypes();
foreach ($serverTypes->server_types as $serverType) {
printf("%--12s CPU: %2d Cores, RAM: %3d GB, Storage: %4d GB (%s)\n", $serverType->name, $serverType->cores,
$serverType->memory, $serverType->disk, $serverType->storage_type);
}
# Require vendors/autoload.php here
define('API_KEY', 'MYSECRETAPIKEY');
$client = \Webfoersterei\HetznerCloudApiClient\ClientFactory::create(API_KEY);
$createServerRequest = new \Webfoersterei\HetznerCloudApiClient\Model\Server\CreateRequest();
$createServerRequest->name = 'my-first-server-created-with-php';
$createServerRequest->server_type = 'cx11';
$createServerRequest->start_after_create = true;
$createServerRequest->image = 1;
echo "Creating server.\n";
$createResponse = $client->createServer($createServerRequest);
$progress = $createResponse->action->progress;
$status = $createResponse->action->status;
while ($progress != 100 && $status != 'success') {
$actionResponse = $client->getAction($createResponse->action->id);
echo $actionResponse->action->progress."%\n";
$progress = $actionResponse->action->progress;
sleep(1);
}
echo sprintf("Server created. Root-PW: %s\n", $createResponse->root_password);
sleep(10);
echo "Deleting server.\n";
$client->deleteServer($createResponse->server->id);
echo "Done.\n";