mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
6681a86211
There are three "deeper" changes included with this update: 1) The `Detach` function got removed from the `StorageActionsService` in favor of `DetachByDropletID` (which is now used in `resource_digitalocean_volume.go`). 2) The `Update` function got removed from `TagsService` (renaming a tag has been deprecated in the API). 3) Every function in godo now takes a `context.Context` as first argument, so I've changed all calls to send in a `context.Background()`.
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
package godo
|
|
|
|
import "github.com/digitalocean/godo/context"
|
|
|
|
// RegionsService is an interface for interfacing with the regions
|
|
// endpoints of the DigitalOcean API
|
|
// See: https://developers.digitalocean.com/documentation/v2#regions
|
|
type RegionsService interface {
|
|
List(context.Context, *ListOptions) ([]Region, *Response, error)
|
|
}
|
|
|
|
// RegionsServiceOp handles communication with the region related methods of the
|
|
// DigitalOcean API.
|
|
type RegionsServiceOp struct {
|
|
client *Client
|
|
}
|
|
|
|
var _ RegionsService = &RegionsServiceOp{}
|
|
|
|
// Region represents a DigitalOcean Region
|
|
type Region struct {
|
|
Slug string `json:"slug,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Sizes []string `json:"sizes,omitempty"`
|
|
Available bool `json:"available,omitempty"`
|
|
Features []string `json:"features,omitempty"`
|
|
}
|
|
|
|
type regionsRoot struct {
|
|
Regions []Region
|
|
Links *Links `json:"links"`
|
|
}
|
|
|
|
func (r Region) String() string {
|
|
return Stringify(r)
|
|
}
|
|
|
|
// List all regions
|
|
func (s *RegionsServiceOp) List(ctx context.Context, opt *ListOptions) ([]Region, *Response, error) {
|
|
path := "v2/regions"
|
|
path, err := addOptions(path, opt)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest(ctx, "GET", path, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
root := new(regionsRoot)
|
|
resp, err := s.client.Do(ctx, req, root)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
if l := root.Links; l != nil {
|
|
resp.Links = l
|
|
}
|
|
|
|
return root.Regions, resp, err
|
|
}
|