feat: add immediate and deferred provisioning modes

This commit is contained in:
2026-06-13 17:58:50 +03:30
parent d36b309c9c
commit 082e80606f
7 changed files with 160 additions and 18 deletions
+3 -2
View File
@@ -19,8 +19,9 @@ type Volume struct {
}
type CreateVolumeRequest struct {
Name string `json:"name"`
SizeBytes int64 `json:"size_bytes"`
Name string `json:"name"`
SizeBytes int64 `json:"size_bytes"`
Parameters map[string]string `json:"parameters,omitempty"`
}
type PublishVolumeRequest struct {