package compute import ( "context" "net/http" "strconv" "repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators" ) // 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"` } type wrapperStopRequest struct { StopRequest AsyncMode bool `url:"asyncMode"` } // 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)) } reqWrapped := wrapperStopRequest{ StopRequest: req, AsyncMode: false, } url := "/cloudapi/compute/stop" res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, reqWrapped) if err != nil { return false, err } result, err := strconv.ParseBool(string(res)) if err != nil { return false, err } return result, nil } // 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 }