-
Notifications
You must be signed in to change notification settings - Fork 1
/
subnet.go
81 lines (69 loc) · 2.74 KB
/
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
package nutanix
import (
"context"
"fmt"
"net/http"
"github.com/tecbiz-ch/nutanix-go-sdk/pkg/utils"
"github.com/tecbiz-ch/nutanix-go-sdk/schema"
)
const (
subnetBasePath = "/subnets"
subnetListPath = subnetBasePath + "/list"
subnetSinglePath = subnetBasePath + "/%s"
)
// SubnetClient is a client for the subnet API.
type SubnetClient struct {
client *Client
}
// Get retrieves an subnet by its UUID if the input can be parsed as an uuid, otherwise it
// retrieves an subnet by its name
func (c *SubnetClient) Get(ctx context.Context, idOrName string) (*schema.SubnetIntent, error) {
if utils.IsValidUUID(idOrName) {
return c.GetByUUID(ctx, idOrName)
}
return c.GetByName(ctx, idOrName)
}
// GetByUUID retrieves a subnet by its UUID
func (c *SubnetClient) GetByUUID(ctx context.Context, uuid string) (*schema.SubnetIntent, error) {
response := new(schema.SubnetIntent)
err := c.client.requestHelper(ctx, fmt.Sprintf(subnetSinglePath, uuid), http.MethodGet, nil, response)
return response, err
}
// GetByName retrieves an subnet by its name
func (c *SubnetClient) GetByName(ctx context.Context, name string) (*schema.SubnetIntent, error) {
list, err := c.List(ctx, &schema.DSMetadata{Filter: fmt.Sprintf("name==%s", name)})
if err != nil {
return nil, err
}
if len(list.Entities) == 0 {
return nil, fmt.Errorf("subnet not found: %s", name)
}
return list.Entities[0], err
}
// List returns a list of subnets for a specific page.
func (c *SubnetClient) List(ctx context.Context, opts *schema.DSMetadata) (*schema.SubnetListIntent, error) {
response := new(schema.SubnetListIntent)
err := c.client.requestHelper(ctx, subnetListPath, http.MethodPost, opts, response)
return response, err
}
// All returns all subnets
func (c *SubnetClient) All(ctx context.Context) (*schema.SubnetListIntent, error) {
return c.List(ctx, &schema.DSMetadata{Length: utils.Int64Ptr(itemsPerPage), Offset: utils.Int64Ptr(0)})
}
// Update a subnet
func (c *SubnetClient) Update(ctx context.Context, updateRequest *schema.SubnetIntent) (*schema.SubnetIntent, error) {
updateRequest.Status = nil
response := new(schema.SubnetIntent)
err := c.client.requestHelper(ctx, fmt.Sprintf(subnetSinglePath, updateRequest.Metadata.UUID), http.MethodPut, updateRequest, response)
return response, err
}
// Create a subnet
func (c *SubnetClient) Create(ctx context.Context, createRequest *schema.SubnetIntent) (*schema.SubnetIntent, error) {
response := new(schema.SubnetIntent)
err := c.client.requestHelper(ctx, subnetBasePath, http.MethodPost, createRequest, response)
return response, err
}
// Delete a subnet
func (c *SubnetClient) Delete(ctx context.Context, uuid string) error {
return c.client.requestHelper(ctx, fmt.Sprintf(subnetSinglePath, uuid), http.MethodDelete, nil, nil)
}