package image import ( "context" "net/http" "strconv" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/internal/validators" ) type ChangeStoragePolicyRequest struct { // ID of the image to change the storage policy // Required: true ImageID uint64 `url:"image_id" json:"image_id" validate:"required"` // ID of the storage policy to move the image to // Required: true StoragePolicyID uint64 `url:"storage_policy_id" json:"storage_policy_id" validate:"required"` } // ChangeStoragePolicy changes the storage policy of the image chosen func (i Image) ChangeStoragePolicy(ctx context.Context, req ChangeStoragePolicyRequest) (bool, error) { err := validators.ValidateRequest(req) if err != nil { return false, validators.ValidationErrors(validators.GetErrors(err)) } url := "/cloudbroker/image/change_storage_policy" res, err := i.client.DecortApiCall(ctx, http.MethodPost, url, req) if err != nil { return false, err } result, err := strconv.ParseBool(string(res)) if err != nil { return false, err } return result, nil }