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.
42 lines
862 B
Go
42 lines
862 B
Go
package packngo
|
|
|
|
const osBasePath = "/operating-systems"
|
|
|
|
// OSService interface defines available operating_systems methods
|
|
type OSService interface {
|
|
List() ([]OS, *Response, error)
|
|
}
|
|
|
|
type osRoot struct {
|
|
OperatingSystems []OS `json:"operating_systems"`
|
|
}
|
|
|
|
// OS represents a Packet operating system
|
|
type OS struct {
|
|
Name string `json:"name"`
|
|
Slug string `json:"slug"`
|
|
Distro string `json:"distro"`
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
func (o OS) String() string {
|
|
return Stringify(o)
|
|
}
|
|
|
|
// OSServiceOp implements OSService
|
|
type OSServiceOp struct {
|
|
client *Client
|
|
}
|
|
|
|
// List returns all available operating systems
|
|
func (s *OSServiceOp) List() ([]OS, *Response, error) {
|
|
root := new(osRoot)
|
|
|
|
resp, err := s.client.DoRequest("GET", osBasePath, nil, root)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return root.OperatingSystems, resp, err
|
|
}
|