log_categories

package
v1.2.4 Latest Latest
Warning

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

Go to latest
Published: Jul 12, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for log categories API

func (*Client) GetLogsUsingPOST

func (a *Client) GetLogsUsingPOST(params *GetLogsUsingPOSTParams, opts ...ClientOption) (*GetLogsUsingPOSTOK, error)

GetLogsUsingPOST gets logs

Get logs

func (*Client) LogCategoriesListUsingGET

func (a *Client) LogCategoriesListUsingGET(params *LogCategoriesListUsingGETParams, opts ...ClientOption) (*LogCategoriesListUsingGETOK, error)

LogCategoriesListUsingGET lists

List log categories

func (*Client) LogCategoryGetUsingGET

func (a *Client) LogCategoryGetUsingGET(params *LogCategoryGetUsingGETParams, opts ...ClientOption) (*LogCategoryGetUsingGETOK, error)

LogCategoryGetUsingGET gets

Get log category

func (*Client) LogCategoryUpdateUsingPUT

func (a *Client) LogCategoryUpdateUsingPUT(params *LogCategoryUpdateUsingPUTParams, opts ...ClientOption) (*LogCategoryUpdateUsingPUTOK, error)

LogCategoryUpdateUsingPUT updates

Update log category

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption added in v1.2.4

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	GetLogsUsingPOST(params *GetLogsUsingPOSTParams, opts ...ClientOption) (*GetLogsUsingPOSTOK, error)

	LogCategoriesListUsingGET(params *LogCategoriesListUsingGETParams, opts ...ClientOption) (*LogCategoriesListUsingGETOK, error)

	LogCategoryGetUsingGET(params *LogCategoryGetUsingGETParams, opts ...ClientOption) (*LogCategoryGetUsingGETOK, error)

	LogCategoryUpdateUsingPUT(params *LogCategoryUpdateUsingPUTParams, opts ...ClientOption) (*LogCategoryUpdateUsingPUTOK, 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 log categories API client.

type GetLogsUsingPOSTBadRequest

type GetLogsUsingPOSTBadRequest struct {
	Payload *models.ProxyResponseMessage
}
GetLogsUsingPOSTBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewGetLogsUsingPOSTBadRequest

func NewGetLogsUsingPOSTBadRequest() *GetLogsUsingPOSTBadRequest

NewGetLogsUsingPOSTBadRequest creates a GetLogsUsingPOSTBadRequest with default headers values

func (*GetLogsUsingPOSTBadRequest) Error

func (*GetLogsUsingPOSTBadRequest) GetPayload

type GetLogsUsingPOSTOK

type GetLogsUsingPOSTOK struct {
	Payload *models.GetLogsResponse
}
GetLogsUsingPOSTOK describes a response with status code 200, with default header values.

Request has been completed successfully

func NewGetLogsUsingPOSTOK

func NewGetLogsUsingPOSTOK() *GetLogsUsingPOSTOK

NewGetLogsUsingPOSTOK creates a GetLogsUsingPOSTOK with default headers values

func (*GetLogsUsingPOSTOK) Error

func (o *GetLogsUsingPOSTOK) Error() string

func (*GetLogsUsingPOSTOK) GetPayload

func (o *GetLogsUsingPOSTOK) GetPayload() *models.GetLogsResponse

type GetLogsUsingPOSTParams

type GetLogsUsingPOSTParams struct {

	/* DataSize.

	   dataSize

	   Format: int32
	*/
	DataSize int32

	/* LastIndex.

	   lastIndex

	   Format: int64
	*/
	LastIndex int64

	/* LogCategoryID.

	   logCategoryId

	   Format: int32
	*/
	LogCategoryID int32

	/* QueryFilter.

	   queryFilter
	*/
	QueryFilter *models.QueryFilter

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

GetLogsUsingPOSTParams contains all the parameters to send to the API endpoint

for the get logs using p o s t operation.

Typically these are written to a http.Request.

func NewGetLogsUsingPOSTParams

func NewGetLogsUsingPOSTParams() *GetLogsUsingPOSTParams

NewGetLogsUsingPOSTParams creates a new GetLogsUsingPOSTParams 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 NewGetLogsUsingPOSTParamsWithContext

func NewGetLogsUsingPOSTParamsWithContext(ctx context.Context) *GetLogsUsingPOSTParams

NewGetLogsUsingPOSTParamsWithContext creates a new GetLogsUsingPOSTParams object with the ability to set a context for a request.

func NewGetLogsUsingPOSTParamsWithHTTPClient

func NewGetLogsUsingPOSTParamsWithHTTPClient(client *http.Client) *GetLogsUsingPOSTParams

NewGetLogsUsingPOSTParamsWithHTTPClient creates a new GetLogsUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewGetLogsUsingPOSTParamsWithTimeout

func NewGetLogsUsingPOSTParamsWithTimeout(timeout time.Duration) *GetLogsUsingPOSTParams

NewGetLogsUsingPOSTParamsWithTimeout creates a new GetLogsUsingPOSTParams object with the ability to set a timeout on a request.

func (*GetLogsUsingPOSTParams) SetContext

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

SetContext adds the context to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) SetDataSize

func (o *GetLogsUsingPOSTParams) SetDataSize(dataSize int32)

SetDataSize adds the dataSize to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) SetDefaults added in v1.2.4

