garm/client/repositories/update_repo_pool_parameters.go
Ionut Balutoiu 5891216179 Update generated swagger client code
Signed-off-by: Ionut Balutoiu <ibalutoiu@cloudbasesolutions.com>
2023-07-05 13:48:01 +03:00

195 lines
5.2 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package repositories
// 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"
garm_params "github.com/cloudbase/garm/params"
)
// NewUpdateRepoPoolParams creates a new UpdateRepoPoolParams 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 NewUpdateRepoPoolParams() *UpdateRepoPoolParams {
return &UpdateRepoPoolParams{
timeout: cr.DefaultTimeout,
}
}
// NewUpdateRepoPoolParamsWithTimeout creates a new UpdateRepoPoolParams object
// with the ability to set a timeout on a request.
func NewUpdateRepoPoolParamsWithTimeout(timeout time.Duration) *UpdateRepoPoolParams {
return &UpdateRepoPoolParams{
timeout: timeout,
}
}
// NewUpdateRepoPoolParamsWithContext creates a new UpdateRepoPoolParams object
// with the ability to set a context for a request.
func NewUpdateRepoPoolParamsWithContext(ctx context.Context) *UpdateRepoPoolParams {
return &UpdateRepoPoolParams{
Context: ctx,
}
}
// NewUpdateRepoPoolParamsWithHTTPClient creates a new UpdateRepoPoolParams object
// with the ability to set a custom HTTPClient for a request.
func NewUpdateRepoPoolParamsWithHTTPClient(client *http.Client) *UpdateRepoPoolParams {
return &UpdateRepoPoolParams{
HTTPClient: client,
}
}
/*
UpdateRepoPoolParams contains all the parameters to send to the API endpoint
for the update repo pool operation.
Typically these are written to a http.Request.
*/
type UpdateRepoPoolParams struct {
/* Body.
Parameters used when updating the repository pool.
*/
Body garm_params.UpdatePoolParams
/* PoolID.
ID of the repository pool to update.
*/
PoolID string
/* RepoID.
Repository ID.
*/
RepoID string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the update repo pool params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UpdateRepoPoolParams) WithDefaults() *UpdateRepoPoolParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the update repo pool params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UpdateRepoPoolParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the update repo pool params
func (o *UpdateRepoPoolParams) WithTimeout(timeout time.Duration) *UpdateRepoPoolParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the update repo pool params
func (o *UpdateRepoPoolParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the update repo pool params
func (o *UpdateRepoPoolParams) WithContext(ctx context.Context) *UpdateRepoPoolParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the update repo pool params
func (o *UpdateRepoPoolParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the update repo pool params
func (o *UpdateRepoPoolParams) WithHTTPClient(client *http.Client) *UpdateRepoPoolParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the update repo pool params
func (o *UpdateRepoPoolParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the update repo pool params
func (o *UpdateRepoPoolParams) WithBody(body garm_params.UpdatePoolParams) *UpdateRepoPoolParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the update repo pool params
func (o *UpdateRepoPoolParams) SetBody(body garm_params.UpdatePoolParams) {
o.Body = body
}
// WithPoolID adds the poolID to the update repo pool params
func (o *UpdateRepoPoolParams) WithPoolID(poolID string) *UpdateRepoPoolParams {
o.SetPoolID(poolID)
return o
}
// SetPoolID adds the poolId to the update repo pool params
func (o *UpdateRepoPoolParams) SetPoolID(poolID string) {
o.PoolID = poolID
}
// WithRepoID adds the repoID to the update repo pool params
func (o *UpdateRepoPoolParams) WithRepoID(repoID string) *UpdateRepoPoolParams {
o.SetRepoID(repoID)
return o
}
// SetRepoID adds the repoId to the update repo pool params
func (o *UpdateRepoPoolParams) SetRepoID(repoID string) {
o.RepoID = repoID
}
// WriteToRequest writes these params to a swagger request
func (o *UpdateRepoPoolParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if err := r.SetBodyParam(o.Body); err != nil {
return err
}
// path param poolID
if err := r.SetPathParam("poolID", o.PoolID); err != nil {
return err
}
// path param repoID
if err := r.SetPathParam("repoID", o.RepoID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}