diff --git a/power/models/hostgroup_summary.go b/power/models/hostgroup_summary.go deleted file mode 100644 index 6112fd1d..00000000 --- a/power/models/hostgroup_summary.go +++ /dev/null @@ -1,56 +0,0 @@ -// Code generated by go-swagger; DO NOT EDIT. - -package models - -// This file was generated by the swagger tool. -// Editing this file might prove futile when you re-run the swagger generate command - -import ( - "context" - - "github.com/go-openapi/strfmt" - "github.com/go-openapi/swag" -) - -// HostgroupSummary hostgroup summary -// -// swagger:model HostgroupSummary -type HostgroupSummary struct { - - // Whether the hostgroup is a primary or secondary hostgroup - Access string `json:"access,omitempty"` - - // Link to the hostgroup resource - Href string `json:"href,omitempty"` - - // Name of the hostgroup - Name string `json:"name,omitempty"` -} - -// Validate validates this hostgroup summary -func (m *HostgroupSummary) Validate(formats strfmt.Registry) error { - return nil -} - -// ContextValidate validates this hostgroup summary based on context it is used -func (m *HostgroupSummary) ContextValidate(ctx context.Context, formats strfmt.Registry) error { - return nil -} - -// MarshalBinary interface implementation -func (m *HostgroupSummary) MarshalBinary() ([]byte, error) { - if m == nil { - return nil, nil - } - return swag.WriteJSON(m) -} - -// UnmarshalBinary interface implementation -func (m *HostgroupSummary) UnmarshalBinary(b []byte) error { - var res HostgroupSummary - if err := swag.ReadJSON(b, &res); err != nil { - return err - } - *m = res - return nil -}