forked from thecodeteam/goisilon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quota.go
42 lines (31 loc) · 1.08 KB
/
quota.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package goisilon
import (
"context"
api "github.com/thecodeteam/goisilon/api/v1"
)
type Quota *api.IsiQuota
// GetQuota returns a specific quota by path
func (c *Client) GetQuota(ctx context.Context, name string) (Quota, error) {
quota, err := api.GetIsiQuota(ctx, c.API, c.API.VolumePath(name))
if err != nil {
return nil, err
}
return quota, nil
}
// TODO: Add a means to set/update more fields of the quota
// SetQuota sets the max size (hard threshold) of a quota for a volume
func (c *Client) SetQuotaSize(
ctx context.Context, name string, size int64) error {
return api.SetIsiQuotaHardThreshold(
ctx, c.API, c.API.VolumePath(name), size)
}
// UpdateQuota modifies the max size (hard threshold) of a quota for a volume
func (c *Client) UpdateQuotaSize(
ctx context.Context, name string, size int64) error {
return api.UpdateIsiQuotaHardThreshold(
ctx, c.API, c.API.VolumePath(name), size)
}
// ClearQuota removes the quota from a volume
func (c *Client) ClearQuota(ctx context.Context, name string) error {
return api.DeleteIsiQuota(ctx, c.API, c.API.VolumePath(name))
}