library_elements

package
v0.0.0-...-4958bdd Latest Latest
Warning

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

Go to latest
Published: Mar 25, 2024 License: Apache-2.0 Imports: 12 Imported by: 1

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 library elements API

func (*Client) CreateLibraryElement

func (a *Client) CreateLibraryElement(body *models.CreateLibraryElementCommand, opts ...ClientOption) (*CreateLibraryElementOK, error)

CreateLibraryElement creates library element

Creates a new library element.

func (*Client) CreateLibraryElementWithParams

func (a *Client) CreateLibraryElementWithParams(params *CreateLibraryElementParams, opts ...ClientOption) (*CreateLibraryElementOK, error)

func (*Client) DeleteLibraryElementByUID

func (a *Client) DeleteLibraryElementByUID(libraryElementUID string, opts ...ClientOption) (*DeleteLibraryElementByUIDOK, error)

DeleteLibraryElementByUID deletes library element

Deletes an existing library element as specified by the UID. This operation cannot be reverted. You cannot delete a library element that is connected. This operation cannot be reverted.

func (*Client) DeleteLibraryElementByUIDWithParams

func (a *Client) DeleteLibraryElementByUIDWithParams(params *DeleteLibraryElementByUIDParams, opts ...ClientOption) (*DeleteLibraryElementByUIDOK, error)

func (*Client) GetLibraryElementByName

func (a *Client) GetLibraryElementByName(libraryElementName string, opts ...ClientOption) (*GetLibraryElementByNameOK, error)

GetLibraryElementByName gets library element by name

Returns a library element with the given name.

func (*Client) GetLibraryElementByNameWithParams

func (a *Client) GetLibraryElementByNameWithParams(params *GetLibraryElementByNameParams, opts ...ClientOption) (*GetLibraryElementByNameOK, error)

func (*Client) GetLibraryElementByUID

func (a *Client) GetLibraryElementByUID(libraryElementUID string, opts ...ClientOption) (*GetLibraryElementByUIDOK, error)

GetLibraryElementByUID gets library element by UID

Returns a library element with the given UID.

func (*Client) GetLibraryElementByUIDWithParams

func (a *Client) GetLibraryElementByUIDWithParams(params *GetLibraryElementByUIDParams, opts ...ClientOption) (*GetLibraryElementByUIDOK, error)

func (*Client) GetLibraryElementConnections

func (a *Client) GetLibraryElementConnections(libraryElementUID string, opts ...ClientOption) (*GetLibraryElementConnectionsOK, error)

GetLibraryElementConnections gets library element connections

Returns a list of connections for a library element based on the UID specified.

func (*Client) GetLibraryElementConnectionsWithParams

func (a *Client) GetLibraryElementConnectionsWithParams(params *GetLibraryElementConnectionsParams, opts ...ClientOption) (*GetLibraryElementConnectionsOK, error)

func (*Client) GetLibraryElements

func (a *Client) GetLibraryElements(params *GetLibraryElementsParams, opts ...ClientOption) (*GetLibraryElementsOK, error)

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateLibraryElement

func (a *Client) UpdateLibraryElement(libraryElementUID string, body *models.PatchLibraryElementCommand, opts ...ClientOption) (*UpdateLibraryElementOK, error)

UpdateLibraryElement updates library element

Updates an existing library element identified by uid.

func (*Client) UpdateLibraryElementWithParams

func (a *Client) UpdateLibraryElementWithParams(params *UpdateLibraryElementParams, opts ...ClientOption) (*UpdateLibraryElementOK, error)

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

func WithAuthInfo

func WithAuthInfo(authInfo runtime.ClientAuthInfoWriter) ClientOption

WithAuthInfo changes the transport on the client

type ClientService

