Files
decort-golang-sdk/pkg/cloudbroker/disks/resize.go

88 lines
2.3 KiB
Go
Raw Normal View History

2022-10-03 16:56:47 +03:00
package disks
import (
"context"
2026-08-28 16:36:41 +03:00
"encoding/json"
2022-10-03 16: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-10-03 16:56:47 +03:00
)
2023-10-25 17:37:18 +03:00
// ResizeRequest struct to resize disk
2022-10-03 16:56:47 +03:00
type ResizeRequest struct {
2022-12-22 17:56:47 +03:00
// ID of the disk to resize
// Required: true
2023-03-24 17:09:30 +03:00
DiskID uint64 `url:"diskId" json:"diskId" validate:"required"`
2022-12-22 17:56:47 +03:00
// New size of the disk in GB
// Required: true
2023-03-24 17:09:30 +03:00
Size uint64 `url:"size" json:"size" validate:"required"`
2022-10-03 16:56:47 +03:00
}
2026-08-28 16:36:41 +03:00
type wrapperResizeRequest struct {
ResizeRequest
AsyncMode bool `url:"async_mode" json:"async_mode"`
}
2022-12-22 17:56:47 +03:00
// Resize2 resize disk
// Returns 200 if disk is resized online, else will return 202,
// in that case please stop and start your machine after changing the disk size, for your changes to be reflected.
// This method will not be used for disks, assigned to "old" virtual machines. Only unassigned disks and disks, assigned with computes.
2022-10-03 16:56:47 +03:00
func (d Disks) Resize2(ctx context.Context, req ResizeRequest) (bool, error) {
2023-03-24 17:09:30 +03:00
err := validators.ValidateRequest(req)
2022-10-03 16:56:47 +03:00
if err != nil {
2023-10-25 17:37:18 +03:00
return false, validators.ValidationErrors(validators.GetErrors(err))
2022-10-03 16:56:47 +03:00
}
url := "/cloudbroker/disks/resize2"
2026-08-28 16:36:41 +03:00
wrappedReq := wrapperResizeRequest{
ResizeRequest: req,
AsyncMode: false,
}
res, err := d.client.DecortApiCall(ctx, http.MethodPost, url, wrappedReq)
2022-10-03 16: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-08-28 16:36:41 +03:00
// Resize2Async resizes disk in async mode
// Returns 200 if disk is resized online, else will return 202,
// in that case please stop and start your machine after changing the disk size, for your changes to be reflected.
// This method will not be used for disks, assigned to "old" virtual machines. Only unassigned disks and disks, assigned with computes.
func (d Disks) Resize2Async(ctx context.Context, req ResizeRequest) (string, error) {
err := validators.ValidateRequest(req)
if err != nil {
return "", validators.ValidationErrors(validators.GetErrors(err))
}
url := "/cloudbroker/disks/resize2"
wrappedReq := wrapperResizeRequest{
ResizeRequest: req,
AsyncMode: true,
}
res, err := d.client.DecortApiCall(ctx, http.MethodPost, url, wrappedReq)
if err != nil {
return "", err
}
var result string
if err := json.Unmarshal(res, &result); err != nil {
return "", err
}
return result, nil
}