settings

package
v0.26.48 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 2, 2025 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for settings API

func (*Client) CreateControllerSetting

func (a *Client) CreateControllerSetting(params *CreateControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateControllerSettingCreated, error)

CreateControllerSetting creates a controller specific setting

Create a new controller specific settings object. Requires admin access.

func (*Client) DeleteControllerSetting

func (a *Client) DeleteControllerSetting(params *DeleteControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteControllerSettingOK, error)

DeleteControllerSetting deletes a controller setting object

Delete a controller setting object by id. Requires admin access.

func (*Client) DetailControllerSetting

func (a *Client) DetailControllerSetting(params *DetailControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailControllerSettingOK, error)

DetailControllerSetting retrieves a single controller setting object

Retrieves a single controller setting object by id. Requires admin access.

func (*Client) DetailControllerSettingEffective

func (a *Client) DetailControllerSettingEffective(params *DetailControllerSettingEffectiveParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailControllerSettingEffectiveOK, error)

DetailControllerSettingEffective retrieves a single controller s effective calculated settings from the instance and global configuration

Retrieves a single controller's effective setting object by id. Requires admin access.

func (*Client) ListControllerSettings

func (a *Client) ListControllerSettings(params *ListControllerSettingsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListControllerSettingsOK, error)

ListControllerSettings lists controller settings

Retrieves a list controller settings including the base `global` settings object and any overriding controller specific settings.

func (*Client) PatchControllerSetting

func (a *Client) PatchControllerSetting(params *PatchControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchControllerSettingOK, error)

PatchControllerSetting updates the supplied fields on a controller setting object

Update the supplied fields on a controller setting object. Requires admin access.

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

func (*Client) UpdateControllerSetting

func (a *Client) UpdateControllerSetting(params *UpdateControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateControllerSettingOK, error)

UpdateControllerSetting updates all fields on a controller setting object

