1 Star 0 Fork 0

pengchengduan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
scanner_registration_req.go 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
pengchengduan 提交于 2024-02-01 17:28 . 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"
)
// ScannerRegistrationReq scanner registration req
//
// swagger:model ScannerRegistrationReq
type ScannerRegistrationReq struct {
// An optional value of the HTTP Authorization header sent with each request to the Scanner Adapter API.
//
AccessCredential string `json:"access_credential,omitempty"`
// Specify what authentication approach is adopted for the HTTP communications.
// Supported types Basic", "Bearer" and api key header "X-ScannerAdapter-API-Key"
//
Auth string `json:"auth,omitempty"`
// An optional description of this registration.
Description string `json:"description,omitempty"`
// Indicate whether the registration is enabled or not
Disabled *bool `json:"disabled,omitempty"`
// The name of this registration
// Required: true
Name *string `json:"name"`
// Indicate if skip the certificate verification when sending HTTP requests
SkipCertVerify *bool `json:"skip_certVerify,omitempty"`
// A base URL of the scanner adapter.
// Required: true
// Format: uri
URL *strfmt.URI `json:"url"`
// Indicate whether use internal registry addr for the scanner to pull content or not
UseInternalAddr *bool `json:"use_internal_addr,omitempty"`
}
// Validate validates this scanner registration req
func (m *ScannerRegistrationReq) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateName(formats); err != nil {
res = append(res, err)
}
if err := m.validateURL(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *ScannerRegistrationReq) validateName(formats strfmt.Registry) error {
if err := validate.Required("name", "body", m.Name); err != nil {
return err
}
return nil
}
func (m *ScannerRegistrationReq) validateURL(formats strfmt.Registry) error {
if err := validate.Required("url", "body", m.URL); err != nil {
return err
}
if err := validate.FormatOf("url", "body", "uri", m.URL.String(), formats); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *ScannerRegistrationReq) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *ScannerRegistrationReq) UnmarshalBinary(b []byte) error {
var res ScannerRegistrationReq
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}
1
https://gitee.com/pengchengduan/goharbor-client.git
git@gitee.com:pengchengduan/goharbor-client.git
pengchengduan
goharbor-client
goharbor-client
41c6882efe91

搜索帮助

53164aa7 5694891 3bd8fe86 5694891