1 Star 0 Fork 0

pengchengduan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
list_registry_provider_infos_parameters.go 4.22 KB
一键复制 编辑 原始数据 按行查看 历史
pengchengduan 提交于 2024-02-01 17:28 . first commit
// Code generated by go-swagger; DO NOT EDIT.
package registry
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"net/http"
"time"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
)
// NewListRegistryProviderInfosParams creates a new ListRegistryProviderInfosParams object
// with the default values initialized.
func NewListRegistryProviderInfosParams() *ListRegistryProviderInfosParams {
var ()
return &ListRegistryProviderInfosParams{
timeout: cr.DefaultTimeout,
}
}
// NewListRegistryProviderInfosParamsWithTimeout creates a new ListRegistryProviderInfosParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewListRegistryProviderInfosParamsWithTimeout(timeout time.Duration) *ListRegistryProviderInfosParams {
var ()
return &ListRegistryProviderInfosParams{
timeout: timeout,
}
}
// NewListRegistryProviderInfosParamsWithContext creates a new ListRegistryProviderInfosParams object
// with the default values initialized, and the ability to set a context for a request
func NewListRegistryProviderInfosParamsWithContext(ctx context.Context) *ListRegistryProviderInfosParams {
var ()
return &ListRegistryProviderInfosParams{
Context: ctx,
}
}
// NewListRegistryProviderInfosParamsWithHTTPClient creates a new ListRegistryProviderInfosParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewListRegistryProviderInfosParamsWithHTTPClient(client *http.Client) *ListRegistryProviderInfosParams {
var ()
return &ListRegistryProviderInfosParams{
HTTPClient: client,
}
}
/*ListRegistryProviderInfosParams contains all the parameters to send to the API endpoint
for the list registry provider infos operation typically these are written to a http.Request
*/
type ListRegistryProviderInfosParams struct {
/*XRequestID
An unique ID for the request
*/
XRequestID *string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) WithTimeout(timeout time.Duration) *ListRegistryProviderInfosParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) WithContext(ctx context.Context) *ListRegistryProviderInfosParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) WithHTTPClient(client *http.Client) *ListRegistryProviderInfosParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithXRequestID adds the xRequestID to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) WithXRequestID(xRequestID *string) *ListRegistryProviderInfosParams {
o.SetXRequestID(xRequestID)
return o
}
// SetXRequestID adds the xRequestId to the list registry provider infos params
func (o *ListRegistryProviderInfosParams) SetXRequestID(xRequestID *string) {
o.XRequestID = xRequestID
}
// WriteToRequest writes these params to a swagger request
func (o *ListRegistryProviderInfosParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.XRequestID != nil {
// header param X-Request-Id
if err := r.SetHeaderParam("X-Request-Id", *o.XRequestID); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
1
https://gitee.com/pengchengduan/goharbor-client.git
git@gitee.com:pengchengduan/goharbor-client.git
pengchengduan
goharbor-client
goharbor-client
41c6882efe91

搜索帮助