1 Star 0 Fork 0

nanjo_fan / goharbor-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ping_oidc_parameters.go 3.93 KB
一键复制 编辑 原始数据 按行查看 历史
王帆 提交于 2023-02-13 08:49 . first commit
// Code generated by go-swagger; DO NOT EDIT.
package oidc
// 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"
)
// NewPingOIDCParams creates a new PingOIDCParams object
// with the default values initialized.
func NewPingOIDCParams() *PingOIDCParams {
var ()
return &PingOIDCParams{
timeout: cr.DefaultTimeout,
}
}
// NewPingOIDCParamsWithTimeout creates a new PingOIDCParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewPingOIDCParamsWithTimeout(timeout time.Duration) *PingOIDCParams {
var ()
return &PingOIDCParams{
timeout: timeout,
}
}
// NewPingOIDCParamsWithContext creates a new PingOIDCParams object
// with the default values initialized, and the ability to set a context for a request
func NewPingOIDCParamsWithContext(ctx context.Context) *PingOIDCParams {
var ()
return &PingOIDCParams{
Context: ctx,
}
}
// NewPingOIDCParamsWithHTTPClient creates a new PingOIDCParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewPingOIDCParamsWithHTTPClient(client *http.Client) *PingOIDCParams {
var ()
return &PingOIDCParams{
HTTPClient: client,
}
}
/*PingOIDCParams contains all the parameters to send to the API endpoint
for the ping OIDC operation typically these are written to a http.Request
*/
type PingOIDCParams struct {
/*XRequestID
An unique ID for the request
*/
XRequestID *string
/*Endpoint
Request body for OIDC endpoint to be tested.
*/
Endpoint PingOIDCBody
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the ping OIDC params
func (o *PingOIDCParams) WithTimeout(timeout time.Duration) *PingOIDCParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the ping OIDC params
func (o *PingOIDCParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the ping OIDC params
func (o *PingOIDCParams) WithContext(ctx context.Context) *PingOIDCParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the ping OIDC params
func (o *PingOIDCParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the ping OIDC params
func (o *PingOIDCParams) WithHTTPClient(client *http.Client) *PingOIDCParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the ping OIDC params
func (o *PingOIDCParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithXRequestID adds the xRequestID to the ping OIDC params
func (o *PingOIDCParams) WithXRequestID(xRequestID *string) *PingOIDCParams {
o.SetXRequestID(xRequestID)
return o
}
// SetXRequestID adds the xRequestId to the ping OIDC params
func (o *PingOIDCParams) SetXRequestID(xRequestID *string) {
o.XRequestID = xRequestID
}
// WithEndpoint adds the endpoint to the ping OIDC params
func (o *PingOIDCParams) WithEndpoint(endpoint PingOIDCBody) *PingOIDCParams {
o.SetEndpoint(endpoint)
return o
}
// SetEndpoint adds the endpoint to the ping OIDC params
func (o *PingOIDCParams) SetEndpoint(endpoint PingOIDCBody) {
o.Endpoint = endpoint
}
// WriteToRequest writes these params to a swagger request
func (o *PingOIDCParams) 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 err := r.SetBodyParam(o.Endpoint); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(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

搜索帮助