From e088bc5983dd245386e0faaf1e2ef95bf32b73dc Mon Sep 17 00:00:00 2001 From: Anthony O'Brien Date: Tue, 21 Jan 2020 13:37:28 -0500 Subject: [PATCH] remove unused ServerOptionsInput struct --- fastly/server.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/fastly/server.go b/fastly/server.go index dd976966a..3bcedb286 100644 --- a/fastly/server.go +++ b/fastly/server.go @@ -34,17 +34,6 @@ func (s serversByAddress) Less(i, j int) bool { return s[i].Address < s[j].Address } -// ServerOptionsInput is used to define the optional fields for a server. It is -// used as part of create and update server operations. -type ServerOptionsInput struct { - Comment string `form:"comment,omitempty"` - Weight uint `form:"weight,omitempty"` - MaxConn uint `form:"max_conn,omitempty"` - Port uint `form:"port,omitempty"` - Disabled bool `form:"disabled,omitempty"` - OverrideHost string `form:"override_host,omitempty"` -} - // ListServersInput is used as input to the ListServers function. type ListServersInput struct { // Service is the ID of the service (required).