docs/vendor/github.com/MSOpenTech/azure-sdk-for-go/clients/imageClient/entities.go

23 lines
402 B
Go

package imageClient
import (
"encoding/xml"
)
type ImageList struct {
XMLName xml.Name `xml:"Images"`
Xmlns string `xml:"xmlns,attr"`
OSImages []OSImage `xml:"OSImage"`
}
type OSImage struct {
Category string
Label string
LogicalSizeInGB string
Name string
OS string
Eula string
Description string
Location string
}