garm/client/repositories/install_repo_webhook_parameters.go
Gabriel Adrian Samfira dbd41f518d
Add CLI webhook enablement
Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2023-08-22 09:39:01 +03:00

173 lines
4.9 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"
)
// NewInstallRepoWebhookParams creates a new InstallRepoWebhookParams 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 NewInstallRepoWebhookParams() *InstallRepoWebhookParams {
return &InstallRepoWebhookParams{
timeout: cr.DefaultTimeout,
}
}
// NewInstallRepoWebhookParamsWithTimeout creates a new InstallRepoWebhookParams object
// with the ability to set a timeout on a request.
func NewInstallRepoWebhookParamsWithTimeout(timeout time.Duration) *InstallRepoWebhookParams {
return &InstallRepoWebhookParams{
timeout: timeout,
}
}
// NewInstallRepoWebhookParamsWithContext creates a new InstallRepoWebhookParams object
// with the ability to set a context for a request.
func NewInstallRepoWebhookParamsWithContext(ctx context.Context) *InstallRepoWebhookParams {
return &InstallRepoWebhookParams{
Context: ctx,
}
}
// NewInstallRepoWebhookParamsWithHTTPClient creates a new InstallRepoWebhookParams object
// with the ability to set a custom HTTPClient for a request.
func NewInstallRepoWebhookParamsWithHTTPClient(client *http.Client) *InstallRepoWebhookParams {
return &InstallRepoWebhookParams{
HTTPClient: client,
}
}
/*
InstallRepoWebhookParams contains all the parameters to send to the API endpoint
for the install repo webhook operation.
Typically these are written to a http.Request.
*/
type InstallRepoWebhookParams struct {
/* Body.
Parameters used when creating the repository webhook.
*/
Body garm_params.InstallWebhookParams
/* RepoID.
Repository ID.
*/
RepoID string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the install repo webhook params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *InstallRepoWebhookParams) WithDefaults() *InstallRepoWebhookParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the install repo webhook params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *InstallRepoWebhookParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the install repo webhook params
func (o *InstallRepoWebhookParams) WithTimeout(timeout time.Duration) *InstallRepoWebhookParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the install repo webhook params
func (o *InstallRepoWebhookParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the install repo webhook params
func (o *InstallRepoWebhookParams) WithContext(ctx context.Context) *InstallRepoWebhookParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the install repo webhook params
func (o *InstallRepoWebhookParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the install repo webhook params
func (o *InstallRepoWebhookParams) WithHTTPClient(client *http.Client) *InstallRepoWebhookParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the install repo webhook params
func (o *InstallRepoWebhookParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the install repo webhook params
func (o *InstallRepoWebhookParams) WithBody(body garm_params.InstallWebhookParams) *InstallRepoWebhookParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the install repo webhook params
func (o *InstallRepoWebhookParams) SetBody(body garm_params.InstallWebhookParams) {
o.Body = body
}
// WithRepoID adds the repoID to the install repo webhook params
func (o *InstallRepoWebhookParams) WithRepoID(repoID string) *InstallRepoWebhookParams {
o.SetRepoID(repoID)
return o
}
// SetRepoID adds the repoId to the install repo webhook params
func (o *InstallRepoWebhookParams) SetRepoID(repoID string) {
o.RepoID = repoID
}
// WriteToRequest writes these params to a swagger request
func (o *InstallRepoWebhookParams) 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 repoID
if err := r.SetPathParam("repoID", o.RepoID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}