PHP code example of google / cloud-compute
1. Go to this page and download the library: Download google/cloud-compute 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/ */
google / cloud-compute example snippets
use Google\ApiCore\ApiException;
use Google\Cloud\Compute\V1\AcceleratorType;
use Google\Cloud\Compute\V1\Client\AcceleratorTypesClient;
use Google\Cloud\Compute\V1\GetAcceleratorTypeRequest;
// Create a client.
$acceleratorTypesClient = new AcceleratorTypesClient();
// Prepare the request message.
$request = (new GetAcceleratorTypeRequest())
->setAcceleratorType($acceleratorType)
->setProject($project)
->setZone($zone);
// Call the API and handle any network failures.
try {
/** @var AcceleratorType $response */
$response = $acceleratorTypesClient->get($request);
printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
} catch (ApiException $ex) {
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
}