83 lines
1.8 KiB
Go
83 lines
1.8 KiB
Go
package extnet
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// SetHAModeRequest struct to set HA mode for external network
|
|
type SetHAModeRequest struct {
|
|
// ID of external network
|
|
// Required: true
|
|
NetID uint64 `url:"net_id" json:"net_id" validate:"required"`
|
|
|
|
// HA Mode
|
|
// Required: true
|
|
HAMode bool `url:"highly_available" json:"highly_available" validate:"required"`
|
|
}
|
|
|
|
type asyncWrapperSetHAModeRequest struct {
|
|
SetHAModeRequest
|
|
AsyncMode bool `url:"async_mode"`
|
|
}
|
|
|
|
// SetHAMode set HA mode for external network
|
|
func (e ExtNet) SetHAMode(ctx context.Context, req SetHAModeRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudbroker/extnet/set_highly_available"
|
|
|
|
syncReq := asyncWrapperSetHAModeRequest{
|
|
SetHAModeRequest: req,
|
|
AsyncMode: true,
|
|
}
|
|
|
|
res, err := e.client.DecortApiCall(ctx, http.MethodPost, url, syncReq)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
// AsyncSetHAMode set HA mode for external network in async mode
|
|
func (e ExtNet) AsyncSetHAMode(ctx context.Context, req SetHAModeRequest) (string, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudbroker/extnet/set_highly_available"
|
|
|
|
syncReq := asyncWrapperSetHAModeRequest{
|
|
SetHAModeRequest: req,
|
|
AsyncMode: true,
|
|
}
|
|
|
|
result, err := e.client.DecortApiCall(ctx, http.MethodPost, url, syncReq)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
var resp string
|
|
|
|
err = json.Unmarshal(result, &resp)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|