987f119c4b
* v3 model generation * v3 model generation * comms * fixes after master merge * missing reader close * use constants defined for types --------- Co-authored-by: bui <thibault@crowdsec.net>
179 lines
4.2 KiB
Go
179 lines
4.2 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package modelscapi
|
|
|
|
// 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/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// DecisionsSyncRequestItemDecisionsItem Decision
|
|
//
|
|
// swagger:model DecisionsSyncRequestItemDecisionsItem
|
|
type DecisionsSyncRequestItemDecisionsItem struct {
|
|
|
|
// duration
|
|
// Required: true
|
|
Duration *string `json:"duration"`
|
|
|
|
// (only relevant for GET ops) the unique id
|
|
// Required: true
|
|
ID *int64 `json:"id"`
|
|
|
|
// the origin of the decision : cscli, crowdsec
|
|
// Required: true
|
|
Origin *string `json:"origin"`
|
|
|
|
// scenario
|
|
// Required: true
|
|
Scenario *string `json:"scenario"`
|
|
|
|
// the scope of decision : does it apply to an IP, a range, a username, etc
|
|
// Required: true
|
|
Scope *string `json:"scope"`
|
|
|
|
// simulated
|
|
Simulated bool `json:"simulated,omitempty"`
|
|
|
|
// the type of decision, might be 'ban', 'captcha' or something custom. Ignored when watcher (cscli/crowdsec) is pushing to APIL.
|
|
// Required: true
|
|
Type *string `json:"type"`
|
|
|
|
// until
|
|
Until string `json:"until,omitempty"`
|
|
|
|
// the value of the decision scope : an IP, a range, a username, etc
|
|
// Required: true
|
|
Value *string `json:"value"`
|
|
}
|
|
|
|
// Validate validates this decisions sync request item decisions item
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateDuration(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateID(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateOrigin(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateScenario(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateScope(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateType(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateValue(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateDuration(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("duration", "body", m.Duration); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateID(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("id", "body", m.ID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateOrigin(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("origin", "body", m.Origin); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateScenario(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("scenario", "body", m.Scenario); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateScope(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("scope", "body", m.Scope); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateType(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("type", "body", m.Type); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) validateValue(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("value", "body", m.Value); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this decisions sync request item decisions item based on context it is used
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *DecisionsSyncRequestItemDecisionsItem) UnmarshalBinary(b []byte) error {
|
|
var res DecisionsSyncRequestItemDecisionsItem
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|