hetzner-cloud-php-sdk
hetzner-cloud-php-sdk copied to clipboard
A PHP SDK for the Hetzner Cloud API
This can't be meant how it's to be used is it? ```php $lb = $hetznerClient->loadBalancers()->getByName('...'); foreach($lb->targets as $target) { $ip = new LoadBalancerTargetIp($target->ip->ip); $lb->removeTarget('ip', $ip); } ``` Same for addTarget...
with the release of the Arm64 servers, getByName() on images now fails and reports that there are several architectures for this image. Some way to specify the architecture required would...
Hi: The serverType object seem to be missing the architecture element. This is needed to distinguish between ARM and X86 servers. It's in the REST API docs but not seem...
Hello. According to the [documentation](https://docs.hetzner.cloud/#volumes-get-a-volume), a volume should have a `status` property but the `Volume` model does not have it. Could you add it? If needed, I can open a...
When I got an unassigned primary IP and I want to get all of them using the all() function, I get an error like this: ``` TypeError: LKDev/HetznerCloud/Models/PrimaryIps/PrimaryIp::_constructor(): Argument #12...