1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cve_allowlist.go 3.00 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"
"github.com/go-openapi/validate"
)
// CVEAllowlist The CVE Allowlist for system or project
//
// swagger:model CVEAllowlist
type CVEAllowlist struct {
// The creation time of the allowlist.
// Format: date-time
CreationTime strfmt.DateTime `json:"creation_time,omitempty"`
// the time for expiration of the allowlist, in the form of seconds since epoch. This is an optional attribute, if it's not set the CVE allowlist does not expire.
ExpiresAt *int64 `json:"expires_at,omitempty"`
// ID of the allowlist
ID int64 `json:"id,omitempty"`
// items
Items []*CVEAllowlistItem `json:"items"`
// ID of the project which the allowlist belongs to. For system level allowlist this attribute is zero.
ProjectID int64 `json:"project_id,omitempty"`
// The update time of the allowlist.
// Format: date-time
UpdateTime strfmt.DateTime `json:"update_time,omitempty"`
}
// Validate validates this CVE allowlist
func (m *CVEAllowlist) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateCreationTime(formats); err != nil {
res = append(res, err)
}
if err := m.validateItems(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 *CVEAllowlist) 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 *CVEAllowlist) validateItems(formats strfmt.Registry) error {
if swag.IsZero(m.Items) { // not required
return nil
}
for i := 0; i < len(m.Items); i++ {
if swag.IsZero(m.Items[i]) { // not required
continue
}
if m.Items[i] != nil {
if err := m.Items[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("items" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
func (m *CVEAllowlist) 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 *CVEAllowlist) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CVEAllowlist) UnmarshalBinary(b []byte) error {
var res CVEAllowlist
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

搜索帮助