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

79 lines
1.6 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
// EnableRequest struct to enable VINS
2022-12-22 17:56:47 +03:00
type EnableRequest 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 asyncWrapperEnableRequest struct {
EnableRequest
AsyncMode bool `url:"asyncMode"`
}
2022-12-22 17:56:47 +03:00
// Enable enables VINS by ID
func (v VINS) Enable(ctx context.Context, req EnableRequest) (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/enable"
2026-09-15 17:23:58 +03:00
syncReq := asyncWrapperEnableRequest{
EnableRequest: 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
// Enable enables VINS by ID in async mode
func (v VINS) AsyncEnable(ctx context.Context, req EnableRequest) (string, error) {
err := validators.ValidateRequest(req)
if err != nil {
return "", validators.ValidationErrors(validators.GetErrors(err))
}
url := "/cloudbroker/vins/enable"
asyncReq := asyncWrapperEnableRequest{
EnableRequest: 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
}