From 1be16fad27b240562c101251279ff68b4fbdd303 Mon Sep 17 00:00:00 2001 From: Scaleway Bot Date: Wed, 8 Jan 2025 10:31:24 +0100 Subject: [PATCH] feat(webhosting): add option support (#2381) --- api/webhosting/v1/webhosting_sdk.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/webhosting/v1/webhosting_sdk.go b/api/webhosting/v1/webhosting_sdk.go index 379124ce..a11596ac 100644 --- a/api/webhosting/v1/webhosting_sdk.go +++ b/api/webhosting/v1/webhosting_sdk.go @@ -572,6 +572,7 @@ const ( OfferOptionNameDedicatedIP = OfferOptionName("dedicated_ip") OfferOptionNameEmailStorageGb = OfferOptionName("email_storage_gb") OfferOptionNameDatabaseCount = OfferOptionName("database_count") + OfferOptionNameSupport = OfferOptionName("support") ) func (enum OfferOptionName) String() string { @@ -594,6 +595,7 @@ func (enum OfferOptionName) Values() []OfferOptionName { "dedicated_ip", "email_storage_gb", "database_count", + "support", } }