Skip to content

Commit

Permalink
fix(CLOUDDEV-499): changed allowedcidr
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Davydov committed Apr 1, 2024
1 parent 42347e2 commit eef6e9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions loadbalancers.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,10 @@ type LoadbalancerListenerCreateRequest struct {

// ListenerUpdateRequest represents a request to update a Loadbalancer Listener.
type ListenerUpdateRequest struct {
Name string `json:"name,omitempty"`
SecretID string `json:"secret_id,omitempty"`
SNISecretID []string `json:"sni_secret_id,omitempty"`
AllowedCIDRs []string `json:"allowed_cidrs,omitempty"`
Name string `json:"name,omitempty"`
SecretID string `json:"secret_id,omitempty"`
SNISecretID []string `json:"sni_secret_id,omitempty"`
AllowedCIDRs *[]string `json:"allowed_cidrs,omitempty"`
}

type LoadbalancerListenerProtocol string
Expand Down

0 comments on commit eef6e9e

Please sign in to comment.