File: volumes_types.go

package info (click to toggle)
golang-github-linode-linodego 1.55.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,112 kB
  • sloc: makefile: 96; sh: 52; python: 24
file content (45 lines) | stat: -rw-r--r-- 1,049 bytes parent folder | download | duplicates (2)
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
package linodego

import (
	"context"
)

// VolumeType represents a single valid Volume type.
type VolumeType struct {
	baseType[VolumeTypePrice, VolumeTypeRegionPrice]
}

// VolumeTypePrice represents the base hourly and monthly prices
// for a volume type entry.
type VolumeTypePrice struct {
	baseTypePrice
}

// VolumeTypeRegionPrice represents the regional hourly and monthly prices
// for a volume type entry.
type VolumeTypeRegionPrice struct {
	baseTypeRegionPrice
}

// ListVolumeTypes lists Volume types. This endpoint is cached by default.
func (c *Client) ListVolumeTypes(ctx context.Context, opts *ListOptions) ([]VolumeType, error) {
	e := "volumes/types"

	endpoint, err := generateListCacheURL(e, opts)
	if err != nil {
		return nil, err
	}

	if result := c.getCachedResponse(endpoint); result != nil {
		return result.([]VolumeType), nil
	}

	response, err := getPaginatedResults[VolumeType](ctx, c, e, opts)
	if err != nil {
		return nil, err
	}

	c.addCachedResponse(endpoint, response, &cacheExpiryTime)

	return response, nil
}