func (o *GetLogsUsingPOSTParams) SetDefaults()

SetDefaults hydrates default values in the get logs using p o s t params (not the query body).

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

func (*GetLogsUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) SetLastIndex

func (o *GetLogsUsingPOSTParams) SetLastIndex(lastIndex int64)

SetLastIndex adds the lastIndex to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) SetLogCategoryID

func (o *GetLogsUsingPOSTParams) SetLogCategoryID(logCategoryID int32)

SetLogCategoryID adds the logCategoryId to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) SetQueryFilter

func (o *GetLogsUsingPOSTParams) SetQueryFilter(queryFilter *models.QueryFilter)

SetQueryFilter adds the queryFilter to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) SetTimeout

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

SetTimeout adds the timeout to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithContext

WithContext adds the context to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithDataSize

func (o *GetLogsUsingPOSTParams) WithDataSize(dataSize int32) *GetLogsUsingPOSTParams

WithDataSize adds the dataSize to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the get logs using p o s t params (not the query body).

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

func (*GetLogsUsingPOSTParams) WithHTTPClient

func (o *GetLogsUsingPOSTParams) WithHTTPClient(client *http.Client) *GetLogsUsingPOSTParams

WithHTTPClient adds the HTTPClient to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithLastIndex

func (o *GetLogsUsingPOSTParams) WithLastIndex(lastIndex int64) *GetLogsUsingPOSTParams

WithLastIndex adds the lastIndex to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithLogCategoryID

func (o *GetLogsUsingPOSTParams) WithLogCategoryID(logCategoryID int32) *GetLogsUsingPOSTParams

WithLogCategoryID adds the logCategoryID to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithQueryFilter

func (o *GetLogsUsingPOSTParams) WithQueryFilter(queryFilter *models.QueryFilter) *GetLogsUsingPOSTParams

WithQueryFilter adds the queryFilter to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the get logs using p o s t params

