mirror of
https://github.com/paralus/paralus.git
synced 2026-02-14 17:49:51 +00:00
* 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>
171 lines
4.5 KiB
Go
171 lines
4.5 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"
|
|
)
|
|
|
|
// V1ManagedFieldsEntry ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource
|
|
// that the fieldset applies to.
|
|
//
|
|
// swagger:model v1ManagedFieldsEntry
|
|
type V1ManagedFieldsEntry struct {
|
|
|
|
// APIVersion defines the version of this resource that this field set
|
|
// applies to. The format is "group/version" just like the top-level
|
|
// APIVersion field. It is necessary to track the version of a field
|
|
// set because it cannot be automatically converted.
|
|
APIVersion string `json:"apiVersion,omitempty"`
|
|
|
|
// FieldsType is the discriminator for the different fields format and version.
|
|
// There is currently only one possible value: "FieldsV1"
|
|
FieldsType string `json:"fieldsType,omitempty"`
|
|
|
|
// FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
|
|
// +optional
|
|
FieldsV1 *V1FieldsV1 `json:"fieldsV1,omitempty"`
|
|
|
|
// Manager is an identifier of the workflow managing these fields.
|
|
Manager string `json:"manager,omitempty"`
|
|
|
|
// Operation is the type of operation which lead to this ManagedFieldsEntry being created.
|
|
// The only valid values for this field are 'Apply' and 'Update'.
|
|
Operation string `json:"operation,omitempty"`
|
|
|
|
// Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'
|
|
// +optional
|
|
Time *V1Time `json:"time,omitempty"`
|
|
}
|
|
|
|
// Validate validates this v1 managed fields entry
|
|
func (m *V1ManagedFieldsEntry) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateFieldsV1(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateTime(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *V1ManagedFieldsEntry) validateFieldsV1(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.FieldsV1) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.FieldsV1 != nil {
|
|
if err := m.FieldsV1.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("fieldsV1")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("fieldsV1")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *V1ManagedFieldsEntry) validateTime(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Time) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Time != nil {
|
|
if err := m.Time.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("time")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("time")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this v1 managed fields entry based on the context it is used
|
|
func (m *V1ManagedFieldsEntry) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateFieldsV1(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.contextValidateTime(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *V1ManagedFieldsEntry) contextValidateFieldsV1(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.FieldsV1 != nil {
|
|
if err := m.FieldsV1.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("fieldsV1")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("fieldsV1")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *V1ManagedFieldsEntry) contextValidateTime(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Time != nil {
|
|
if err := m.Time.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("time")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("time")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *V1ManagedFieldsEntry) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *V1ManagedFieldsEntry) UnmarshalBinary(b []byte) error {
|
|
var res V1ManagedFieldsEntry
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|