forked from ionos-enterprise/ionos-enterprise-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
location.go
59 lines (51 loc) · 1.86 KB
/
location.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
package profitbricks
import (
"net/http"
"strings"
)
// Location object
type Location struct {
ID string `json:"id,omitempty"`
PBType string `json:"type,omitempty"`
Href string `json:"href,omitempty"`
Metadata Metadata `json:"metadata,omitempty"`
Properties LocationProperties `json:"properties,omitempty"`
Response string `json:"Response,omitempty"`
Headers *http.Header `json:"headers,omitempty"`
StatusCode int `json:"statuscode,omitempty"`
}
// Locations object
type Locations struct {
ID string `json:"id,omitempty"`
PBType string `json:"type,omitempty"`
Href string `json:"href,omitempty"`
Items []Location `json:"items,omitempty"`
Response string `json:"Response,omitempty"`
Headers *http.Header `json:"headers,omitempty"`
StatusCode int `json:"statuscode,omitempty"`
}
// LocationProperties object
type LocationProperties struct {
Name string `json:"name,omitempty"`
Features []string `json:"features,omitempty"`
ImageAliases []string `json:"imageAliases,omitempty"`
}
// ListLocations returns location collection data
func (c *Client) ListLocations() (*Locations, error) {
ret := &Locations{}
return ret, c.GetOK(locationsPath(), ret)
}
// GetRegionalLocations returns a list of available locations in a specific region
func (c *Client) GetRegionalLocations(regid string) (*Locations, error) {
ret := &Locations{}
return ret, c.GetOK(locationRegionPath(regid), ret)
}
// GetLocation returns location data
func (c *Client) GetLocation(locid string) (*Location, error) {
ret := &Location{}
parts := strings.SplitN(locid, "/", 2)
if len(parts) != 2 {
return nil, NewClientError(InvalidInput, "Invalid location id")
}
return ret, c.GetOK(locationPath(parts[0], parts[1]), ret)
}