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
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// DiskSwitchToReplicationRequest struct to switch disk to it's replication
|
|
|
|
|
type DiskSwitchToReplicationRequest struct {
|
|
|
|
|
// ID of compute instance
|
|
|
|
|
// Required: true
|
|
|
|
|
ComputeID uint64 `url:"computeId" json:"computeId" validate:"required"`
|
|
|
|
|
|
|
|
|
|
// ID of the disk to switch
|
|
|
|
|
// Required: true
|
|
|
|
|
DiskID uint64 `url:"diskId" json:"diskId" validate:"required"`
|
|
|
|
|
|
|
|
|
|
// Delete replication relationship
|
|
|
|
|
// Required: false
|
|
|
|
|
StopReplication bool `url:"stopReplication" json:"stopReplication"`
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-05 17:30:36 +03:00
|
|
|
type wrapperDiskSwitchToReplicationRequest struct {
|
|
|
|
|
DiskSwitchToReplicationRequest
|
|
|
|
|
|
|
|
|
|
AsyncMode bool `url:"asyncMode"`
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-23 14:34:24 +03:00
|
|
|
// DiskSwitchToReplication switches disk to it's replication
|
|
|
|
|
func (c Compute) DiskSwitchToReplication(ctx context.Context, req DiskSwitchToReplicationRequest) (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 := wrapperDiskSwitchToReplicationRequest{
|
|
|
|
|
DiskSwitchToReplicationRequest: req,
|
|
|
|
|
AsyncMode: false,
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-23 14:34:24 +03:00
|
|
|
url := "/cloudapi/compute/diskSwitchToReplication"
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
// DiskSwitchToReplicationAsync switches disk to it's replication with AsyncMode
|
|
|
|
|
func (c Compute) DiskSwitchToReplicationAsync(ctx context.Context, req DiskSwitchToReplicationRequest) (string, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reqWrapped := wrapperDiskSwitchToReplicationRequest{
|
|
|
|
|
DiskSwitchToReplicationRequest: req,
|
|
|
|
|
AsyncMode: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudapi/compute/diskSwitchToReplication"
|
|
|
|
|
|
|
|
|
|
res, err := c.client.DecortApiCall(ctx, http.MethodPost, url, reqWrapped)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string(res), nil
|
|
|
|
|
}
|