| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
|
|
| package models |
|
|
| |
| |
|
|
| import ( |
| "context" |
| "encoding/json" |
|
|
| "github.com/go-openapi/errors" |
| "github.com/go-openapi/strfmt" |
| "github.com/go-openapi/swag" |
| "github.com/go-openapi/validate" |
| ) |
|
|
| |
| |
| |
| type Classification struct { |
|
|
| |
| |
| BasedOnProperties []string `json:"basedOnProperties"` |
|
|
| |
| |
| Class string `json:"class,omitempty"` |
|
|
| |
| |
| ClassifyProperties []string `json:"classifyProperties"` |
|
|
| |
| |
| Error string `json:"error,omitempty"` |
|
|
| |
| Filters *ClassificationFilters `json:"filters,omitempty"` |
|
|
| |
| |
| |
| ID strfmt.UUID `json:"id,omitempty"` |
|
|
| |
| Meta *ClassificationMeta `json:"meta,omitempty"` |
|
|
| |
| Settings interface{} `json:"settings,omitempty"` |
|
|
| |
| |
| |
| Status string `json:"status,omitempty"` |
|
|
| |
| Type string `json:"type,omitempty"` |
| } |
|
|
| |
| func (m *Classification) Validate(formats strfmt.Registry) error { |
| var res []error |
|
|
| if err := m.validateFilters(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateID(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateMeta(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateStatus(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|
| func (m *Classification) validateFilters(formats strfmt.Registry) error { |
| if swag.IsZero(m.Filters) { |
| return nil |
| } |
|
|
| if m.Filters != nil { |
| if err := m.Filters.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *Classification) validateID(formats strfmt.Registry) error { |
| if swag.IsZero(m.ID) { |
| return nil |
| } |
|
|
| if err := validate.FormatOf("id", "body", "uuid", m.ID.String(), formats); err != nil { |
| return err |
| } |
|
|
| return nil |
| } |
|
|
| func (m *Classification) validateMeta(formats strfmt.Registry) error { |
| if swag.IsZero(m.Meta) { |
| return nil |
| } |
|
|
| if m.Meta != nil { |
| if err := m.Meta.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("meta") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("meta") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| var classificationTypeStatusPropEnum []interface{} |
|
|
| func init() { |
| var res []string |
| if err := json.Unmarshal([]byte(`["running","completed","failed"]`), &res); err != nil { |
| panic(err) |
| } |
| for _, v := range res { |
| classificationTypeStatusPropEnum = append(classificationTypeStatusPropEnum, v) |
| } |
| } |
|
|
| const ( |
|
|
| |
| ClassificationStatusRunning string = "running" |
|
|
| |
| ClassificationStatusCompleted string = "completed" |
|
|
| |
| ClassificationStatusFailed string = "failed" |
| ) |
|
|
| |
| func (m *Classification) validateStatusEnum(path, location string, value string) error { |
| if err := validate.EnumCase(path, location, value, classificationTypeStatusPropEnum, true); err != nil { |
| return err |
| } |
| return nil |
| } |
|
|
| func (m *Classification) validateStatus(formats strfmt.Registry) error { |
| if swag.IsZero(m.Status) { |
| return nil |
| } |
|
|
| |
| if err := m.validateStatusEnum("status", "body", m.Status); err != nil { |
| return err |
| } |
|
|
| return nil |
| } |
|
|
| |
| func (m *Classification) ContextValidate(ctx context.Context, formats strfmt.Registry) error { |
| var res []error |
|
|
| if err := m.contextValidateFilters(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.contextValidateMeta(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|
| func (m *Classification) contextValidateFilters(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.Filters != nil { |
| if err := m.Filters.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *Classification) contextValidateMeta(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.Meta != nil { |
| if err := m.Meta.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("meta") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("meta") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| |
| func (m *Classification) MarshalBinary() ([]byte, error) { |
| if m == nil { |
| return nil, nil |
| } |
| return swag.WriteJSON(m) |
| } |
|
|
| |
| func (m *Classification) UnmarshalBinary(b []byte) error { |
| var res Classification |
| if err := swag.ReadJSON(b, &res); err != nil { |
| return err |
| } |
| *m = res |
| return nil |
| } |
|
|
| |
| |
| |
| type ClassificationFilters struct { |
|
|
| |
| SourceWhere *WhereFilter `json:"sourceWhere,omitempty"` |
|
|
| |
| TargetWhere *WhereFilter `json:"targetWhere,omitempty"` |
|
|
| |
| TrainingSetWhere *WhereFilter `json:"trainingSetWhere,omitempty"` |
| } |
|
|
| |
| func (m *ClassificationFilters) Validate(formats strfmt.Registry) error { |
| var res []error |
|
|
| if err := m.validateSourceWhere(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateTargetWhere(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.validateTrainingSetWhere(formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|
| func (m *ClassificationFilters) validateSourceWhere(formats strfmt.Registry) error { |
| if swag.IsZero(m.SourceWhere) { |
| return nil |
| } |
|
|
| if m.SourceWhere != nil { |
| if err := m.SourceWhere.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters" + "." + "sourceWhere") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters" + "." + "sourceWhere") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *ClassificationFilters) validateTargetWhere(formats strfmt.Registry) error { |
| if swag.IsZero(m.TargetWhere) { |
| return nil |
| } |
|
|
| if m.TargetWhere != nil { |
| if err := m.TargetWhere.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters" + "." + "targetWhere") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters" + "." + "targetWhere") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *ClassificationFilters) validateTrainingSetWhere(formats strfmt.Registry) error { |
| if swag.IsZero(m.TrainingSetWhere) { |
| return nil |
| } |
|
|
| if m.TrainingSetWhere != nil { |
| if err := m.TrainingSetWhere.Validate(formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters" + "." + "trainingSetWhere") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters" + "." + "trainingSetWhere") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| |
| func (m *ClassificationFilters) ContextValidate(ctx context.Context, formats strfmt.Registry) error { |
| var res []error |
|
|
| if err := m.contextValidateSourceWhere(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.contextValidateTargetWhere(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if err := m.contextValidateTrainingSetWhere(ctx, formats); err != nil { |
| res = append(res, err) |
| } |
|
|
| if len(res) > 0 { |
| return errors.CompositeValidationError(res...) |
| } |
| return nil |
| } |
|
|
| func (m *ClassificationFilters) contextValidateSourceWhere(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.SourceWhere != nil { |
| if err := m.SourceWhere.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters" + "." + "sourceWhere") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters" + "." + "sourceWhere") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *ClassificationFilters) contextValidateTargetWhere(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.TargetWhere != nil { |
| if err := m.TargetWhere.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters" + "." + "targetWhere") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters" + "." + "targetWhere") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| func (m *ClassificationFilters) contextValidateTrainingSetWhere(ctx context.Context, formats strfmt.Registry) error { |
|
|
| if m.TrainingSetWhere != nil { |
| if err := m.TrainingSetWhere.ContextValidate(ctx, formats); err != nil { |
| if ve, ok := err.(*errors.Validation); ok { |
| return ve.ValidateName("filters" + "." + "trainingSetWhere") |
| } else if ce, ok := err.(*errors.CompositeError); ok { |
| return ce.ValidateName("filters" + "." + "trainingSetWhere") |
| } |
| return err |
| } |
| } |
|
|
| return nil |
| } |
|
|
| |
| func (m *ClassificationFilters) MarshalBinary() ([]byte, error) { |
| if m == nil { |
| return nil, nil |
| } |
| return swag.WriteJSON(m) |
| } |
|
|
| |
| func (m *ClassificationFilters) UnmarshalBinary(b []byte) error { |
| var res ClassificationFilters |
| if err := swag.ReadJSON(b, &res); err != nil { |
| return err |
| } |
| *m = res |
| return nil |
| } |
|
|