diff --git a/Compute/src/V1/README.md b/Compute/src/V1/README.md deleted file mode 100644 index b7b14e0934b..00000000000 --- a/Compute/src/V1/README.md +++ /dev/null @@ -1,15 +0,0 @@ - -# Google Cloud Compute V1 generated client for PHP - -### Sample - -```php -require 'vendor/autoload.php'; - -use Google\Cloud\Compute\V1\InstancesClient; - -$instances = new InstancesClient(); -foreach ($instances->list_('[MY_PROJECT_ID]', 'us-west1') as $instance) { - print($instance->getName() . PHP_EOL); -} -```