Files
paralus/api/def/clients/sentry/models/sentry_bootstrap_agent.go
nirav-rafay c66bdc25cd restructure rcloud-base as a single base controller (#37)
* restructure rcloud-base as a single base controller
* updated master.rest
* moved sentry from internal to pkg as it is used by relay
* removing unused rpc and it's dependencies
* Fix usermgmt tests
* Don't redefine variables in rest file
Co-authored-by: Abin Simon <abin.simon@rafay.co>
2022-03-03 17:59:06 +05:30

238 lines
5.4 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"
)
// SentryBootstrapAgent sentry bootstrap agent
//
// swagger:model sentryBootstrapAgent
type SentryBootstrapAgent struct {
// API Version
//
// API Version of the resource
// Read Only: true
APIVersion string `json:"apiVersion,omitempty"`
// Kind
//
// Kind of the resource
// Read Only: true
Kind string `json:"kind,omitempty"`
// Metadata
//
// Metadata of the resource
Metadata *V3Metadata `json:"metadata,omitempty"`
// spec
Spec *SentryBootstrapAgentSpec `json:"spec,omitempty"`
// status
Status *SentryBootStrapAgentStatus `json:"status,omitempty"`
}
// Validate validates this sentry bootstrap agent
func (m *SentryBootstrapAgent) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateMetadata(formats); err != nil {
res = append(res, err)
}
if err := m.validateSpec(formats); err != nil {
res = append(res, err)
}
if err := m.validateStatus(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *SentryBootstrapAgent) validateMetadata(formats strfmt.Registry) error {
if swag.IsZero(m.Metadata) { // not required
return nil
}
if m.Metadata != nil {
if err := m.Metadata.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("metadata")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("metadata")
}
return err
}
}
return nil
}
func (m *SentryBootstrapAgent) validateSpec(formats strfmt.Registry) error {
if swag.IsZero(m.Spec) { // not required
return nil
}
if m.Spec != nil {
if err := m.Spec.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("spec")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("spec")
}
return err
}
}
return nil
}
func (m *SentryBootstrapAgent) validateStatus(formats strfmt.Registry) error {
if swag.IsZero(m.Status) { // not required
return nil
}
if m.Status != nil {
if err := m.Status.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("status")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("status")
}
return err
}
}
return nil
}
// ContextValidate validate this sentry bootstrap agent based on the context it is used
func (m *SentryBootstrapAgent) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateAPIVersion(ctx, formats); err != nil {
res = append(res, err)
}
if err := m.contextValidateKind(ctx, formats); err != nil {
res = append(res, err)
}
if err := m.contextValidateMetadata(ctx, formats); err != nil {
res = append(res, err)
}
if err := m.contextValidateSpec(ctx, formats); err != nil {
res = append(res, err)
}
if err := m.contextValidateStatus(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *SentryBootstrapAgent) contextValidateAPIVersion(ctx context.Context, formats strfmt.Registry) error {
if err := validate.ReadOnly(ctx, "apiVersion", "body", string(m.APIVersion)); err != nil {
return err
}
return nil
}
func (m *SentryBootstrapAgent) contextValidateKind(ctx context.Context, formats strfmt.Registry) error {
if err := validate.ReadOnly(ctx, "kind", "body", string(m.Kind)); err != nil {
return err
}
return nil
}
func (m *SentryBootstrapAgent) contextValidateMetadata(ctx context.Context, formats strfmt.Registry) error {
if m.Metadata != nil {
if err := m.Metadata.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("metadata")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("metadata")
}
return err
}
}
return nil
}
func (m *SentryBootstrapAgent) contextValidateSpec(ctx context.Context, formats strfmt.Registry) error {
if m.Spec != nil {
if err := m.Spec.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("spec")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("spec")
}
return err
}
}
return nil
}
func (m *SentryBootstrapAgent) contextValidateStatus(ctx context.Context, formats strfmt.Registry) error {
if m.Status != nil {
if err := m.Status.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("status")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("status")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *SentryBootstrapAgent) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *SentryBootstrapAgent) UnmarshalBinary(b []byte) error {
var res SentryBootstrapAgent
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}