Skip to content

Commit

Permalink
load balancer : add regional network as new LB type (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddatta-do committed Jan 22, 2024
1 parent c154e94 commit b2afa34
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions load_balancers.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ const (

// Load Balancer types.
const (
LoadBalancerTypeGlobal = "GLOBAL"
LoadBalancerTypeRegional = "REGIONAL"
LoadBalancerTypeGlobal = "GLOBAL"
LoadBalancerTypeRegional = "REGIONAL"
LoadBalancerTypeRegionalNetwork = "REGIONAL_NETWORK"
)

// LoadBalancersService is an interface for managing load balancers with the DigitalOcean API.
Expand Down

0 comments on commit b2afa34

Please sign in to comment.