package grid import ( "context" "net/http" "strconv" "repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/internal/validators" ) // SetMemAllocationRatioRequest struct to set memory allocation type SetMemAllocationRatioRequest struct { // Grid (platform) ID // Required: true GID uint64 `url:"gridId" json:"gridId" validate:"required"` // Allocation ratio // Required: true Ratio float64 `url:"ratio" json:"ratio" validate:"required"` } // SetMemAllocationRatio sets memory allocation ratio func (g Grid) SetMemAllocationRatio(ctx context.Context, req SetMemAllocationRatioRequest) (bool, error) { err := validators.ValidateRequest(req) if err != nil { return false, validators.ValidationErrors(validators.GetErrors(err)) } url := "/cloudbroker/grid/setMemAllocationRatio" res, err := g.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 }