'{username}', 'apiKey' => '{apiKey}', )); // 2. Obtain a Volume service object from the client. $volumeService = $client->volumeService(null, '{region}'); // 3. Get the volume. $volume = $volumeService->volume('{volumeId}'); /** @var $volume OpenCloud\Volume\Resource\Volume **/ echo "ID: " . $volume->id() . " | " . "Name: " . $volume->name() . PHP_EOL;