Update all fields on a controller setting object by id. Requires admin access.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateControllerSetting(params *CreateControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateControllerSettingCreated, error)

	DeleteControllerSetting(params *DeleteControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteControllerSettingOK, error)

	DetailControllerSetting(params *DetailControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailControllerSettingOK, error)

	DetailControllerSettingEffective(params *DetailControllerSettingEffectiveParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailControllerSettingEffectiveOK, error)

	ListControllerSettings(params *ListControllerSettingsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListControllerSettingsOK, error)

	PatchControllerSetting(params *PatchControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchControllerSettingOK, error)

	UpdateControllerSetting(params *UpdateControllerSettingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateControllerSettingOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new settings API client.

type CreateControllerSettingBadRequest

type CreateControllerSettingBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
CreateControllerSettingBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewCreateControllerSettingBadRequest

func NewCreateControllerSettingBadRequest() *CreateControllerSettingBadRequest

NewCreateControllerSettingBadRequest creates a CreateControllerSettingBadRequest with default headers values

func (*CreateControllerSettingBadRequest) Error

func (*CreateControllerSettingBadRequest) GetPayload

type CreateControllerSettingCreated

type CreateControllerSettingCreated struct {
	Payload *rest_model.CreateEnvelope
}
CreateControllerSettingCreated describes a response with status code 201, with default header values.

The create request was successful and the resource has been added at the following location

func NewCreateControllerSettingCreated

func NewCreateControllerSettingCreated() *CreateControllerSettingCreated

NewCreateControllerSettingCreated creates a CreateControllerSettingCreated with default headers values

func (*CreateControllerSettingCreated) Error

func (*CreateControllerSettingCreated) GetPayload

type CreateControllerSettingParams

type CreateControllerSettingParams struct {

	/* ControllerSetting.

	   A controller settings object to create
	*/
	ControllerSetting *rest_model.ControllerSettingCreate

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

CreateControllerSettingParams contains all the parameters to send to the API endpoint

for the create controller setting operation.

Typically these are written to a http.Request.

func NewCreateControllerSettingParams

func NewCreateControllerSettingParams() *CreateControllerSettingParams

NewCreateControllerSettingParams creates a new CreateControllerSettingParams 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 NewCreateControllerSettingParamsWithContext

func NewCreateControllerSettingParamsWithContext(ctx context.Context) *CreateControllerSettingParams

NewCreateControllerSettingParamsWithContext creates a new CreateControllerSettingParams object with the ability to set a context for a request.

func NewCreateControllerSettingParamsWithHTTPClient

func NewCreateControllerSettingParamsWithHTTPClient(client *http.Client) *CreateControllerSettingParams

NewCreateControllerSettingParamsWithHTTPClient creates a new CreateControllerSettingParams object with the ability to set a custom HTTPClient for a request.

func NewCreateControllerSettingParamsWithTimeout

func NewCreateControllerSettingParamsWithTimeout(timeout time.Duration) *CreateControllerSettingParams

NewCreateControllerSettingParamsWithTimeout creates a new CreateControllerSettingParams object with the ability to set a timeout on a request.

func (*CreateControllerSettingParams) SetContext

func (o *CreateControllerSettingParams) SetContext(ctx context.Context)

SetContext adds the context to the create controller setting params

func (*CreateControllerSettingParams) SetControllerSetting

func (o *CreateControllerSettingParams) SetControllerSetting(controllerSetting *rest_model.ControllerSettingCreate)

SetControllerSetting adds the controllerSetting to the create controller setting params

func (*CreateControllerSettingParams) SetDefaults

func (o *CreateControllerSettingParams) SetDefaults()

SetDefaults hydrates default values in the create controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*CreateControllerSettingParams) SetHTTPClient

func (o *CreateControllerSettingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the create controller setting params

func (*CreateControllerSettingParams) SetTimeout

func (o *CreateControllerSettingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the create controller setting params

func (*CreateControllerSettingParams) WithContext

WithContext adds the context to the create controller setting params

func (*CreateControllerSettingParams) WithControllerSetting

WithControllerSetting adds the controllerSetting to the create controller setting params

func (*CreateControllerSettingParams) WithDefaults

WithDefaults hydrates default values in the create controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*CreateControllerSettingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create controller setting params

func (*CreateControllerSettingParams) WithTimeout

WithTimeout adds the timeout to the create controller setting params

func (*CreateControllerSettingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateControllerSettingReader

type CreateControllerSettingReader struct {
	// contains filtered or unexported fields
}

CreateControllerSettingReader is a Reader for the CreateControllerSetting structure.

func (*CreateControllerSettingReader) ReadResponse

func (o *CreateControllerSettingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type CreateControllerSettingTooManyRequests

type CreateControllerSettingTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
CreateControllerSettingTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewCreateControllerSettingTooManyRequests

func NewCreateControllerSettingTooManyRequests() *CreateControllerSettingTooManyRequests

NewCreateControllerSettingTooManyRequests creates a CreateControllerSettingTooManyRequests with default headers values

func (*CreateControllerSettingTooManyRequests) Error

func (*CreateControllerSettingTooManyRequests) GetPayload

type CreateControllerSettingUnauthorized

type CreateControllerSettingUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
CreateControllerSettingUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewCreateControllerSettingUnauthorized

func NewCreateControllerSettingUnauthorized() *CreateControllerSettingUnauthorized

NewCreateControllerSettingUnauthorized creates a CreateControllerSettingUnauthorized with default headers values

func (*CreateControllerSettingUnauthorized) Error

func (*CreateControllerSettingUnauthorized) GetPayload

type DeleteControllerSettingBadRequest

type DeleteControllerSettingBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteControllerSettingBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewDeleteControllerSettingBadRequest

func NewDeleteControllerSettingBadRequest() *DeleteControllerSettingBadRequest

NewDeleteControllerSettingBadRequest creates a DeleteControllerSettingBadRequest with default headers values

func (*DeleteControllerSettingBadRequest) Error

func (*DeleteControllerSettingBadRequest) GetPayload

type DeleteControllerSettingConflict

type DeleteControllerSettingConflict struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteControllerSettingConflict describes a response with status code 409, with default header values.

The resource requested to be removed/altered cannot be as it is referenced by another object.

func NewDeleteControllerSettingConflict

func NewDeleteControllerSettingConflict() *DeleteControllerSettingConflict

NewDeleteControllerSettingConflict creates a DeleteControllerSettingConflict with default headers values

func (*DeleteControllerSettingConflict) Error

func (*DeleteControllerSettingConflict) GetPayload

type DeleteControllerSettingOK

type DeleteControllerSettingOK struct {
	Payload *rest_model.Empty
}
DeleteControllerSettingOK describes a response with status code 200, with default header values.

The delete request was successful and the resource has been removed

func NewDeleteControllerSettingOK

func NewDeleteControllerSettingOK() *DeleteControllerSettingOK

NewDeleteControllerSettingOK creates a DeleteControllerSettingOK with default headers values

func (*DeleteControllerSettingOK) Error

func (o *DeleteControllerSettingOK) Error() string

func (*DeleteControllerSettingOK) GetPayload

func (o *DeleteControllerSettingOK) GetPayload() *rest_model.Empty

type DeleteControllerSettingParams

type DeleteControllerSettingParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteControllerSettingParams contains all the parameters to send to the API endpoint

for the delete controller setting operation.

Typically these are written to a http.Request.

func NewDeleteControllerSettingParams

func NewDeleteControllerSettingParams() *DeleteControllerSettingParams

NewDeleteControllerSettingParams creates a new DeleteControllerSettingParams 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 NewDeleteControllerSettingParamsWithContext

func NewDeleteControllerSettingParamsWithContext(ctx context.Context) *DeleteControllerSettingParams

NewDeleteControllerSettingParamsWithContext creates a new DeleteControllerSettingParams object with the ability to set a context for a request.

func NewDeleteControllerSettingParamsWithHTTPClient

func NewDeleteControllerSettingParamsWithHTTPClient(client *http.Client) *DeleteControllerSettingParams

NewDeleteControllerSettingParamsWithHTTPClient creates a new DeleteControllerSettingParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteControllerSettingParamsWithTimeout

func NewDeleteControllerSettingParamsWithTimeout(timeout time.Duration) *DeleteControllerSettingParams

NewDeleteControllerSettingParamsWithTimeout creates a new DeleteControllerSettingParams object with the ability to set a timeout on a request.

func (*DeleteControllerSettingParams) SetContext

func (o *DeleteControllerSettingParams) SetContext(ctx context.Context)

SetContext adds the context to the delete controller setting params

func (*DeleteControllerSettingParams) SetDefaults

func (o *DeleteControllerSettingParams) SetDefaults()

SetDefaults hydrates default values in the delete controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteControllerSettingParams) SetHTTPClient

func (o *DeleteControllerSettingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the delete controller setting params

func (*DeleteControllerSettingParams) SetID

SetID adds the id to the delete controller setting params

func (*DeleteControllerSettingParams) SetTimeout

func (o *DeleteControllerSettingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the delete controller setting params

func (*DeleteControllerSettingParams) WithContext

WithContext adds the context to the delete controller setting params

func (*DeleteControllerSettingParams) WithDefaults

WithDefaults hydrates default values in the delete controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteControllerSettingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete controller setting params

func (*DeleteControllerSettingParams) WithID

WithID adds the id to the delete controller setting params

func (*DeleteControllerSettingParams) WithTimeout

WithTimeout adds the timeout to the delete controller setting params

func (*DeleteControllerSettingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteControllerSettingReader

type DeleteControllerSettingReader struct {
	// contains filtered or unexported fields
}

DeleteControllerSettingReader is a Reader for the DeleteControllerSetting structure.

func (*DeleteControllerSettingReader) ReadResponse

func (o *DeleteControllerSettingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DeleteControllerSettingTooManyRequests

type DeleteControllerSettingTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteControllerSettingTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewDeleteControllerSettingTooManyRequests

func NewDeleteControllerSettingTooManyRequests() *DeleteControllerSettingTooManyRequests

NewDeleteControllerSettingTooManyRequests creates a DeleteControllerSettingTooManyRequests with default headers values

func (*DeleteControllerSettingTooManyRequests) Error

func (*DeleteControllerSettingTooManyRequests) GetPayload

type DeleteControllerSettingUnauthorized

type DeleteControllerSettingUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
DeleteControllerSettingUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewDeleteControllerSettingUnauthorized

func NewDeleteControllerSettingUnauthorized() *DeleteControllerSettingUnauthorized

NewDeleteControllerSettingUnauthorized creates a DeleteControllerSettingUnauthorized with default headers values

func (*DeleteControllerSettingUnauthorized) Error

func (*DeleteControllerSettingUnauthorized) GetPayload

type DetailControllerSettingEffectiveNotFound

type DetailControllerSettingEffectiveNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailControllerSettingEffectiveNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewDetailControllerSettingEffectiveNotFound

func NewDetailControllerSettingEffectiveNotFound() *DetailControllerSettingEffectiveNotFound

NewDetailControllerSettingEffectiveNotFound creates a DetailControllerSettingEffectiveNotFound with default headers values

func (*DetailControllerSettingEffectiveNotFound) Error

func (*DetailControllerSettingEffectiveNotFound) GetPayload

type DetailControllerSettingEffectiveOK

type DetailControllerSettingEffectiveOK struct {
	Payload *rest_model.DetailControllerSettingEffectiveEnvelope
}
DetailControllerSettingEffectiveOK describes a response with status code 200, with default header values.

A singular controller's effective setting object

func NewDetailControllerSettingEffectiveOK

func NewDetailControllerSettingEffectiveOK() *DetailControllerSettingEffectiveOK

NewDetailControllerSettingEffectiveOK creates a DetailControllerSettingEffectiveOK with default headers values

func (*DetailControllerSettingEffectiveOK) Error

func (*DetailControllerSettingEffectiveOK) GetPayload

type DetailControllerSettingEffectiveParams

type DetailControllerSettingEffectiveParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DetailControllerSettingEffectiveParams contains all the parameters to send to the API endpoint

for the detail controller setting effective operation.

Typically these are written to a http.Request.

func NewDetailControllerSettingEffectiveParams

func NewDetailControllerSettingEffectiveParams() *DetailControllerSettingEffectiveParams

NewDetailControllerSettingEffectiveParams creates a new DetailControllerSettingEffectiveParams 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 NewDetailControllerSettingEffectiveParamsWithContext

func NewDetailControllerSettingEffectiveParamsWithContext(ctx context.Context) *DetailControllerSettingEffectiveParams

NewDetailControllerSettingEffectiveParamsWithContext creates a new DetailControllerSettingEffectiveParams object with the ability to set a context for a request.

func NewDetailControllerSettingEffectiveParamsWithHTTPClient

func NewDetailControllerSettingEffectiveParamsWithHTTPClient(client *http.Client) *DetailControllerSettingEffectiveParams

NewDetailControllerSettingEffectiveParamsWithHTTPClient creates a new DetailControllerSettingEffectiveParams object with the ability to set a custom HTTPClient for a request.

func NewDetailControllerSettingEffectiveParamsWithTimeout

func NewDetailControllerSettingEffectiveParamsWithTimeout(timeout time.Duration) *DetailControllerSettingEffectiveParams

NewDetailControllerSettingEffectiveParamsWithTimeout creates a new DetailControllerSettingEffectiveParams object with the ability to set a timeout on a request.

func (*DetailControllerSettingEffectiveParams) SetContext

SetContext adds the context to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) SetDefaults

func (o *DetailControllerSettingEffectiveParams) SetDefaults()

SetDefaults hydrates default values in the detail controller setting effective params (not the query body).

All values with no default are reset to their zero value.

func (*DetailControllerSettingEffectiveParams) SetHTTPClient

func (o *DetailControllerSettingEffectiveParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) SetID

SetID adds the id to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) SetTimeout

func (o *DetailControllerSettingEffectiveParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) WithContext

WithContext adds the context to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) WithDefaults

WithDefaults hydrates default values in the detail controller setting effective params (not the query body).

All values with no default are reset to their zero value.

func (*DetailControllerSettingEffectiveParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) WithID

WithID adds the id to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) WithTimeout

WithTimeout adds the timeout to the detail controller setting effective params

func (*DetailControllerSettingEffectiveParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DetailControllerSettingEffectiveReader

type DetailControllerSettingEffectiveReader struct {
	// contains filtered or unexported fields
}

DetailControllerSettingEffectiveReader is a Reader for the DetailControllerSettingEffective structure.

func (*DetailControllerSettingEffectiveReader) ReadResponse

func (o *DetailControllerSettingEffectiveReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DetailControllerSettingEffectiveTooManyRequests

type DetailControllerSettingEffectiveTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailControllerSettingEffectiveTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewDetailControllerSettingEffectiveTooManyRequests

func NewDetailControllerSettingEffectiveTooManyRequests() *DetailControllerSettingEffectiveTooManyRequests

NewDetailControllerSettingEffectiveTooManyRequests creates a DetailControllerSettingEffectiveTooManyRequests with default headers values

func (*DetailControllerSettingEffectiveTooManyRequests) Error

func (*DetailControllerSettingEffectiveTooManyRequests) GetPayload

type DetailControllerSettingEffectiveUnauthorized

type DetailControllerSettingEffectiveUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailControllerSettingEffectiveUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewDetailControllerSettingEffectiveUnauthorized

func NewDetailControllerSettingEffectiveUnauthorized() *DetailControllerSettingEffectiveUnauthorized

NewDetailControllerSettingEffectiveUnauthorized creates a DetailControllerSettingEffectiveUnauthorized with default headers values

func (*DetailControllerSettingEffectiveUnauthorized) Error

func (*DetailControllerSettingEffectiveUnauthorized) GetPayload

type DetailControllerSettingNotFound

type DetailControllerSettingNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailControllerSettingNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewDetailControllerSettingNotFound

func NewDetailControllerSettingNotFound() *DetailControllerSettingNotFound

NewDetailControllerSettingNotFound creates a DetailControllerSettingNotFound with default headers values

func (*DetailControllerSettingNotFound) Error

func (*DetailControllerSettingNotFound) GetPayload

type DetailControllerSettingOK

type DetailControllerSettingOK struct {
	Payload *rest_model.DetailControllerSettingEnvelope
}
DetailControllerSettingOK describes a response with status code 200, with default header values.

A singular controller setting object

func NewDetailControllerSettingOK

func NewDetailControllerSettingOK() *DetailControllerSettingOK

NewDetailControllerSettingOK creates a DetailControllerSettingOK with default headers values

func (*DetailControllerSettingOK) Error

func (o *DetailControllerSettingOK) Error() string

func (*DetailControllerSettingOK) GetPayload

type DetailControllerSettingParams

type DetailControllerSettingParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DetailControllerSettingParams contains all the parameters to send to the API endpoint

for the detail controller setting operation.

Typically these are written to a http.Request.

func NewDetailControllerSettingParams

func NewDetailControllerSettingParams() *DetailControllerSettingParams

NewDetailControllerSettingParams creates a new DetailControllerSettingParams 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 NewDetailControllerSettingParamsWithContext

func NewDetailControllerSettingParamsWithContext(ctx context.Context) *DetailControllerSettingParams

NewDetailControllerSettingParamsWithContext creates a new DetailControllerSettingParams object with the ability to set a context for a request.

func NewDetailControllerSettingParamsWithHTTPClient

func NewDetailControllerSettingParamsWithHTTPClient(client *http.Client) *DetailControllerSettingParams

NewDetailControllerSettingParamsWithHTTPClient creates a new DetailControllerSettingParams object with the ability to set a custom HTTPClient for a request.

func NewDetailControllerSettingParamsWithTimeout

func NewDetailControllerSettingParamsWithTimeout(timeout time.Duration) *DetailControllerSettingParams

NewDetailControllerSettingParamsWithTimeout creates a new DetailControllerSettingParams object with the ability to set a timeout on a request.

func (*DetailControllerSettingParams) SetContext

func (o *DetailControllerSettingParams) SetContext(ctx context.Context)

SetContext adds the context to the detail controller setting params

func (*DetailControllerSettingParams) SetDefaults

func (o *DetailControllerSettingParams) SetDefaults()

SetDefaults hydrates default values in the detail controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*DetailControllerSettingParams) SetHTTPClient

func (o *DetailControllerSettingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the detail controller setting params

func (*DetailControllerSettingParams) SetID

SetID adds the id to the detail controller setting params

func (*DetailControllerSettingParams) SetTimeout

func (o *DetailControllerSettingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the detail controller setting params

func (*DetailControllerSettingParams) WithContext

WithContext adds the context to the detail controller setting params

func (*DetailControllerSettingParams) WithDefaults

WithDefaults hydrates default values in the detail controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*DetailControllerSettingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the detail controller setting params

func (*DetailControllerSettingParams) WithID

WithID adds the id to the detail controller setting params

func (*DetailControllerSettingParams) WithTimeout

WithTimeout adds the timeout to the detail controller setting params

func (*DetailControllerSettingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DetailControllerSettingReader

type DetailControllerSettingReader struct {
	// contains filtered or unexported fields
}

DetailControllerSettingReader is a Reader for the DetailControllerSetting structure.

func (*DetailControllerSettingReader) ReadResponse

func (o *DetailControllerSettingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DetailControllerSettingTooManyRequests

type DetailControllerSettingTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailControllerSettingTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewDetailControllerSettingTooManyRequests

func NewDetailControllerSettingTooManyRequests() *DetailControllerSettingTooManyRequests

NewDetailControllerSettingTooManyRequests creates a DetailControllerSettingTooManyRequests with default headers values

func (*DetailControllerSettingTooManyRequests) Error

func (*DetailControllerSettingTooManyRequests) GetPayload

type DetailControllerSettingUnauthorized

type DetailControllerSettingUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
DetailControllerSettingUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewDetailControllerSettingUnauthorized

func NewDetailControllerSettingUnauthorized() *DetailControllerSettingUnauthorized

NewDetailControllerSettingUnauthorized creates a DetailControllerSettingUnauthorized with default headers values

func (*DetailControllerSettingUnauthorized) Error

func (*DetailControllerSettingUnauthorized) GetPayload

type ListControllerSettingsBadRequest

type ListControllerSettingsBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
ListControllerSettingsBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewListControllerSettingsBadRequest

func NewListControllerSettingsBadRequest() *ListControllerSettingsBadRequest

NewListControllerSettingsBadRequest creates a ListControllerSettingsBadRequest with default headers values

func (*ListControllerSettingsBadRequest) Error

func (*ListControllerSettingsBadRequest) GetPayload

type ListControllerSettingsOK

type ListControllerSettingsOK struct {
	Payload *rest_model.ListControllerSettingEnvelope
}
ListControllerSettingsOK describes a response with status code 200, with default header values.

A list of controller setting objects

func NewListControllerSettingsOK

func NewListControllerSettingsOK() *ListControllerSettingsOK

NewListControllerSettingsOK creates a ListControllerSettingsOK with default headers values

func (*ListControllerSettingsOK) Error

func (o *ListControllerSettingsOK) Error() string

func (*ListControllerSettingsOK) GetPayload

type ListControllerSettingsParams

type ListControllerSettingsParams struct {

	// Filter.
	Filter *string

	// Limit.
	Limit *int64

	// Offset.
	Offset *int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ListControllerSettingsParams contains all the parameters to send to the API endpoint

for the list controller settings operation.

Typically these are written to a http.Request.

func NewListControllerSettingsParams

func NewListControllerSettingsParams() *ListControllerSettingsParams

NewListControllerSettingsParams creates a new ListControllerSettingsParams 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 NewListControllerSettingsParamsWithContext

func NewListControllerSettingsParamsWithContext(ctx context.Context) *ListControllerSettingsParams

NewListControllerSettingsParamsWithContext creates a new ListControllerSettingsParams object with the ability to set a context for a request.

func NewListControllerSettingsParamsWithHTTPClient

func NewListControllerSettingsParamsWithHTTPClient(client *http.Client) *ListControllerSettingsParams

NewListControllerSettingsParamsWithHTTPClient creates a new ListControllerSettingsParams object with the ability to set a custom HTTPClient for a request.

func NewListControllerSettingsParamsWithTimeout

func NewListControllerSettingsParamsWithTimeout(timeout time.Duration) *ListControllerSettingsParams

NewListControllerSettingsParamsWithTimeout creates a new ListControllerSettingsParams object with the ability to set a timeout on a request.

func (*ListControllerSettingsParams) SetContext

func (o *ListControllerSettingsParams) SetContext(ctx context.Context)

SetContext adds the context to the list controller settings params

func (*ListControllerSettingsParams) SetDefaults

func (o *ListControllerSettingsParams) SetDefaults()

SetDefaults hydrates default values in the list controller settings params (not the query body).

All values with no default are reset to their zero value.

func (*ListControllerSettingsParams) SetFilter

func (o *ListControllerSettingsParams) SetFilter(filter *string)

SetFilter adds the filter to the list controller settings params

func (*ListControllerSettingsParams) SetHTTPClient

func (o *ListControllerSettingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the list controller settings params

func (*ListControllerSettingsParams) SetLimit

func (o *ListControllerSettingsParams) SetLimit(limit *int64)

SetLimit adds the limit to the list controller settings params

func (*ListControllerSettingsParams) SetOffset

func (o *ListControllerSettingsParams) SetOffset(offset *int64)

SetOffset adds the offset to the list controller settings params

func (*ListControllerSettingsParams) SetTimeout

func (o *ListControllerSettingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the list controller settings params

func (*ListControllerSettingsParams) WithContext

WithContext adds the context to the list controller settings params

func (*ListControllerSettingsParams) WithDefaults

WithDefaults hydrates default values in the list controller settings params (not the query body).

All values with no default are reset to their zero value.

func (*ListControllerSettingsParams) WithFilter

WithFilter adds the filter to the list controller settings params

func (*ListControllerSettingsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list controller settings params

func (*ListControllerSettingsParams) WithLimit

WithLimit adds the limit to the list controller settings params

func (*ListControllerSettingsParams) WithOffset

WithOffset adds the offset to the list controller settings params

func (*ListControllerSettingsParams) WithTimeout

WithTimeout adds the timeout to the list controller settings params

func (*ListControllerSettingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListControllerSettingsReader

type ListControllerSettingsReader struct {
	// contains filtered or unexported fields
}

ListControllerSettingsReader is a Reader for the ListControllerSettings structure.

func (*ListControllerSettingsReader) ReadResponse

func (o *ListControllerSettingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ListControllerSettingsTooManyRequests

type ListControllerSettingsTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
ListControllerSettingsTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewListControllerSettingsTooManyRequests

func NewListControllerSettingsTooManyRequests() *ListControllerSettingsTooManyRequests

NewListControllerSettingsTooManyRequests creates a ListControllerSettingsTooManyRequests with default headers values

func (*ListControllerSettingsTooManyRequests) Error

func (*ListControllerSettingsTooManyRequests) GetPayload

type ListControllerSettingsUnauthorized

type ListControllerSettingsUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
ListControllerSettingsUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewListControllerSettingsUnauthorized

func NewListControllerSettingsUnauthorized() *ListControllerSettingsUnauthorized

NewListControllerSettingsUnauthorized creates a ListControllerSettingsUnauthorized with default headers values

func (*ListControllerSettingsUnauthorized) Error

func (*ListControllerSettingsUnauthorized) GetPayload

type PatchControllerSettingBadRequest

type PatchControllerSettingBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchControllerSettingBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewPatchControllerSettingBadRequest

func NewPatchControllerSettingBadRequest() *PatchControllerSettingBadRequest

NewPatchControllerSettingBadRequest creates a PatchControllerSettingBadRequest with default headers values

func (*PatchControllerSettingBadRequest) Error

func (*PatchControllerSettingBadRequest) GetPayload

type PatchControllerSettingNotFound

type PatchControllerSettingNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchControllerSettingNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewPatchControllerSettingNotFound

func NewPatchControllerSettingNotFound() *PatchControllerSettingNotFound

NewPatchControllerSettingNotFound creates a PatchControllerSettingNotFound with default headers values

func (*PatchControllerSettingNotFound) Error

func (*PatchControllerSettingNotFound) GetPayload

type PatchControllerSettingOK

type PatchControllerSettingOK struct {
	Payload *rest_model.Empty
}
PatchControllerSettingOK describes a response with status code 200, with default header values.

The patch request was successful and the resource has been altered

func NewPatchControllerSettingOK

func NewPatchControllerSettingOK() *PatchControllerSettingOK

NewPatchControllerSettingOK creates a PatchControllerSettingOK with default headers values

func (*PatchControllerSettingOK) Error

func (o *PatchControllerSettingOK) Error() string

func (*PatchControllerSettingOK) GetPayload

func (o *PatchControllerSettingOK) GetPayload() *rest_model.Empty

type PatchControllerSettingParams

type PatchControllerSettingParams struct {

	/* ControllerSetting.

	   A controller setting object patch object
	*/
	ControllerSetting *rest_model.ControllerSettingPatch

	/* ID.

	   The id of the requested resource
	*/
	ID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PatchControllerSettingParams contains all the parameters to send to the API endpoint

for the patch controller setting operation.

Typically these are written to a http.Request.

func NewPatchControllerSettingParams

func NewPatchControllerSettingParams() *PatchControllerSettingParams

NewPatchControllerSettingParams creates a new PatchControllerSettingParams 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 NewPatchControllerSettingParamsWithContext

func NewPatchControllerSettingParamsWithContext(ctx context.Context) *PatchControllerSettingParams

NewPatchControllerSettingParamsWithContext creates a new PatchControllerSettingParams object with the ability to set a context for a request.

func NewPatchControllerSettingParamsWithHTTPClient

func NewPatchControllerSettingParamsWithHTTPClient(client *http.Client) *PatchControllerSettingParams

NewPatchControllerSettingParamsWithHTTPClient creates a new PatchControllerSettingParams object with the ability to set a custom HTTPClient for a request.

func NewPatchControllerSettingParamsWithTimeout

func NewPatchControllerSettingParamsWithTimeout(timeout time.Duration) *PatchControllerSettingParams

NewPatchControllerSettingParamsWithTimeout creates a new PatchControllerSettingParams object with the ability to set a timeout on a request.

func (*PatchControllerSettingParams) SetContext

func (o *PatchControllerSettingParams) SetContext(ctx context.Context)

SetContext adds the context to the patch controller setting params

func (*PatchControllerSettingParams) SetControllerSetting

func (o *PatchControllerSettingParams) SetControllerSetting(controllerSetting *rest_model.ControllerSettingPatch)

SetControllerSetting adds the controllerSetting to the patch controller setting params

func (*PatchControllerSettingParams) SetDefaults

func (o *PatchControllerSettingParams) SetDefaults()

SetDefaults hydrates default values in the patch controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*PatchControllerSettingParams) SetHTTPClient

func (o *PatchControllerSettingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the patch controller setting params

func (*PatchControllerSettingParams) SetID

func (o *PatchControllerSettingParams) SetID(id string)

SetID adds the id to the patch controller setting params

func (*PatchControllerSettingParams) SetTimeout

func (o *PatchControllerSettingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the patch controller setting params

func (*PatchControllerSettingParams) WithContext

WithContext adds the context to the patch controller setting params

func (*PatchControllerSettingParams) WithControllerSetting

WithControllerSetting adds the controllerSetting to the patch controller setting params

func (*PatchControllerSettingParams) WithDefaults

WithDefaults hydrates default values in the patch controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*PatchControllerSettingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch controller setting params

func (*PatchControllerSettingParams) WithID

WithID adds the id to the patch controller setting params

func (*PatchControllerSettingParams) WithTimeout

WithTimeout adds the timeout to the patch controller setting params

func (*PatchControllerSettingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchControllerSettingReader

type PatchControllerSettingReader struct {
	// contains filtered or unexported fields
}

PatchControllerSettingReader is a Reader for the PatchControllerSetting structure.

func (*PatchControllerSettingReader) ReadResponse

func (o *PatchControllerSettingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PatchControllerSettingTooManyRequests

type PatchControllerSettingTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchControllerSettingTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewPatchControllerSettingTooManyRequests

func NewPatchControllerSettingTooManyRequests() *PatchControllerSettingTooManyRequests

NewPatchControllerSettingTooManyRequests creates a PatchControllerSettingTooManyRequests with default headers values

func (*PatchControllerSettingTooManyRequests) Error

func (*PatchControllerSettingTooManyRequests) GetPayload

type PatchControllerSettingUnauthorized

type PatchControllerSettingUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
PatchControllerSettingUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewPatchControllerSettingUnauthorized

func NewPatchControllerSettingUnauthorized() *PatchControllerSettingUnauthorized

NewPatchControllerSettingUnauthorized creates a PatchControllerSettingUnauthorized with default headers values

func (*PatchControllerSettingUnauthorized) Error

func (*PatchControllerSettingUnauthorized) GetPayload

type UpdateControllerSettingBadRequest

type UpdateControllerSettingBadRequest struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateControllerSettingBadRequest describes a response with status code 400, with default header values.

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewUpdateControllerSettingBadRequest

func NewUpdateControllerSettingBadRequest() *UpdateControllerSettingBadRequest

NewUpdateControllerSettingBadRequest creates a UpdateControllerSettingBadRequest with default headers values

func (*UpdateControllerSettingBadRequest) Error

func (*UpdateControllerSettingBadRequest) GetPayload

type UpdateControllerSettingNotFound

type UpdateControllerSettingNotFound struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateControllerSettingNotFound describes a response with status code 404, with default header values.

The requested resource does not exist

func NewUpdateControllerSettingNotFound

func NewUpdateControllerSettingNotFound() *UpdateControllerSettingNotFound

NewUpdateControllerSettingNotFound creates a UpdateControllerSettingNotFound with default headers values

func (*UpdateControllerSettingNotFound) Error

func (*UpdateControllerSettingNotFound) GetPayload

type UpdateControllerSettingOK

type UpdateControllerSettingOK struct {
	Payload *rest_model.Empty
}
UpdateControllerSettingOK describes a response with status code 200, with default header values.

The update request was successful and the resource has been altered

func NewUpdateControllerSettingOK

func NewUpdateControllerSettingOK() *UpdateControllerSettingOK

NewUpdateControllerSettingOK creates a UpdateControllerSettingOK with default headers values

func (*UpdateControllerSettingOK) Error

func (o *UpdateControllerSettingOK) Error() string

func (*UpdateControllerSettingOK) GetPayload

func (o *UpdateControllerSettingOK) GetPayload() *rest_model.Empty

type UpdateControllerSettingParams

type UpdateControllerSettingParams struct {

	/* ControllerSetting.

	   A controller setting update object
	*/
	ControllerSetting *rest_model.ControllerSettingUpdate

	/* ID.

	   The id of the requested resource
	*/
	ID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

UpdateControllerSettingParams contains all the parameters to send to the API endpoint

for the update controller setting operation.

Typically these are written to a http.Request.

func NewUpdateControllerSettingParams

func NewUpdateControllerSettingParams() *UpdateControllerSettingParams

NewUpdateControllerSettingParams creates a new UpdateControllerSettingParams 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 NewUpdateControllerSettingParamsWithContext

func NewUpdateControllerSettingParamsWithContext(ctx context.Context) *UpdateControllerSettingParams

NewUpdateControllerSettingParamsWithContext creates a new UpdateControllerSettingParams object with the ability to set a context for a request.

func NewUpdateControllerSettingParamsWithHTTPClient

func NewUpdateControllerSettingParamsWithHTTPClient(client *http.Client) *UpdateControllerSettingParams

NewUpdateControllerSettingParamsWithHTTPClient creates a new UpdateControllerSettingParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateControllerSettingParamsWithTimeout

func NewUpdateControllerSettingParamsWithTimeout(timeout time.Duration) *UpdateControllerSettingParams

NewUpdateControllerSettingParamsWithTimeout creates a new UpdateControllerSettingParams object with the ability to set a timeout on a request.

func (*UpdateControllerSettingParams) SetContext

func (o *UpdateControllerSettingParams) SetContext(ctx context.Context)

SetContext adds the context to the update controller setting params

func (*UpdateControllerSettingParams) SetControllerSetting

func (o *UpdateControllerSettingParams) SetControllerSetting(controllerSetting *rest_model.ControllerSettingUpdate)

SetControllerSetting adds the controllerSetting to the update controller setting params

func (*UpdateControllerSettingParams) SetDefaults

func (o *UpdateControllerSettingParams) SetDefaults()

SetDefaults hydrates default values in the update controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateControllerSettingParams) SetHTTPClient

func (o *UpdateControllerSettingParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the update controller setting params

func (*UpdateControllerSettingParams) SetID

SetID adds the id to the update controller setting params

func (*UpdateControllerSettingParams) SetTimeout

func (o *UpdateControllerSettingParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the update controller setting params

func (*UpdateControllerSettingParams) WithContext

WithContext adds the context to the update controller setting params

func (*UpdateControllerSettingParams) WithControllerSetting

WithControllerSetting adds the controllerSetting to the update controller setting params

func (*UpdateControllerSettingParams) WithDefaults

WithDefaults hydrates default values in the update controller setting params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateControllerSettingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update controller setting params

func (*UpdateControllerSettingParams) WithID

WithID adds the id to the update controller setting params

func (*UpdateControllerSettingParams) WithTimeout

WithTimeout adds the timeout to the update controller setting params

func (*UpdateControllerSettingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateControllerSettingReader

type UpdateControllerSettingReader struct {
	// contains filtered or unexported fields
}

UpdateControllerSettingReader is a Reader for the UpdateControllerSetting structure.

func (*UpdateControllerSettingReader) ReadResponse

func (o *UpdateControllerSettingReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type UpdateControllerSettingTooManyRequests

type UpdateControllerSettingTooManyRequests struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateControllerSettingTooManyRequests describes a response with status code 429, with default header values.

The resource requested is rate limited and the rate limit has been exceeded

func NewUpdateControllerSettingTooManyRequests

func NewUpdateControllerSettingTooManyRequests() *UpdateControllerSettingTooManyRequests

NewUpdateControllerSettingTooManyRequests creates a UpdateControllerSettingTooManyRequests with default headers values

func (*UpdateControllerSettingTooManyRequests) Error

func (*UpdateControllerSettingTooManyRequests) GetPayload

type UpdateControllerSettingUnauthorized

type UpdateControllerSettingUnauthorized struct {
	Payload *rest_model.APIErrorEnvelope
}
UpdateControllerSettingUnauthorized describes a response with status code 401, with default header values.

The supplied session does not have the correct access rights to request this resource

func NewUpdateControllerSettingUnauthorized

func NewUpdateControllerSettingUnauthorized() *UpdateControllerSettingUnauthorized

NewUpdateControllerSettingUnauthorized creates a UpdateControllerSettingUnauthorized with default headers values

func (*UpdateControllerSettingUnauthorized) Error

func (*UpdateControllerSettingUnauthorized) GetPayload

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL