1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
search.go 2.91 KB
一键复制 编辑 原始数据 按行查看 历史
王帆 提交于 2023-02-13 08:49 . first commit
// Code generated by go-swagger; DO NOT EDIT.
package model
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Search search
//
// swagger:model Search
type Search struct {
// Search results of the charts that macthed the filter keywords.
Chart []*SearchResult `json:"chart,omitempty"`
// Search results of the projects that matched the filter keywords.
Project []*Project `json:"project"`
// Search results of the repositories that matched the filter keywords.
Repository []*SearchRepository `json:"repository"`
}
// Validate validates this search
func (m *Search) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateChart(formats); err != nil {
res = append(res, err)
}
if err := m.validateProject(formats); err != nil {
res = append(res, err)
}
if err := m.validateRepository(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Search) validateChart(formats strfmt.Registry) error {
if swag.IsZero(m.Chart) { // not required
return nil
}
for i := 0; i < len(m.Chart); i++ {
if swag.IsZero(m.Chart[i]) { // not required
continue
}
if m.Chart[i] != nil {
if err := m.Chart[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("chart" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
func (m *Search) validateProject(formats strfmt.Registry) error {
if swag.IsZero(m.Project) { // not required
return nil
}
for i := 0; i < len(m.Project); i++ {
if swag.IsZero(m.Project[i]) { // not required
continue
}
if m.Project[i] != nil {
if err := m.Project[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("project" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
func (m *Search) validateRepository(formats strfmt.Registry) error {
if swag.IsZero(m.Repository) { // not required
return nil
}
for i := 0; i < len(m.Repository); i++ {
if swag.IsZero(m.Repository[i]) { // not required
continue
}
if m.Repository[i] != nil {
if err := m.Repository[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("repository" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (m *Search) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Search) UnmarshalBinary(b []byte) error {
var res Search
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
Go
1
https://gitee.com/nanjo-fan/goharbor-client.git
git@gitee.com:nanjo-fan/goharbor-client.git
nanjo-fan
goharbor-client
goharbor-client
v1.0.2

搜索帮助