Skip to content

Commit

Permalink
Add AutoSSL struct
Browse files Browse the repository at this point in the history
  • Loading branch information
mondragonfx committed Jan 16, 2025
1 parent b46b835 commit ef27a80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion load_balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ type LoadBalancer struct {
HealthCheck *HealthCheck `json:"health_check,omitempty"`
GenericInfo *GenericInfo `json:"generic_info,omitempty"`
SSLInfo *bool `json:"has_ssl,omitempty"`
AutoSSL *AutoSSL `json:"auto_ssl,omitempty"`
HTTP2 *bool `json:"http2,omitempty"`
HTTP3 *bool `json:"http3,omitempty"`
ForwardingRules []ForwardingRule `json:"forwarding_rules,omitempty"`
Expand All @@ -64,7 +65,7 @@ type LoadBalancerReq struct {
StickySessions *StickySessions `json:"sticky_session,omitempty"`
ForwardingRules []ForwardingRule `json:"forwarding_rules,omitempty"`
SSL *SSL `json:"ssl,omitempty"`
AutoSSL *SSL `json:"auto_ssl,omitempty"`
AutoSSL *AutoSSL `json:"auto_ssl,omitempty"`
SSLRedirect *bool `json:"ssl_redirect,omitempty"`
HTTP2 *bool `json:"http2,omitempty"`
HTTP3 *bool `json:"http3,omitempty"`
Expand Down

0 comments on commit ef27a80

Please sign in to comment.