forked from shiftstack/prune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolumesnapshots.go
55 lines (46 loc) · 1.18 KB
/
volumesnapshots.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
package main
import (
"context"
"time"
"github.com/gophercloud/gophercloud/v2"
"github.com/gophercloud/gophercloud/v2/openstack/blockstorage/v3/snapshots"
"github.com/gophercloud/gophercloud/v2/pagination"
)
type Snapshot struct {
resource *snapshots.Snapshot
client *gophercloud.ServiceClient
}
func (s Snapshot) CreatedAt() time.Time {
return s.resource.CreatedAt
}
func (s Snapshot) Delete(ctx context.Context) error {
return snapshots.Delete(ctx, s.client, s.resource.ID).ExtractErr()
}
func (s Snapshot) Type() string {
return "volume snapshot"
}
func (s Snapshot) ID() string {
return s.resource.ID
}
func (s Snapshot) Name() string {
return s.resource.Name
}
func ListVolumeSnapshots(ctx context.Context, client *gophercloud.ServiceClient) <-chan Resource {
ch := make(chan Resource)
go func() {
defer close(ch)
if err := snapshots.List(client, nil).EachPage(ctx, func(_ context.Context, page pagination.Page) (bool, error) {
resources, err := snapshots.ExtractSnapshots(page)
for i := range resources {
ch <- &Snapshot{
resource: &resources[i],
client: client,
}
}
return true, err
}); err != nil {
panic(err)
}
}()
return ch
}