π¦ Volumes
Get all Volumes
HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("ApiKey");
// Get All
List<Volume> listVolume = await hetznerCloudClient.Volume.Get();Get a Volume
HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("ApiKey");
long volumeId = 100051904;
// Get
Volume volume = await hetznerCloudClient.Volume.Get(volumeId);Update a Volume
Delete a Volume
JSON
Last updated