mirror of
https://github.com/bloomberg/goldpinger.git
synced 2026-02-14 18:09:50 +00:00
63 lines
1.2 KiB
Go
63 lines
1.2 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/validate"
|
|
)
|
|
|
|
// DNSResults Dns results
|
|
//
|
|
// swagger:model DnsResults
|
|
type DNSResults map[string]DNSResult
|
|
|
|
// Validate validates this Dns results
|
|
func (m DNSResults) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
for k := range m {
|
|
|
|
if err := validate.Required(k, "body", m[k]); err != nil {
|
|
return err
|
|
}
|
|
if val, ok := m[k]; ok {
|
|
if err := val.Validate(formats); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this Dns results based on the context it is used
|
|
func (m DNSResults) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
for k := range m {
|
|
|
|
if val, ok := m[k]; ok {
|
|
if err := val.ContextValidate(ctx, formats); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|