Volumes Actions
Attach Volume to a Server
HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("ApiKey");
long volumeId = 100051962;
long serverId = 38911232;
Action action = await hetznerCloudClient.VolumeAction.Attach(volumeId, serverId);Detach Volume
HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("ApiKey");
long volumeId = 100051962;
Action action = await hetznerCloudClient.VolumeAction.Detach(volumeId);Resize Volume
Change Volume Protection
Get all Actions for a Volume
Get an Action for a Volume
Get all Actions
Get an Action
Last updated