garm/client/organizations/delete_org_pool_parameters.go
Mihaela Balutoiu db21fb6ea9 Update generated swagger client code
Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
2023-07-17 14:24:54 +03:00

173 lines
4.6 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package organizations
// 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"
)
// NewDeleteOrgPoolParams creates a new DeleteOrgPoolParams 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 NewDeleteOrgPoolParams() *DeleteOrgPoolParams {
return &DeleteOrgPoolParams{
timeout: cr.DefaultTimeout,
}
}
// NewDeleteOrgPoolParamsWithTimeout creates a new DeleteOrgPoolParams object
// with the ability to set a timeout on a request.
func NewDeleteOrgPoolParamsWithTimeout(timeout time.Duration) *DeleteOrgPoolParams {
return &DeleteOrgPoolParams{
timeout: timeout,
}
}
// NewDeleteOrgPoolParamsWithContext creates a new DeleteOrgPoolParams object
// with the ability to set a context for a request.
func NewDeleteOrgPoolParamsWithContext(ctx context.Context) *DeleteOrgPoolParams {
return &DeleteOrgPoolParams{
Context: ctx,
}
}
// NewDeleteOrgPoolParamsWithHTTPClient creates a new DeleteOrgPoolParams object
// with the ability to set a custom HTTPClient for a request.
func NewDeleteOrgPoolParamsWithHTTPClient(client *http.Client) *DeleteOrgPoolParams {
return &DeleteOrgPoolParams{
HTTPClient: client,
}
}
/*
DeleteOrgPoolParams contains all the parameters to send to the API endpoint
for the delete org pool operation.
Typically these are written to a http.Request.
*/
type DeleteOrgPoolParams struct {
/* OrgID.
Organization ID.
*/
OrgID string
/* PoolID.
ID of the organization pool to delete.
*/
PoolID string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the delete org pool params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteOrgPoolParams) WithDefaults() *DeleteOrgPoolParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the delete org pool params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteOrgPoolParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the delete org pool params
func (o *DeleteOrgPoolParams) WithTimeout(timeout time.Duration) *DeleteOrgPoolParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the delete org pool params
func (o *DeleteOrgPoolParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the delete org pool params
func (o *DeleteOrgPoolParams) WithContext(ctx context.Context) *DeleteOrgPoolParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete org pool params
func (o *DeleteOrgPoolParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the delete org pool params
func (o *DeleteOrgPoolParams) WithHTTPClient(client *http.Client) *DeleteOrgPoolParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the delete org pool params
func (o *DeleteOrgPoolParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithOrgID adds the orgID to the delete org pool params
func (o *DeleteOrgPoolParams) WithOrgID(orgID string) *DeleteOrgPoolParams {
o.SetOrgID(orgID)
return o
}
// SetOrgID adds the orgId to the delete org pool params
func (o *DeleteOrgPoolParams) SetOrgID(orgID string) {
o.OrgID = orgID
}
// WithPoolID adds the poolID to the delete org pool params
func (o *DeleteOrgPoolParams) WithPoolID(poolID string) *DeleteOrgPoolParams {
o.SetPoolID(poolID)
return o
}
// SetPoolID adds the poolId to the delete org pool params
func (o *DeleteOrgPoolParams) SetPoolID(poolID string) {
o.PoolID = poolID
}
// WriteToRequest writes these params to a swagger request
func (o *DeleteOrgPoolParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param orgID
if err := r.SetPathParam("orgID", o.OrgID); err != nil {
return err
}
// path param poolID
if err := r.SetPathParam("poolID", o.PoolID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}