mirror of
https://github.com/bloomberg/goldpinger.git
synced 2026-02-14 18:09:50 +00:00
Signed-off-by: kitfoman <thaddeusgetachew@gmail.com> make timeout flags backwards compatible Signed-off-by: kitfoman <thaddeusgetachew@gmail.com>
79 lines
1.7 KiB
Go
79 lines
1.7 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"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// ProbeResults probe results
|
|
//
|
|
// swagger:model ProbeResults
|
|
type ProbeResults map[string][]ProbeResult
|
|
|
|
// Validate validates this probe results
|
|
func (m ProbeResults) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
for k := range m {
|
|
|
|
if err := validate.Required(k, "body", m[k]); err != nil {
|
|
return err
|
|
}
|
|
|
|
for i := 0; i < len(m[k]); i++ {
|
|
|
|
if err := m[k][i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName(k + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName(k + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this probe results based on the context it is used
|
|
func (m ProbeResults) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
for k := range m {
|
|
|
|
for i := 0; i < len(m[k]); i++ {
|
|
|
|
if err := m[k][i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName(k + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName(k + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|