mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
553 lines
11 KiB
Go
553 lines
11 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/swag"
|
||
|
"github.com/go-openapi/validate"
|
||
|
)
|
||
|
|
||
|
// PluginConfig PluginConfig The config of a plugin.
|
||
|
//
|
||
|
// swagger:model PluginConfig
|
||
|
type PluginConfig struct {
|
||
|
|
||
|
// args
|
||
|
// Required: true
|
||
|
Args *PluginConfigArgs `json:"Args"`
|
||
|
|
||
|
// description
|
||
|
// Required: true
|
||
|
Description *string `json:"Description"`
|
||
|
|
||
|
// Docker Version used to create the plugin
|
||
|
DockerVersion string `json:"DockerVersion,omitempty"`
|
||
|
|
||
|
// documentation
|
||
|
// Required: true
|
||
|
Documentation *string `json:"Documentation"`
|
||
|
|
||
|
// entrypoint
|
||
|
// Required: true
|
||
|
Entrypoint []string `json:"Entrypoint"`
|
||
|
|
||
|
// env
|
||
|
// Required: true
|
||
|
Env []*PluginEnv `json:"Env"`
|
||
|
|
||
|
// interface
|
||
|
// Required: true
|
||
|
Interface *PluginConfigInterface `json:"Interface"`
|
||
|
|
||
|
// ipc host
|
||
|
// Required: true
|
||
|
IpcHost *bool `json:"IpcHost"`
|
||
|
|
||
|
// linux
|
||
|
// Required: true
|
||
|
Linux *PluginConfigLinux `json:"Linux"`
|
||
|
|
||
|
// mounts
|
||
|
// Required: true
|
||
|
Mounts []*PluginMount `json:"Mounts"`
|
||
|
|
||
|
// network
|
||
|
// Required: true
|
||
|
Network *PluginConfigNetwork `json:"Network"`
|
||
|
|
||
|
// pid host
|
||
|
// Required: true
|
||
|
PidHost *bool `json:"PidHost"`
|
||
|
|
||
|
// propagated mount
|
||
|
// Required: true
|
||
|
PropagatedMount *string `json:"PropagatedMount"`
|
||
|
|
||
|
// user
|
||
|
User *PluginConfigUser `json:"User,omitempty"`
|
||
|
|
||
|
// work dir
|
||
|
// Required: true
|
||
|
WorkDir *string `json:"WorkDir"`
|
||
|
|
||
|
// rootfs
|
||
|
Rootfs *PluginConfigRootfs `json:"rootfs,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this plugin config
|
||
|
func (m *PluginConfig) Validate(formats strfmt.Registry) error {
|
||
|
var res []error
|
||
|
|
||
|
if err := m.validateArgs(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateDescription(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateDocumentation(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateEntrypoint(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateEnv(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateInterface(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateIpcHost(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateLinux(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateMounts(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateNetwork(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validatePidHost(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validatePropagatedMount(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateUser(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateWorkDir(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.validateRootfs(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if len(res) > 0 {
|
||
|
return errors.CompositeValidationError(res...)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateArgs(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Args", "body", m.Args); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if m.Args != nil {
|
||
|
if err := m.Args.Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Args")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateDescription(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Description", "body", m.Description); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateDocumentation(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Documentation", "body", m.Documentation); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateEntrypoint(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Entrypoint", "body", m.Entrypoint); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateEnv(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Env", "body", m.Env); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
for i := 0; i < len(m.Env); i++ {
|
||
|
if swag.IsZero(m.Env[i]) { // not required
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
if m.Env[i] != nil {
|
||
|
if err := m.Env[i].Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Env" + "." + strconv.Itoa(i))
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateInterface(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Interface", "body", m.Interface); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if m.Interface != nil {
|
||
|
if err := m.Interface.Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Interface")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateIpcHost(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("IpcHost", "body", m.IpcHost); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateLinux(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Linux", "body", m.Linux); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if m.Linux != nil {
|
||
|
if err := m.Linux.Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Linux")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateMounts(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Mounts", "body", m.Mounts); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
for i := 0; i < len(m.Mounts); i++ {
|
||
|
if swag.IsZero(m.Mounts[i]) { // not required
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
if m.Mounts[i] != nil {
|
||
|
if err := m.Mounts[i].Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Mounts" + "." + strconv.Itoa(i))
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateNetwork(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("Network", "body", m.Network); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if m.Network != nil {
|
||
|
if err := m.Network.Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Network")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validatePidHost(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("PidHost", "body", m.PidHost); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validatePropagatedMount(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("PropagatedMount", "body", m.PropagatedMount); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateUser(formats strfmt.Registry) error {
|
||
|
if swag.IsZero(m.User) { // not required
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
if m.User != nil {
|
||
|
if err := m.User.Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("User")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateWorkDir(formats strfmt.Registry) error {
|
||
|
|
||
|
if err := validate.Required("WorkDir", "body", m.WorkDir); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) validateRootfs(formats strfmt.Registry) error {
|
||
|
if swag.IsZero(m.Rootfs) { // not required
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
if m.Rootfs != nil {
|
||
|
if err := m.Rootfs.Validate(formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("rootfs")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// ContextValidate validate this plugin config based on the context it is used
|
||
|
func (m *PluginConfig) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||
|
var res []error
|
||
|
|
||
|
if err := m.contextValidateArgs(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateEnv(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateInterface(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateLinux(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateMounts(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateNetwork(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateUser(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if err := m.contextValidateRootfs(ctx, formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if len(res) > 0 {
|
||
|
return errors.CompositeValidationError(res...)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateArgs(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
if m.Args != nil {
|
||
|
if err := m.Args.ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Args")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateEnv(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
for i := 0; i < len(m.Env); i++ {
|
||
|
|
||
|
if m.Env[i] != nil {
|
||
|
if err := m.Env[i].ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Env" + "." + strconv.Itoa(i))
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateInterface(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
if m.Interface != nil {
|
||
|
if err := m.Interface.ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Interface")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateLinux(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
if m.Linux != nil {
|
||
|
if err := m.Linux.ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Linux")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateMounts(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
for i := 0; i < len(m.Mounts); i++ {
|
||
|
|
||
|
if m.Mounts[i] != nil {
|
||
|
if err := m.Mounts[i].ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Mounts" + "." + strconv.Itoa(i))
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateNetwork(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
if m.Network != nil {
|
||
|
if err := m.Network.ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("Network")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateUser(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
if m.User != nil {
|
||
|
if err := m.User.ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("User")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *PluginConfig) contextValidateRootfs(ctx context.Context, formats strfmt.Registry) error {
|
||
|
|
||
|
if m.Rootfs != nil {
|
||
|
if err := m.Rootfs.ContextValidate(ctx, formats); err != nil {
|
||
|
if ve, ok := err.(*errors.Validation); ok {
|
||
|
return ve.ValidateName("rootfs")
|
||
|
}
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *PluginConfig) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *PluginConfig) UnmarshalBinary(b []byte) error {
|
||
|
var res PluginConfig
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|