go-gitea/client/repository/repo_get_latest_release_parameters.go
jolheiser 021242f2ad
initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2023-04-11 22:59:19 -05:00

174 lines
4.9 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package repository
// 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"
)
// NewRepoGetLatestReleaseParams creates a new RepoGetLatestReleaseParams object,
// with the default timeout for this client.
//
// Default values are not hydrated, since defaults are normally applied by the API server side.
//
// To enforce default values in parameter, use SetDefaults or WithDefaults.
func NewRepoGetLatestReleaseParams() *RepoGetLatestReleaseParams {
return &RepoGetLatestReleaseParams{
timeout: cr.DefaultTimeout,
}
}
// NewRepoGetLatestReleaseParamsWithTimeout creates a new RepoGetLatestReleaseParams object
// with the ability to set a timeout on a request.
func NewRepoGetLatestReleaseParamsWithTimeout(timeout time.Duration) *RepoGetLatestReleaseParams {
return &RepoGetLatestReleaseParams{
timeout: timeout,
}
}
// NewRepoGetLatestReleaseParamsWithContext creates a new RepoGetLatestReleaseParams object
// with the ability to set a context for a request.
func NewRepoGetLatestReleaseParamsWithContext(ctx context.Context) *RepoGetLatestReleaseParams {
return &RepoGetLatestReleaseParams{
Context: ctx,
}
}
// NewRepoGetLatestReleaseParamsWithHTTPClient creates a new RepoGetLatestReleaseParams object
// with the ability to set a custom HTTPClient for a request.
func NewRepoGetLatestReleaseParamsWithHTTPClient(client *http.Client) *RepoGetLatestReleaseParams {
return &RepoGetLatestReleaseParams{
HTTPClient: client,
}
}
/*
RepoGetLatestReleaseParams contains all the parameters to send to the API endpoint
for the repo get latest release operation.
Typically these are written to a http.Request.
*/
type RepoGetLatestReleaseParams struct {
/* Owner.
owner of the repo
*/
Owner string
/* Repo.
name of the repo
*/
Repo string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the repo get latest release params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *RepoGetLatestReleaseParams) WithDefaults() *RepoGetLatestReleaseParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the repo get latest release params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *RepoGetLatestReleaseParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the repo get latest release params
func (o *RepoGetLatestReleaseParams) WithTimeout(timeout time.Duration) *RepoGetLatestReleaseParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the repo get latest release params
func (o *RepoGetLatestReleaseParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the repo get latest release params
func (o *RepoGetLatestReleaseParams) WithContext(ctx context.Context) *RepoGetLatestReleaseParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the repo get latest release params
func (o *RepoGetLatestReleaseParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the repo get latest release params
func (o *RepoGetLatestReleaseParams) WithHTTPClient(client *http.Client) *RepoGetLatestReleaseParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the repo get latest release params
func (o *RepoGetLatestReleaseParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithOwner adds the owner to the repo get latest release params
func (o *RepoGetLatestReleaseParams) WithOwner(owner string) *RepoGetLatestReleaseParams {
o.SetOwner(owner)
return o
}
// SetOwner adds the owner to the repo get latest release params
func (o *RepoGetLatestReleaseParams) SetOwner(owner string) {
o.Owner = owner
}
// WithRepo adds the repo to the repo get latest release params
func (o *RepoGetLatestReleaseParams) WithRepo(repo string) *RepoGetLatestReleaseParams {
o.SetRepo(repo)
return o
}
// SetRepo adds the repo to the repo get latest release params
func (o *RepoGetLatestReleaseParams) SetRepo(repo string) {
o.Repo = repo
}
// WriteToRequest writes these params to a swagger request
func (o *RepoGetLatestReleaseParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param owner
if err := r.SetPathParam("owner", o.Owner); err != nil {
return err
}
// path param repo
if err := r.SetPathParam("repo", o.Repo); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}