type ClientService interface {
	CreateLibraryElement(body *models.CreateLibraryElementCommand, opts ...ClientOption) (*CreateLibraryElementOK, error)
	CreateLibraryElementWithParams(params *CreateLibraryElementParams, opts ...ClientOption) (*CreateLibraryElementOK, error)

	DeleteLibraryElementByUID(libraryElementUID string, opts ...ClientOption) (*DeleteLibraryElementByUIDOK, error)
	DeleteLibraryElementByUIDWithParams(params *DeleteLibraryElementByUIDParams, opts ...ClientOption) (*DeleteLibraryElementByUIDOK, error)

	GetLibraryElementByName(libraryElementName string, opts ...ClientOption) (*GetLibraryElementByNameOK, error)
	GetLibraryElementByNameWithParams(params *GetLibraryElementByNameParams, opts ...ClientOption) (*GetLibraryElementByNameOK, error)

	GetLibraryElementByUID(libraryElementUID string, opts ...ClientOption) (*GetLibraryElementByUIDOK, error)
	GetLibraryElementByUIDWithParams(params *GetLibraryElementByUIDParams, opts ...ClientOption) (*GetLibraryElementByUIDOK, error)

	GetLibraryElementConnections(libraryElementUID string, opts ...ClientOption) (*GetLibraryElementConnectionsOK, error)
	GetLibraryElementConnectionsWithParams(params *GetLibraryElementConnectionsParams, opts ...ClientOption) (*GetLibraryElementConnectionsOK, error)

	GetLibraryElements(params *GetLibraryElementsParams, opts ...ClientOption) (*GetLibraryElementsOK, error)

	UpdateLibraryElement(libraryElementUID string, body *models.PatchLibraryElementCommand, opts ...ClientOption) (*UpdateLibraryElementOK, error)
	UpdateLibraryElementWithParams(params *UpdateLibraryElementParams, opts ...ClientOption) (*UpdateLibraryElementOK, 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 library elements API client.

type CreateLibraryElementBadRequest

type CreateLibraryElementBadRequest struct {
	Payload *models.ErrorResponseBody
}

CreateLibraryElementBadRequest describes a response with status code 400, with default header values.

BadRequestError is returned when the request is invalid and it cannot be processed.

func NewCreateLibraryElementBadRequest

func NewCreateLibraryElementBadRequest() *CreateLibraryElementBadRequest

NewCreateLibraryElementBadRequest creates a CreateLibraryElementBadRequest with default headers values

func (*CreateLibraryElementBadRequest) Code

Code gets the status code for the create library element bad request response

func (*CreateLibraryElementBadRequest) Error

func (*CreateLibraryElementBadRequest) GetPayload

func (*CreateLibraryElementBadRequest) IsClientError

func (o *CreateLibraryElementBadRequest) IsClientError() bool

IsClientError returns true when this create library element bad request response has a 4xx status code

func (*CreateLibraryElementBadRequest) IsCode

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

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

func (*CreateLibraryElementBadRequest) IsRedirect

func (o *CreateLibraryElementBadRequest) IsRedirect() bool

IsRedirect returns true when this create library element bad request response has a 3xx status code

func (*CreateLibraryElementBadRequest) IsServerError

func (o *CreateLibraryElementBadRequest) IsServerError() bool

IsServerError returns true when this create library element bad request response has a 5xx status code

func (*CreateLibraryElementBadRequest) IsSuccess

func (o *CreateLibraryElementBadRequest) IsSuccess() bool

IsSuccess returns true when this create library element bad request response has a 2xx status code

func (*CreateLibraryElementBadRequest) String

type CreateLibraryElementForbidden

type CreateLibraryElementForbidden struct {
	Payload *models.ErrorResponseBody
}

CreateLibraryElementForbidden describes a response with status code 403, with default header values.

ForbiddenError is returned if the user/token has insufficient permissions to access the requested resource.

func NewCreateLibraryElementForbidden

func NewCreateLibraryElementForbidden() *CreateLibraryElementForbidden

NewCreateLibraryElementForbidden creates a CreateLibraryElementForbidden with default headers values

func (*CreateLibraryElementForbidden) Code

Code gets the status code for the create library element forbidden response

func (*CreateLibraryElementForbidden) Error

func (*CreateLibraryElementForbidden) GetPayload

func (*CreateLibraryElementForbidden) IsClientError

func (o *CreateLibraryElementForbidden) IsClientError() bool

IsClientError returns true when this create library element forbidden response has a 4xx status code

func (*CreateLibraryElementForbidden) IsCode

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

IsCode returns true when this create library element forbidden response a status code equal to that given

func (*CreateLibraryElementForbidden) IsRedirect

func (o *CreateLibraryElementForbidden) IsRedirect() bool

IsRedirect returns true when this create library element forbidden response has a 3xx status code

func (*CreateLibraryElementForbidden) IsServerError

func (o *CreateLibraryElementForbidden) IsServerError() bool

IsServerError returns true when this create library element forbidden response has a 5xx status code

func (*CreateLibraryElementForbidden) IsSuccess

func (o *CreateLibraryElementForbidden) IsSuccess() bool

IsSuccess returns true when this create library element forbidden response has a 2xx status code

func (*CreateLibraryElementForbidden) String

type CreateLibraryElementInternalServerError

type CreateLibraryElementInternalServerError struct {
	Payload *models.ErrorResponseBody
}

CreateLibraryElementInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewCreateLibraryElementInternalServerError

func NewCreateLibraryElementInternalServerError() *CreateLibraryElementInternalServerError

NewCreateLibraryElementInternalServerError creates a CreateLibraryElementInternalServerError with default headers values

func (*CreateLibraryElementInternalServerError) Code

Code gets the status code for the create library element internal server error response

func (*CreateLibraryElementInternalServerError) Error

func (*CreateLibraryElementInternalServerError) GetPayload

func (*CreateLibraryElementInternalServerError) IsClientError

func (o *CreateLibraryElementInternalServerError) IsClientError() bool

IsClientError returns true when this create library element internal server error response has a 4xx status code

func (*CreateLibraryElementInternalServerError) IsCode

IsCode returns true when this create library element internal server error response a status code equal to that given

func (*CreateLibraryElementInternalServerError) IsRedirect

IsRedirect returns true when this create library element internal server error response has a 3xx status code

func (*CreateLibraryElementInternalServerError) IsServerError

func (o *CreateLibraryElementInternalServerError) IsServerError() bool

IsServerError returns true when this create library element internal server error response has a 5xx status code

func (*CreateLibraryElementInternalServerError) IsSuccess

IsSuccess returns true when this create library element internal server error response has a 2xx status code

func (*CreateLibraryElementInternalServerError) String

type CreateLibraryElementNotFound

type CreateLibraryElementNotFound struct {
	Payload *models.ErrorResponseBody
}

CreateLibraryElementNotFound describes a response with status code 404, with default header values.

NotFoundError is returned when the requested resource was not found.

func NewCreateLibraryElementNotFound

func NewCreateLibraryElementNotFound() *CreateLibraryElementNotFound

NewCreateLibraryElementNotFound creates a CreateLibraryElementNotFound with default headers values

func (*CreateLibraryElementNotFound) Code

Code gets the status code for the create library element not found response

func (*CreateLibraryElementNotFound) Error

func (*CreateLibraryElementNotFound) GetPayload

func (*CreateLibraryElementNotFound) IsClientError

func (o *CreateLibraryElementNotFound) IsClientError() bool

IsClientError returns true when this create library element not found response has a 4xx status code

func (*CreateLibraryElementNotFound) IsCode

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

IsCode returns true when this create library element not found response a status code equal to that given

func (*CreateLibraryElementNotFound) IsRedirect

func (o *CreateLibraryElementNotFound) IsRedirect() bool

IsRedirect returns true when this create library element not found response has a 3xx status code

func (*CreateLibraryElementNotFound) IsServerError

func (o *CreateLibraryElementNotFound) IsServerError() bool

IsServerError returns true when this create library element not found response has a 5xx status code

func (*CreateLibraryElementNotFound) IsSuccess

func (o *CreateLibraryElementNotFound) IsSuccess() bool

IsSuccess returns true when this create library element not found response has a 2xx status code

func (*CreateLibraryElementNotFound) String

type CreateLibraryElementOK

type CreateLibraryElementOK struct {
	Payload *models.LibraryElementResponse
}

CreateLibraryElementOK describes a response with status code 200, with default header values.

(empty)

func NewCreateLibraryElementOK

func NewCreateLibraryElementOK() *CreateLibraryElementOK

NewCreateLibraryElementOK creates a CreateLibraryElementOK with default headers values

func (*CreateLibraryElementOK) Code

func (o *CreateLibraryElementOK) Code() int

Code gets the status code for the create library element Ok response

func (*CreateLibraryElementOK) Error

func (o *CreateLibraryElementOK) Error() string

func (*CreateLibraryElementOK) GetPayload

func (*CreateLibraryElementOK) IsClientError

func (o *CreateLibraryElementOK) IsClientError() bool

IsClientError returns true when this create library element Ok response has a 4xx status code

func (*CreateLibraryElementOK) IsCode

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

IsCode returns true when this create library element Ok response a status code equal to that given

func (*CreateLibraryElementOK) IsRedirect

func (o *CreateLibraryElementOK) IsRedirect() bool

IsRedirect returns true when this create library element Ok response has a 3xx status code

func (*CreateLibraryElementOK) IsServerError

func (o *CreateLibraryElementOK) IsServerError() bool

IsServerError returns true when this create library element Ok response has a 5xx status code

func (*CreateLibraryElementOK) IsSuccess

func (o *CreateLibraryElementOK) IsSuccess() bool

IsSuccess returns true when this create library element Ok response has a 2xx status code

func (*CreateLibraryElementOK) String

func (o *CreateLibraryElementOK) String() string

type CreateLibraryElementParams

type CreateLibraryElementParams struct {

	// Body.
	Body *models.CreateLibraryElementCommand

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

CreateLibraryElementParams contains all the parameters to send to the API endpoint

for the create library element operation.

Typically these are written to a http.Request.

func NewCreateLibraryElementParams

func NewCreateLibraryElementParams() *CreateLibraryElementParams

NewCreateLibraryElementParams creates a new CreateLibraryElementParams 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 NewCreateLibraryElementParamsWithContext

func NewCreateLibraryElementParamsWithContext(ctx context.Context) *CreateLibraryElementParams

NewCreateLibraryElementParamsWithContext creates a new CreateLibraryElementParams object with the ability to set a context for a request.

func NewCreateLibraryElementParamsWithHTTPClient

func NewCreateLibraryElementParamsWithHTTPClient(client *http.Client) *CreateLibraryElementParams

NewCreateLibraryElementParamsWithHTTPClient creates a new CreateLibraryElementParams object with the ability to set a custom HTTPClient for a request.

func NewCreateLibraryElementParamsWithTimeout

func NewCreateLibraryElementParamsWithTimeout(timeout time.Duration) *CreateLibraryElementParams

NewCreateLibraryElementParamsWithTimeout creates a new CreateLibraryElementParams object with the ability to set a timeout on a request.

func (*CreateLibraryElementParams) SetBody

SetBody adds the body to the create library element params

func (*CreateLibraryElementParams) SetContext

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

SetContext adds the context to the create library element params

func (*CreateLibraryElementParams) SetDefaults

func (o *CreateLibraryElementParams) SetDefaults()

SetDefaults hydrates default values in the create library element params (not the query body).

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

func (*CreateLibraryElementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create library element params

func (*CreateLibraryElementParams) SetTimeout

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

SetTimeout adds the timeout to the create library element params

func (*CreateLibraryElementParams) WithBody

WithBody adds the body to the create library element params

func (*CreateLibraryElementParams) WithContext

WithContext adds the context to the create library element params

func (*CreateLibraryElementParams) WithDefaults

WithDefaults hydrates default values in the create library element params (not the query body).

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

func (*CreateLibraryElementParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create library element params

func (*CreateLibraryElementParams) WithTimeout

WithTimeout adds the timeout to the create library element params

func (*CreateLibraryElementParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateLibraryElementReader

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

CreateLibraryElementReader is a Reader for the CreateLibraryElement structure.

func (*CreateLibraryElementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateLibraryElementUnauthorized

type CreateLibraryElementUnauthorized struct {
	Payload *models.ErrorResponseBody
}

CreateLibraryElementUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewCreateLibraryElementUnauthorized

func NewCreateLibraryElementUnauthorized() *CreateLibraryElementUnauthorized

NewCreateLibraryElementUnauthorized creates a CreateLibraryElementUnauthorized with default headers values

func (*CreateLibraryElementUnauthorized) Code

Code gets the status code for the create library element unauthorized response

func (*CreateLibraryElementUnauthorized) Error

func (*CreateLibraryElementUnauthorized) GetPayload

func (*CreateLibraryElementUnauthorized) IsClientError

func (o *CreateLibraryElementUnauthorized) IsClientError() bool

IsClientError returns true when this create library element unauthorized response has a 4xx status code

func (*CreateLibraryElementUnauthorized) IsCode

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

IsCode returns true when this create library element unauthorized response a status code equal to that given

func (*CreateLibraryElementUnauthorized) IsRedirect

func (o *CreateLibraryElementUnauthorized) IsRedirect() bool

IsRedirect returns true when this create library element unauthorized response has a 3xx status code

func (*CreateLibraryElementUnauthorized) IsServerError

func (o *CreateLibraryElementUnauthorized) IsServerError() bool

IsServerError returns true when this create library element unauthorized response has a 5xx status code

func (*CreateLibraryElementUnauthorized) IsSuccess

func (o *CreateLibraryElementUnauthorized) IsSuccess() bool

IsSuccess returns true when this create library element unauthorized response has a 2xx status code

func (*CreateLibraryElementUnauthorized) String

type DeleteLibraryElementByUIDBadRequest

type DeleteLibraryElementByUIDBadRequest struct {
	Payload *models.ErrorResponseBody
}

DeleteLibraryElementByUIDBadRequest describes a response with status code 400, with default header values.

BadRequestError is returned when the request is invalid and it cannot be processed.

func NewDeleteLibraryElementByUIDBadRequest

func NewDeleteLibraryElementByUIDBadRequest() *DeleteLibraryElementByUIDBadRequest

NewDeleteLibraryElementByUIDBadRequest creates a DeleteLibraryElementByUIDBadRequest with default headers values

func (*DeleteLibraryElementByUIDBadRequest) Code

Code gets the status code for the delete library element by Uid bad request response

func (*DeleteLibraryElementByUIDBadRequest) Error

func (*DeleteLibraryElementByUIDBadRequest) GetPayload

func (*DeleteLibraryElementByUIDBadRequest) IsClientError

func (o *DeleteLibraryElementByUIDBadRequest) IsClientError() bool

IsClientError returns true when this delete library element by Uid bad request response has a 4xx status code

func (*DeleteLibraryElementByUIDBadRequest) IsCode

IsCode returns true when this delete library element by Uid bad request response a status code equal to that given

func (*DeleteLibraryElementByUIDBadRequest) IsRedirect

func (o *DeleteLibraryElementByUIDBadRequest) IsRedirect() bool

IsRedirect returns true when this delete library element by Uid bad request response has a 3xx status code

func (*DeleteLibraryElementByUIDBadRequest) IsServerError

func (o *DeleteLibraryElementByUIDBadRequest) IsServerError() bool

IsServerError returns true when this delete library element by Uid bad request response has a 5xx status code

func (*DeleteLibraryElementByUIDBadRequest) IsSuccess

IsSuccess returns true when this delete library element by Uid bad request response has a 2xx status code

func (*DeleteLibraryElementByUIDBadRequest) String

type DeleteLibraryElementByUIDForbidden

type DeleteLibraryElementByUIDForbidden struct {
	Payload *models.ErrorResponseBody
}

DeleteLibraryElementByUIDForbidden describes a response with status code 403, with default header values.

ForbiddenError is returned if the user/token has insufficient permissions to access the requested resource.

func NewDeleteLibraryElementByUIDForbidden

func NewDeleteLibraryElementByUIDForbidden() *DeleteLibraryElementByUIDForbidden

NewDeleteLibraryElementByUIDForbidden creates a DeleteLibraryElementByUIDForbidden with default headers values

func (*DeleteLibraryElementByUIDForbidden) Code

Code gets the status code for the delete library element by Uid forbidden response

func (*DeleteLibraryElementByUIDForbidden) Error

func (*DeleteLibraryElementByUIDForbidden) GetPayload

func (*DeleteLibraryElementByUIDForbidden) IsClientError

func (o *DeleteLibraryElementByUIDForbidden) IsClientError() bool

IsClientError returns true when this delete library element by Uid forbidden response has a 4xx status code

func (*DeleteLibraryElementByUIDForbidden) IsCode

IsCode returns true when this delete library element by Uid forbidden response a status code equal to that given

func (*DeleteLibraryElementByUIDForbidden) IsRedirect

func (o *DeleteLibraryElementByUIDForbidden) IsRedirect() bool

IsRedirect returns true when this delete library element by Uid forbidden response has a 3xx status code

func (*DeleteLibraryElementByUIDForbidden) IsServerError

func (o *DeleteLibraryElementByUIDForbidden) IsServerError() bool

IsServerError returns true when this delete library element by Uid forbidden response has a 5xx status code

func (*DeleteLibraryElementByUIDForbidden) IsSuccess

IsSuccess returns true when this delete library element by Uid forbidden response has a 2xx status code

func (*DeleteLibraryElementByUIDForbidden) String

type DeleteLibraryElementByUIDInternalServerError

type DeleteLibraryElementByUIDInternalServerError struct {
	Payload *models.ErrorResponseBody
}

DeleteLibraryElementByUIDInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewDeleteLibraryElementByUIDInternalServerError

func NewDeleteLibraryElementByUIDInternalServerError() *DeleteLibraryElementByUIDInternalServerError

NewDeleteLibraryElementByUIDInternalServerError creates a DeleteLibraryElementByUIDInternalServerError with default headers values

func (*DeleteLibraryElementByUIDInternalServerError) Code

Code gets the status code for the delete library element by Uid internal server error response

func (*DeleteLibraryElementByUIDInternalServerError) Error

func (*DeleteLibraryElementByUIDInternalServerError) GetPayload

func (*DeleteLibraryElementByUIDInternalServerError) IsClientError

IsClientError returns true when this delete library element by Uid internal server error response has a 4xx status code

func (*DeleteLibraryElementByUIDInternalServerError) IsCode

IsCode returns true when this delete library element by Uid internal server error response a status code equal to that given

func (*DeleteLibraryElementByUIDInternalServerError) IsRedirect

IsRedirect returns true when this delete library element by Uid internal server error response has a 3xx status code

func (*DeleteLibraryElementByUIDInternalServerError) IsServerError

IsServerError returns true when this delete library element by Uid internal server error response has a 5xx status code

func (*DeleteLibraryElementByUIDInternalServerError) IsSuccess

IsSuccess returns true when this delete library element by Uid internal server error response has a 2xx status code

func (*DeleteLibraryElementByUIDInternalServerError) String

type DeleteLibraryElementByUIDNotFound

type DeleteLibraryElementByUIDNotFound struct {
	Payload *models.ErrorResponseBody
}

DeleteLibraryElementByUIDNotFound describes a response with status code 404, with default header values.

NotFoundError is returned when the requested resource was not found.

func NewDeleteLibraryElementByUIDNotFound

func NewDeleteLibraryElementByUIDNotFound() *DeleteLibraryElementByUIDNotFound

NewDeleteLibraryElementByUIDNotFound creates a DeleteLibraryElementByUIDNotFound with default headers values

func (*DeleteLibraryElementByUIDNotFound) Code

Code gets the status code for the delete library element by Uid not found response

func (*DeleteLibraryElementByUIDNotFound) Error

func (*DeleteLibraryElementByUIDNotFound) GetPayload

func (*DeleteLibraryElementByUIDNotFound) IsClientError

func (o *DeleteLibraryElementByUIDNotFound) IsClientError() bool

IsClientError returns true when this delete library element by Uid not found response has a 4xx status code

func (*DeleteLibraryElementByUIDNotFound) IsCode

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

IsCode returns true when this delete library element by Uid not found response a status code equal to that given

func (*DeleteLibraryElementByUIDNotFound) IsRedirect

func (o *DeleteLibraryElementByUIDNotFound) IsRedirect() bool

IsRedirect returns true when this delete library element by Uid not found response has a 3xx status code

func (*DeleteLibraryElementByUIDNotFound) IsServerError

func (o *DeleteLibraryElementByUIDNotFound) IsServerError() bool

IsServerError returns true when this delete library element by Uid not found response has a 5xx status code

func (*DeleteLibraryElementByUIDNotFound) IsSuccess

func (o *DeleteLibraryElementByUIDNotFound) IsSuccess() bool

IsSuccess returns true when this delete library element by Uid not found response has a 2xx status code

func (*DeleteLibraryElementByUIDNotFound) String

type DeleteLibraryElementByUIDOK

type DeleteLibraryElementByUIDOK struct {
	Payload *models.SuccessResponseBody
}

DeleteLibraryElementByUIDOK describes a response with status code 200, with default header values.

An OKResponse is returned if the request was successful.

func NewDeleteLibraryElementByUIDOK

func NewDeleteLibraryElementByUIDOK() *DeleteLibraryElementByUIDOK

NewDeleteLibraryElementByUIDOK creates a DeleteLibraryElementByUIDOK with default headers values

func (*DeleteLibraryElementByUIDOK) Code

func (o *DeleteLibraryElementByUIDOK) Code() int

Code gets the status code for the delete library element by Uid Ok response

func (*DeleteLibraryElementByUIDOK) Error

func (*DeleteLibraryElementByUIDOK) GetPayload

func (*DeleteLibraryElementByUIDOK) IsClientError

func (o *DeleteLibraryElementByUIDOK) IsClientError() bool

IsClientError returns true when this delete library element by Uid Ok response has a 4xx status code

func (*DeleteLibraryElementByUIDOK) IsCode

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

IsCode returns true when this delete library element by Uid Ok response a status code equal to that given

func (*DeleteLibraryElementByUIDOK) IsRedirect

func (o *DeleteLibraryElementByUIDOK) IsRedirect() bool

IsRedirect returns true when this delete library element by Uid Ok response has a 3xx status code

func (*DeleteLibraryElementByUIDOK) IsServerError

func (o *DeleteLibraryElementByUIDOK) IsServerError() bool

IsServerError returns true when this delete library element by Uid Ok response has a 5xx status code

func (*DeleteLibraryElementByUIDOK) IsSuccess

func (o *DeleteLibraryElementByUIDOK) IsSuccess() bool

IsSuccess returns true when this delete library element by Uid Ok response has a 2xx status code

func (*DeleteLibraryElementByUIDOK) String

func (o *DeleteLibraryElementByUIDOK) String() string

type DeleteLibraryElementByUIDParams

type DeleteLibraryElementByUIDParams struct {

	// LibraryElementUID.
	LibraryElementUID string

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

DeleteLibraryElementByUIDParams contains all the parameters to send to the API endpoint

for the delete library element by UID operation.

Typically these are written to a http.Request.

func NewDeleteLibraryElementByUIDParams

func NewDeleteLibraryElementByUIDParams() *DeleteLibraryElementByUIDParams

NewDeleteLibraryElementByUIDParams creates a new DeleteLibraryElementByUIDParams 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 NewDeleteLibraryElementByUIDParamsWithContext

func NewDeleteLibraryElementByUIDParamsWithContext(ctx context.Context) *DeleteLibraryElementByUIDParams

NewDeleteLibraryElementByUIDParamsWithContext creates a new DeleteLibraryElementByUIDParams object with the ability to set a context for a request.

func NewDeleteLibraryElementByUIDParamsWithHTTPClient

func NewDeleteLibraryElementByUIDParamsWithHTTPClient(client *http.Client) *DeleteLibraryElementByUIDParams

NewDeleteLibraryElementByUIDParamsWithHTTPClient creates a new DeleteLibraryElementByUIDParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteLibraryElementByUIDParamsWithTimeout

func NewDeleteLibraryElementByUIDParamsWithTimeout(timeout time.Duration) *DeleteLibraryElementByUIDParams

NewDeleteLibraryElementByUIDParamsWithTimeout creates a new DeleteLibraryElementByUIDParams object with the ability to set a timeout on a request.

func (*DeleteLibraryElementByUIDParams) SetContext

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

SetContext adds the context to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) SetDefaults

func (o *DeleteLibraryElementByUIDParams) SetDefaults()

SetDefaults hydrates default values in the delete library element by UID params (not the query body).

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

func (*DeleteLibraryElementByUIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) SetLibraryElementUID

func (o *DeleteLibraryElementByUIDParams) SetLibraryElementUID(libraryElementUID string)

SetLibraryElementUID adds the libraryElementUid to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) SetTimeout

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

SetTimeout adds the timeout to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) WithContext

WithContext adds the context to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) WithDefaults

WithDefaults hydrates default values in the delete library element by UID params (not the query body).

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

func (*DeleteLibraryElementByUIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) WithLibraryElementUID

func (o *DeleteLibraryElementByUIDParams) WithLibraryElementUID(libraryElementUID string) *DeleteLibraryElementByUIDParams

WithLibraryElementUID adds the libraryElementUID to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) WithTimeout

WithTimeout adds the timeout to the delete library element by UID params

func (*DeleteLibraryElementByUIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteLibraryElementByUIDReader

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

DeleteLibraryElementByUIDReader is a Reader for the DeleteLibraryElementByUID structure.

func (*DeleteLibraryElementByUIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteLibraryElementByUIDUnauthorized

type DeleteLibraryElementByUIDUnauthorized struct {
	Payload *models.ErrorResponseBody
}

DeleteLibraryElementByUIDUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewDeleteLibraryElementByUIDUnauthorized

func NewDeleteLibraryElementByUIDUnauthorized() *DeleteLibraryElementByUIDUnauthorized

NewDeleteLibraryElementByUIDUnauthorized creates a DeleteLibraryElementByUIDUnauthorized with default headers values

func (*DeleteLibraryElementByUIDUnauthorized) Code

Code gets the status code for the delete library element by Uid unauthorized response

func (*DeleteLibraryElementByUIDUnauthorized) Error

func (*DeleteLibraryElementByUIDUnauthorized) GetPayload

func (*DeleteLibraryElementByUIDUnauthorized) IsClientError

func (o *DeleteLibraryElementByUIDUnauthorized) IsClientError() bool

IsClientError returns true when this delete library element by Uid unauthorized response has a 4xx status code

func (*DeleteLibraryElementByUIDUnauthorized) IsCode

IsCode returns true when this delete library element by Uid unauthorized response a status code equal to that given

func (*DeleteLibraryElementByUIDUnauthorized) IsRedirect

IsRedirect returns true when this delete library element by Uid unauthorized response has a 3xx status code

func (*DeleteLibraryElementByUIDUnauthorized) IsServerError

func (o *DeleteLibraryElementByUIDUnauthorized) IsServerError() bool

IsServerError returns true when this delete library element by Uid unauthorized response has a 5xx status code

func (*DeleteLibraryElementByUIDUnauthorized) IsSuccess

IsSuccess returns true when this delete library element by Uid unauthorized response has a 2xx status code

func (*DeleteLibraryElementByUIDUnauthorized) String

type GetLibraryElementByNameInternalServerError

type GetLibraryElementByNameInternalServerError struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByNameInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewGetLibraryElementByNameInternalServerError

func NewGetLibraryElementByNameInternalServerError() *GetLibraryElementByNameInternalServerError

NewGetLibraryElementByNameInternalServerError creates a GetLibraryElementByNameInternalServerError with default headers values

func (*GetLibraryElementByNameInternalServerError) Code

Code gets the status code for the get library element by name internal server error response

func (*GetLibraryElementByNameInternalServerError) Error

func (*GetLibraryElementByNameInternalServerError) GetPayload

func (*GetLibraryElementByNameInternalServerError) IsClientError

IsClientError returns true when this get library element by name internal server error response has a 4xx status code

func (*GetLibraryElementByNameInternalServerError) IsCode

IsCode returns true when this get library element by name internal server error response a status code equal to that given

func (*GetLibraryElementByNameInternalServerError) IsRedirect

IsRedirect returns true when this get library element by name internal server error response has a 3xx status code

func (*GetLibraryElementByNameInternalServerError) IsServerError

IsServerError returns true when this get library element by name internal server error response has a 5xx status code

func (*GetLibraryElementByNameInternalServerError) IsSuccess

IsSuccess returns true when this get library element by name internal server error response has a 2xx status code

func (*GetLibraryElementByNameInternalServerError) String

type GetLibraryElementByNameNotFound

type GetLibraryElementByNameNotFound struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByNameNotFound describes a response with status code 404, with default header values.

NotFoundError is returned when the requested resource was not found.

func NewGetLibraryElementByNameNotFound

func NewGetLibraryElementByNameNotFound() *GetLibraryElementByNameNotFound

NewGetLibraryElementByNameNotFound creates a GetLibraryElementByNameNotFound with default headers values

func (*GetLibraryElementByNameNotFound) Code

Code gets the status code for the get library element by name not found response

func (*GetLibraryElementByNameNotFound) Error

func (*GetLibraryElementByNameNotFound) GetPayload

func (*GetLibraryElementByNameNotFound) IsClientError

func (o *GetLibraryElementByNameNotFound) IsClientError() bool

IsClientError returns true when this get library element by name not found response has a 4xx status code

func (*GetLibraryElementByNameNotFound) IsCode

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

IsCode returns true when this get library element by name not found response a status code equal to that given

func (*GetLibraryElementByNameNotFound) IsRedirect

func (o *GetLibraryElementByNameNotFound) IsRedirect() bool

IsRedirect returns true when this get library element by name not found response has a 3xx status code

func (*GetLibraryElementByNameNotFound) IsServerError

func (o *GetLibraryElementByNameNotFound) IsServerError() bool

IsServerError returns true when this get library element by name not found response has a 5xx status code

func (*GetLibraryElementByNameNotFound) IsSuccess

func (o *GetLibraryElementByNameNotFound) IsSuccess() bool

IsSuccess returns true when this get library element by name not found response has a 2xx status code

func (*GetLibraryElementByNameNotFound) String

type GetLibraryElementByNameOK

type GetLibraryElementByNameOK struct {
	Payload *models.LibraryElementArrayResponse
}

GetLibraryElementByNameOK describes a response with status code 200, with default header values.

(empty)

func NewGetLibraryElementByNameOK

func NewGetLibraryElementByNameOK() *GetLibraryElementByNameOK

NewGetLibraryElementByNameOK creates a GetLibraryElementByNameOK with default headers values

func (*GetLibraryElementByNameOK) Code

func (o *GetLibraryElementByNameOK) Code() int

Code gets the status code for the get library element by name Ok response

func (*GetLibraryElementByNameOK) Error

func (o *GetLibraryElementByNameOK) Error() string

func (*GetLibraryElementByNameOK) GetPayload

func (*GetLibraryElementByNameOK) IsClientError

func (o *GetLibraryElementByNameOK) IsClientError() bool

IsClientError returns true when this get library element by name Ok response has a 4xx status code

func (*GetLibraryElementByNameOK) IsCode

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

IsCode returns true when this get library element by name Ok response a status code equal to that given

func (*GetLibraryElementByNameOK) IsRedirect

func (o *GetLibraryElementByNameOK) IsRedirect() bool

IsRedirect returns true when this get library element by name Ok response has a 3xx status code

func (*GetLibraryElementByNameOK) IsServerError

func (o *GetLibraryElementByNameOK) IsServerError() bool

IsServerError returns true when this get library element by name Ok response has a 5xx status code

func (*GetLibraryElementByNameOK) IsSuccess

func (o *GetLibraryElementByNameOK) IsSuccess() bool

IsSuccess returns true when this get library element by name Ok response has a 2xx status code

func (*GetLibraryElementByNameOK) String

func (o *GetLibraryElementByNameOK) String() string

type GetLibraryElementByNameParams

type GetLibraryElementByNameParams struct {

	// LibraryElementName.
	LibraryElementName string

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

GetLibraryElementByNameParams contains all the parameters to send to the API endpoint

for the get library element by name operation.

Typically these are written to a http.Request.

func NewGetLibraryElementByNameParams

func NewGetLibraryElementByNameParams() *GetLibraryElementByNameParams

NewGetLibraryElementByNameParams creates a new GetLibraryElementByNameParams 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 NewGetLibraryElementByNameParamsWithContext

func NewGetLibraryElementByNameParamsWithContext(ctx context.Context) *GetLibraryElementByNameParams

NewGetLibraryElementByNameParamsWithContext creates a new GetLibraryElementByNameParams object with the ability to set a context for a request.

func NewGetLibraryElementByNameParamsWithHTTPClient

func NewGetLibraryElementByNameParamsWithHTTPClient(client *http.Client) *GetLibraryElementByNameParams

NewGetLibraryElementByNameParamsWithHTTPClient creates a new GetLibraryElementByNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetLibraryElementByNameParamsWithTimeout

func NewGetLibraryElementByNameParamsWithTimeout(timeout time.Duration) *GetLibraryElementByNameParams

NewGetLibraryElementByNameParamsWithTimeout creates a new GetLibraryElementByNameParams object with the ability to set a timeout on a request.

func (*GetLibraryElementByNameParams) SetContext

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

SetContext adds the context to the get library element by name params

func (*GetLibraryElementByNameParams) SetDefaults

func (o *GetLibraryElementByNameParams) SetDefaults()

SetDefaults hydrates default values in the get library element by name params (not the query body).

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

func (*GetLibraryElementByNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get library element by name params

func (*GetLibraryElementByNameParams) SetLibraryElementName

func (o *GetLibraryElementByNameParams) SetLibraryElementName(libraryElementName string)

SetLibraryElementName adds the libraryElementName to the get library element by name params

func (*GetLibraryElementByNameParams) SetTimeout

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

SetTimeout adds the timeout to the get library element by name params

func (*GetLibraryElementByNameParams) WithContext

WithContext adds the context to the get library element by name params

func (*GetLibraryElementByNameParams) WithDefaults

WithDefaults hydrates default values in the get library element by name params (not the query body).

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

func (*GetLibraryElementByNameParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get library element by name params

func (*GetLibraryElementByNameParams) WithLibraryElementName

func (o *GetLibraryElementByNameParams) WithLibraryElementName(libraryElementName string) *GetLibraryElementByNameParams

WithLibraryElementName adds the libraryElementName to the get library element by name params

func (*GetLibraryElementByNameParams) WithTimeout

WithTimeout adds the timeout to the get library element by name params

func (*GetLibraryElementByNameParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLibraryElementByNameReader

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

GetLibraryElementByNameReader is a Reader for the GetLibraryElementByName structure.

func (*GetLibraryElementByNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLibraryElementByNameUnauthorized

type GetLibraryElementByNameUnauthorized struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByNameUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewGetLibraryElementByNameUnauthorized

func NewGetLibraryElementByNameUnauthorized() *GetLibraryElementByNameUnauthorized

NewGetLibraryElementByNameUnauthorized creates a GetLibraryElementByNameUnauthorized with default headers values

func (*GetLibraryElementByNameUnauthorized) Code

Code gets the status code for the get library element by name unauthorized response

func (*GetLibraryElementByNameUnauthorized) Error

func (*GetLibraryElementByNameUnauthorized) GetPayload

func (*GetLibraryElementByNameUnauthorized) IsClientError

func (o *GetLibraryElementByNameUnauthorized) IsClientError() bool

IsClientError returns true when this get library element by name unauthorized response has a 4xx status code

func (*GetLibraryElementByNameUnauthorized) IsCode

IsCode returns true when this get library element by name unauthorized response a status code equal to that given

func (*GetLibraryElementByNameUnauthorized) IsRedirect

func (o *GetLibraryElementByNameUnauthorized) IsRedirect() bool

IsRedirect returns true when this get library element by name unauthorized response has a 3xx status code

func (*GetLibraryElementByNameUnauthorized) IsServerError

func (o *GetLibraryElementByNameUnauthorized) IsServerError() bool

IsServerError returns true when this get library element by name unauthorized response has a 5xx status code

func (*GetLibraryElementByNameUnauthorized) IsSuccess

IsSuccess returns true when this get library element by name unauthorized response has a 2xx status code

func (*GetLibraryElementByNameUnauthorized) String

type GetLibraryElementByUIDForbidden

type GetLibraryElementByUIDForbidden struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByUIDForbidden describes a response with status code 403, with default header values.

ForbiddenError is returned if the user/token has insufficient permissions to access the requested resource.

func NewGetLibraryElementByUIDForbidden

func NewGetLibraryElementByUIDForbidden() *GetLibraryElementByUIDForbidden

NewGetLibraryElementByUIDForbidden creates a GetLibraryElementByUIDForbidden with default headers values

func (*GetLibraryElementByUIDForbidden) Code

Code gets the status code for the get library element by Uid forbidden response

func (*GetLibraryElementByUIDForbidden) Error

func (*GetLibraryElementByUIDForbidden) GetPayload

func (*GetLibraryElementByUIDForbidden) IsClientError

func (o *GetLibraryElementByUIDForbidden) IsClientError() bool

IsClientError returns true when this get library element by Uid forbidden response has a 4xx status code

func (*GetLibraryElementByUIDForbidden) IsCode

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

IsCode returns true when this get library element by Uid forbidden response a status code equal to that given

func (*GetLibraryElementByUIDForbidden) IsRedirect

func (o *GetLibraryElementByUIDForbidden) IsRedirect() bool

IsRedirect returns true when this get library element by Uid forbidden response has a 3xx status code

func (*GetLibraryElementByUIDForbidden) IsServerError

func (o *GetLibraryElementByUIDForbidden) IsServerError() bool

IsServerError returns true when this get library element by Uid forbidden response has a 5xx status code

func (*GetLibraryElementByUIDForbidden) IsSuccess

func (o *GetLibraryElementByUIDForbidden) IsSuccess() bool

IsSuccess returns true when this get library element by Uid forbidden response has a 2xx status code

func (*GetLibraryElementByUIDForbidden) String

type GetLibraryElementByUIDInternalServerError

type GetLibraryElementByUIDInternalServerError struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByUIDInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewGetLibraryElementByUIDInternalServerError

func NewGetLibraryElementByUIDInternalServerError() *GetLibraryElementByUIDInternalServerError

NewGetLibraryElementByUIDInternalServerError creates a GetLibraryElementByUIDInternalServerError with default headers values

func (*GetLibraryElementByUIDInternalServerError) Code

Code gets the status code for the get library element by Uid internal server error response

func (*GetLibraryElementByUIDInternalServerError) Error

func (*GetLibraryElementByUIDInternalServerError) GetPayload

func (*GetLibraryElementByUIDInternalServerError) IsClientError

IsClientError returns true when this get library element by Uid internal server error response has a 4xx status code

func (*GetLibraryElementByUIDInternalServerError) IsCode

IsCode returns true when this get library element by Uid internal server error response a status code equal to that given

func (*GetLibraryElementByUIDInternalServerError) IsRedirect

IsRedirect returns true when this get library element by Uid internal server error response has a 3xx status code

func (*GetLibraryElementByUIDInternalServerError) IsServerError

IsServerError returns true when this get library element by Uid internal server error response has a 5xx status code

func (*GetLibraryElementByUIDInternalServerError) IsSuccess

IsSuccess returns true when this get library element by Uid internal server error response has a 2xx status code

func (*GetLibraryElementByUIDInternalServerError) String

type GetLibraryElementByUIDNotFound

type GetLibraryElementByUIDNotFound struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByUIDNotFound describes a response with status code 404, with default header values.

NotFoundError is returned when the requested resource was not found.

func NewGetLibraryElementByUIDNotFound

func NewGetLibraryElementByUIDNotFound() *GetLibraryElementByUIDNotFound

NewGetLibraryElementByUIDNotFound creates a GetLibraryElementByUIDNotFound with default headers values

func (*GetLibraryElementByUIDNotFound) Code

Code gets the status code for the get library element by Uid not found response

func (*GetLibraryElementByUIDNotFound) Error

func (*GetLibraryElementByUIDNotFound) GetPayload

func (*GetLibraryElementByUIDNotFound) IsClientError

func (o *GetLibraryElementByUIDNotFound) IsClientError() bool

IsClientError returns true when this get library element by Uid not found response has a 4xx status code

func (*GetLibraryElementByUIDNotFound) IsCode

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

IsCode returns true when this get library element by Uid not found response a status code equal to that given

func (*GetLibraryElementByUIDNotFound) IsRedirect

func (o *GetLibraryElementByUIDNotFound) IsRedirect() bool

IsRedirect returns true when this get library element by Uid not found response has a 3xx status code

func (*GetLibraryElementByUIDNotFound) IsServerError

func (o *GetLibraryElementByUIDNotFound) IsServerError() bool

IsServerError returns true when this get library element by Uid not found response has a 5xx status code

func (*GetLibraryElementByUIDNotFound) IsSuccess

func (o *GetLibraryElementByUIDNotFound) IsSuccess() bool

IsSuccess returns true when this get library element by Uid not found response has a 2xx status code

func (*GetLibraryElementByUIDNotFound) String

type GetLibraryElementByUIDOK

type GetLibraryElementByUIDOK struct {
	Payload *models.LibraryElementResponse
}

GetLibraryElementByUIDOK describes a response with status code 200, with default header values.

(empty)

func NewGetLibraryElementByUIDOK

func NewGetLibraryElementByUIDOK() *GetLibraryElementByUIDOK

NewGetLibraryElementByUIDOK creates a GetLibraryElementByUIDOK with default headers values

func (*GetLibraryElementByUIDOK) Code

func (o *GetLibraryElementByUIDOK) Code() int

Code gets the status code for the get library element by Uid Ok response

func (*GetLibraryElementByUIDOK) Error

func (o *GetLibraryElementByUIDOK) Error() string

func (*GetLibraryElementByUIDOK) GetPayload

func (*GetLibraryElementByUIDOK) IsClientError

func (o *GetLibraryElementByUIDOK) IsClientError() bool

IsClientError returns true when this get library element by Uid Ok response has a 4xx status code

func (*GetLibraryElementByUIDOK) IsCode

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

IsCode returns true when this get library element by Uid Ok response a status code equal to that given

func (*GetLibraryElementByUIDOK) IsRedirect

func (o *GetLibraryElementByUIDOK) IsRedirect() bool

IsRedirect returns true when this get library element by Uid Ok response has a 3xx status code

func (*GetLibraryElementByUIDOK) IsServerError

func (o *GetLibraryElementByUIDOK) IsServerError() bool

IsServerError returns true when this get library element by Uid Ok response has a 5xx status code

func (*GetLibraryElementByUIDOK) IsSuccess

func (o *GetLibraryElementByUIDOK) IsSuccess() bool

IsSuccess returns true when this get library element by Uid Ok response has a 2xx status code

func (*GetLibraryElementByUIDOK) String

func (o *GetLibraryElementByUIDOK) String() string

type GetLibraryElementByUIDParams

type GetLibraryElementByUIDParams struct {

	// LibraryElementUID.
	LibraryElementUID string

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

GetLibraryElementByUIDParams contains all the parameters to send to the API endpoint

for the get library element by UID operation.

Typically these are written to a http.Request.

func NewGetLibraryElementByUIDParams

func NewGetLibraryElementByUIDParams() *GetLibraryElementByUIDParams

NewGetLibraryElementByUIDParams creates a new GetLibraryElementByUIDParams 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 NewGetLibraryElementByUIDParamsWithContext

func NewGetLibraryElementByUIDParamsWithContext(ctx context.Context) *GetLibraryElementByUIDParams

NewGetLibraryElementByUIDParamsWithContext creates a new GetLibraryElementByUIDParams object with the ability to set a context for a request.

func NewGetLibraryElementByUIDParamsWithHTTPClient

func NewGetLibraryElementByUIDParamsWithHTTPClient(client *http.Client) *GetLibraryElementByUIDParams

NewGetLibraryElementByUIDParamsWithHTTPClient creates a new GetLibraryElementByUIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetLibraryElementByUIDParamsWithTimeout

func NewGetLibraryElementByUIDParamsWithTimeout(timeout time.Duration) *GetLibraryElementByUIDParams

NewGetLibraryElementByUIDParamsWithTimeout creates a new GetLibraryElementByUIDParams object with the ability to set a timeout on a request.

func (*GetLibraryElementByUIDParams) SetContext

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

SetContext adds the context to the get library element by UID params

func (*GetLibraryElementByUIDParams) SetDefaults

func (o *GetLibraryElementByUIDParams) SetDefaults()

SetDefaults hydrates default values in the get library element by UID params (not the query body).

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

func (*GetLibraryElementByUIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get library element by UID params

func (*GetLibraryElementByUIDParams) SetLibraryElementUID

func (o *GetLibraryElementByUIDParams) SetLibraryElementUID(libraryElementUID string)

SetLibraryElementUID adds the libraryElementUid to the get library element by UID params

func (*GetLibraryElementByUIDParams) SetTimeout

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

SetTimeout adds the timeout to the get library element by UID params

func (*GetLibraryElementByUIDParams) WithContext

WithContext adds the context to the get library element by UID params

func (*GetLibraryElementByUIDParams) WithDefaults

WithDefaults hydrates default values in the get library element by UID params (not the query body).

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

func (*GetLibraryElementByUIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get library element by UID params

func (*GetLibraryElementByUIDParams) WithLibraryElementUID

func (o *GetLibraryElementByUIDParams) WithLibraryElementUID(libraryElementUID string) *GetLibraryElementByUIDParams

WithLibraryElementUID adds the libraryElementUID to the get library element by UID params

func (*GetLibraryElementByUIDParams) WithTimeout

WithTimeout adds the timeout to the get library element by UID params

func (*GetLibraryElementByUIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLibraryElementByUIDReader

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

GetLibraryElementByUIDReader is a Reader for the GetLibraryElementByUID structure.

func (*GetLibraryElementByUIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLibraryElementByUIDUnauthorized

type GetLibraryElementByUIDUnauthorized struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementByUIDUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewGetLibraryElementByUIDUnauthorized

func NewGetLibraryElementByUIDUnauthorized() *GetLibraryElementByUIDUnauthorized

NewGetLibraryElementByUIDUnauthorized creates a GetLibraryElementByUIDUnauthorized with default headers values

func (*GetLibraryElementByUIDUnauthorized) Code

Code gets the status code for the get library element by Uid unauthorized response

func (*GetLibraryElementByUIDUnauthorized) Error

func (*GetLibraryElementByUIDUnauthorized) GetPayload

func (*GetLibraryElementByUIDUnauthorized) IsClientError

func (o *GetLibraryElementByUIDUnauthorized) IsClientError() bool

IsClientError returns true when this get library element by Uid unauthorized response has a 4xx status code

func (*GetLibraryElementByUIDUnauthorized) IsCode

IsCode returns true when this get library element by Uid unauthorized response a status code equal to that given

func (*GetLibraryElementByUIDUnauthorized) IsRedirect

func (o *GetLibraryElementByUIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this get library element by Uid unauthorized response has a 3xx status code

func (*GetLibraryElementByUIDUnauthorized) IsServerError

func (o *GetLibraryElementByUIDUnauthorized) IsServerError() bool

IsServerError returns true when this get library element by Uid unauthorized response has a 5xx status code

func (*GetLibraryElementByUIDUnauthorized) IsSuccess

IsSuccess returns true when this get library element by Uid unauthorized response has a 2xx status code

func (*GetLibraryElementByUIDUnauthorized) String

type GetLibraryElementConnectionsForbidden

type GetLibraryElementConnectionsForbidden struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementConnectionsForbidden describes a response with status code 403, with default header values.

ForbiddenError is returned if the user/token has insufficient permissions to access the requested resource.

func NewGetLibraryElementConnectionsForbidden

func NewGetLibraryElementConnectionsForbidden() *GetLibraryElementConnectionsForbidden

NewGetLibraryElementConnectionsForbidden creates a GetLibraryElementConnectionsForbidden with default headers values

func (*GetLibraryElementConnectionsForbidden) Code

Code gets the status code for the get library element connections forbidden response

func (*GetLibraryElementConnectionsForbidden) Error

func (*GetLibraryElementConnectionsForbidden) GetPayload

func (*GetLibraryElementConnectionsForbidden) IsClientError

func (o *GetLibraryElementConnectionsForbidden) IsClientError() bool

IsClientError returns true when this get library element connections forbidden response has a 4xx status code

func (*GetLibraryElementConnectionsForbidden) IsCode

IsCode returns true when this get library element connections forbidden response a status code equal to that given

func (*GetLibraryElementConnectionsForbidden) IsRedirect

IsRedirect returns true when this get library element connections forbidden response has a 3xx status code

func (*GetLibraryElementConnectionsForbidden) IsServerError

func (o *GetLibraryElementConnectionsForbidden) IsServerError() bool

IsServerError returns true when this get library element connections forbidden response has a 5xx status code

func (*GetLibraryElementConnectionsForbidden) IsSuccess

IsSuccess returns true when this get library element connections forbidden response has a 2xx status code

func (*GetLibraryElementConnectionsForbidden) String

type GetLibraryElementConnectionsInternalServerError

type GetLibraryElementConnectionsInternalServerError struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementConnectionsInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewGetLibraryElementConnectionsInternalServerError

func NewGetLibraryElementConnectionsInternalServerError() *GetLibraryElementConnectionsInternalServerError

NewGetLibraryElementConnectionsInternalServerError creates a GetLibraryElementConnectionsInternalServerError with default headers values

func (*GetLibraryElementConnectionsInternalServerError) Code

Code gets the status code for the get library element connections internal server error response

func (*GetLibraryElementConnectionsInternalServerError) Error

func (*GetLibraryElementConnectionsInternalServerError) GetPayload

func (*GetLibraryElementConnectionsInternalServerError) IsClientError

IsClientError returns true when this get library element connections internal server error response has a 4xx status code

func (*GetLibraryElementConnectionsInternalServerError) IsCode

IsCode returns true when this get library element connections internal server error response a status code equal to that given

func (*GetLibraryElementConnectionsInternalServerError) IsRedirect

IsRedirect returns true when this get library element connections internal server error response has a 3xx status code

func (*GetLibraryElementConnectionsInternalServerError) IsServerError

IsServerError returns true when this get library element connections internal server error response has a 5xx status code

func (*GetLibraryElementConnectionsInternalServerError) IsSuccess

IsSuccess returns true when this get library element connections internal server error response has a 2xx status code

func (*GetLibraryElementConnectionsInternalServerError) String

type GetLibraryElementConnectionsNotFound

type GetLibraryElementConnectionsNotFound struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementConnectionsNotFound describes a response with status code 404, with default header values.

NotFoundError is returned when the requested resource was not found.

func NewGetLibraryElementConnectionsNotFound

func NewGetLibraryElementConnectionsNotFound() *GetLibraryElementConnectionsNotFound

NewGetLibraryElementConnectionsNotFound creates a GetLibraryElementConnectionsNotFound with default headers values

func (*GetLibraryElementConnectionsNotFound) Code

Code gets the status code for the get library element connections not found response

func (*GetLibraryElementConnectionsNotFound) Error

func (*GetLibraryElementConnectionsNotFound) GetPayload

func (*GetLibraryElementConnectionsNotFound) IsClientError

func (o *GetLibraryElementConnectionsNotFound) IsClientError() bool

IsClientError returns true when this get library element connections not found response has a 4xx status code

func (*GetLibraryElementConnectionsNotFound) IsCode

IsCode returns true when this get library element connections not found response a status code equal to that given

func (*GetLibraryElementConnectionsNotFound) IsRedirect

IsRedirect returns true when this get library element connections not found response has a 3xx status code

func (*GetLibraryElementConnectionsNotFound) IsServerError

func (o *GetLibraryElementConnectionsNotFound) IsServerError() bool

IsServerError returns true when this get library element connections not found response has a 5xx status code

func (*GetLibraryElementConnectionsNotFound) IsSuccess

IsSuccess returns true when this get library element connections not found response has a 2xx status code

func (*GetLibraryElementConnectionsNotFound) String

type GetLibraryElementConnectionsOK

type GetLibraryElementConnectionsOK struct {
	Payload *models.LibraryElementConnectionsResponse
}

GetLibraryElementConnectionsOK describes a response with status code 200, with default header values.

(empty)

func NewGetLibraryElementConnectionsOK

func NewGetLibraryElementConnectionsOK() *GetLibraryElementConnectionsOK

NewGetLibraryElementConnectionsOK creates a GetLibraryElementConnectionsOK with default headers values

func (*GetLibraryElementConnectionsOK) Code

Code gets the status code for the get library element connections Ok response

func (*GetLibraryElementConnectionsOK) Error

func (*GetLibraryElementConnectionsOK) GetPayload

func (*GetLibraryElementConnectionsOK) IsClientError

func (o *GetLibraryElementConnectionsOK) IsClientError() bool

IsClientError returns true when this get library element connections Ok response has a 4xx status code

func (*GetLibraryElementConnectionsOK) IsCode

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

IsCode returns true when this get library element connections Ok response a status code equal to that given

func (*GetLibraryElementConnectionsOK) IsRedirect

func (o *GetLibraryElementConnectionsOK) IsRedirect() bool

IsRedirect returns true when this get library element connections Ok response has a 3xx status code

func (*GetLibraryElementConnectionsOK) IsServerError

func (o *GetLibraryElementConnectionsOK) IsServerError() bool

IsServerError returns true when this get library element connections Ok response has a 5xx status code

func (*GetLibraryElementConnectionsOK) IsSuccess

func (o *GetLibraryElementConnectionsOK) IsSuccess() bool

IsSuccess returns true when this get library element connections Ok response has a 2xx status code

func (*GetLibraryElementConnectionsOK) String

type GetLibraryElementConnectionsParams

type GetLibraryElementConnectionsParams struct {

	// LibraryElementUID.
	LibraryElementUID string

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

GetLibraryElementConnectionsParams contains all the parameters to send to the API endpoint

for the get library element connections operation.

Typically these are written to a http.Request.

func NewGetLibraryElementConnectionsParams

func NewGetLibraryElementConnectionsParams() *GetLibraryElementConnectionsParams

NewGetLibraryElementConnectionsParams creates a new GetLibraryElementConnectionsParams 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 NewGetLibraryElementConnectionsParamsWithContext

func NewGetLibraryElementConnectionsParamsWithContext(ctx context.Context) *GetLibraryElementConnectionsParams

NewGetLibraryElementConnectionsParamsWithContext creates a new GetLibraryElementConnectionsParams object with the ability to set a context for a request.

func NewGetLibraryElementConnectionsParamsWithHTTPClient

func NewGetLibraryElementConnectionsParamsWithHTTPClient(client *http.Client) *GetLibraryElementConnectionsParams

NewGetLibraryElementConnectionsParamsWithHTTPClient creates a new GetLibraryElementConnectionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetLibraryElementConnectionsParamsWithTimeout

func NewGetLibraryElementConnectionsParamsWithTimeout(timeout time.Duration) *GetLibraryElementConnectionsParams

NewGetLibraryElementConnectionsParamsWithTimeout creates a new GetLibraryElementConnectionsParams object with the ability to set a timeout on a request.

func (*GetLibraryElementConnectionsParams) SetContext

SetContext adds the context to the get library element connections params

func (*GetLibraryElementConnectionsParams) SetDefaults

func (o *GetLibraryElementConnectionsParams) SetDefaults()

SetDefaults hydrates default values in the get library element connections params (not the query body).

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

func (*GetLibraryElementConnectionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get library element connections params

func (*GetLibraryElementConnectionsParams) SetLibraryElementUID

func (o *GetLibraryElementConnectionsParams) SetLibraryElementUID(libraryElementUID string)

SetLibraryElementUID adds the libraryElementUid to the get library element connections params

func (*GetLibraryElementConnectionsParams) SetTimeout

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

SetTimeout adds the timeout to the get library element connections params

func (*GetLibraryElementConnectionsParams) WithContext

WithContext adds the context to the get library element connections params

func (*GetLibraryElementConnectionsParams) WithDefaults

WithDefaults hydrates default values in the get library element connections params (not the query body).

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

func (*GetLibraryElementConnectionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get library element connections params

func (*GetLibraryElementConnectionsParams) WithLibraryElementUID

func (o *GetLibraryElementConnectionsParams) WithLibraryElementUID(libraryElementUID string) *GetLibraryElementConnectionsParams

WithLibraryElementUID adds the libraryElementUID to the get library element connections params

func (*GetLibraryElementConnectionsParams) WithTimeout

WithTimeout adds the timeout to the get library element connections params

func (*GetLibraryElementConnectionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLibraryElementConnectionsReader

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

GetLibraryElementConnectionsReader is a Reader for the GetLibraryElementConnections structure.

func (*GetLibraryElementConnectionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLibraryElementConnectionsUnauthorized

type GetLibraryElementConnectionsUnauthorized struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementConnectionsUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewGetLibraryElementConnectionsUnauthorized

func NewGetLibraryElementConnectionsUnauthorized() *GetLibraryElementConnectionsUnauthorized

NewGetLibraryElementConnectionsUnauthorized creates a GetLibraryElementConnectionsUnauthorized with default headers values

func (*GetLibraryElementConnectionsUnauthorized) Code

Code gets the status code for the get library element connections unauthorized response

func (*GetLibraryElementConnectionsUnauthorized) Error

func (*GetLibraryElementConnectionsUnauthorized) GetPayload

func (*GetLibraryElementConnectionsUnauthorized) IsClientError

IsClientError returns true when this get library element connections unauthorized response has a 4xx status code

func (*GetLibraryElementConnectionsUnauthorized) IsCode

IsCode returns true when this get library element connections unauthorized response a status code equal to that given

func (*GetLibraryElementConnectionsUnauthorized) IsRedirect

IsRedirect returns true when this get library element connections unauthorized response has a 3xx status code

func (*GetLibraryElementConnectionsUnauthorized) IsServerError

IsServerError returns true when this get library element connections unauthorized response has a 5xx status code

func (*GetLibraryElementConnectionsUnauthorized) IsSuccess

IsSuccess returns true when this get library element connections unauthorized response has a 2xx status code

func (*GetLibraryElementConnectionsUnauthorized) String

type GetLibraryElementsInternalServerError

type GetLibraryElementsInternalServerError struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementsInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewGetLibraryElementsInternalServerError

func NewGetLibraryElementsInternalServerError() *GetLibraryElementsInternalServerError

NewGetLibraryElementsInternalServerError creates a GetLibraryElementsInternalServerError with default headers values

func (*GetLibraryElementsInternalServerError) Code

Code gets the status code for the get library elements internal server error response

func (*GetLibraryElementsInternalServerError) Error

func (*GetLibraryElementsInternalServerError) GetPayload

func (*GetLibraryElementsInternalServerError) IsClientError

func (o *GetLibraryElementsInternalServerError) IsClientError() bool

IsClientError returns true when this get library elements internal server error response has a 4xx status code

func (*GetLibraryElementsInternalServerError) IsCode

IsCode returns true when this get library elements internal server error response a status code equal to that given

func (*GetLibraryElementsInternalServerError) IsRedirect

IsRedirect returns true when this get library elements internal server error response has a 3xx status code

func (*GetLibraryElementsInternalServerError) IsServerError

func (o *GetLibraryElementsInternalServerError) IsServerError() bool

IsServerError returns true when this get library elements internal server error response has a 5xx status code

func (*GetLibraryElementsInternalServerError) IsSuccess

IsSuccess returns true when this get library elements internal server error response has a 2xx status code

func (*GetLibraryElementsInternalServerError) String

type GetLibraryElementsOK

type GetLibraryElementsOK struct {
	Payload *models.LibraryElementSearchResponse
}

GetLibraryElementsOK describes a response with status code 200, with default header values.

(empty)

func NewGetLibraryElementsOK

func NewGetLibraryElementsOK() *GetLibraryElementsOK

NewGetLibraryElementsOK creates a GetLibraryElementsOK with default headers values

func (*GetLibraryElementsOK) Code

func (o *GetLibraryElementsOK) Code() int

Code gets the status code for the get library elements Ok response

func (*GetLibraryElementsOK) Error

func (o *GetLibraryElementsOK) Error() string

func (*GetLibraryElementsOK) GetPayload

func (*GetLibraryElementsOK) IsClientError

func (o *GetLibraryElementsOK) IsClientError() bool

IsClientError returns true when this get library elements Ok response has a 4xx status code

func (*GetLibraryElementsOK) IsCode

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

IsCode returns true when this get library elements Ok response a status code equal to that given

func (*GetLibraryElementsOK) IsRedirect

func (o *GetLibraryElementsOK) IsRedirect() bool

IsRedirect returns true when this get library elements Ok response has a 3xx status code

func (*GetLibraryElementsOK) IsServerError

func (o *GetLibraryElementsOK) IsServerError() bool

IsServerError returns true when this get library elements Ok response has a 5xx status code

func (*GetLibraryElementsOK) IsSuccess

func (o *GetLibraryElementsOK) IsSuccess() bool

IsSuccess returns true when this get library elements Ok response has a 2xx status code

func (*GetLibraryElementsOK) String

func (o *GetLibraryElementsOK) String() string

type GetLibraryElementsParams

type GetLibraryElementsParams struct {

	/* ExcludeUID.

	   Element UID to exclude from search results.
	*/
	ExcludeUID *string

	/* FolderFilter.

	   A comma separated list of folder ID(s) to filter the elements by.
	*/
	FolderFilter *string

	/* Kind.

	   Kind of element to search for.

	   Format: int64
	*/
	Kind *int64

	/* Page.

	   The page for a set of records, given that only perPage records are returned at a time. Numbering starts at 1.

	   Format: int64
	   Default: 1
	*/
	Page *int64

	/* PerPage.

	   The number of results per page.

	   Format: int64
	   Default: 100
	*/
	PerPage *int64

	/* SearchString.

	   Part of the name or description searched for.
	*/
	SearchString *string

	/* SortDirection.

	   Sort order of elements.
	*/
	SortDirection *string

	/* TypeFilter.

	   A comma separated list of types to filter the elements by
	*/
	TypeFilter *string

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

GetLibraryElementsParams contains all the parameters to send to the API endpoint

for the get library elements operation.

Typically these are written to a http.Request.

func NewGetLibraryElementsParams

func NewGetLibraryElementsParams() *GetLibraryElementsParams

NewGetLibraryElementsParams creates a new GetLibraryElementsParams 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 NewGetLibraryElementsParamsWithContext

func NewGetLibraryElementsParamsWithContext(ctx context.Context) *GetLibraryElementsParams

NewGetLibraryElementsParamsWithContext creates a new GetLibraryElementsParams object with the ability to set a context for a request.

func NewGetLibraryElementsParamsWithHTTPClient

func NewGetLibraryElementsParamsWithHTTPClient(client *http.Client) *GetLibraryElementsParams

NewGetLibraryElementsParamsWithHTTPClient creates a new GetLibraryElementsParams object with the ability to set a custom HTTPClient for a request.

func NewGetLibraryElementsParamsWithTimeout

func NewGetLibraryElementsParamsWithTimeout(timeout time.Duration) *GetLibraryElementsParams

NewGetLibraryElementsParamsWithTimeout creates a new GetLibraryElementsParams object with the ability to set a timeout on a request.

func (*GetLibraryElementsParams) SetContext

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

SetContext adds the context to the get library elements params

func (*GetLibraryElementsParams) SetDefaults

func (o *GetLibraryElementsParams) SetDefaults()

SetDefaults hydrates default values in the get library elements params (not the query body).

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

func (*GetLibraryElementsParams) SetExcludeUID

func (o *GetLibraryElementsParams) SetExcludeUID(excludeUID *string)

SetExcludeUID adds the excludeUid to the get library elements params

func (*GetLibraryElementsParams) SetFolderFilter

func (o *GetLibraryElementsParams) SetFolderFilter(folderFilter *string)

SetFolderFilter adds the folderFilter to the get library elements params

func (*GetLibraryElementsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get library elements params

func (*GetLibraryElementsParams) SetKind

func (o *GetLibraryElementsParams) SetKind(kind *int64)

SetKind adds the kind to the get library elements params

func (*GetLibraryElementsParams) SetPage

func (o *GetLibraryElementsParams) SetPage(page *int64)

SetPage adds the page to the get library elements params

func (*GetLibraryElementsParams) SetPerPage

func (o *GetLibraryElementsParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get library elements params

func (*GetLibraryElementsParams) SetSearchString

func (o *GetLibraryElementsParams) SetSearchString(searchString *string)

SetSearchString adds the searchString to the get library elements params

func (*GetLibraryElementsParams) SetSortDirection

func (o *GetLibraryElementsParams) SetSortDirection(sortDirection *string)

SetSortDirection adds the sortDirection to the get library elements params

func (*GetLibraryElementsParams) SetTimeout

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

SetTimeout adds the timeout to the get library elements params

func (*GetLibraryElementsParams) SetTypeFilter

func (o *GetLibraryElementsParams) SetTypeFilter(typeFilter *string)

SetTypeFilter adds the typeFilter to the get library elements params

func (*GetLibraryElementsParams) WithContext

WithContext adds the context to the get library elements params

func (*GetLibraryElementsParams) WithDefaults

WithDefaults hydrates default values in the get library elements params (not the query body).

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

func (*GetLibraryElementsParams) WithExcludeUID

func (o *GetLibraryElementsParams) WithExcludeUID(excludeUID *string) *GetLibraryElementsParams

WithExcludeUID adds the excludeUID to the get library elements params

func (*GetLibraryElementsParams) WithFolderFilter

func (o *GetLibraryElementsParams) WithFolderFilter(folderFilter *string) *GetLibraryElementsParams

WithFolderFilter adds the folderFilter to the get library elements params

func (*GetLibraryElementsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get library elements params

func (*GetLibraryElementsParams) WithKind

WithKind adds the kind to the get library elements params

func (*GetLibraryElementsParams) WithPage

WithPage adds the page to the get library elements params

func (*GetLibraryElementsParams) WithPerPage

func (o *GetLibraryElementsParams) WithPerPage(perPage *int64) *GetLibraryElementsParams

WithPerPage adds the perPage to the get library elements params

func (*GetLibraryElementsParams) WithSearchString

func (o *GetLibraryElementsParams) WithSearchString(searchString *string) *GetLibraryElementsParams

WithSearchString adds the searchString to the get library elements params

func (*GetLibraryElementsParams) WithSortDirection

func (o *GetLibraryElementsParams) WithSortDirection(sortDirection *string) *GetLibraryElementsParams

WithSortDirection adds the sortDirection to the get library elements params

func (*GetLibraryElementsParams) WithTimeout

WithTimeout adds the timeout to the get library elements params

func (*GetLibraryElementsParams) WithTypeFilter

func (o *GetLibraryElementsParams) WithTypeFilter(typeFilter *string) *GetLibraryElementsParams

WithTypeFilter adds the typeFilter to the get library elements params

func (*GetLibraryElementsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLibraryElementsReader

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

GetLibraryElementsReader is a Reader for the GetLibraryElements structure.

func (*GetLibraryElementsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLibraryElementsUnauthorized

type GetLibraryElementsUnauthorized struct {
	Payload *models.ErrorResponseBody
}

GetLibraryElementsUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewGetLibraryElementsUnauthorized

func NewGetLibraryElementsUnauthorized() *GetLibraryElementsUnauthorized

NewGetLibraryElementsUnauthorized creates a GetLibraryElementsUnauthorized with default headers values

func (*GetLibraryElementsUnauthorized) Code

Code gets the status code for the get library elements unauthorized response

func (*GetLibraryElementsUnauthorized) Error

func (*GetLibraryElementsUnauthorized) GetPayload

func (*GetLibraryElementsUnauthorized) IsClientError

func (o *GetLibraryElementsUnauthorized) IsClientError() bool

IsClientError returns true when this get library elements unauthorized response has a 4xx status code

func (*GetLibraryElementsUnauthorized) IsCode

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

IsCode returns true when this get library elements unauthorized response a status code equal to that given

func (*GetLibraryElementsUnauthorized) IsRedirect

func (o *GetLibraryElementsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get library elements unauthorized response has a 3xx status code

func (*GetLibraryElementsUnauthorized) IsServerError

func (o *GetLibraryElementsUnauthorized) IsServerError() bool

IsServerError returns true when this get library elements unauthorized response has a 5xx status code

func (*GetLibraryElementsUnauthorized) IsSuccess

func (o *GetLibraryElementsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get library elements unauthorized response has a 2xx status code

func (*GetLibraryElementsUnauthorized) String

type UpdateLibraryElementBadRequest

type UpdateLibraryElementBadRequest struct {
	Payload *models.ErrorResponseBody
}

UpdateLibraryElementBadRequest describes a response with status code 400, with default header values.

BadRequestError is returned when the request is invalid and it cannot be processed.

func NewUpdateLibraryElementBadRequest

func NewUpdateLibraryElementBadRequest() *UpdateLibraryElementBadRequest

NewUpdateLibraryElementBadRequest creates a UpdateLibraryElementBadRequest with default headers values

func (*UpdateLibraryElementBadRequest) Code

Code gets the status code for the update library element bad request response

func (*UpdateLibraryElementBadRequest) Error

func (*UpdateLibraryElementBadRequest) GetPayload

func (*UpdateLibraryElementBadRequest) IsClientError

func (o *UpdateLibraryElementBadRequest) IsClientError() bool

IsClientError returns true when this update library element bad request response has a 4xx status code

func (*UpdateLibraryElementBadRequest) IsCode

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

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

func (*UpdateLibraryElementBadRequest) IsRedirect

func (o *UpdateLibraryElementBadRequest) IsRedirect() bool

IsRedirect returns true when this update library element bad request response has a 3xx status code

func (*UpdateLibraryElementBadRequest) IsServerError

func (o *UpdateLibraryElementBadRequest) IsServerError() bool

IsServerError returns true when this update library element bad request response has a 5xx status code

func (*UpdateLibraryElementBadRequest) IsSuccess

func (o *UpdateLibraryElementBadRequest) IsSuccess() bool

IsSuccess returns true when this update library element bad request response has a 2xx status code

func (*UpdateLibraryElementBadRequest) String

type UpdateLibraryElementForbidden

type UpdateLibraryElementForbidden struct {
	Payload *models.ErrorResponseBody
}

UpdateLibraryElementForbidden describes a response with status code 403, with default header values.

ForbiddenError is returned if the user/token has insufficient permissions to access the requested resource.

func NewUpdateLibraryElementForbidden

func NewUpdateLibraryElementForbidden() *UpdateLibraryElementForbidden

NewUpdateLibraryElementForbidden creates a UpdateLibraryElementForbidden with default headers values

func (*UpdateLibraryElementForbidden) Code

Code gets the status code for the update library element forbidden response

func (*UpdateLibraryElementForbidden) Error

func (*UpdateLibraryElementForbidden) GetPayload

func (*UpdateLibraryElementForbidden) IsClientError

func (o *UpdateLibraryElementForbidden) IsClientError() bool

IsClientError returns true when this update library element forbidden response has a 4xx status code

func (*UpdateLibraryElementForbidden) IsCode

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

IsCode returns true when this update library element forbidden response a status code equal to that given

func (*UpdateLibraryElementForbidden) IsRedirect

func (o *UpdateLibraryElementForbidden) IsRedirect() bool

IsRedirect returns true when this update library element forbidden response has a 3xx status code

func (*UpdateLibraryElementForbidden) IsServerError

func (o *UpdateLibraryElementForbidden) IsServerError() bool

IsServerError returns true when this update library element forbidden response has a 5xx status code

func (*UpdateLibraryElementForbidden) IsSuccess

func (o *UpdateLibraryElementForbidden) IsSuccess() bool

IsSuccess returns true when this update library element forbidden response has a 2xx status code

func (*UpdateLibraryElementForbidden) String

type UpdateLibraryElementInternalServerError

type UpdateLibraryElementInternalServerError struct {
	Payload *models.ErrorResponseBody
}

UpdateLibraryElementInternalServerError describes a response with status code 500, with default header values.

InternalServerError is a general error indicating something went wrong internally.

func NewUpdateLibraryElementInternalServerError

func NewUpdateLibraryElementInternalServerError() *UpdateLibraryElementInternalServerError

NewUpdateLibraryElementInternalServerError creates a UpdateLibraryElementInternalServerError with default headers values

func (*UpdateLibraryElementInternalServerError) Code

Code gets the status code for the update library element internal server error response

func (*UpdateLibraryElementInternalServerError) Error

func (*UpdateLibraryElementInternalServerError) GetPayload

func (*UpdateLibraryElementInternalServerError) IsClientError

func (o *UpdateLibraryElementInternalServerError) IsClientError() bool

IsClientError returns true when this update library element internal server error response has a 4xx status code

func (*UpdateLibraryElementInternalServerError) IsCode

IsCode returns true when this update library element internal server error response a status code equal to that given

func (*UpdateLibraryElementInternalServerError) IsRedirect

IsRedirect returns true when this update library element internal server error response has a 3xx status code

func (*UpdateLibraryElementInternalServerError) IsServerError

func (o *UpdateLibraryElementInternalServerError) IsServerError() bool

IsServerError returns true when this update library element internal server error response has a 5xx status code

func (*UpdateLibraryElementInternalServerError) IsSuccess

IsSuccess returns true when this update library element internal server error response has a 2xx status code

func (*UpdateLibraryElementInternalServerError) String

type UpdateLibraryElementNotFound

type UpdateLibraryElementNotFound struct {
	Payload *models.ErrorResponseBody
}

UpdateLibraryElementNotFound describes a response with status code 404, with default header values.

NotFoundError is returned when the requested resource was not found.

func NewUpdateLibraryElementNotFound

func NewUpdateLibraryElementNotFound() *UpdateLibraryElementNotFound

NewUpdateLibraryElementNotFound creates a UpdateLibraryElementNotFound with default headers values

func (*UpdateLibraryElementNotFound) Code

Code gets the status code for the update library element not found response

func (*UpdateLibraryElementNotFound) Error

func (*UpdateLibraryElementNotFound) GetPayload

func (*UpdateLibraryElementNotFound) IsClientError

func (o *UpdateLibraryElementNotFound) IsClientError() bool

IsClientError returns true when this update library element not found response has a 4xx status code

func (*UpdateLibraryElementNotFound) IsCode

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

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

func (*UpdateLibraryElementNotFound) IsRedirect

func (o *UpdateLibraryElementNotFound) IsRedirect() bool

IsRedirect returns true when this update library element not found response has a 3xx status code

func (*UpdateLibraryElementNotFound) IsServerError

func (o *UpdateLibraryElementNotFound) IsServerError() bool

IsServerError returns true when this update library element not found response has a 5xx status code

func (*UpdateLibraryElementNotFound) IsSuccess

func (o *UpdateLibraryElementNotFound) IsSuccess() bool

IsSuccess returns true when this update library element not found response has a 2xx status code

func (*UpdateLibraryElementNotFound) String

type UpdateLibraryElementOK

type UpdateLibraryElementOK struct {
	Payload *models.LibraryElementResponse
}

UpdateLibraryElementOK describes a response with status code 200, with default header values.

(empty)

func NewUpdateLibraryElementOK

func NewUpdateLibraryElementOK() *UpdateLibraryElementOK

NewUpdateLibraryElementOK creates a UpdateLibraryElementOK with default headers values

func (*UpdateLibraryElementOK) Code

func (o *UpdateLibraryElementOK) Code() int

Code gets the status code for the update library element Ok response

func (*UpdateLibraryElementOK) Error

func (o *UpdateLibraryElementOK) Error() string

func (*UpdateLibraryElementOK) GetPayload

func (*UpdateLibraryElementOK) IsClientError

func (o *UpdateLibraryElementOK) IsClientError() bool

IsClientError returns true when this update library element Ok response has a 4xx status code

func (*UpdateLibraryElementOK) IsCode

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

IsCode returns true when this update library element Ok response a status code equal to that given

func (*UpdateLibraryElementOK) IsRedirect

func (o *UpdateLibraryElementOK) IsRedirect() bool

IsRedirect returns true when this update library element Ok response has a 3xx status code

func (*UpdateLibraryElementOK) IsServerError

func (o *UpdateLibraryElementOK) IsServerError() bool

IsServerError returns true when this update library element Ok response has a 5xx status code

func (*UpdateLibraryElementOK) IsSuccess

func (o *UpdateLibraryElementOK) IsSuccess() bool

IsSuccess returns true when this update library element Ok response has a 2xx status code

func (*UpdateLibraryElementOK) String

func (o *UpdateLibraryElementOK) String() string

type UpdateLibraryElementParams

type UpdateLibraryElementParams struct {

	// Body.
	Body *models.PatchLibraryElementCommand

	// LibraryElementUID.
	LibraryElementUID string

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

UpdateLibraryElementParams contains all the parameters to send to the API endpoint

for the update library element operation.

Typically these are written to a http.Request.

func NewUpdateLibraryElementParams

func NewUpdateLibraryElementParams() *UpdateLibraryElementParams

NewUpdateLibraryElementParams creates a new UpdateLibraryElementParams 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 NewUpdateLibraryElementParamsWithContext

func NewUpdateLibraryElementParamsWithContext(ctx context.Context) *UpdateLibraryElementParams

NewUpdateLibraryElementParamsWithContext creates a new UpdateLibraryElementParams object with the ability to set a context for a request.

func NewUpdateLibraryElementParamsWithHTTPClient

func NewUpdateLibraryElementParamsWithHTTPClient(client *http.Client) *UpdateLibraryElementParams

NewUpdateLibraryElementParamsWithHTTPClient creates a new UpdateLibraryElementParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateLibraryElementParamsWithTimeout

func NewUpdateLibraryElementParamsWithTimeout(timeout time.Duration) *UpdateLibraryElementParams

NewUpdateLibraryElementParamsWithTimeout creates a new UpdateLibraryElementParams object with the ability to set a timeout on a request.

func (*UpdateLibraryElementParams) SetBody

SetBody adds the body to the update library element params

func (*UpdateLibraryElementParams) SetContext

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

SetContext adds the context to the update library element params

func (*UpdateLibraryElementParams) SetDefaults

func (o *UpdateLibraryElementParams) SetDefaults()

SetDefaults hydrates default values in the update library element params (not the query body).

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

func (*UpdateLibraryElementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update library element params

func (*UpdateLibraryElementParams) SetLibraryElementUID

func (o *UpdateLibraryElementParams) SetLibraryElementUID(libraryElementUID string)

SetLibraryElementUID adds the libraryElementUid to the update library element params

func (*UpdateLibraryElementParams) SetTimeout

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

SetTimeout adds the timeout to the update library element params

func (*UpdateLibraryElementParams) WithBody

WithBody adds the body to the update library element params

func (*UpdateLibraryElementParams) WithContext

WithContext adds the context to the update library element params

func (*UpdateLibraryElementParams) WithDefaults

WithDefaults hydrates default values in the update library element params (not the query body).

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

func (*UpdateLibraryElementParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update library element params

func (*UpdateLibraryElementParams) WithLibraryElementUID

func (o *UpdateLibraryElementParams) WithLibraryElementUID(libraryElementUID string) *UpdateLibraryElementParams

WithLibraryElementUID adds the libraryElementUID to the update library element params

func (*UpdateLibraryElementParams) WithTimeout

WithTimeout adds the timeout to the update library element params

func (*UpdateLibraryElementParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateLibraryElementPreconditionFailed

type UpdateLibraryElementPreconditionFailed struct {
	Payload *models.ErrorResponseBody
}

UpdateLibraryElementPreconditionFailed describes a response with status code 412, with default header values.

PreconditionFailedError

func NewUpdateLibraryElementPreconditionFailed

func NewUpdateLibraryElementPreconditionFailed() *UpdateLibraryElementPreconditionFailed

NewUpdateLibraryElementPreconditionFailed creates a UpdateLibraryElementPreconditionFailed with default headers values

func (*UpdateLibraryElementPreconditionFailed) Code

Code gets the status code for the update library element precondition failed response

func (*UpdateLibraryElementPreconditionFailed) Error

func (*UpdateLibraryElementPreconditionFailed) GetPayload

func (*UpdateLibraryElementPreconditionFailed) IsClientError

func (o *UpdateLibraryElementPreconditionFailed) IsClientError() bool

IsClientError returns true when this update library element precondition failed response has a 4xx status code

func (*UpdateLibraryElementPreconditionFailed) IsCode

IsCode returns true when this update library element precondition failed response a status code equal to that given

func (*UpdateLibraryElementPreconditionFailed) IsRedirect

IsRedirect returns true when this update library element precondition failed response has a 3xx status code

func (*UpdateLibraryElementPreconditionFailed) IsServerError

func (o *UpdateLibraryElementPreconditionFailed) IsServerError() bool

IsServerError returns true when this update library element precondition failed response has a 5xx status code

func (*UpdateLibraryElementPreconditionFailed) IsSuccess

IsSuccess returns true when this update library element precondition failed response has a 2xx status code

func (*UpdateLibraryElementPreconditionFailed) String

type UpdateLibraryElementReader

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

UpdateLibraryElementReader is a Reader for the UpdateLibraryElement structure.

func (*UpdateLibraryElementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateLibraryElementUnauthorized

type UpdateLibraryElementUnauthorized struct {
	Payload *models.ErrorResponseBody
}

UpdateLibraryElementUnauthorized describes a response with status code 401, with default header values.

UnauthorizedError is returned when the request is not authenticated.

func NewUpdateLibraryElementUnauthorized

func NewUpdateLibraryElementUnauthorized() *UpdateLibraryElementUnauthorized

NewUpdateLibraryElementUnauthorized creates a UpdateLibraryElementUnauthorized with default headers values

func (*UpdateLibraryElementUnauthorized) Code

Code gets the status code for the update library element unauthorized response

func (*UpdateLibraryElementUnauthorized) Error

func (*UpdateLibraryElementUnauthorized) GetPayload

func (*UpdateLibraryElementUnauthorized) IsClientError

func (o *UpdateLibraryElementUnauthorized) IsClientError() bool

IsClientError returns true when this update library element unauthorized response has a 4xx status code

func (*UpdateLibraryElementUnauthorized) IsCode

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

IsCode returns true when this update library element unauthorized response a status code equal to that given

func (*UpdateLibraryElementUnauthorized) IsRedirect

func (o *UpdateLibraryElementUnauthorized) IsRedirect() bool

IsRedirect returns true when this update library element unauthorized response has a 3xx status code

func (*UpdateLibraryElementUnauthorized) IsServerError

func (o *UpdateLibraryElementUnauthorized) IsServerError() bool

IsServerError returns true when this update library element unauthorized response has a 5xx status code

func (*UpdateLibraryElementUnauthorized) IsSuccess

func (o *UpdateLibraryElementUnauthorized) IsSuccess() bool

IsSuccess returns true when this update library element unauthorized response has a 2xx status code

func (*UpdateLibraryElementUnauthorized) String

Jump to

Keyboard shortcuts

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