zrok/rest_model_zrok/share.go

131 lines
2.8 KiB
Go
Raw Normal View History

2022-08-03 20:36:40 +02:00
// 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"
"github.com/go-openapi/errors"
2022-08-03 20:36:40 +02:00
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Share share
2022-08-03 20:36:40 +02:00
//
// swagger:model share
type Share struct {
2022-08-03 20:36:40 +02:00
// backend mode
BackendMode string `json:"backendMode,omitempty"`
// backend proxy endpoint
BackendProxyEndpoint string `json:"backendProxyEndpoint,omitempty"`
2022-08-03 20:36:40 +02:00
// created at
CreatedAt int64 `json:"createdAt,omitempty"`
2022-08-03 20:36:40 +02:00
// frontend endpoint
FrontendEndpoint string `json:"frontendEndpoint,omitempty"`
2022-08-03 20:36:40 +02:00
// frontend selection
FrontendSelection string `json:"frontendSelection,omitempty"`
// metrics
Metrics ShareMetrics `json:"metrics,omitempty"`
// reserved
Reserved bool `json:"reserved,omitempty"`
// share mode
ShareMode string `json:"shareMode,omitempty"`
// token
Token string `json:"token,omitempty"`
2022-10-19 18:35:29 +02:00
2022-08-03 20:36:40 +02:00
// updated at
UpdatedAt int64 `json:"updatedAt,omitempty"`
2022-08-03 20:36:40 +02:00
2022-10-19 18:35:29 +02:00
// z Id
ZID string `json:"zId,omitempty"`
2022-08-03 20:36:40 +02:00
}
// Validate validates this share
func (m *Share) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateMetrics(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
2022-08-03 20:36:40 +02:00
return nil
}
func (m *Share) validateMetrics(formats strfmt.Registry) error {
if swag.IsZero(m.Metrics) { // not required
return nil
}
if err := m.Metrics.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("metrics")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("metrics")
}
return err
}
return nil
}
// ContextValidate validate this share based on the context it is used
func (m *Share) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateMetrics(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Share) contextValidateMetrics(ctx context.Context, formats strfmt.Registry) error {
if err := m.Metrics.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("metrics")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("metrics")
}
return err
}
2022-08-03 20:36:40 +02:00
return nil
}
// MarshalBinary interface implementation
func (m *Share) MarshalBinary() ([]byte, error) {
2022-08-03 20:36:40 +02:00
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Share) UnmarshalBinary(b []byte) error {
var res Share
2022-08-03 20:36:40 +02:00
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}