Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContainerImage ¶
type Software ¶
type Software struct {
Links lowlevel.LinkList `json:"_links,omitempty"`
Identifier string `json:"identifier"`
Name string `json:"name"`
Versions []Version `json:"versions"`
}
func (*Software) LatestVersion ¶
type SoftwareClient ¶
type SoftwareClient interface {
List() ([]Software, error)
ListWithVersions() ([]Software, error)
Get(softwareID string) (*Software, error)
}
func NewSoftwareClient ¶
func NewSoftwareClient(client *lowlevel.SpacesLowlevelClient, group string) SoftwareClient
type Version ¶
type Version struct {
Number string `json:"number"`
HREF string `json:"href,omitempty"`
ContainerImage ContainerImage `json:"containerImage"`
}
Click to show internal directories.
Click to hide internal directories.