mirror of
https://github.com/openziti/ziti.git
synced 2026-09-21 01:53:22 +00:00
163 lines
4.1 KiB
Go
163 lines
4.1 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
//
|
|
// Copyright NetFoundry, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// __ __ _
|
|
// \ \ / / (_)
|
|
// \ \ /\ / /_ _ _ __ _ __ _ _ __ __ _
|
|
// \ \/ \/ / _` | '__| '_ \| | '_ \ / _` |
|
|
// \ /\ / (_| | | | | | | | | | | (_| | : This file is generated, do not edit it.
|
|
// \/ \/ \__,_|_| |_| |_|_|_| |_|\__, |
|
|
// __/ |
|
|
// |___/
|
|
|
|
package rest_model
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// AuthenticatorCreate Creates an authenticator for a specific identity which can be used for API authentication
|
|
//
|
|
// swagger:model authenticatorCreate
|
|
type AuthenticatorCreate struct {
|
|
|
|
// The id of an existing identity that will be assigned this authenticator
|
|
// Required: true
|
|
IdentityID *string `json:"identityId"`
|
|
|
|
// The type of authenticator to create; which will dictate which properties on this object are required.
|
|
// Required: true
|
|
Method *string `json:"method"`
|
|
|
|
// The password the identity will login with, Used only for method='updb'
|
|
// Required: true
|
|
Password *string `json:"password"`
|
|
|
|
// tags
|
|
Tags Tags `json:"tags"`
|
|
|
|
// The username that the identity will login with. Used only for method='updb'
|
|
// Required: true
|
|
Username *string `json:"username"`
|
|
}
|
|
|
|
// Validate validates this authenticator create
|
|
func (m *AuthenticatorCreate) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateIdentityID(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateMethod(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validatePassword(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateTags(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateUsername(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AuthenticatorCreate) validateIdentityID(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("identityId", "body", m.IdentityID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *AuthenticatorCreate) validateMethod(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("method", "body", m.Method); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *AuthenticatorCreate) validatePassword(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("password", "body", m.Password); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *AuthenticatorCreate) validateTags(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(m.Tags) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Tags.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("tags")
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *AuthenticatorCreate) validateUsername(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("username", "body", m.Username); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *AuthenticatorCreate) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *AuthenticatorCreate) UnmarshalBinary(b []byte) error {
|
|
var res AuthenticatorCreate
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|