forked from linode/linodego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpc_subnet.go
170 lines (145 loc) · 3.81 KB
/
vpc_subnet.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package linodego
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/go-resty/resty/v2"
"github.com/linode/linodego/internal/parseabletime"
)
// VPCSubnetLinodeInterface represents an interface on a Linode that is currently
// assigned to this VPC subnet.
type VPCSubnetLinodeInterface struct {
ID int `json:"id"`
Active bool `json:"active"`
}
// VPCSubnetLinode represents a Linode currently assigned to a VPC subnet.
type VPCSubnetLinode struct {
ID int `json:"id"`
Interfaces []VPCSubnetLinodeInterface `json:"interfaces"`
}
type VPCSubnet struct {
ID int `json:"id"`
Label string `json:"label"`
IPv4 string `json:"ipv4"`
Linodes []VPCSubnetLinode `json:"linodes"`
Created *time.Time `json:"-"`
Updated *time.Time `json:"-"`
}
type VPCSubnetCreateOptions struct {
Label string `json:"label"`
IPv4 string `json:"ipv4"`
}
type VPCSubnetUpdateOptions struct {
Label string `json:"label"`
}
type VPCSubnetsPagedResponse struct {
*PageOptions
Data []VPCSubnet `json:"data"`
}
func (VPCSubnetsPagedResponse) endpoint(ids ...any) string {
id := ids[0].(int)
return fmt.Sprintf("vpcs/%d/subnets", id)
}
func (resp *VPCSubnetsPagedResponse) castResult(
r *resty.Request,
e string,
) (int, int, error) {
res, err := coupleAPIErrors(r.SetResult(VPCSubnetsPagedResponse{}).Get(e))
if err != nil {
return 0, 0, err
}
castedRes := res.Result().(*VPCSubnetsPagedResponse)
resp.Data = append(resp.Data, castedRes.Data...)
return castedRes.Pages, castedRes.Results, nil
}
func (v *VPCSubnet) UnmarshalJSON(b []byte) error {
type Mask VPCSubnet
p := struct {
*Mask
Created *parseabletime.ParseableTime `json:"created"`
Updated *parseabletime.ParseableTime `json:"updated"`
}{
Mask: (*Mask)(v),
}
if err := json.Unmarshal(b, &p); err != nil {
return err
}
v.Created = (*time.Time)(p.Created)
v.Updated = (*time.Time)(p.Updated)
return nil
}
func (v VPCSubnet) GetCreateOptions() VPCSubnetCreateOptions {
return VPCSubnetCreateOptions{
Label: v.Label,
IPv4: v.IPv4,
}
}
func (v VPCSubnet) GetUpdateOptions() VPCSubnetUpdateOptions {
return VPCSubnetUpdateOptions{Label: v.Label}
}
func (c *Client) CreateVPCSubnet(
ctx context.Context,
opts VPCSubnetCreateOptions,
vpcID int,
) (*VPCSubnet, error) {
body, err := json.Marshal(opts)
if err != nil {
return nil, err
}
req := c.R(ctx).SetResult(&VPCSubnet{}).SetBody(string(body))
e := fmt.Sprintf("vpcs/%d/subnets", vpcID)
r, err := coupleAPIErrors(req.Post(e))
if err != nil {
return nil, err
}
return r.Result().(*VPCSubnet), nil
}
func (c *Client) GetVPCSubnet(
ctx context.Context,
vpcID int,
subnetID int,
) (*VPCSubnet, error) {
req := c.R(ctx).SetResult(&VPCSubnet{})
e := fmt.Sprintf("vpcs/%d/subnets/%d", vpcID, subnetID)
r, err := coupleAPIErrors(req.Get(e))
if err != nil {
return nil, err
}
return r.Result().(*VPCSubnet), nil
}
func (c *Client) ListVPCSubnets(
ctx context.Context,
vpcID int,
opts *ListOptions,
) ([]VPCSubnet, error) {
response := VPCSubnetsPagedResponse{}
err := c.listHelper(ctx, &response, opts, vpcID)
if err != nil {
return nil, err
}
return response.Data, nil
}
func (c *Client) UpdateVPCSubnet(
ctx context.Context,
vpcID int,
subnetID int,
opts VPCSubnetUpdateOptions,
) (*VPCSubnet, error) {
body, err := json.Marshal(opts)
if err != nil {
return nil, err
}
req := c.R(ctx).SetResult(&VPCSubnet{}).SetBody(body)
e := fmt.Sprintf("vpcs/%d/subnets/%d", vpcID, subnetID)
r, err := coupleAPIErrors(req.Put(e))
if err != nil {
return nil, err
}
return r.Result().(*VPCSubnet), nil
}
func (c *Client) DeleteVPCSubnet(ctx context.Context, vpcID int, subnetID int) error {
e := fmt.Sprintf("vpcs/%d/subnets/%d", vpcID, subnetID)
_, err := coupleAPIErrors(c.R(ctx).Delete(e))
return err
}