1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
registry_info.go 2.19 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"
)
// RegistryInfo The registry info contains the base info and capability declarations of the registry
//
// swagger:model RegistryInfo
type RegistryInfo struct {
// The description
Description string `json:"description,omitempty"`
// The registry whether support copy by chunk.
SupportedCopyByChunk *bool `json:"supported_copy_by_chunk,omitempty"`
// The filters that the registry supports
SupportedResourceFilters []*FilterStyle `json:"supported_resource_filters"`
// The triggers that the registry supports
SupportedTriggers []string `json:"supported_triggers"`
// The registry type
Type string `json:"type,omitempty"`
}
// Validate validates this registry info
func (m *RegistryInfo) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateSupportedResourceFilters(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *RegistryInfo) validateSupportedResourceFilters(formats strfmt.Registry) error {
if swag.IsZero(m.SupportedResourceFilters) { // not required
return nil
}
for i := 0; i < len(m.SupportedResourceFilters); i++ {
if swag.IsZero(m.SupportedResourceFilters[i]) { // not required
continue
}
if m.SupportedResourceFilters[i] != nil {
if err := m.SupportedResourceFilters[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("supported_resource_filters" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (m *RegistryInfo) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *RegistryInfo) UnmarshalBinary(b []byte) error {
var res RegistryInfo
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

搜索帮助