settings

package
v0.26.53 Latest Latest
Warning

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

Go to latest
Published: Feb 12, 2026 License: Apache-2.0 Imports: 13 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 may be used to customize the behavior of 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.

func NewClientWithBasicAuth added in v0.26.53

func NewClientWithBasicAuth(host, basePath, scheme, user, password string) ClientService

New creates a new settings API client with basic auth credentials. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - user: user for basic authentication header. - password: password for basic authentication header.

func NewClientWithBearerToken added in v0.26.53

func NewClientWithBearerToken(host, basePath, scheme, bearerToken string) ClientService

New creates a new settings API client with a bearer token for authentication. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - bearerToken: bearer token for Bearer authentication header.

type CreateControllerSettingBadRequest

type CreateControllerSettingBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the create controller setting bad request response

func (*CreateControllerSettingBadRequest) Error

func (*CreateControllerSettingBadRequest) GetPayload

func (*CreateControllerSettingBadRequest) IsClientError added in v0.26.53

func (o *CreateControllerSettingBadRequest) IsClientError() bool

IsClientError returns true when this create controller setting bad request response has a 4xx status code

func (*CreateControllerSettingBadRequest) IsCode added in v0.26.53

func (o *CreateControllerSettingBadRequest) IsCode(code int) bool

IsCode returns true when this create controller setting bad request response a status code equal to that given

func (*CreateControllerSettingBadRequest) IsRedirect added in v0.26.53

func (o *CreateControllerSettingBadRequest) IsRedirect() bool

IsRedirect returns true when this create controller setting bad request response has a 3xx status code

func (*CreateControllerSettingBadRequest) IsServerError added in v0.26.53

func (o *CreateControllerSettingBadRequest) IsServerError() bool

IsServerError returns true when this create controller setting bad request response has a 5xx status code

func (*CreateControllerSettingBadRequest) IsSuccess added in v0.26.53

func (o *CreateControllerSettingBadRequest) IsSuccess() bool

IsSuccess returns true when this create controller setting bad request response has a 2xx status code

func (*CreateControllerSettingBadRequest) String added in v0.26.53

type CreateControllerSettingCreated

type CreateControllerSettingCreated struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the create controller setting created response

func (*CreateControllerSettingCreated) Error

func (*CreateControllerSettingCreated) GetPayload

func (*CreateControllerSettingCreated) IsClientError added in v0.26.53

func (o *CreateControllerSettingCreated) IsClientError() bool

IsClientError returns true when this create controller setting created response has a 4xx status code

func (*CreateControllerSettingCreated) IsCode added in v0.26.53

func (o *CreateControllerSettingCreated) IsCode(code int) bool

IsCode returns true when this create controller setting created response a status code equal to that given

func (*CreateControllerSettingCreated) IsRedirect added in v0.26.53

func (o *CreateControllerSettingCreated) IsRedirect() bool

IsRedirect returns true when this create controller setting created response has a 3xx status code

func (*CreateControllerSettingCreated) IsServerError added in v0.26.53

func (o *CreateControllerSettingCreated) IsServerError() bool

IsServerError returns true when this create controller setting created response has a 5xx status code

func (*CreateControllerSettingCreated) IsSuccess added in v0.26.53

func (o *CreateControllerSettingCreated) IsSuccess() bool

IsSuccess returns true when this create controller setting created response has a 2xx status code

func (*CreateControllerSettingCreated) String added in v0.26.53

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) (any, error)

ReadResponse reads a server response into the received o.

type CreateControllerSettingTooManyRequests

type CreateControllerSettingTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the create controller setting too many requests response

func (*CreateControllerSettingTooManyRequests) Error

func (*CreateControllerSettingTooManyRequests) GetPayload

func (*CreateControllerSettingTooManyRequests) IsClientError added in v0.26.53

func (o *CreateControllerSettingTooManyRequests) IsClientError() bool

IsClientError returns true when this create controller setting too many requests response has a 4xx status code

