From 76870c180a272b0b5e0cd6e29452932d23a1a96f Mon Sep 17 00:00:00 2001 From: Andrei Lukyanchyk Date: Mon, 4 Dec 2023 17:33:36 +0100 Subject: [PATCH] CDI-440: remove deprecated Let's Encrypt fields --- resources/resources.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/resources/resources.go b/resources/resources.go index 2b720eb..b8b6386 100644 --- a/resources/resources.go +++ b/resources/resources.go @@ -39,8 +39,6 @@ type CreateRequest struct { SecondaryHostnames []string `json:"secondaryHostnames,omitempty"` SSlEnabled bool `json:"sslEnabled"` SSLData int `json:"sslData,omitempty"` - SSLAutomated bool `json:"ssl_automated"` - IssueLECert bool `json:"le_issue,omitempty"` Options *gcore.Options `json:"options,omitempty"` } @@ -52,7 +50,6 @@ type UpdateRequest struct { SecondaryHostnames []string `json:"secondaryHostnames"` SSlEnabled bool `json:"sslEnabled"` SSLData int `json:"sslData,omitempty"` - SSLAutomated bool `json:"ssl_automated"` Options *gcore.Options `json:"options,omitempty"` } @@ -71,7 +68,6 @@ type Resource struct { Shielded bool `json:"shielded"` SSlEnabled bool `json:"sslEnabled"` SSLData int `json:"sslData"` - SSLAutomated bool `json:"ssl_automated"` OriginProtocol Protocol `json:"originProtocol"` Options *gcore.Options `json:"options"` }