From ec9960e4f5e8d3bfc8075798a1739b481f8772ef Mon Sep 17 00:00:00 2001 From: dvoretskiy Date: Fri, 31 Oct 2025 13:17:46 +0300 Subject: [PATCH] Fix required project ID for datastore creation --- datastore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datastore.go b/datastore.go index 80ef7df..7a9decc 100644 --- a/datastore.go +++ b/datastore.go @@ -111,7 +111,7 @@ type DatastoreCreateOpts struct { TypeID string `json:"type_id"` SubnetID string `json:"subnet_id"` FlavorID string `json:"flavor_id,omitempty"` - ProjectID string `json:"project_id"` + ProjectID string `json:"project_id,omitempty"` RedisPassword string `json:"redis_password,omitempty"` Name string `json:"name"` SecurityGroups []string `json:"security_groups,omitempty"`