func (*CreateControllerSettingTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this create controller setting too many requests response a status code equal to that given

func (*CreateControllerSettingTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this create controller setting too many requests response has a 3xx status code

func (*CreateControllerSettingTooManyRequests) IsServerError added in v0.26.53

func (o *CreateControllerSettingTooManyRequests) IsServerError() bool

IsServerError returns true when this create controller setting too many requests response has a 5xx status code

func (*CreateControllerSettingTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this create controller setting too many requests response has a 2xx status code

func (*CreateControllerSettingTooManyRequests) String added in v0.26.53

type CreateControllerSettingUnauthorized

type CreateControllerSettingUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the create controller setting unauthorized response

func (*CreateControllerSettingUnauthorized) Error

func (*CreateControllerSettingUnauthorized) GetPayload

func (*CreateControllerSettingUnauthorized) IsClientError added in v0.26.53

func (o *CreateControllerSettingUnauthorized) IsClientError() bool

IsClientError returns true when this create controller setting unauthorized response has a 4xx status code

func (*CreateControllerSettingUnauthorized) IsCode added in v0.26.53

IsCode returns true when this create controller setting unauthorized response a status code equal to that given

func (*CreateControllerSettingUnauthorized) IsRedirect added in v0.26.53

func (o *CreateControllerSettingUnauthorized) IsRedirect() bool

IsRedirect returns true when this create controller setting unauthorized response has a 3xx status code

func (*CreateControllerSettingUnauthorized) IsServerError added in v0.26.53

func (o *CreateControllerSettingUnauthorized) IsServerError() bool

IsServerError returns true when this create controller setting unauthorized response has a 5xx status code

func (*CreateControllerSettingUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this create controller setting unauthorized response has a 2xx status code

func (*CreateControllerSettingUnauthorized) String added in v0.26.53

type DeleteControllerSettingBadRequest

type DeleteControllerSettingBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the delete controller setting bad request response

func (*DeleteControllerSettingBadRequest) Error

func (*DeleteControllerSettingBadRequest) GetPayload

func (*DeleteControllerSettingBadRequest) IsClientError added in v0.26.53

func (o *DeleteControllerSettingBadRequest) IsClientError() bool

IsClientError returns true when this delete controller setting bad request response has a 4xx status code

func (*DeleteControllerSettingBadRequest) IsCode added in v0.26.53

func (o *DeleteControllerSettingBadRequest) IsCode(code int) bool

IsCode returns true when this delete controller setting bad request response a status code equal to that given

func (*DeleteControllerSettingBadRequest) IsRedirect added in v0.26.53

func (o *DeleteControllerSettingBadRequest) IsRedirect() bool

IsRedirect returns true when this delete controller setting bad request response has a 3xx status code

func (*DeleteControllerSettingBadRequest) IsServerError added in v0.26.53

func (o *DeleteControllerSettingBadRequest) IsServerError() bool

IsServerError returns true when this delete controller setting bad request response has a 5xx status code

func (*DeleteControllerSettingBadRequest) IsSuccess added in v0.26.53

func (o *DeleteControllerSettingBadRequest) IsSuccess() bool

IsSuccess returns true when this delete controller setting bad request response has a 2xx status code

func (*DeleteControllerSettingBadRequest) String added in v0.26.53

type DeleteControllerSettingConflict

type DeleteControllerSettingConflict struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the delete controller setting conflict response

func (*DeleteControllerSettingConflict) Error

func (*DeleteControllerSettingConflict) GetPayload

func (*DeleteControllerSettingConflict) IsClientError added in v0.26.53

func (o *DeleteControllerSettingConflict) IsClientError() bool

IsClientError returns true when this delete controller setting conflict response has a 4xx status code

func (*DeleteControllerSettingConflict) IsCode added in v0.26.53

func (o *DeleteControllerSettingConflict) IsCode(code int) bool

IsCode returns true when this delete controller setting conflict response a status code equal to that given

func (*DeleteControllerSettingConflict) IsRedirect added in v0.26.53

func (o *DeleteControllerSettingConflict) IsRedirect() bool

IsRedirect returns true when this delete controller setting conflict response has a 3xx status code

func (*DeleteControllerSettingConflict) IsServerError added in v0.26.53

func (o *DeleteControllerSettingConflict) IsServerError() bool

IsServerError returns true when this delete controller setting conflict response has a 5xx status code

func (*DeleteControllerSettingConflict) IsSuccess added in v0.26.53

func (o *DeleteControllerSettingConflict) IsSuccess() bool

IsSuccess returns true when this delete controller setting conflict response has a 2xx status code

func (*DeleteControllerSettingConflict) String added in v0.26.53

type DeleteControllerSettingOK

type DeleteControllerSettingOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

func (o *DeleteControllerSettingOK) Code() int

Code gets the status code for the delete controller setting o k response

func (*DeleteControllerSettingOK) Error

func (o *DeleteControllerSettingOK) Error() string

func (*DeleteControllerSettingOK) GetPayload

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

func (*DeleteControllerSettingOK) IsClientError added in v0.26.53

func (o *DeleteControllerSettingOK) IsClientError() bool

IsClientError returns true when this delete controller setting o k response has a 4xx status code

func (*DeleteControllerSettingOK) IsCode added in v0.26.53

func (o *DeleteControllerSettingOK) IsCode(code int) bool

IsCode returns true when this delete controller setting o k response a status code equal to that given

func (*DeleteControllerSettingOK) IsRedirect added in v0.26.53

func (o *DeleteControllerSettingOK) IsRedirect() bool

IsRedirect returns true when this delete controller setting o k response has a 3xx status code

func (*DeleteControllerSettingOK) IsServerError added in v0.26.53

func (o *DeleteControllerSettingOK) IsServerError() bool

IsServerError returns true when this delete controller setting o k response has a 5xx status code

func (*DeleteControllerSettingOK) IsSuccess added in v0.26.53

func (o *DeleteControllerSettingOK) IsSuccess() bool

IsSuccess returns true when this delete controller setting o k response has a 2xx status code

func (*DeleteControllerSettingOK) String added in v0.26.53

func (o *DeleteControllerSettingOK) String() string

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) (any, error)

ReadResponse reads a server response into the received o.

type DeleteControllerSettingTooManyRequests

type DeleteControllerSettingTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the delete controller setting too many requests response

func (*DeleteControllerSettingTooManyRequests) Error

func (*DeleteControllerSettingTooManyRequests) GetPayload

func (*DeleteControllerSettingTooManyRequests) IsClientError added in v0.26.53

func (o *DeleteControllerSettingTooManyRequests) IsClientError() bool

IsClientError returns true when this delete controller setting too many requests response has a 4xx status code

func (*DeleteControllerSettingTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this delete controller setting too many requests response a status code equal to that given

func (*DeleteControllerSettingTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this delete controller setting too many requests response has a 3xx status code

func (*DeleteControllerSettingTooManyRequests) IsServerError added in v0.26.53

func (o *DeleteControllerSettingTooManyRequests) IsServerError() bool

IsServerError returns true when this delete controller setting too many requests response has a 5xx status code

func (*DeleteControllerSettingTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this delete controller setting too many requests response has a 2xx status code

func (*DeleteControllerSettingTooManyRequests) String added in v0.26.53

type DeleteControllerSettingUnauthorized

type DeleteControllerSettingUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the delete controller setting unauthorized response

func (*DeleteControllerSettingUnauthorized) Error

func (*DeleteControllerSettingUnauthorized) GetPayload

func (*DeleteControllerSettingUnauthorized) IsClientError added in v0.26.53

func (o *DeleteControllerSettingUnauthorized) IsClientError() bool

IsClientError returns true when this delete controller setting unauthorized response has a 4xx status code

func (*DeleteControllerSettingUnauthorized) IsCode added in v0.26.53

IsCode returns true when this delete controller setting unauthorized response a status code equal to that given

func (*DeleteControllerSettingUnauthorized) IsRedirect added in v0.26.53

func (o *DeleteControllerSettingUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete controller setting unauthorized response has a 3xx status code

func (*DeleteControllerSettingUnauthorized) IsServerError added in v0.26.53

func (o *DeleteControllerSettingUnauthorized) IsServerError() bool

IsServerError returns true when this delete controller setting unauthorized response has a 5xx status code

func (*DeleteControllerSettingUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this delete controller setting unauthorized response has a 2xx status code

func (*DeleteControllerSettingUnauthorized) String added in v0.26.53

type DetailControllerSettingEffectiveNotFound

type DetailControllerSettingEffectiveNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting effective not found response

func (*DetailControllerSettingEffectiveNotFound) Error

func (*DetailControllerSettingEffectiveNotFound) GetPayload

func (*DetailControllerSettingEffectiveNotFound) IsClientError added in v0.26.53

IsClientError returns true when this detail controller setting effective not found response has a 4xx status code

func (*DetailControllerSettingEffectiveNotFound) IsCode added in v0.26.53

IsCode returns true when this detail controller setting effective not found response a status code equal to that given

func (*DetailControllerSettingEffectiveNotFound) IsRedirect added in v0.26.53

IsRedirect returns true when this detail controller setting effective not found response has a 3xx status code

func (*DetailControllerSettingEffectiveNotFound) IsServerError added in v0.26.53

IsServerError returns true when this detail controller setting effective not found response has a 5xx status code

func (*DetailControllerSettingEffectiveNotFound) IsSuccess added in v0.26.53

IsSuccess returns true when this detail controller setting effective not found response has a 2xx status code

func (*DetailControllerSettingEffectiveNotFound) String added in v0.26.53

type DetailControllerSettingEffectiveOK

type DetailControllerSettingEffectiveOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting effective o k response

func (*DetailControllerSettingEffectiveOK) Error

func (*DetailControllerSettingEffectiveOK) GetPayload

func (*DetailControllerSettingEffectiveOK) IsClientError added in v0.26.53

func (o *DetailControllerSettingEffectiveOK) IsClientError() bool

IsClientError returns true when this detail controller setting effective o k response has a 4xx status code

func (*DetailControllerSettingEffectiveOK) IsCode added in v0.26.53

IsCode returns true when this detail controller setting effective o k response a status code equal to that given

func (*DetailControllerSettingEffectiveOK) IsRedirect added in v0.26.53

func (o *DetailControllerSettingEffectiveOK) IsRedirect() bool

IsRedirect returns true when this detail controller setting effective o k response has a 3xx status code

func (*DetailControllerSettingEffectiveOK) IsServerError added in v0.26.53

func (o *DetailControllerSettingEffectiveOK) IsServerError() bool

IsServerError returns true when this detail controller setting effective o k response has a 5xx status code

func (*DetailControllerSettingEffectiveOK) IsSuccess added in v0.26.53

IsSuccess returns true when this detail controller setting effective o k response has a 2xx status code

func (*DetailControllerSettingEffectiveOK) String added in v0.26.53

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

ReadResponse reads a server response into the received o.

type DetailControllerSettingEffectiveTooManyRequests

type DetailControllerSettingEffectiveTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting effective too many requests response

func (*DetailControllerSettingEffectiveTooManyRequests) Error

func (*DetailControllerSettingEffectiveTooManyRequests) GetPayload

func (*DetailControllerSettingEffectiveTooManyRequests) IsClientError added in v0.26.53

IsClientError returns true when this detail controller setting effective too many requests response has a 4xx status code

func (*DetailControllerSettingEffectiveTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this detail controller setting effective too many requests response a status code equal to that given

func (*DetailControllerSettingEffectiveTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this detail controller setting effective too many requests response has a 3xx status code

func (*DetailControllerSettingEffectiveTooManyRequests) IsServerError added in v0.26.53

IsServerError returns true when this detail controller setting effective too many requests response has a 5xx status code

func (*DetailControllerSettingEffectiveTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this detail controller setting effective too many requests response has a 2xx status code

func (*DetailControllerSettingEffectiveTooManyRequests) String added in v0.26.53

type DetailControllerSettingEffectiveUnauthorized

type DetailControllerSettingEffectiveUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting effective unauthorized response

func (*DetailControllerSettingEffectiveUnauthorized) Error

func (*DetailControllerSettingEffectiveUnauthorized) GetPayload

func (*DetailControllerSettingEffectiveUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this detail controller setting effective unauthorized response has a 4xx status code

func (*DetailControllerSettingEffectiveUnauthorized) IsCode added in v0.26.53

IsCode returns true when this detail controller setting effective unauthorized response a status code equal to that given

func (*DetailControllerSettingEffectiveUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this detail controller setting effective unauthorized response has a 3xx status code

func (*DetailControllerSettingEffectiveUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this detail controller setting effective unauthorized response has a 5xx status code

func (*DetailControllerSettingEffectiveUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this detail controller setting effective unauthorized response has a 2xx status code

func (*DetailControllerSettingEffectiveUnauthorized) String added in v0.26.53

type DetailControllerSettingNotFound

type DetailControllerSettingNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting not found response

func (*DetailControllerSettingNotFound) Error

func (*DetailControllerSettingNotFound) GetPayload

func (*DetailControllerSettingNotFound) IsClientError added in v0.26.53

func (o *DetailControllerSettingNotFound) IsClientError() bool

IsClientError returns true when this detail controller setting not found response has a 4xx status code

func (*DetailControllerSettingNotFound) IsCode added in v0.26.53

func (o *DetailControllerSettingNotFound) IsCode(code int) bool

IsCode returns true when this detail controller setting not found response a status code equal to that given

func (*DetailControllerSettingNotFound) IsRedirect added in v0.26.53

func (o *DetailControllerSettingNotFound) IsRedirect() bool

IsRedirect returns true when this detail controller setting not found response has a 3xx status code

func (*DetailControllerSettingNotFound) IsServerError added in v0.26.53

func (o *DetailControllerSettingNotFound) IsServerError() bool

IsServerError returns true when this detail controller setting not found response has a 5xx status code

func (*DetailControllerSettingNotFound) IsSuccess added in v0.26.53

func (o *DetailControllerSettingNotFound) IsSuccess() bool

IsSuccess returns true when this detail controller setting not found response has a 2xx status code

func (*DetailControllerSettingNotFound) String added in v0.26.53

type DetailControllerSettingOK

type DetailControllerSettingOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

func (o *DetailControllerSettingOK) Code() int

Code gets the status code for the detail controller setting o k response

func (*DetailControllerSettingOK) Error

func (o *DetailControllerSettingOK) Error() string

func (*DetailControllerSettingOK) GetPayload

func (*DetailControllerSettingOK) IsClientError added in v0.26.53

func (o *DetailControllerSettingOK) IsClientError() bool

IsClientError returns true when this detail controller setting o k response has a 4xx status code

func (*DetailControllerSettingOK) IsCode added in v0.26.53

func (o *DetailControllerSettingOK) IsCode(code int) bool

IsCode returns true when this detail controller setting o k response a status code equal to that given

func (*DetailControllerSettingOK) IsRedirect added in v0.26.53

func (o *DetailControllerSettingOK) IsRedirect() bool

IsRedirect returns true when this detail controller setting o k response has a 3xx status code

func (*DetailControllerSettingOK) IsServerError added in v0.26.53

func (o *DetailControllerSettingOK) IsServerError() bool

IsServerError returns true when this detail controller setting o k response has a 5xx status code

func (*DetailControllerSettingOK) IsSuccess added in v0.26.53

func (o *DetailControllerSettingOK) IsSuccess() bool

IsSuccess returns true when this detail controller setting o k response has a 2xx status code

func (*DetailControllerSettingOK) String added in v0.26.53

func (o *DetailControllerSettingOK) String() string

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) (any, error)

ReadResponse reads a server response into the received o.

type DetailControllerSettingTooManyRequests

type DetailControllerSettingTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting too many requests response

func (*DetailControllerSettingTooManyRequests) Error

func (*DetailControllerSettingTooManyRequests) GetPayload

func (*DetailControllerSettingTooManyRequests) IsClientError added in v0.26.53

func (o *DetailControllerSettingTooManyRequests) IsClientError() bool

IsClientError returns true when this detail controller setting too many requests response has a 4xx status code

func (*DetailControllerSettingTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this detail controller setting too many requests response a status code equal to that given

func (*DetailControllerSettingTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this detail controller setting too many requests response has a 3xx status code

func (*DetailControllerSettingTooManyRequests) IsServerError added in v0.26.53

func (o *DetailControllerSettingTooManyRequests) IsServerError() bool

IsServerError returns true when this detail controller setting too many requests response has a 5xx status code

func (*DetailControllerSettingTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this detail controller setting too many requests response has a 2xx status code

func (*DetailControllerSettingTooManyRequests) String added in v0.26.53

type DetailControllerSettingUnauthorized

type DetailControllerSettingUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the detail controller setting unauthorized response

func (*DetailControllerSettingUnauthorized) Error

func (*DetailControllerSettingUnauthorized) GetPayload

func (*DetailControllerSettingUnauthorized) IsClientError added in v0.26.53

func (o *DetailControllerSettingUnauthorized) IsClientError() bool

IsClientError returns true when this detail controller setting unauthorized response has a 4xx status code

func (*DetailControllerSettingUnauthorized) IsCode added in v0.26.53

IsCode returns true when this detail controller setting unauthorized response a status code equal to that given

func (*DetailControllerSettingUnauthorized) IsRedirect added in v0.26.53

func (o *DetailControllerSettingUnauthorized) IsRedirect() bool

IsRedirect returns true when this detail controller setting unauthorized response has a 3xx status code

func (*DetailControllerSettingUnauthorized) IsServerError added in v0.26.53

func (o *DetailControllerSettingUnauthorized) IsServerError() bool

IsServerError returns true when this detail controller setting unauthorized response has a 5xx status code

func (*DetailControllerSettingUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this detail controller setting unauthorized response has a 2xx status code

func (*DetailControllerSettingUnauthorized) String added in v0.26.53

type ListControllerSettingsBadRequest

type ListControllerSettingsBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the list controller settings bad request response

func (*ListControllerSettingsBadRequest) Error

func (*ListControllerSettingsBadRequest) GetPayload

func (*ListControllerSettingsBadRequest) IsClientError added in v0.26.53

func (o *ListControllerSettingsBadRequest) IsClientError() bool

IsClientError returns true when this list controller settings bad request response has a 4xx status code

func (*ListControllerSettingsBadRequest) IsCode added in v0.26.53

func (o *ListControllerSettingsBadRequest) IsCode(code int) bool

IsCode returns true when this list controller settings bad request response a status code equal to that given

func (*ListControllerSettingsBadRequest) IsRedirect added in v0.26.53

func (o *ListControllerSettingsBadRequest) IsRedirect() bool

IsRedirect returns true when this list controller settings bad request response has a 3xx status code

func (*ListControllerSettingsBadRequest) IsServerError added in v0.26.53

func (o *ListControllerSettingsBadRequest) IsServerError() bool

IsServerError returns true when this list controller settings bad request response has a 5xx status code

func (*ListControllerSettingsBadRequest) IsSuccess added in v0.26.53

func (o *ListControllerSettingsBadRequest) IsSuccess() bool

IsSuccess returns true when this list controller settings bad request response has a 2xx status code

func (*ListControllerSettingsBadRequest) String added in v0.26.53

type ListControllerSettingsOK

type ListControllerSettingsOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

func (o *ListControllerSettingsOK) Code() int

Code gets the status code for the list controller settings o k response

func (*ListControllerSettingsOK) Error

func (o *ListControllerSettingsOK) Error() string

func (*ListControllerSettingsOK) GetPayload

func (*ListControllerSettingsOK) IsClientError added in v0.26.53

func (o *ListControllerSettingsOK) IsClientError() bool

IsClientError returns true when this list controller settings o k response has a 4xx status code

func (*ListControllerSettingsOK) IsCode added in v0.26.53

func (o *ListControllerSettingsOK) IsCode(code int) bool

IsCode returns true when this list controller settings o k response a status code equal to that given

func (*ListControllerSettingsOK) IsRedirect added in v0.26.53

func (o *ListControllerSettingsOK) IsRedirect() bool

IsRedirect returns true when this list controller settings o k response has a 3xx status code

func (*ListControllerSettingsOK) IsServerError added in v0.26.53

func (o *ListControllerSettingsOK) IsServerError() bool

IsServerError returns true when this list controller settings o k response has a 5xx status code

func (*ListControllerSettingsOK) IsSuccess added in v0.26.53

func (o *ListControllerSettingsOK) IsSuccess() bool

IsSuccess returns true when this list controller settings o k response has a 2xx status code

func (*ListControllerSettingsOK) String added in v0.26.53

func (o *ListControllerSettingsOK) String() string

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) (any, error)

ReadResponse reads a server response into the received o.

type ListControllerSettingsTooManyRequests

type ListControllerSettingsTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the list controller settings too many requests response

func (*ListControllerSettingsTooManyRequests) Error

func (*ListControllerSettingsTooManyRequests) GetPayload

func (*ListControllerSettingsTooManyRequests) IsClientError added in v0.26.53

func (o *ListControllerSettingsTooManyRequests) IsClientError() bool

IsClientError returns true when this list controller settings too many requests response has a 4xx status code

func (*ListControllerSettingsTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this list controller settings too many requests response a status code equal to that given

func (*ListControllerSettingsTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this list controller settings too many requests response has a 3xx status code

func (*ListControllerSettingsTooManyRequests) IsServerError added in v0.26.53

func (o *ListControllerSettingsTooManyRequests) IsServerError() bool

IsServerError returns true when this list controller settings too many requests response has a 5xx status code

func (*ListControllerSettingsTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this list controller settings too many requests response has a 2xx status code

func (*ListControllerSettingsTooManyRequests) String added in v0.26.53

type ListControllerSettingsUnauthorized

type ListControllerSettingsUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the list controller settings unauthorized response

func (*ListControllerSettingsUnauthorized) Error

func (*ListControllerSettingsUnauthorized) GetPayload

func (*ListControllerSettingsUnauthorized) IsClientError added in v0.26.53

func (o *ListControllerSettingsUnauthorized) IsClientError() bool

IsClientError returns true when this list controller settings unauthorized response has a 4xx status code

func (*ListControllerSettingsUnauthorized) IsCode added in v0.26.53

IsCode returns true when this list controller settings unauthorized response a status code equal to that given

func (*ListControllerSettingsUnauthorized) IsRedirect added in v0.26.53

func (o *ListControllerSettingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this list controller settings unauthorized response has a 3xx status code

func (*ListControllerSettingsUnauthorized) IsServerError added in v0.26.53

func (o *ListControllerSettingsUnauthorized) IsServerError() bool

IsServerError returns true when this list controller settings unauthorized response has a 5xx status code

func (*ListControllerSettingsUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this list controller settings unauthorized response has a 2xx status code

func (*ListControllerSettingsUnauthorized) String added in v0.26.53

type PatchControllerSettingBadRequest

type PatchControllerSettingBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the patch controller setting bad request response

func (*PatchControllerSettingBadRequest) Error

func (*PatchControllerSettingBadRequest) GetPayload

func (*PatchControllerSettingBadRequest) IsClientError added in v0.26.53

func (o *PatchControllerSettingBadRequest) IsClientError() bool

IsClientError returns true when this patch controller setting bad request response has a 4xx status code

func (*PatchControllerSettingBadRequest) IsCode added in v0.26.53

func (o *PatchControllerSettingBadRequest) IsCode(code int) bool

IsCode returns true when this patch controller setting bad request response a status code equal to that given

func (*PatchControllerSettingBadRequest) IsRedirect added in v0.26.53

func (o *PatchControllerSettingBadRequest) IsRedirect() bool

IsRedirect returns true when this patch controller setting bad request response has a 3xx status code

func (*PatchControllerSettingBadRequest) IsServerError added in v0.26.53

func (o *PatchControllerSettingBadRequest) IsServerError() bool

IsServerError returns true when this patch controller setting bad request response has a 5xx status code

func (*PatchControllerSettingBadRequest) IsSuccess added in v0.26.53

func (o *PatchControllerSettingBadRequest) IsSuccess() bool

IsSuccess returns true when this patch controller setting bad request response has a 2xx status code

func (*PatchControllerSettingBadRequest) String added in v0.26.53

type PatchControllerSettingNotFound

type PatchControllerSettingNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the patch controller setting not found response

func (*PatchControllerSettingNotFound) Error

func (*PatchControllerSettingNotFound) GetPayload

func (*PatchControllerSettingNotFound) IsClientError added in v0.26.53

func (o *PatchControllerSettingNotFound) IsClientError() bool

IsClientError returns true when this patch controller setting not found response has a 4xx status code

func (*PatchControllerSettingNotFound) IsCode added in v0.26.53

func (o *PatchControllerSettingNotFound) IsCode(code int) bool

IsCode returns true when this patch controller setting not found response a status code equal to that given

func (*PatchControllerSettingNotFound) IsRedirect added in v0.26.53

func (o *PatchControllerSettingNotFound) IsRedirect() bool

IsRedirect returns true when this patch controller setting not found response has a 3xx status code

func (*PatchControllerSettingNotFound) IsServerError added in v0.26.53

func (o *PatchControllerSettingNotFound) IsServerError() bool

IsServerError returns true when this patch controller setting not found response has a 5xx status code

func (*PatchControllerSettingNotFound) IsSuccess added in v0.26.53

func (o *PatchControllerSettingNotFound) IsSuccess() bool

IsSuccess returns true when this patch controller setting not found response has a 2xx status code

func (*PatchControllerSettingNotFound) String added in v0.26.53

type PatchControllerSettingOK

type PatchControllerSettingOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

func (o *PatchControllerSettingOK) Code() int

Code gets the status code for the patch controller setting o k response

func (*PatchControllerSettingOK) Error

func (o *PatchControllerSettingOK) Error() string

func (*PatchControllerSettingOK) GetPayload

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

func (*PatchControllerSettingOK) IsClientError added in v0.26.53

func (o *PatchControllerSettingOK) IsClientError() bool

IsClientError returns true when this patch controller setting o k response has a 4xx status code

func (*PatchControllerSettingOK) IsCode added in v0.26.53

func (o *PatchControllerSettingOK) IsCode(code int) bool

IsCode returns true when this patch controller setting o k response a status code equal to that given

func (*PatchControllerSettingOK) IsRedirect added in v0.26.53

func (o *PatchControllerSettingOK) IsRedirect() bool

IsRedirect returns true when this patch controller setting o k response has a 3xx status code

func (*PatchControllerSettingOK) IsServerError added in v0.26.53

func (o *PatchControllerSettingOK) IsServerError() bool

IsServerError returns true when this patch controller setting o k response has a 5xx status code

func (*PatchControllerSettingOK) IsSuccess added in v0.26.53

func (o *PatchControllerSettingOK) IsSuccess() bool

IsSuccess returns true when this patch controller setting o k response has a 2xx status code

func (*PatchControllerSettingOK) String added in v0.26.53

func (o *PatchControllerSettingOK) String() string

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) (any, error)

ReadResponse reads a server response into the received o.

type PatchControllerSettingTooManyRequests

type PatchControllerSettingTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the patch controller setting too many requests response

func (*PatchControllerSettingTooManyRequests) Error

func (*PatchControllerSettingTooManyRequests) GetPayload

func (*PatchControllerSettingTooManyRequests) IsClientError added in v0.26.53

func (o *PatchControllerSettingTooManyRequests) IsClientError() bool

IsClientError returns true when this patch controller setting too many requests response has a 4xx status code

func (*PatchControllerSettingTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this patch controller setting too many requests response a status code equal to that given

func (*PatchControllerSettingTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this patch controller setting too many requests response has a 3xx status code

func (*PatchControllerSettingTooManyRequests) IsServerError added in v0.26.53

func (o *PatchControllerSettingTooManyRequests) IsServerError() bool

IsServerError returns true when this patch controller setting too many requests response has a 5xx status code

func (*PatchControllerSettingTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this patch controller setting too many requests response has a 2xx status code

func (*PatchControllerSettingTooManyRequests) String added in v0.26.53

type PatchControllerSettingUnauthorized

type PatchControllerSettingUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the patch controller setting unauthorized response

func (*PatchControllerSettingUnauthorized) Error

func (*PatchControllerSettingUnauthorized) GetPayload

func (*PatchControllerSettingUnauthorized) IsClientError added in v0.26.53

func (o *PatchControllerSettingUnauthorized) IsClientError() bool

IsClientError returns true when this patch controller setting unauthorized response has a 4xx status code

func (*PatchControllerSettingUnauthorized) IsCode added in v0.26.53

IsCode returns true when this patch controller setting unauthorized response a status code equal to that given

func (*PatchControllerSettingUnauthorized) IsRedirect added in v0.26.53

func (o *PatchControllerSettingUnauthorized) IsRedirect() bool

IsRedirect returns true when this patch controller setting unauthorized response has a 3xx status code

func (*PatchControllerSettingUnauthorized) IsServerError added in v0.26.53

func (o *PatchControllerSettingUnauthorized) IsServerError() bool

IsServerError returns true when this patch controller setting unauthorized response has a 5xx status code

func (*PatchControllerSettingUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this patch controller setting unauthorized response has a 2xx status code

func (*PatchControllerSettingUnauthorized) String added in v0.26.53

type UpdateControllerSettingBadRequest

type UpdateControllerSettingBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the update controller setting bad request response

func (*UpdateControllerSettingBadRequest) Error

func (*UpdateControllerSettingBadRequest) GetPayload

func (*UpdateControllerSettingBadRequest) IsClientError added in v0.26.53

func (o *UpdateControllerSettingBadRequest) IsClientError() bool

IsClientError returns true when this update controller setting bad request response has a 4xx status code

func (*UpdateControllerSettingBadRequest) IsCode added in v0.26.53

func (o *UpdateControllerSettingBadRequest) IsCode(code int) bool

IsCode returns true when this update controller setting bad request response a status code equal to that given

func (*UpdateControllerSettingBadRequest) IsRedirect added in v0.26.53

func (o *UpdateControllerSettingBadRequest) IsRedirect() bool

IsRedirect returns true when this update controller setting bad request response has a 3xx status code

func (*UpdateControllerSettingBadRequest) IsServerError added in v0.26.53

func (o *UpdateControllerSettingBadRequest) IsServerError() bool

IsServerError returns true when this update controller setting bad request response has a 5xx status code

func (*UpdateControllerSettingBadRequest) IsSuccess added in v0.26.53

func (o *UpdateControllerSettingBadRequest) IsSuccess() bool

IsSuccess returns true when this update controller setting bad request response has a 2xx status code

func (*UpdateControllerSettingBadRequest) String added in v0.26.53

type UpdateControllerSettingNotFound

type UpdateControllerSettingNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the update controller setting not found response

func (*UpdateControllerSettingNotFound) Error

func (*UpdateControllerSettingNotFound) GetPayload

func (*UpdateControllerSettingNotFound) IsClientError added in v0.26.53

func (o *UpdateControllerSettingNotFound) IsClientError() bool

IsClientError returns true when this update controller setting not found response has a 4xx status code

func (*UpdateControllerSettingNotFound) IsCode added in v0.26.53

func (o *UpdateControllerSettingNotFound) IsCode(code int) bool

IsCode returns true when this update controller setting not found response a status code equal to that given

func (*UpdateControllerSettingNotFound) IsRedirect added in v0.26.53

func (o *UpdateControllerSettingNotFound) IsRedirect() bool

IsRedirect returns true when this update controller setting not found response has a 3xx status code

func (*UpdateControllerSettingNotFound) IsServerError added in v0.26.53

func (o *UpdateControllerSettingNotFound) IsServerError() bool

IsServerError returns true when this update controller setting not found response has a 5xx status code

func (*UpdateControllerSettingNotFound) IsSuccess added in v0.26.53

func (o *UpdateControllerSettingNotFound) IsSuccess() bool

IsSuccess returns true when this update controller setting not found response has a 2xx status code

func (*UpdateControllerSettingNotFound) String added in v0.26.53

type UpdateControllerSettingOK

type UpdateControllerSettingOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

func (o *UpdateControllerSettingOK) Code() int

Code gets the status code for the update controller setting o k response

func (*UpdateControllerSettingOK) Error

func (o *UpdateControllerSettingOK) Error() string

func (*UpdateControllerSettingOK) GetPayload

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

func (*UpdateControllerSettingOK) IsClientError added in v0.26.53

func (o *UpdateControllerSettingOK) IsClientError() bool

IsClientError returns true when this update controller setting o k response has a 4xx status code

func (*UpdateControllerSettingOK) IsCode added in v0.26.53

func (o *UpdateControllerSettingOK) IsCode(code int) bool

IsCode returns true when this update controller setting o k response a status code equal to that given

func (*UpdateControllerSettingOK) IsRedirect added in v0.26.53

func (o *UpdateControllerSettingOK) IsRedirect() bool

IsRedirect returns true when this update controller setting o k response has a 3xx status code

func (*UpdateControllerSettingOK) IsServerError added in v0.26.53

func (o *UpdateControllerSettingOK) IsServerError() bool

IsServerError returns true when this update controller setting o k response has a 5xx status code

func (*UpdateControllerSettingOK) IsSuccess added in v0.26.53

func (o *UpdateControllerSettingOK) IsSuccess() bool

IsSuccess returns true when this update controller setting o k response has a 2xx status code

func (*UpdateControllerSettingOK) String added in v0.26.53

func (o *UpdateControllerSettingOK) String() string

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) (any, error)

ReadResponse reads a server response into the received o.

type UpdateControllerSettingTooManyRequests

type UpdateControllerSettingTooManyRequests struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the update controller setting too many requests response

func (*UpdateControllerSettingTooManyRequests) Error

func (*UpdateControllerSettingTooManyRequests) GetPayload

func (*UpdateControllerSettingTooManyRequests) IsClientError added in v0.26.53

func (o *UpdateControllerSettingTooManyRequests) IsClientError() bool

IsClientError returns true when this update controller setting too many requests response has a 4xx status code

func (*UpdateControllerSettingTooManyRequests) IsCode added in v0.26.53

IsCode returns true when this update controller setting too many requests response a status code equal to that given

func (*UpdateControllerSettingTooManyRequests) IsRedirect added in v0.26.53

IsRedirect returns true when this update controller setting too many requests response has a 3xx status code

func (*UpdateControllerSettingTooManyRequests) IsServerError added in v0.26.53

func (o *UpdateControllerSettingTooManyRequests) IsServerError() bool

IsServerError returns true when this update controller setting too many requests response has a 5xx status code

func (*UpdateControllerSettingTooManyRequests) IsSuccess added in v0.26.53

IsSuccess returns true when this update controller setting too many requests response has a 2xx status code

func (*UpdateControllerSettingTooManyRequests) String added in v0.26.53

type UpdateControllerSettingUnauthorized

type UpdateControllerSettingUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	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) Code added in v0.26.53

Code gets the status code for the update controller setting unauthorized response

func (*UpdateControllerSettingUnauthorized) Error

func (*UpdateControllerSettingUnauthorized) GetPayload

func (*UpdateControllerSettingUnauthorized) IsClientError added in v0.26.53

func (o *UpdateControllerSettingUnauthorized) IsClientError() bool

IsClientError returns true when this update controller setting unauthorized response has a 4xx status code

func (*UpdateControllerSettingUnauthorized) IsCode added in v0.26.53

IsCode returns true when this update controller setting unauthorized response a status code equal to that given

func (*UpdateControllerSettingUnauthorized) IsRedirect added in v0.26.53

func (o *UpdateControllerSettingUnauthorized) IsRedirect() bool

IsRedirect returns true when this update controller setting unauthorized response has a 3xx status code

func (*UpdateControllerSettingUnauthorized) IsServerError added in v0.26.53

func (o *UpdateControllerSettingUnauthorized) IsServerError() bool

IsServerError returns true when this update controller setting unauthorized response has a 5xx status code

func (*UpdateControllerSettingUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this update controller setting unauthorized response has a 2xx status code

func (*UpdateControllerSettingUnauthorized) String added in v0.26.53

Jump to

Keyboard shortcuts

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