@@ -197,6 +197,7 @@ type Volume struct {
197197 Product string `json:"product,omitempty"`
198198 Status string `json:"status,omitempty"`
199199 Version string `json:"version,omitempty"`
200+ Active bool `json:"active,omitempty"`
200201 Media []struct {
201202 Defaultbootlocation bool `json:"defaultBootLocation,omitempty"`
202203 Name string `json:"name,omitempty"`
@@ -212,7 +213,6 @@ type Images struct {
212213type Image struct {
213214 Name string `json:"name,omitempty"`
214215 Fullpath string `json:"fullPath,omitempty"`
215- Basebuild string `json:"basebuild,omitempty"`
216216 Build string `json:"build,omitempty"`
217217 BuildDate string `json:"buildDate,omitempty"`
218218 Checksum string `json:"checksum,omitempty"`
@@ -229,8 +229,9 @@ type Hotfixes struct {
229229
230230type Hotfix struct {
231231 Name string `json:"name,omitempty"`
232+ Id string `json:"id,omitempty"`
233+ Title string `json:"title,omitempty"`
232234 Fullpath string `json:"fullPath,omitempty"`
233- Basebuild string `json:"basebuild,omitempty"`
234235 Build string `json:"build,omitempty"`
235236 BuildDate string `json:"buildDate,omitempty"`
236237 Checksum string `json:"checksum,omitempty"`
@@ -262,10 +263,10 @@ func (o *OptionReboot) getOption() bool {
262263}
263264
264265type InstallConfig struct {
265- Command string `json:"command"`
266- Name string `json:"name"`
267- Volume string `json:"volume"`
268- Options []Options
266+ Command string `json:"command"`
267+ Name string `json:"name"`
268+ Volume string `json:"volume"`
269+ Options []Options `json:"options"`
269270}
270271
271272type Bigiplicenses struct {
0 commit comments