1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
registry.go 2.94 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 (
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// Registry registry
//
// swagger:model Registry
type Registry struct {
// The create time of the policy.
// Format: date-time
CreationTime strfmt.DateTime `json:"creation_time,omitempty"`
// credential
Credential *RegistryCredential `json:"credential,omitempty"`
// Description of the registry.
Description string `json:"description,omitempty"`
// The registry ID.
ID int64 `json:"id"`
// Whether or not the certificate will be verified when Harbor tries to access the server.
Insecure bool `json:"insecure,omitempty"`
// The registry name.
Name string `json:"name,omitempty"`
// Health status of the registry.
Status string `json:"status,omitempty"`
// Type of the registry, e.g. 'harbor'.
Type string `json:"type,omitempty"`
// The update time of the policy.
// Format: date-time
UpdateTime strfmt.DateTime `json:"update_time,omitempty"`
// The registry URL string.
URL string `json:"url,omitempty"`
}
// Validate validates this registry
func (m *Registry) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateCreationTime(formats); err != nil {
res = append(res, err)
}
if err := m.validateCredential(formats); err != nil {
res = append(res, err)
}
if err := m.validateUpdateTime(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Registry) validateCreationTime(formats strfmt.Registry) error {
if swag.IsZero(m.CreationTime) { // not required
return nil
}
if err := validate.FormatOf("creation_time", "body", "date-time", m.CreationTime.String(), formats); err != nil {
return err
}
return nil
}
func (m *Registry) validateCredential(formats strfmt.Registry) error {
if swag.IsZero(m.Credential) { // not required
return nil
}
if m.Credential != nil {
if err := m.Credential.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("credential")
}
return err
}
}
return nil
}
func (m *Registry) validateUpdateTime(formats strfmt.Registry) error {
if swag.IsZero(m.UpdateTime) { // not required
return nil
}
if err := validate.FormatOf("update_time", "body", "date-time", m.UpdateTime.String(), formats); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *Registry) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Registry) UnmarshalBinary(b []byte) error {
var res Registry
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

搜索帮助