garm/client/templates/delete_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

152 lines
4.3 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"
"github.com/go-openapi/swag"
)
// NewDeleteTemplateParams creates a new DeleteTemplateParams 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 NewDeleteTemplateParams() *DeleteTemplateParams {
return &DeleteTemplateParams{
timeout: cr.DefaultTimeout,
}
}
// NewDeleteTemplateParamsWithTimeout creates a new DeleteTemplateParams object
// with the ability to set a timeout on a request.
func NewDeleteTemplateParamsWithTimeout(timeout time.Duration) *DeleteTemplateParams {
return &DeleteTemplateParams{
timeout: timeout,
}
}
// NewDeleteTemplateParamsWithContext creates a new DeleteTemplateParams object
// with the ability to set a context for a request.
func NewDeleteTemplateParamsWithContext(ctx context.Context) *DeleteTemplateParams {
return &DeleteTemplateParams{
Context: ctx,
}
}
// NewDeleteTemplateParamsWithHTTPClient creates a new DeleteTemplateParams object
// with the ability to set a custom HTTPClient for a request.
func NewDeleteTemplateParamsWithHTTPClient(client *http.Client) *DeleteTemplateParams {
return &DeleteTemplateParams{
HTTPClient: client,
}
}
/*
DeleteTemplateParams contains all the parameters to send to the API endpoint
for the delete template operation.
Typically these are written to a http.Request.
*/
type DeleteTemplateParams struct {
/* TemplateID.
ID of the template to delete.
*/
TemplateID float64
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the delete template params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteTemplateParams) WithDefaults() *DeleteTemplateParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the delete template params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteTemplateParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the delete template params
func (o *DeleteTemplateParams) WithTimeout(timeout time.Duration) *DeleteTemplateParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the delete template params
func (o *DeleteTemplateParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the delete template params
func (o *DeleteTemplateParams) WithContext(ctx context.Context) *DeleteTemplateParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete template params
func (o *DeleteTemplateParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the delete template params
func (o *DeleteTemplateParams) WithHTTPClient(client *http.Client) *DeleteTemplateParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the delete template params
func (o *DeleteTemplateParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithTemplateID adds the templateID to the delete template params
func (o *DeleteTemplateParams) WithTemplateID(templateID float64) *DeleteTemplateParams {
o.SetTemplateID(templateID)
return o
}
// SetTemplateID adds the templateId to the delete template params
func (o *DeleteTemplateParams) SetTemplateID(templateID float64) {
o.TemplateID = templateID
}
// WriteToRequest writes these params to a swagger request
func (o *DeleteTemplateParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param templateID
if err := r.SetPathParam("templateID", swag.FormatFloat64(o.TemplateID)); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}