76 lines
1.7 KiB
Go
76 lines
1.7 KiB
Go
package compute
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// DiskDetachRequest struct to detach disk from compute
|
|
type DiskDetachRequest struct {
|
|
// ID of compute instance
|
|
// Required: true
|
|
ComputeID uint64 `url:"computeId" json:"computeId" validate:"required"`
|
|
|
|
// ID of the disk to detach
|
|
// Required: true
|
|
DiskID uint64 `url:"diskId" json:"diskId" validate:"required"`
|
|
}
|
|
|
|
type wrapperDiskDetachRequest struct {
|
|
DiskDetachRequest
|
|
|
|
AsyncMode bool `url:"asyncMode"`
|
|
}
|
|
|
|
// DiskDetach detaches disk from compute
|
|
func (c Compute) DiskDetach(ctx context.Context, req DiskDetachRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
reqWrapped := wrapperDiskDetachRequest{
|
|
DiskDetachRequest: req,
|
|
AsyncMode: false,
|
|
}
|
|
|
|
url := "/cloudbroker/compute/diskDetach"
|
|
|
|
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
|
|
}
|
|
|
|
// DiskDetachAsync detaches disk from compute with AsyncMode
|
|
func (c Compute) DiskDetachAsync(ctx context.Context, req DiskDetachRequest) (string, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
reqWrapped := wrapperDiskDetachRequest{
|
|
DiskDetachRequest: req,
|
|
AsyncMode: true,
|
|
}
|
|
|
|
url := "/cloudbroker/compute/diskDetach"
|
|
|
|
res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, reqWrapped)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return string(res), nil
|
|
}
|