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>
105 lines
2.4 KiB
Go
105 lines
2.4 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"
|
|
)
|
|
|
|
// ResetPasswordRequest resetPassword
|
|
//
|
|
// # ResetPassword request model
|
|
//
|
|
// swagger:model ResetPasswordRequest
|
|
type ResetPasswordRequest struct {
|
|
|
|
// machine_id is a (username) generated by crowdsec
|
|
// Required: true
|
|
// Max Length: 48
|
|
// Min Length: 48
|
|
// Pattern: ^[a-zA-Z0-9]+$
|
|
MachineID *string `json:"machine_id"`
|
|
|
|
// Password, should respect the password policy (link to add)
|
|
// Required: true
|
|
Password *string `json:"password"`
|
|
}
|
|
|
|
// Validate validates this reset password request
|
|
func (m *ResetPasswordRequest) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateMachineID(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validatePassword(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ResetPasswordRequest) validateMachineID(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("machine_id", "body", m.MachineID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.MinLength("machine_id", "body", *m.MachineID, 48); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.MaxLength("machine_id", "body", *m.MachineID, 48); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.Pattern("machine_id", "body", *m.MachineID, `^[a-zA-Z0-9]+$`); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *ResetPasswordRequest) validatePassword(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("password", "body", m.Password); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this reset password request based on context it is used
|
|
func (m *ResetPasswordRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *ResetPasswordRequest) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *ResetPasswordRequest) UnmarshalBinary(b []byte) error {
|
|
var res ResetPasswordRequest
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|