From 4f7f1f0fba3ed2a0ababaef8de71984da15724c2 Mon Sep 17 00:00:00 2001 From: shiran Date: Tue, 1 Sep 2026 12:53:09 +0800 Subject: [PATCH] feat(eip): expose replacement pricing kind --- client.go | 2 +- types.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/client.go b/client.go index e5271ab..7d5e0aa 100644 --- a/client.go +++ b/client.go @@ -16,7 +16,7 @@ import ( "time" ) -const Version = "0.3.0" +const Version = "0.4.0" type Logger interface { Printf(format string, args ...any) diff --git a/types.go b/types.go index 5eeddad..691fbec 100644 --- a/types.go +++ b/types.go @@ -165,6 +165,7 @@ type PriceEstimate struct { const ( InstanceChangeEIPAdd = "eip_add" + InstanceChangeEIPReplace = "eip_replace" InstanceChangeVolumeCreate = "volume_create" InstanceChangeVolumeExpand = "volume_expand" InstanceChangeRebuildImage = "rebuild_image"