2025-09-23 14:34:24 +03:00
|
|
|
package compute
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"net/http"
|
|
|
|
|
"strconv"
|
|
|
|
|
|
2026-06-05 17:30:36 +03:00
|
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
|
2025-09-23 14:34:24 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// StopRequest struct to stop compute
|
|
|
|
|
type StopRequest struct {
|
|
|
|
|
// ID of compute instance
|
|
|
|
|
// Required: true
|
|
|
|
|
ComputeID uint64 `url:"computeId" json:"computeId" validate:"required"`
|
|
|
|
|
|
|
|
|
|
// Force stop compute
|
|
|
|
|
// Required: false
|
|
|
|
|
Force bool `url:"force,omitempty" json:"force,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-05 17:30:36 +03:00
|
|
|
type wrapperStopRequest struct {
|
|
|
|
|
StopRequest
|
|
|
|
|
|
|
|
|
|
AsyncMode bool `url:"asyncMode"`
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-23 14:34:24 +03:00
|
|
|
// Stop stops compute
|
|
|
|
|
func (c Compute) Stop(ctx context.Context, req StopRequest) (bool, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-05 17:30:36 +03:00
|
|
|
reqWrapped := wrapperStopRequest{
|
|
|
|
|
StopRequest: req,
|
|
|
|
|
AsyncMode: false,
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-23 14:34:24 +03:00
|
|
|
url := "/cloudapi/compute/stop"
|
|
|
|
|
|
2026-06-05 17:30:36 +03:00
|
|
|
res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, reqWrapped)
|
2025-09-23 14:34:24 +03:00
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|
2026-06-05 17:30:36 +03:00
|
|
|
|
|
|
|
|
// StopAsync stops compute with AsyncMode
|
|
|
|
|
func (c Compute) StopAsync(ctx context.Context, req StopRequest) (string, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reqWrapped := wrapperStopRequest{
|
|
|
|
|
StopRequest: req,
|
|
|
|
|
AsyncMode: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudapi/compute/stop"
|
|
|
|
|
|
|
|
|
|
res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, reqWrapped)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string(res), nil
|
|
|
|
|
}
|