mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
126 lines
2.8 KiB
Go
126 lines
2.8 KiB
Go
// 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"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// TunnelRequest tunnel request
|
|
//
|
|
// swagger:model tunnelRequest
|
|
type TunnelRequest struct {
|
|
|
|
// auth scheme
|
|
AuthScheme string `json:"authScheme,omitempty"`
|
|
|
|
// auth users
|
|
AuthUsers []*AuthUser `json:"authUsers"`
|
|
|
|
// endpoint
|
|
Endpoint string `json:"endpoint,omitempty"`
|
|
|
|
// ziti identity Id
|
|
ZitiIdentityID string `json:"zitiIdentityId,omitempty"`
|
|
}
|
|
|
|
// Validate validates this tunnel request
|
|
func (m *TunnelRequest) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateAuthUsers(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *TunnelRequest) validateAuthUsers(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.AuthUsers) { // not required
|
|
return nil
|
|
}
|
|
|
|
for i := 0; i < len(m.AuthUsers); i++ {
|
|
if swag.IsZero(m.AuthUsers[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.AuthUsers[i] != nil {
|
|
if err := m.AuthUsers[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("authUsers" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("authUsers" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this tunnel request based on the context it is used
|
|
func (m *TunnelRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateAuthUsers(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *TunnelRequest) contextValidateAuthUsers(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.AuthUsers); i++ {
|
|
|
|
if m.AuthUsers[i] != nil {
|
|
if err := m.AuthUsers[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("authUsers" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("authUsers" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *TunnelRequest) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *TunnelRequest) UnmarshalBinary(b []byte) error {
|
|
var res TunnelRequest
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|