You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
808 B
46 lines
808 B
package lb
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
// Request struct for start load balancer
|
|
type StartRequest struct {
|
|
// ID of the LB instance to start
|
|
// Required: true
|
|
LBID uint64 `url:"lbId"`
|
|
}
|
|
|
|
func (lbrq StartRequest) validate() error {
|
|
if lbrq.LBID == 0 {
|
|
return errors.New("validation-error: field LBID must be set")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Start starts specified load balancer instance
|
|
func (lb LB) Start(ctx context.Context, req StartRequest) (bool, error) {
|
|
err := req.validate()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
url := "/cloudbroker/lb/start"
|
|
|
|
res, err := lb.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|