Files
decort-golang-sdk/pkg/cloudbroker/vins/vnfdev_redeploy.go

79 lines
1.7 KiB
Go
Raw Normal View History

2022-12-22 17:56:47 +03:00
package vins
import (
"context"
2026-09-15 17:23:58 +03:00
"encoding/json"
2022-12-22 17:56:47 +03:00
"net/http"
"strconv"
2023-03-24 17:09:30 +03:00
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
2022-12-22 17:56:47 +03:00
)
2023-10-25 17:37:18 +03:00
// VNFDevRedeployRequest struct to redeploy VNF devices
2022-12-22 17:56:47 +03:00
type VNFDevRedeployRequest struct {
// VINS ID
// Required: true
2023-03-24 17:09:30 +03:00
VINSID uint64 `url:"vinsId" json:"vinsId" validate:"required"`
2022-12-22 17:56:47 +03:00
}
2026-09-15 17:23:58 +03:00
type asyncWrapperVNFDevRedeployRequest struct {
VNFDevRedeployRequest
AsyncMode bool `url:"asyncMode"`
}
2023-10-25 17:37:18 +03:00
// VNFDevRedeploy redeploys VINS VNFDevs
2022-12-22 17:56:47 +03:00
func (v VINS) VNFDevRedeploy(ctx context.Context, req VNFDevRedeployRequest) (bool, error) {
2023-03-24 17:09:30 +03:00
err := validators.ValidateRequest(req)
2022-12-22 17:56:47 +03:00
if err != nil {
2023-10-25 17:37:18 +03:00
return false, validators.ValidationErrors(validators.GetErrors(err))
2022-12-22 17:56:47 +03:00
}
url := "/cloudbroker/vins/vnfdevRedeploy"
2026-09-15 17:23:58 +03:00
syncReq := asyncWrapperVNFDevRedeployRequest{
VNFDevRedeployRequest: req,
AsyncMode: false,
}
res, err := v.client.DecortApiCall(ctx, http.MethodPost, url, syncReq)
2022-12-22 17:56:47 +03:00
if err != nil {
return false, err
}
result, err := strconv.ParseBool(string(res))
if err != nil {
return false, err
}
return result, nil
}
2026-09-15 17:23:58 +03:00
// VNFDevRedeploy redeploys VINS VNFDevs in async mode
func (v VINS) AsyncVNFDevRedeploy(ctx context.Context, req VNFDevRedeployRequest) (string, error) {
err := validators.ValidateRequest(req)
if err != nil {
return "", validators.ValidationErrors(validators.GetErrors(err))
}
url := "/cloudbroker/vins/vnfdevRedeploy"
asyncReq := asyncWrapperVNFDevRedeployRequest{
VNFDevRedeployRequest: req,
AsyncMode: true,
}
result, err := v.client.DecortApiCall(ctx, http.MethodPost, url, asyncReq)
if err != nil {
return "", err
}
var resp string
err = json.Unmarshal(result, &resp)
if err != nil {
return "", err
}
return resp, nil
}