-
Notifications
You must be signed in to change notification settings - Fork 12
/
snapshot_policy.go
143 lines (127 loc) · 4.08 KB
/
snapshot_policy.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package dsdk
import (
"context"
_path "path"
greq "github.com/levigross/grequests"
)
type SnapshotPolicy struct {
Path string `json:"path,omitempty" mapstructure:"path"`
Name string `json:"name,omitempty" mapstructure:"name"`
Interval string `json:"interval,omitempty" mapstructure:"interval"`
RetentionCount int `json:"retention_count,omitempty" mapstructure:"retention_count"`
StartTime string `json:"start_time,omitempty" mapstructure:"start_time"`
}
type SnapshotPolicies struct {
Path string
}
type SnapshotPoliciesCreateRequest struct {
Ctxt context.Context `json:"-"`
Name string `json:"name,omitempty" mapstructure:"name"`
Interval string `json:"interval,omitempty" mapstructure:"interval"`
RetentionCount string `json:"retention_count,omitempty" mapstructure:"retention_count"`
StartTime string `json:"start_time,omitempty" mapstructure:"start_time"`
}
func newSnapshotPolicies(path string) *SnapshotPolicies {
return &SnapshotPolicies{
Path: _path.Join(path, "snapshot_policies"),
}
}
func (e *SnapshotPolicies) Create(ro *SnapshotPoliciesCreateRequest) (*SnapshotPolicy, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{JSON: ro}
rs, apierr, err := GetConn(ro.Ctxt).Post(ro.Ctxt, e.Path, gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &SnapshotPolicy{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}
type SnapshotPoliciesListRequest struct {
Ctxt context.Context `json:"-"`
Params ListParams `json:"params,omitempty"`
}
func (e *SnapshotPolicies) List(ro *SnapshotPoliciesListRequest) ([]*SnapshotPolicy, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{
JSON: ro,
Params: ro.Params.ToMap()}
rs, apierr, err := GetConn(ro.Ctxt).GetList(ro.Ctxt, e.Path, gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := []*SnapshotPolicy{}
for _, data := range rs.Data {
elem := &SnapshotPolicy{}
adata := data.(map[string]interface{})
if err = FillStruct(adata, elem); err != nil {
return nil, nil, err
}
resp = append(resp, elem)
}
return resp, nil, nil
}
type SnapshotPoliciesGetRequest struct {
Ctxt context.Context `json:"-"`
Name string `json:"-"`
}
func (e *SnapshotPolicies) Get(ro *SnapshotPoliciesGetRequest) (*SnapshotPolicy, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{JSON: ro}
rs, apierr, err := GetConn(ro.Ctxt).Get(ro.Ctxt, _path.Join(e.Path, ro.Name), gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &SnapshotPolicy{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}
type SnapshotPolicySetRequest struct {
Ctxt context.Context `json:"-"`
Interval string `json:"name,omitempty" mapstructure:"name"`
RetentionCount int `json:"retention_count,omitempty" mapstructure:"retention_count"`
StartTime string `json:"start_time,omitempty" mapstructure:"start_time"`
}
func (e *SnapshotPolicy) Set(ro *SnapshotPolicySetRequest) (*SnapshotPolicy, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{JSON: ro}
rs, apierr, err := GetConn(ro.Ctxt).Put(ro.Ctxt, e.Path, gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &SnapshotPolicy{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}
type SnapshotPolicyDeleteRequest struct {
Ctxt context.Context `json:"-"`
Id string `json:"id,omitempty" mapstructure:"id"`
}
func (e *SnapshotPolicy) Delete(ro *SnapshotPolicyDeleteRequest) (*SnapshotPolicy, *ApiErrorResponse, error) {
rs, apierr, err := GetConn(ro.Ctxt).Delete(ro.Ctxt, e.Path, nil)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &SnapshotPolicy{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}