traefik/vendor/github.com/exoscale/egoscale/templates.go

121 lines
7.3 KiB
Go
Raw Normal View History

package egoscale
2019-03-14 10:04:04 +00:00
// Template represents a machine to be deployed.
type Template struct {
2018-09-14 08:06:03 +00:00
Account string `json:"account,omitempty" doc:"the account name to which the template belongs"`
AccountID *UUID `json:"accountid,omitempty" doc:"the account id to which the template belongs"`
Bootable bool `json:"bootable,omitempty" doc:"true if the ISO is bootable, false otherwise"`
Checksum string `json:"checksum,omitempty" doc:"checksum of the template"`
Created string `json:"created,omitempty" doc:"the date this template was created"`
CrossZones bool `json:"crossZones,omitempty" doc:"true if the template is managed across all Zones, false otherwise"`
Details map[string]string `json:"details,omitempty" doc:"additional key/value details tied with template"`
DisplayText string `json:"displaytext,omitempty" doc:"the template display text"`
Format string `json:"format,omitempty" doc:"the format of the template."`
HostID *UUID `json:"hostid,omitempty" doc:"the ID of the secondary storage host for the template"`
HostName string `json:"hostname,omitempty" doc:"the name of the secondary storage host for the template"`
ID *UUID `json:"id,omitempty" doc:"the template ID"`
IsDynamicallyScalable bool `json:"isdynamicallyscalable,omitempty" doc:"true if template contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory"`
IsExtractable bool `json:"isextractable,omitempty" doc:"true if the template is extractable, false otherwise"`
IsFeatured bool `json:"isfeatured,omitempty" doc:"true if this template is a featured template, false otherwise"`
IsPublic bool `json:"ispublic,omitempty" doc:"true if this template is a public template, false otherwise"`
IsReady bool `json:"isready,omitempty" doc:"true if the template is ready to be deployed from, false otherwise."`
Name string `json:"name,omitempty" doc:"the template name"`
OsTypeID *UUID `json:"ostypeid,omitempty" doc:"the ID of the OS type for this template."`
OsTypeName string `json:"ostypename,omitempty" doc:"the name of the OS type for this template."`
PasswordEnabled bool `json:"passwordenabled,omitempty" doc:"true if the reset password feature is enabled, false otherwise"`
Removed string `json:"removed,omitempty" doc:"the date this template was removed"`
Size int64 `json:"size,omitempty" doc:"the size of the template"`
SourceTemplateID *UUID `json:"sourcetemplateid,omitempty" doc:"the template ID of the parent template if present"`
SSHKeyEnabled bool `json:"sshkeyenabled,omitempty" doc:"true if template is sshkey enabled, false otherwise"`
Status string `json:"status,omitempty" doc:"the status of the template"`
Tags []ResourceTag `json:"tags,omitempty" doc:"the list of resource tags associated with tempate"`
TemplateDirectory string `json:"templatedirectory,omitempty" doc:"Template directory"`
TemplateTag string `json:"templatetag,omitempty" doc:"the tag of this template"`
TemplateType string `json:"templatetype,omitempty" doc:"the type of the template"`
URL string `json:"url,omitempty" doc:"Original URL of the template where it was downloaded"`
ZoneID *UUID `json:"zoneid,omitempty" doc:"the ID of the zone for this template"`
ZoneName string `json:"zonename,omitempty" doc:"the name of the zone for this template"`
}
// ResourceType returns the type of the resource
2018-09-14 08:06:03 +00:00
func (Template) ResourceType() string {
return "Template"
}
2018-09-14 08:06:03 +00:00
// ListRequest builds the ListTemplates request
2019-03-14 10:04:04 +00:00
func (template Template) ListRequest() (ListCommand, error) {
2018-09-14 08:06:03 +00:00
req := &ListTemplates{
2019-03-14 10:04:04 +00:00
ID: template.ID,
Name: template.Name,
ZoneID: template.ZoneID,
2018-09-14 08:06:03 +00:00
}
2019-03-14 10:04:04 +00:00
if template.IsFeatured {
2018-09-14 08:06:03 +00:00
req.TemplateFilter = "featured"
}
2019-03-14 10:04:04 +00:00
if template.Removed != "" {
2018-09-14 08:06:03 +00:00
*req.ShowRemoved = true
}
2019-03-14 10:04:04 +00:00
for i := range template.Tags {
req.Tags = append(req.Tags, template.Tags[i])
}
2018-09-14 08:06:03 +00:00
return req, nil
}
2019-03-14 10:04:04 +00:00
//go:generate go run generate/main.go -interface=Listable ListTemplates
// ListTemplates represents a template query filter
type ListTemplates struct {
2019-03-14 10:04:04 +00:00
TemplateFilter string `json:"templatefilter" doc:"Possible values are \"featured\", \"self\", \"selfexecutable\",\"sharedexecutable\",\"executable\", and \"community\". * featured : templates that have been marked as featured and public. * self : templates that have been registered or created by the calling user. * selfexecutable : same as self, but only returns templates that can be used to deploy a new VM. * sharedexecutable : templates ready to be deployed that have been granted to the calling user by another user. * executable : templates that are owned by the calling user, or public templates, that can be used to deploy a VM. * community : templates that have been marked as public but not featured."`
2018-09-14 08:06:03 +00:00
ID *UUID `json:"id,omitempty" doc:"the template ID"`
Keyword string `json:"keyword,omitempty" doc:"List by keyword"`
Name string `json:"name,omitempty" doc:"the template name"`
Page int `json:"page,omitempty"`
PageSize int `json:"pagesize,omitempty"`
2019-03-14 10:04:04 +00:00
ShowRemoved *bool `json:"showremoved,omitempty" doc:"Show removed templates as well"`
2018-09-14 08:06:03 +00:00
Tags []ResourceTag `json:"tags,omitempty" doc:"List resources by tags (key/value pairs)"`
2019-03-14 10:04:04 +00:00
ZoneID *UUID `json:"zoneid,omitempty" doc:"list templates by zoneid"`
2018-09-14 08:06:03 +00:00
_ bool `name:"listTemplates" description:"List all public, private, and privileged templates."`
}
2018-09-14 08:06:03 +00:00
// ListTemplatesResponse represents a list of templates
type ListTemplatesResponse struct {
Count int `json:"count"`
Template []Template `json:"template"`
}
2019-03-14 10:04:04 +00:00
// OSCategory represents an OS category
type OSCategory struct {
ID *UUID `json:"id,omitempty" doc:"the ID of the OS category"`
Name string `json:"name,omitempty" doc:"the name of the OS category"`
}
2019-03-14 10:04:04 +00:00
// ListRequest builds the ListOSCategories request
func (osCat OSCategory) ListRequest() (ListCommand, error) {
req := &ListOSCategories{
Name: osCat.Name,
ID: osCat.ID,
2018-09-14 08:06:03 +00:00
}
2019-03-14 10:04:04 +00:00
return req, nil
2018-09-14 08:06:03 +00:00
}
2019-03-14 10:04:04 +00:00
//go:generate go run generate/main.go -interface=Listable ListOSCategories
2018-09-14 08:06:03 +00:00
// ListOSCategories lists the OS categories
type ListOSCategories struct {
2019-03-14 10:04:04 +00:00
ID *UUID `json:"id,omitempty" doc:"list Os category by id"`
2018-09-14 08:06:03 +00:00
Keyword string `json:"keyword,omitempty" doc:"List by keyword"`
Name string `json:"name,omitempty" doc:"list os category by name"`
Page int `json:"page,omitempty"`
PageSize int `json:"pagesize,omitempty"`
_ bool `name:"listOsCategories" description:"Lists all supported OS categories for this cloud."`
}
// ListOSCategoriesResponse represents a list of OS categories
type ListOSCategoriesResponse struct {
Count int `json:"count"`
OSCategory []OSCategory `json:"oscategory"`
}