mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-10 20:05:55 +02:00
100 lines
2.3 KiB
Go
100 lines
2.3 KiB
Go
// 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/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// AllowlistItem AllowlistItem
|
|
//
|
|
// swagger:model AllowlistItem
|
|
type AllowlistItem struct {
|
|
|
|
// creation date of the allowlist item
|
|
// Format: date-time
|
|
CreatedAt strfmt.DateTime `json:"created_at,omitempty"`
|
|
|
|
// description of the allowlist item
|
|
Description string `json:"description,omitempty"`
|
|
|
|
// expiration date of the allowlist item
|
|
// Format: date-time
|
|
Expiration strfmt.DateTime `json:"expiration,omitempty"`
|
|
|
|
// value of the allowlist item
|
|
Value string `json:"value,omitempty"`
|
|
}
|
|
|
|
// Validate validates this allowlist item
|
|
func (m *AllowlistItem) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateCreatedAt(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateExpiration(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AllowlistItem) validateCreatedAt(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.CreatedAt) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := validate.FormatOf("created_at", "body", "date-time", m.CreatedAt.String(), formats); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *AllowlistItem) validateExpiration(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Expiration) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := validate.FormatOf("expiration", "body", "date-time", m.Expiration.String(), formats); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this allowlist item based on context it is used
|
|
func (m *AllowlistItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *AllowlistItem) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *AllowlistItem) UnmarshalBinary(b []byte) error {
|
|
var res AllowlistItem
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|