137 lines
2.9 KiB
Go
137 lines
2.9 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"
|
|
)
|
|
|
|
// ActionRunner ActionRunner represents a Runner
|
|
//
|
|
// swagger:model ActionRunner
|
|
type ActionRunner struct {
|
|
|
|
// busy
|
|
Busy bool `json:"busy,omitempty"`
|
|
|
|
// ephemeral
|
|
Ephemeral bool `json:"ephemeral,omitempty"`
|
|
|
|
// ID
|
|
ID int64 `json:"id,omitempty"`
|
|
|
|
// labels
|
|
Labels []*ActionRunnerLabel `json:"labels"`
|
|
|
|
// name
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// status
|
|
Status string `json:"status,omitempty"`
|
|
}
|
|
|
|
// Validate validates this action runner
|
|
func (m *ActionRunner) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateLabels(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ActionRunner) validateLabels(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Labels) { // not required
|
|
return nil
|
|
}
|
|
|
|
for i := 0; i < len(m.Labels); i++ {
|
|
if swag.IsZero(m.Labels[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.Labels[i] != nil {
|
|
if err := m.Labels[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("labels" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("labels" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this action runner based on the context it is used
|
|
func (m *ActionRunner) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateLabels(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ActionRunner) contextValidateLabels(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.Labels); i++ {
|
|
|
|
if m.Labels[i] != nil {
|
|
|
|
if swag.IsZero(m.Labels[i]) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Labels[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("labels" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("labels" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *ActionRunner) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *ActionRunner) UnmarshalBinary(b []byte) error {
|
|
var res ActionRunner
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|