zrok/rest_model_zrok/service.go

119 lines
2.5 KiB
Go
Raw Normal View History

2022-08-03 20:36:40 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package rest_model_zrok
// 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"
2022-08-03 20:36:40 +02:00
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Service service
//
// swagger:model service
type Service struct {
// backend
Backend string `json:"backend,omitempty"`
2022-08-03 20:36:40 +02:00
// created at
CreatedAt string `json:"createdAt,omitempty"`
// frontend
Frontend string `json:"frontend,omitempty"`
2022-08-03 20:36:40 +02:00
// metrics
Metrics ServiceMetrics `json:"metrics,omitempty"`
2022-10-19 18:35:29 +02:00
// name
Name string `json:"name,omitempty"`
2022-08-03 20:36:40 +02:00
// updated at
UpdatedAt string `json:"updatedAt,omitempty"`
2022-10-19 18:35:29 +02:00
// z Id
ZID string `json:"zId,omitempty"`
2022-08-03 20:36:40 +02:00
}
// Validate validates this service
func (m *Service) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateMetrics(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
2022-08-03 20:36:40 +02:00
return nil
}
func (m *Service) validateMetrics(formats strfmt.Registry) error {
if swag.IsZero(m.Metrics) { // not required
return nil
}
if err := m.Metrics.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("metrics")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("metrics")
}
return err
}
return nil
}
// ContextValidate validate this service based on the context it is used
2022-08-03 20:36:40 +02:00
func (m *Service) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateMetrics(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Service) contextValidateMetrics(ctx context.Context, formats strfmt.Registry) error {
if err := m.Metrics.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("metrics")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("metrics")
}
return err
}
2022-08-03 20:36:40 +02:00
return nil
}
// MarshalBinary interface implementation
func (m *Service) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Service) UnmarshalBinary(b []byte) error {
var res Service
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}