garm/client/templates/update_template_parameters.go
Gabriel 23f92bc335
Add runner install template management (#525)
* Add template api endpoints

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Added template bypass

Pools and scale sets will automatically migrate to the new template
system for runner install scripts. If a pool or a scale set cannot be
migrate, it is left alone. It is expected that users set a runner install
template manually for scenarios we don't yet have a template for (windows
on gitea for example).

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Integrate templates with pool create/update

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Add webapp integration with templates

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Add unit tests

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Populate all relevant context fields

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Update dependencies

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Fix lint

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Validate uint

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Add CLI template management

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Some editor improvements and bugfixes

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Fix scale set return values post create

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

* Fix template websocket events filter

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>

---------

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2025-09-23 13:46:27 +03:00

173 lines
4.8 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package templates
// 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"
)
// NewUpdateTemplateParams creates a new UpdateTemplateParams 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 NewUpdateTemplateParams() *UpdateTemplateParams {
return &UpdateTemplateParams{
timeout: cr.DefaultTimeout,
}
}
// NewUpdateTemplateParamsWithTimeout creates a new UpdateTemplateParams object
// with the ability to set a timeout on a request.
func NewUpdateTemplateParamsWithTimeout(timeout time.Duration) *UpdateTemplateParams {
return &UpdateTemplateParams{
timeout: timeout,
}
}
// NewUpdateTemplateParamsWithContext creates a new UpdateTemplateParams object
// with the ability to set a context for a request.
func NewUpdateTemplateParamsWithContext(ctx context.Context) *UpdateTemplateParams {
return &UpdateTemplateParams{
Context: ctx,
}
}
// NewUpdateTemplateParamsWithHTTPClient creates a new UpdateTemplateParams object
// with the ability to set a custom HTTPClient for a request.
func NewUpdateTemplateParamsWithHTTPClient(client *http.Client) *UpdateTemplateParams {
return &UpdateTemplateParams{
HTTPClient: client,
}
}
/*
UpdateTemplateParams contains all the parameters to send to the API endpoint
for the update template operation.
Typically these are written to a http.Request.
*/
type UpdateTemplateParams struct {
/* Body.
Parameters used when updating the template.
*/
Body garm_params.UpdateTemplateParams
/* TemplateID.
ID of the template to update.
*/
TemplateID string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the update template params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UpdateTemplateParams) WithDefaults() *UpdateTemplateParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the update template params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *UpdateTemplateParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the update template params
func (o *UpdateTemplateParams) WithTimeout(timeout time.Duration) *UpdateTemplateParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the update template params
func (o *UpdateTemplateParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the update template params
func (o *UpdateTemplateParams) WithContext(ctx context.Context) *UpdateTemplateParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the update template params
func (o *UpdateTemplateParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the update template params
func (o *UpdateTemplateParams) WithHTTPClient(client *http.Client) *UpdateTemplateParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the update template params
func (o *UpdateTemplateParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the update template params
func (o *UpdateTemplateParams) WithBody(body garm_params.UpdateTemplateParams) *UpdateTemplateParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the update template params
func (o *UpdateTemplateParams) SetBody(body garm_params.UpdateTemplateParams) {
o.Body = body
}
// WithTemplateID adds the templateID to the update template params
func (o *UpdateTemplateParams) WithTemplateID(templateID string) *UpdateTemplateParams {
o.SetTemplateID(templateID)
return o
}
// SetTemplateID adds the templateId to the update template params
func (o *UpdateTemplateParams) SetTemplateID(templateID string) {
o.TemplateID = templateID
}
// WriteToRequest writes these params to a swagger request
func (o *UpdateTemplateParams) 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 templateID
if err := r.SetPathParam("templateID", o.TemplateID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}