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

151 lines
4.2 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"
)
// NewCreateTemplateParams creates a new CreateTemplateParams 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 NewCreateTemplateParams() *CreateTemplateParams {
return &CreateTemplateParams{
timeout: cr.DefaultTimeout,
}
}
// NewCreateTemplateParamsWithTimeout creates a new CreateTemplateParams object
// with the ability to set a timeout on a request.
func NewCreateTemplateParamsWithTimeout(timeout time.Duration) *CreateTemplateParams {
return &CreateTemplateParams{
timeout: timeout,
}
}
// NewCreateTemplateParamsWithContext creates a new CreateTemplateParams object
// with the ability to set a context for a request.
func NewCreateTemplateParamsWithContext(ctx context.Context) *CreateTemplateParams {
return &CreateTemplateParams{
Context: ctx,
}
}
// NewCreateTemplateParamsWithHTTPClient creates a new CreateTemplateParams object
// with the ability to set a custom HTTPClient for a request.
func NewCreateTemplateParamsWithHTTPClient(client *http.Client) *CreateTemplateParams {
return &CreateTemplateParams{
HTTPClient: client,
}
}
/*
CreateTemplateParams contains all the parameters to send to the API endpoint
for the create template operation.
Typically these are written to a http.Request.
*/
type CreateTemplateParams struct {
/* Body.
Parameters used when creating the template.
*/
Body garm_params.CreateTemplateParams
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the create template params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *CreateTemplateParams) WithDefaults() *CreateTemplateParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the create template params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *CreateTemplateParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the create template params
func (o *CreateTemplateParams) WithTimeout(timeout time.Duration) *CreateTemplateParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the create template params
func (o *CreateTemplateParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the create template params
func (o *CreateTemplateParams) WithContext(ctx context.Context) *CreateTemplateParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the create template params
func (o *CreateTemplateParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the create template params
func (o *CreateTemplateParams) WithHTTPClient(client *http.Client) *CreateTemplateParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the create template params
func (o *CreateTemplateParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the create template params
func (o *CreateTemplateParams) WithBody(body garm_params.CreateTemplateParams) *CreateTemplateParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the create template params
func (o *CreateTemplateParams) SetBody(body garm_params.CreateTemplateParams) {
o.Body = body
}
// WriteToRequest writes these params to a swagger request
func (o *CreateTemplateParams) 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
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}