Initial cloud-services repo - gateway service + pkg modules

This commit is contained in:
Chris Rai
2026-01-30 23:14:52 -05:00
commit fbb820d7b3
1037 changed files with 171318 additions and 0 deletions

View File

@@ -0,0 +1,153 @@
// Code generated by go-swagger; DO NOT EDIT.
package operations
// 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"
"fiskerinc.com/modules/ota_api/models"
)
// NewPutManifestsArchiveParams creates a new PutManifestsArchiveParams 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 NewPutManifestsArchiveParams() *PutManifestsArchiveParams {
return &PutManifestsArchiveParams{
timeout: cr.DefaultTimeout,
}
}
// NewPutManifestsArchiveParamsWithTimeout creates a new PutManifestsArchiveParams object
// with the ability to set a timeout on a request.
func NewPutManifestsArchiveParamsWithTimeout(timeout time.Duration) *PutManifestsArchiveParams {
return &PutManifestsArchiveParams{
timeout: timeout,
}
}
// NewPutManifestsArchiveParamsWithContext creates a new PutManifestsArchiveParams object
// with the ability to set a context for a request.
func NewPutManifestsArchiveParamsWithContext(ctx context.Context) *PutManifestsArchiveParams {
return &PutManifestsArchiveParams{
Context: ctx,
}
}
// NewPutManifestsArchiveParamsWithHTTPClient creates a new PutManifestsArchiveParams object
// with the ability to set a custom HTTPClient for a request.
func NewPutManifestsArchiveParamsWithHTTPClient(client *http.Client) *PutManifestsArchiveParams {
return &PutManifestsArchiveParams{
HTTPClient: client,
}
}
/*
PutManifestsArchiveParams contains all the parameters to send to the API endpoint
for the put manifests archive operation.
Typically these are written to a http.Request.
*/
type PutManifestsArchiveParams struct {
/* Manifest.
Manifest data
*/
Manifest *models.CommonUpdateManifestArchiveRequest
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the put manifests archive params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutManifestsArchiveParams) WithDefaults() *PutManifestsArchiveParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the put manifests archive params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutManifestsArchiveParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the put manifests archive params
func (o *PutManifestsArchiveParams) WithTimeout(timeout time.Duration) *PutManifestsArchiveParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the put manifests archive params
func (o *PutManifestsArchiveParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the put manifests archive params
func (o *PutManifestsArchiveParams) WithContext(ctx context.Context) *PutManifestsArchiveParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the put manifests archive params
func (o *PutManifestsArchiveParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the put manifests archive params
func (o *PutManifestsArchiveParams) WithHTTPClient(client *http.Client) *PutManifestsArchiveParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the put manifests archive params
func (o *PutManifestsArchiveParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithManifest adds the manifest to the put manifests archive params
func (o *PutManifestsArchiveParams) WithManifest(manifest *models.CommonUpdateManifestArchiveRequest) *PutManifestsArchiveParams {
o.SetManifest(manifest)
return o
}
// SetManifest adds the manifest to the put manifests archive params
func (o *PutManifestsArchiveParams) SetManifest(manifest *models.CommonUpdateManifestArchiveRequest) {
o.Manifest = manifest
}
// WriteToRequest writes these params to a swagger request
func (o *PutManifestsArchiveParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Manifest != nil {
if err := r.SetBodyParam(o.Manifest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}