Skip to content

Commit a5694eb

Browse files
authored
feat(baremetal): indicate whether an org can install a specific OS (#1675)
1 parent e4eb8ab commit a5694eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

api/baremetal/v1/baremetal_sdk.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,10 +704,12 @@ type OS struct {
704704
ServiceUser *OSOSField `json:"service_user"`
705705
// ServicePassword: object defining the password requirements to install the service.
706706
ServicePassword *OSOSField `json:"service_password"`
707-
// Enabled: state of OS.
707+
// Enabled: defines if the operating system is enabled or not.
708708
Enabled bool `json:"enabled"`
709709
// LicenseRequired: license required (check server options for pricing details).
710710
LicenseRequired bool `json:"license_required"`
711+
// Allowed: defines if a specific Organization is allowed to install this OS type.
712+
Allowed bool `json:"allowed"`
711713
}
712714

713715
type OSOSField struct {

0 commit comments

Comments
 (0)