func (*GetLogsUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLogsUsingPOSTReader

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

GetLogsUsingPOSTReader is a Reader for the GetLogsUsingPOST structure.

func (*GetLogsUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LogCategoriesListUsingGETBadRequest

type LogCategoriesListUsingGETBadRequest struct {
	Payload *models.ProxyResponseMessage
}
LogCategoriesListUsingGETBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewLogCategoriesListUsingGETBadRequest

func NewLogCategoriesListUsingGETBadRequest() *LogCategoriesListUsingGETBadRequest

NewLogCategoriesListUsingGETBadRequest creates a LogCategoriesListUsingGETBadRequest with default headers values

func (*LogCategoriesListUsingGETBadRequest) Error

func (*LogCategoriesListUsingGETBadRequest) GetPayload

type LogCategoriesListUsingGETOK

type LogCategoriesListUsingGETOK struct {
	Payload *models.LogCategoryListResponse
}
LogCategoriesListUsingGETOK describes a response with status code 200, with default header values.

OK

func NewLogCategoriesListUsingGETOK

func NewLogCategoriesListUsingGETOK() *LogCategoriesListUsingGETOK

NewLogCategoriesListUsingGETOK creates a LogCategoriesListUsingGETOK with default headers values

func (*LogCategoriesListUsingGETOK) Error

func (*LogCategoriesListUsingGETOK) GetPayload

type LogCategoriesListUsingGETParams

type LogCategoriesListUsingGETParams struct {

	/* LogCategoryName.

	   logCategoryName
	*/
	LogCategoryName *string

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

LogCategoriesListUsingGETParams contains all the parameters to send to the API endpoint

for the log categories list using g e t operation.

Typically these are written to a http.Request.

func NewLogCategoriesListUsingGETParams

func NewLogCategoriesListUsingGETParams() *LogCategoriesListUsingGETParams

NewLogCategoriesListUsingGETParams creates a new LogCategoriesListUsingGETParams 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 NewLogCategoriesListUsingGETParamsWithContext

func NewLogCategoriesListUsingGETParamsWithContext(ctx context.Context) *LogCategoriesListUsingGETParams

NewLogCategoriesListUsingGETParamsWithContext creates a new LogCategoriesListUsingGETParams object with the ability to set a context for a request.

func NewLogCategoriesListUsingGETParamsWithHTTPClient

func NewLogCategoriesListUsingGETParamsWithHTTPClient(client *http.Client) *LogCategoriesListUsingGETParams

NewLogCategoriesListUsingGETParamsWithHTTPClient creates a new LogCategoriesListUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewLogCategoriesListUsingGETParamsWithTimeout

func NewLogCategoriesListUsingGETParamsWithTimeout(timeout time.Duration) *LogCategoriesListUsingGETParams

NewLogCategoriesListUsingGETParamsWithTimeout creates a new LogCategoriesListUsingGETParams object with the ability to set a timeout on a request.

func (*LogCategoriesListUsingGETParams) SetContext

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

SetContext adds the context to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) SetDefaults added in v1.2.4

func (o *LogCategoriesListUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the log categories list using g e t params (not the query body).

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

func (*LogCategoriesListUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) SetLogCategoryName

func (o *LogCategoriesListUsingGETParams) SetLogCategoryName(logCategoryName *string)

SetLogCategoryName adds the logCategoryName to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) WithContext

WithContext adds the context to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the log categories list using g e t params (not the query body).

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

func (*LogCategoriesListUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) WithLogCategoryName

func (o *LogCategoriesListUsingGETParams) WithLogCategoryName(logCategoryName *string) *LogCategoriesListUsingGETParams

WithLogCategoryName adds the logCategoryName to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) WithTimeout

WithTimeout adds the timeout to the log categories list using g e t params

func (*LogCategoriesListUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type LogCategoriesListUsingGETReader

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

LogCategoriesListUsingGETReader is a Reader for the LogCategoriesListUsingGET structure.

func (*LogCategoriesListUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LogCategoryGetUsingGETBadRequest

type LogCategoryGetUsingGETBadRequest struct {
	Payload *models.ProxyResponseMessage
}
LogCategoryGetUsingGETBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewLogCategoryGetUsingGETBadRequest

func NewLogCategoryGetUsingGETBadRequest() *LogCategoryGetUsingGETBadRequest

NewLogCategoryGetUsingGETBadRequest creates a LogCategoryGetUsingGETBadRequest with default headers values

func (*LogCategoryGetUsingGETBadRequest) Error

func (*LogCategoryGetUsingGETBadRequest) GetPayload

type LogCategoryGetUsingGETOK

type LogCategoryGetUsingGETOK struct {
	Payload *models.LogCategoryGetResponse
}
LogCategoryGetUsingGETOK describes a response with status code 200, with default header values.

OK

func NewLogCategoryGetUsingGETOK

func NewLogCategoryGetUsingGETOK() *LogCategoryGetUsingGETOK

NewLogCategoryGetUsingGETOK creates a LogCategoryGetUsingGETOK with default headers values

func (*LogCategoryGetUsingGETOK) Error

func (o *LogCategoryGetUsingGETOK) Error() string

func (*LogCategoryGetUsingGETOK) GetPayload

type LogCategoryGetUsingGETParams

type LogCategoryGetUsingGETParams struct {

	/* LogCategoryID.

	   logCategoryId

	   Format: int32
	*/
	LogCategoryID int32

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

LogCategoryGetUsingGETParams contains all the parameters to send to the API endpoint

for the log category get using g e t operation.

Typically these are written to a http.Request.

func NewLogCategoryGetUsingGETParams

func NewLogCategoryGetUsingGETParams() *LogCategoryGetUsingGETParams

NewLogCategoryGetUsingGETParams creates a new LogCategoryGetUsingGETParams 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 NewLogCategoryGetUsingGETParamsWithContext

func NewLogCategoryGetUsingGETParamsWithContext(ctx context.Context) *LogCategoryGetUsingGETParams

NewLogCategoryGetUsingGETParamsWithContext creates a new LogCategoryGetUsingGETParams object with the ability to set a context for a request.

func NewLogCategoryGetUsingGETParamsWithHTTPClient

func NewLogCategoryGetUsingGETParamsWithHTTPClient(client *http.Client) *LogCategoryGetUsingGETParams

NewLogCategoryGetUsingGETParamsWithHTTPClient creates a new LogCategoryGetUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewLogCategoryGetUsingGETParamsWithTimeout

func NewLogCategoryGetUsingGETParamsWithTimeout(timeout time.Duration) *LogCategoryGetUsingGETParams

NewLogCategoryGetUsingGETParamsWithTimeout creates a new LogCategoryGetUsingGETParams object with the ability to set a timeout on a request.

func (*LogCategoryGetUsingGETParams) SetContext

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

SetContext adds the context to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) SetDefaults added in v1.2.4

func (o *LogCategoryGetUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the log category get using g e t params (not the query body).

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

func (*LogCategoryGetUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) SetLogCategoryID

func (o *LogCategoryGetUsingGETParams) SetLogCategoryID(logCategoryID int32)

SetLogCategoryID adds the logCategoryId to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) WithContext

WithContext adds the context to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the log category get using g e t params (not the query body).

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

func (*LogCategoryGetUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) WithLogCategoryID

func (o *LogCategoryGetUsingGETParams) WithLogCategoryID(logCategoryID int32) *LogCategoryGetUsingGETParams

WithLogCategoryID adds the logCategoryID to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) WithTimeout

WithTimeout adds the timeout to the log category get using g e t params

func (*LogCategoryGetUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type LogCategoryGetUsingGETReader

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

LogCategoryGetUsingGETReader is a Reader for the LogCategoryGetUsingGET structure.

func (*LogCategoryGetUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type LogCategoryUpdateUsingPUTBadRequest

type LogCategoryUpdateUsingPUTBadRequest struct {
	Payload *models.ProxyResponseMessage
}
LogCategoryUpdateUsingPUTBadRequest describes a response with status code 400, with default header values.

Bad request, error occurred. For more details see log messages.

func NewLogCategoryUpdateUsingPUTBadRequest

func NewLogCategoryUpdateUsingPUTBadRequest() *LogCategoryUpdateUsingPUTBadRequest

NewLogCategoryUpdateUsingPUTBadRequest creates a LogCategoryUpdateUsingPUTBadRequest with default headers values

func (*LogCategoryUpdateUsingPUTBadRequest) Error

func (*LogCategoryUpdateUsingPUTBadRequest) GetPayload

type LogCategoryUpdateUsingPUTOK

type LogCategoryUpdateUsingPUTOK struct {
	Payload *models.UpdateLogCategoryResponse
}
LogCategoryUpdateUsingPUTOK describes a response with status code 200, with default header values.

Request has been completed successfully

func NewLogCategoryUpdateUsingPUTOK

func NewLogCategoryUpdateUsingPUTOK() *LogCategoryUpdateUsingPUTOK

NewLogCategoryUpdateUsingPUTOK creates a LogCategoryUpdateUsingPUTOK with default headers values

func (*LogCategoryUpdateUsingPUTOK) Error

func (*LogCategoryUpdateUsingPUTOK) GetPayload

type LogCategoryUpdateUsingPUTParams

type LogCategoryUpdateUsingPUTParams struct {

	/* LogCategory.

	   logCategory
	*/
	LogCategory *models.LogCategory

	/* LogCategoryID.

	   logCategoryId

	   Format: int32
	*/
	LogCategoryID int32

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

LogCategoryUpdateUsingPUTParams contains all the parameters to send to the API endpoint

for the log category update using p u t operation.

Typically these are written to a http.Request.

func NewLogCategoryUpdateUsingPUTParams

func NewLogCategoryUpdateUsingPUTParams() *LogCategoryUpdateUsingPUTParams

NewLogCategoryUpdateUsingPUTParams creates a new LogCategoryUpdateUsingPUTParams 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 NewLogCategoryUpdateUsingPUTParamsWithContext

func NewLogCategoryUpdateUsingPUTParamsWithContext(ctx context.Context) *LogCategoryUpdateUsingPUTParams

NewLogCategoryUpdateUsingPUTParamsWithContext creates a new LogCategoryUpdateUsingPUTParams object with the ability to set a context for a request.

func NewLogCategoryUpdateUsingPUTParamsWithHTTPClient

func NewLogCategoryUpdateUsingPUTParamsWithHTTPClient(client *http.Client) *LogCategoryUpdateUsingPUTParams

NewLogCategoryUpdateUsingPUTParamsWithHTTPClient creates a new LogCategoryUpdateUsingPUTParams object with the ability to set a custom HTTPClient for a request.

func NewLogCategoryUpdateUsingPUTParamsWithTimeout

func NewLogCategoryUpdateUsingPUTParamsWithTimeout(timeout time.Duration) *LogCategoryUpdateUsingPUTParams

NewLogCategoryUpdateUsingPUTParamsWithTimeout creates a new LogCategoryUpdateUsingPUTParams object with the ability to set a timeout on a request.

func (*LogCategoryUpdateUsingPUTParams) SetContext

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

SetContext adds the context to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) SetDefaults added in v1.2.4

func (o *LogCategoryUpdateUsingPUTParams) SetDefaults()

SetDefaults hydrates default values in the log category update using p u t params (not the query body).

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

func (*LogCategoryUpdateUsingPUTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) SetLogCategory

func (o *LogCategoryUpdateUsingPUTParams) SetLogCategory(logCategory *models.LogCategory)

SetLogCategory adds the logCategory to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) SetLogCategoryID

func (o *LogCategoryUpdateUsingPUTParams) SetLogCategoryID(logCategoryID int32)

SetLogCategoryID adds the logCategoryId to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) SetTimeout

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

SetTimeout adds the timeout to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) WithContext

WithContext adds the context to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) WithDefaults added in v1.2.4

WithDefaults hydrates default values in the log category update using p u t params (not the query body).

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

func (*LogCategoryUpdateUsingPUTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) WithLogCategory

WithLogCategory adds the logCategory to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) WithLogCategoryID

func (o *LogCategoryUpdateUsingPUTParams) WithLogCategoryID(logCategoryID int32) *LogCategoryUpdateUsingPUTParams

WithLogCategoryID adds the logCategoryID to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) WithTimeout

WithTimeout adds the timeout to the log category update using p u t params

func (*LogCategoryUpdateUsingPUTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type LogCategoryUpdateUsingPUTReader

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

LogCategoryUpdateUsingPUTReader is a Reader for the LogCategoryUpdateUsingPUT structure.

func (*LogCategoryUpdateUsingPUTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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