List Volumes
package main
import (
"context"
"fmt"
"github.com/nirvana-labs/nirvana-go"
"github.com/nirvana-labs/nirvana-go/compute"
"github.com/nirvana-labs/nirvana-go/option"
)
func main() {
client := nirvana.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.Compute.Volumes.List(context.TODO(), compute.VolumeListParams{
ProjectID: "project_id",
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2025-01-01T00:00:00Z",
"kind": "boot",
"name": "my-volume",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"region": "us-sva-2",
"size": 100,
"status": "ready",
"tags": [
"production",
"ethereum"
],
"type": "abs",
"updated_at": "2025-01-01T00:00:00Z",
"vm_id": "123e4567-e89b-12d3-a456-426614174000",
"vm_name": "my-vm"
}
],
"pagination": {
"next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
"previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
"total_count": 125
}
}Returns Examples
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "2025-01-01T00:00:00Z",
"kind": "boot",
"name": "my-volume",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"region": "us-sva-2",
"size": 100,
"status": "ready",
"tags": [
"production",
"ethereum"
],
"type": "abs",
"updated_at": "2025-01-01T00:00:00Z",
"vm_id": "123e4567-e89b-12d3-a456-426614174000",
"vm_name": "my-vm"
}
],
"pagination": {
"next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
"previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
"total_count": 125
}
}