435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
53 lines
1.2 KiB
Go
53 lines
1.2 KiB
Go
package packngo
|
|
|
|
const facilityBasePath = "/facilities"
|
|
|
|
// FacilityService interface defines available facility methods
|
|
type FacilityService interface {
|
|
List() ([]Facility, *Response, error)
|
|
}
|
|
|
|
type facilityRoot struct {
|
|
Facilities []Facility `json:"facilities"`
|
|
}
|
|
|
|
// Facility represents a Packet facility
|
|
type Facility struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name,omitempty"`
|
|
Code string `json:"code,omitempty"`
|
|
Features []string `json:"features,omitempty"`
|
|
Address *Address `json:"address,omitempty"`
|
|
URL string `json:"href,omitempty"`
|
|
}
|
|
|
|
func (f Facility) String() string {
|
|
return Stringify(f)
|
|
}
|
|
|
|
// Address - the physical address of the facility
|
|
type Address struct {
|
|
ID string `json:"id,omitempty"`
|
|
}
|
|
|
|
func (a Address) String() string {
|
|
return Stringify(a)
|
|
}
|
|
|
|
// FacilityServiceOp implements FacilityService
|
|
type FacilityServiceOp struct {
|
|
client *Client
|
|
}
|
|
|
|
// List returns all available Packet facilities
|
|
func (s *FacilityServiceOp) List() ([]Facility, *Response, error) {
|
|
root := new(facilityRoot)
|
|
|
|
resp, err := s.client.DoRequest("GET", facilityBasePath, nil, root)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return root.Facilities, resp, err
|
|
}
|