This commit is contained in:
stSolo
2023-01-23 15:39:41 +03:00
parent ef0dac9b3a
commit 7ddd8c5fbe
39 changed files with 869 additions and 301 deletions

45
pkg/cloudapi/lb/start.go Normal file
View File

@@ -0,0 +1,45 @@
package lb
import (
"context"
"errors"
"net/http"
"strconv"
)
// Request struct for start load balancer
type StartRequest struct {
// ID of the load balancer 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 can not be empty or equal to 0")
}
return nil
}
// Start starts specified load balancer instance
func (l LB) Start(ctx context.Context, req StartRequest) (bool, error) {
err := req.validate()
if err != nil {
return false, err
}
url := "/cloudapi/lb/start"
res, err := l.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
}

45
pkg/cloudapi/lb/stop.go Normal file
View File

@@ -0,0 +1,45 @@
package lb
import (
"context"
"errors"
"net/http"
"strconv"
)
// Request struct for stop load balancer
type StopRequest struct {
// ID of the load balancer instance to stop
// Required: true
LBID uint64 `url:"lbId"`
}
func (lbrq StopRequest) validate() error {
if lbrq.LBID == 0 {
return errors.New("validation-error: field LBID can not be empty or equal to 0")
}
return nil
}
// Stop stops specified load balancer instance
func (l LB) Stop(ctx context.Context, req StopRequest) (bool, error) {
err := req.validate()
if err != nil {
return false, err
}
url := "/cloudapi/lb/start"
res, err := l.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
}