user_meta_service

package
v3.0.2 Latest Latest
Warning

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

Go to latest
Published: Feb 21, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for user meta service API

func (*Client) DeleteUserMetaTags

func (a *Client) DeleteUserMetaTags(params *DeleteUserMetaTagsParams, opts ...ClientOption) (*DeleteUserMetaTagsOK, error)

DeleteUserMetaTags deletes one or all tags for a given namespace use for all tags

func (*Client) ListUserMetaNamespace

func (a *Client) ListUserMetaNamespace(params *ListUserMetaNamespaceParams, opts ...ClientOption) (*ListUserMetaNamespaceOK, error)

ListUserMetaNamespace lists defined meta namespaces

func (*Client) ListUserMetaTags

func (a *Client) ListUserMetaTags(params *ListUserMetaTagsParams, opts ...ClientOption) (*ListUserMetaTagsOK, error)

ListUserMetaTags lists tags for a given namespace

func (*Client) PutUserMetaTag

func (a *Client) PutUserMetaTag(params *PutUserMetaTagParams, opts ...ClientOption) (*PutUserMetaTagOK, error)

PutUserMetaTag adds a new value to tags for a given namespace

func (*Client) SearchUserMeta

func (a *Client) SearchUserMeta(params *SearchUserMetaParams, opts ...ClientOption) (*SearchUserMetaOK, error)

SearchUserMeta searches a list of meta by node Id or by user id and by namespace

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateUserMeta

func (a *Client) UpdateUserMeta(params *UpdateUserMetaParams, opts ...ClientOption) (*UpdateUserMetaOK, error)

UpdateUserMeta updates delete user meta

func (*Client) UpdateUserMetaNamespace

func (a *Client) UpdateUserMetaNamespace(params *UpdateUserMetaNamespaceParams, opts ...ClientOption) (*UpdateUserMetaNamespaceOK, error)

UpdateUserMetaNamespace admins update namespaces

func (*Client) UserBookmarks

func (a *Client) UserBookmarks(params *UserBookmarksParams, opts ...ClientOption) (*UserBookmarksOK, error)

UserBookmarks specials API for bookmarks will load user meta and the associated nodes and return as a node list

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeleteUserMetaTags(params *DeleteUserMetaTagsParams, opts ...ClientOption) (*DeleteUserMetaTagsOK, error)

	ListUserMetaNamespace(params *ListUserMetaNamespaceParams, opts ...ClientOption) (*ListUserMetaNamespaceOK, error)

	ListUserMetaTags(params *ListUserMetaTagsParams, opts ...ClientOption) (*ListUserMetaTagsOK, error)

	PutUserMetaTag(params *PutUserMetaTagParams, opts ...ClientOption) (*PutUserMetaTagOK, error)

	SearchUserMeta(params *SearchUserMetaParams, opts ...ClientOption) (*SearchUserMetaOK, error)

	UpdateUserMeta(params *UpdateUserMetaParams, opts ...ClientOption) (*UpdateUserMetaOK, error)

	UpdateUserMetaNamespace(params *UpdateUserMetaNamespaceParams, opts ...ClientOption) (*UpdateUserMetaNamespaceOK, error)

	UserBookmarks(params *UserBookmarksParams, opts ...ClientOption) (*UserBookmarksOK, 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 user meta service API client.

type DeleteUserMetaTagsForbidden

type DeleteUserMetaTagsForbidden struct {
	Payload *models.RestError
}
DeleteUserMetaTagsForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewDeleteUserMetaTagsForbidden

func NewDeleteUserMetaTagsForbidden() *DeleteUserMetaTagsForbidden

NewDeleteUserMetaTagsForbidden creates a DeleteUserMetaTagsForbidden with default headers values

func (*DeleteUserMetaTagsForbidden) Error

func (*DeleteUserMetaTagsForbidden) GetPayload

func (o *DeleteUserMetaTagsForbidden) GetPayload() *models.RestError

type DeleteUserMetaTagsInternalServerError

type DeleteUserMetaTagsInternalServerError struct {
	Payload *models.RestError
}
DeleteUserMetaTagsInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewDeleteUserMetaTagsInternalServerError

func NewDeleteUserMetaTagsInternalServerError() *DeleteUserMetaTagsInternalServerError

NewDeleteUserMetaTagsInternalServerError creates a DeleteUserMetaTagsInternalServerError with default headers values

func (*DeleteUserMetaTagsInternalServerError) Error

func (*DeleteUserMetaTagsInternalServerError) GetPayload

type DeleteUserMetaTagsNotFound

type DeleteUserMetaTagsNotFound struct {
	Payload *models.RestError
}
DeleteUserMetaTagsNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewDeleteUserMetaTagsNotFound

func NewDeleteUserMetaTagsNotFound() *DeleteUserMetaTagsNotFound

NewDeleteUserMetaTagsNotFound creates a DeleteUserMetaTagsNotFound with default headers values

func (*DeleteUserMetaTagsNotFound) Error

func (*DeleteUserMetaTagsNotFound) GetPayload

func (o *DeleteUserMetaTagsNotFound) GetPayload() *models.RestError

type DeleteUserMetaTagsOK

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

DeleteUserMetaTagsOK delete user meta tags o k

func NewDeleteUserMetaTagsOK

func NewDeleteUserMetaTagsOK() *DeleteUserMetaTagsOK

NewDeleteUserMetaTagsOK creates a DeleteUserMetaTagsOK with default headers values

func (*DeleteUserMetaTagsOK) Error

func (o *DeleteUserMetaTagsOK) Error() string

func (*DeleteUserMetaTagsOK) GetPayload

type DeleteUserMetaTagsParams

type DeleteUserMetaTagsParams struct {

	// Namespace.
	Namespace string

	// Tags.
	Tags string

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

DeleteUserMetaTagsParams contains all the parameters to send to the API endpoint

for the delete user meta tags operation.

Typically these are written to a http.Request.

func NewDeleteUserMetaTagsParams

func NewDeleteUserMetaTagsParams() *DeleteUserMetaTagsParams

NewDeleteUserMetaTagsParams creates a new DeleteUserMetaTagsParams 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 NewDeleteUserMetaTagsParamsWithContext

func NewDeleteUserMetaTagsParamsWithContext(ctx context.Context) *DeleteUserMetaTagsParams

NewDeleteUserMetaTagsParamsWithContext creates a new DeleteUserMetaTagsParams object with the ability to set a context for a request.

func NewDeleteUserMetaTagsParamsWithHTTPClient

func NewDeleteUserMetaTagsParamsWithHTTPClient(client *http.Client) *DeleteUserMetaTagsParams

NewDeleteUserMetaTagsParamsWithHTTPClient creates a new DeleteUserMetaTagsParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteUserMetaTagsParamsWithTimeout

func NewDeleteUserMetaTagsParamsWithTimeout(timeout time.Duration) *DeleteUserMetaTagsParams

NewDeleteUserMetaTagsParamsWithTimeout creates a new DeleteUserMetaTagsParams object with the ability to set a timeout on a request.

func (*DeleteUserMetaTagsParams) SetContext

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

SetContext adds the context to the delete user meta tags params

func (*DeleteUserMetaTagsParams) SetDefaults

func (o *DeleteUserMetaTagsParams) SetDefaults()

SetDefaults hydrates default values in the delete user meta tags params (not the query body).

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

func (*DeleteUserMetaTagsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete user meta tags params

func (*DeleteUserMetaTagsParams) SetNamespace

func (o *DeleteUserMetaTagsParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the delete user meta tags params

func (*DeleteUserMetaTagsParams) SetTags

func (o *DeleteUserMetaTagsParams) SetTags(tags string)

SetTags adds the tags to the delete user meta tags params

func (*DeleteUserMetaTagsParams) SetTimeout

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

SetTimeout adds the timeout to the delete user meta tags params

func (*DeleteUserMetaTagsParams) WithContext

WithContext adds the context to the delete user meta tags params

func (*DeleteUserMetaTagsParams) WithDefaults

WithDefaults hydrates default values in the delete user meta tags params (not the query body).

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

func (*DeleteUserMetaTagsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete user meta tags params

func (*DeleteUserMetaTagsParams) WithNamespace

func (o *DeleteUserMetaTagsParams) WithNamespace(namespace string) *DeleteUserMetaTagsParams

WithNamespace adds the namespace to the delete user meta tags params

func (*DeleteUserMetaTagsParams) WithTags

WithTags adds the tags to the delete user meta tags params

func (*DeleteUserMetaTagsParams) WithTimeout

WithTimeout adds the timeout to the delete user meta tags params

func (*DeleteUserMetaTagsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteUserMetaTagsReader

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

DeleteUserMetaTagsReader is a Reader for the DeleteUserMetaTags structure.

func (*DeleteUserMetaTagsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteUserMetaTagsUnauthorized

type DeleteUserMetaTagsUnauthorized struct {
}
DeleteUserMetaTagsUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewDeleteUserMetaTagsUnauthorized

func NewDeleteUserMetaTagsUnauthorized() *DeleteUserMetaTagsUnauthorized

NewDeleteUserMetaTagsUnauthorized creates a DeleteUserMetaTagsUnauthorized with default headers values

func (*DeleteUserMetaTagsUnauthorized) Error

type ListUserMetaNamespaceForbidden

type ListUserMetaNamespaceForbidden struct {
	Payload *models.RestError
}
ListUserMetaNamespaceForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewListUserMetaNamespaceForbidden

func NewListUserMetaNamespaceForbidden() *ListUserMetaNamespaceForbidden

NewListUserMetaNamespaceForbidden creates a ListUserMetaNamespaceForbidden with default headers values

func (*ListUserMetaNamespaceForbidden) Error

func (*ListUserMetaNamespaceForbidden) GetPayload

type ListUserMetaNamespaceInternalServerError

type ListUserMetaNamespaceInternalServerError struct {
	Payload *models.RestError
}
ListUserMetaNamespaceInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewListUserMetaNamespaceInternalServerError

func NewListUserMetaNamespaceInternalServerError() *ListUserMetaNamespaceInternalServerError

NewListUserMetaNamespaceInternalServerError creates a ListUserMetaNamespaceInternalServerError with default headers values

func (*ListUserMetaNamespaceInternalServerError) Error

func (*ListUserMetaNamespaceInternalServerError) GetPayload

type ListUserMetaNamespaceNotFound

type ListUserMetaNamespaceNotFound struct {
	Payload *models.RestError
}
ListUserMetaNamespaceNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewListUserMetaNamespaceNotFound

func NewListUserMetaNamespaceNotFound() *ListUserMetaNamespaceNotFound

NewListUserMetaNamespaceNotFound creates a ListUserMetaNamespaceNotFound with default headers values

func (*ListUserMetaNamespaceNotFound) Error

func (*ListUserMetaNamespaceNotFound) GetPayload

type ListUserMetaNamespaceOK

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

ListUserMetaNamespaceOK list user meta namespace o k

func NewListUserMetaNamespaceOK

func NewListUserMetaNamespaceOK() *ListUserMetaNamespaceOK

NewListUserMetaNamespaceOK creates a ListUserMetaNamespaceOK with default headers values

func (*ListUserMetaNamespaceOK) Error

func (o *ListUserMetaNamespaceOK) Error() string

func (*ListUserMetaNamespaceOK) GetPayload

type ListUserMetaNamespaceParams

type ListUserMetaNamespaceParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ListUserMetaNamespaceParams contains all the parameters to send to the API endpoint

for the list user meta namespace operation.

Typically these are written to a http.Request.

func NewListUserMetaNamespaceParams

func NewListUserMetaNamespaceParams() *ListUserMetaNamespaceParams

NewListUserMetaNamespaceParams creates a new ListUserMetaNamespaceParams 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 NewListUserMetaNamespaceParamsWithContext

func NewListUserMetaNamespaceParamsWithContext(ctx context.Context) *ListUserMetaNamespaceParams

NewListUserMetaNamespaceParamsWithContext creates a new ListUserMetaNamespaceParams object with the ability to set a context for a request.

func NewListUserMetaNamespaceParamsWithHTTPClient

func NewListUserMetaNamespaceParamsWithHTTPClient(client *http.Client) *ListUserMetaNamespaceParams

NewListUserMetaNamespaceParamsWithHTTPClient creates a new ListUserMetaNamespaceParams object with the ability to set a custom HTTPClient for a request.

func NewListUserMetaNamespaceParamsWithTimeout

func NewListUserMetaNamespaceParamsWithTimeout(timeout time.Duration) *ListUserMetaNamespaceParams

NewListUserMetaNamespaceParamsWithTimeout creates a new ListUserMetaNamespaceParams object with the ability to set a timeout on a request.

func (*ListUserMetaNamespaceParams) SetContext

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

SetContext adds the context to the list user meta namespace params

func (*ListUserMetaNamespaceParams) SetDefaults

func (o *ListUserMetaNamespaceParams) SetDefaults()

SetDefaults hydrates default values in the list user meta namespace params (not the query body).

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

func (*ListUserMetaNamespaceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list user meta namespace params

func (*ListUserMetaNamespaceParams) SetTimeout

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

SetTimeout adds the timeout to the list user meta namespace params

func (*ListUserMetaNamespaceParams) WithContext

WithContext adds the context to the list user meta namespace params

func (*ListUserMetaNamespaceParams) WithDefaults

WithDefaults hydrates default values in the list user meta namespace params (not the query body).

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

func (*ListUserMetaNamespaceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list user meta namespace params

func (*ListUserMetaNamespaceParams) WithTimeout

WithTimeout adds the timeout to the list user meta namespace params

func (*ListUserMetaNamespaceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListUserMetaNamespaceReader

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

ListUserMetaNamespaceReader is a Reader for the ListUserMetaNamespace structure.

func (*ListUserMetaNamespaceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListUserMetaNamespaceUnauthorized

type ListUserMetaNamespaceUnauthorized struct {
}
ListUserMetaNamespaceUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewListUserMetaNamespaceUnauthorized

func NewListUserMetaNamespaceUnauthorized() *ListUserMetaNamespaceUnauthorized

NewListUserMetaNamespaceUnauthorized creates a ListUserMetaNamespaceUnauthorized with default headers values

func (*ListUserMetaNamespaceUnauthorized) Error

type ListUserMetaTagsForbidden

type ListUserMetaTagsForbidden struct {
	Payload *models.RestError
}
ListUserMetaTagsForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewListUserMetaTagsForbidden

func NewListUserMetaTagsForbidden() *ListUserMetaTagsForbidden

NewListUserMetaTagsForbidden creates a ListUserMetaTagsForbidden with default headers values

func (*ListUserMetaTagsForbidden) Error

func (o *ListUserMetaTagsForbidden) Error() string

func (*ListUserMetaTagsForbidden) GetPayload

func (o *ListUserMetaTagsForbidden) GetPayload() *models.RestError

type ListUserMetaTagsInternalServerError

type ListUserMetaTagsInternalServerError struct {
	Payload *models.RestError
}
ListUserMetaTagsInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewListUserMetaTagsInternalServerError

func NewListUserMetaTagsInternalServerError() *ListUserMetaTagsInternalServerError

NewListUserMetaTagsInternalServerError creates a ListUserMetaTagsInternalServerError with default headers values

func (*ListUserMetaTagsInternalServerError) Error

func (*ListUserMetaTagsInternalServerError) GetPayload

type ListUserMetaTagsNotFound

type ListUserMetaTagsNotFound struct {
	Payload *models.RestError
}
ListUserMetaTagsNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewListUserMetaTagsNotFound

func NewListUserMetaTagsNotFound() *ListUserMetaTagsNotFound

NewListUserMetaTagsNotFound creates a ListUserMetaTagsNotFound with default headers values

func (*ListUserMetaTagsNotFound) Error

func (o *ListUserMetaTagsNotFound) Error() string

func (*ListUserMetaTagsNotFound) GetPayload

func (o *ListUserMetaTagsNotFound) GetPayload() *models.RestError

type ListUserMetaTagsOK

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

ListUserMetaTagsOK list user meta tags o k

func NewListUserMetaTagsOK

func NewListUserMetaTagsOK() *ListUserMetaTagsOK

NewListUserMetaTagsOK creates a ListUserMetaTagsOK with default headers values

func (*ListUserMetaTagsOK) Error

func (o *ListUserMetaTagsOK) Error() string

func (*ListUserMetaTagsOK) GetPayload

type ListUserMetaTagsParams

type ListUserMetaTagsParams struct {

	// Namespace.
	Namespace string

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

ListUserMetaTagsParams contains all the parameters to send to the API endpoint

for the list user meta tags operation.

Typically these are written to a http.Request.

func NewListUserMetaTagsParams

func NewListUserMetaTagsParams() *ListUserMetaTagsParams

NewListUserMetaTagsParams creates a new ListUserMetaTagsParams 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 NewListUserMetaTagsParamsWithContext

func NewListUserMetaTagsParamsWithContext(ctx context.Context) *ListUserMetaTagsParams

NewListUserMetaTagsParamsWithContext creates a new ListUserMetaTagsParams object with the ability to set a context for a request.

func NewListUserMetaTagsParamsWithHTTPClient

func NewListUserMetaTagsParamsWithHTTPClient(client *http.Client) *ListUserMetaTagsParams

NewListUserMetaTagsParamsWithHTTPClient creates a new ListUserMetaTagsParams object with the ability to set a custom HTTPClient for a request.

func NewListUserMetaTagsParamsWithTimeout

func NewListUserMetaTagsParamsWithTimeout(timeout time.Duration) *ListUserMetaTagsParams

NewListUserMetaTagsParamsWithTimeout creates a new ListUserMetaTagsParams object with the ability to set a timeout on a request.

func (*ListUserMetaTagsParams) SetContext

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

SetContext adds the context to the list user meta tags params

func (*ListUserMetaTagsParams) SetDefaults

func (o *ListUserMetaTagsParams) SetDefaults()

SetDefaults hydrates default values in the list user meta tags params (not the query body).

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

func (*ListUserMetaTagsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list user meta tags params

func (*ListUserMetaTagsParams) SetNamespace

func (o *ListUserMetaTagsParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the list user meta tags params

func (*ListUserMetaTagsParams) SetTimeout

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

SetTimeout adds the timeout to the list user meta tags params

func (*ListUserMetaTagsParams) WithContext

WithContext adds the context to the list user meta tags params

func (*ListUserMetaTagsParams) WithDefaults

WithDefaults hydrates default values in the list user meta tags params (not the query body).

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

func (*ListUserMetaTagsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list user meta tags params

func (*ListUserMetaTagsParams) WithNamespace

func (o *ListUserMetaTagsParams) WithNamespace(namespace string) *ListUserMetaTagsParams

WithNamespace adds the namespace to the list user meta tags params

func (*ListUserMetaTagsParams) WithTimeout

WithTimeout adds the timeout to the list user meta tags params

func (*ListUserMetaTagsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListUserMetaTagsReader

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

ListUserMetaTagsReader is a Reader for the ListUserMetaTags structure.

func (*ListUserMetaTagsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListUserMetaTagsUnauthorized

type ListUserMetaTagsUnauthorized struct {
}
ListUserMetaTagsUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewListUserMetaTagsUnauthorized

func NewListUserMetaTagsUnauthorized() *ListUserMetaTagsUnauthorized

NewListUserMetaTagsUnauthorized creates a ListUserMetaTagsUnauthorized with default headers values

func (*ListUserMetaTagsUnauthorized) Error

type PutUserMetaTagForbidden

type PutUserMetaTagForbidden struct {
	Payload *models.RestError
}
PutUserMetaTagForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewPutUserMetaTagForbidden

func NewPutUserMetaTagForbidden() *PutUserMetaTagForbidden

NewPutUserMetaTagForbidden creates a PutUserMetaTagForbidden with default headers values

func (*PutUserMetaTagForbidden) Error

func (o *PutUserMetaTagForbidden) Error() string

func (*PutUserMetaTagForbidden) GetPayload

func (o *PutUserMetaTagForbidden) GetPayload() *models.RestError

type PutUserMetaTagInternalServerError

type PutUserMetaTagInternalServerError struct {
	Payload *models.RestError
}
PutUserMetaTagInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewPutUserMetaTagInternalServerError

func NewPutUserMetaTagInternalServerError() *PutUserMetaTagInternalServerError

NewPutUserMetaTagInternalServerError creates a PutUserMetaTagInternalServerError with default headers values

func (*PutUserMetaTagInternalServerError) Error

func (*PutUserMetaTagInternalServerError) GetPayload

type PutUserMetaTagNotFound

type PutUserMetaTagNotFound struct {
	Payload *models.RestError
}
PutUserMetaTagNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewPutUserMetaTagNotFound

func NewPutUserMetaTagNotFound() *PutUserMetaTagNotFound

NewPutUserMetaTagNotFound creates a PutUserMetaTagNotFound with default headers values

func (*PutUserMetaTagNotFound) Error

func (o *PutUserMetaTagNotFound) Error() string

func (*PutUserMetaTagNotFound) GetPayload

func (o *PutUserMetaTagNotFound) GetPayload() *models.RestError

type PutUserMetaTagOK

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

PutUserMetaTagOK put user meta tag o k

func NewPutUserMetaTagOK

func NewPutUserMetaTagOK() *PutUserMetaTagOK

NewPutUserMetaTagOK creates a PutUserMetaTagOK with default headers values

func (*PutUserMetaTagOK) Error

func (o *PutUserMetaTagOK) Error() string

func (*PutUserMetaTagOK) GetPayload

type PutUserMetaTagParams

type PutUserMetaTagParams struct {

	// Namespace.
	Namespace string

	// Body.
	Body *models.RestPutUserMetaTagRequest

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

PutUserMetaTagParams contains all the parameters to send to the API endpoint

for the put user meta tag operation.

Typically these are written to a http.Request.

func NewPutUserMetaTagParams

func NewPutUserMetaTagParams() *PutUserMetaTagParams

NewPutUserMetaTagParams creates a new PutUserMetaTagParams 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 NewPutUserMetaTagParamsWithContext

func NewPutUserMetaTagParamsWithContext(ctx context.Context) *PutUserMetaTagParams

NewPutUserMetaTagParamsWithContext creates a new PutUserMetaTagParams object with the ability to set a context for a request.

func NewPutUserMetaTagParamsWithHTTPClient

func NewPutUserMetaTagParamsWithHTTPClient(client *http.Client) *PutUserMetaTagParams

NewPutUserMetaTagParamsWithHTTPClient creates a new PutUserMetaTagParams object with the ability to set a custom HTTPClient for a request.

func NewPutUserMetaTagParamsWithTimeout

func NewPutUserMetaTagParamsWithTimeout(timeout time.Duration) *PutUserMetaTagParams

NewPutUserMetaTagParamsWithTimeout creates a new PutUserMetaTagParams object with the ability to set a timeout on a request.

func (*PutUserMetaTagParams) SetBody

SetBody adds the body to the put user meta tag params

func (*PutUserMetaTagParams) SetContext

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

SetContext adds the context to the put user meta tag params

func (*PutUserMetaTagParams) SetDefaults

func (o *PutUserMetaTagParams) SetDefaults()

SetDefaults hydrates default values in the put user meta tag params (not the query body).

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

func (*PutUserMetaTagParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put user meta tag params

func (*PutUserMetaTagParams) SetNamespace

func (o *PutUserMetaTagParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the put user meta tag params

func (*PutUserMetaTagParams) SetTimeout

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

SetTimeout adds the timeout to the put user meta tag params

func (*PutUserMetaTagParams) WithBody

WithBody adds the body to the put user meta tag params

func (*PutUserMetaTagParams) WithContext

WithContext adds the context to the put user meta tag params

func (*PutUserMetaTagParams) WithDefaults

func (o *PutUserMetaTagParams) WithDefaults() *PutUserMetaTagParams

WithDefaults hydrates default values in the put user meta tag params (not the query body).

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

func (*PutUserMetaTagParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the put user meta tag params

func (*PutUserMetaTagParams) WithNamespace

func (o *PutUserMetaTagParams) WithNamespace(namespace string) *PutUserMetaTagParams

WithNamespace adds the namespace to the put user meta tag params

func (*PutUserMetaTagParams) WithTimeout

func (o *PutUserMetaTagParams) WithTimeout(timeout time.Duration) *PutUserMetaTagParams

WithTimeout adds the timeout to the put user meta tag params

func (*PutUserMetaTagParams) WriteToRequest

func (o *PutUserMetaTagParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PutUserMetaTagReader

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

PutUserMetaTagReader is a Reader for the PutUserMetaTag structure.

func (*PutUserMetaTagReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutUserMetaTagUnauthorized

type PutUserMetaTagUnauthorized struct {
}
PutUserMetaTagUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewPutUserMetaTagUnauthorized

func NewPutUserMetaTagUnauthorized() *PutUserMetaTagUnauthorized

NewPutUserMetaTagUnauthorized creates a PutUserMetaTagUnauthorized with default headers values

func (*PutUserMetaTagUnauthorized) Error

type SearchUserMetaForbidden

type SearchUserMetaForbidden struct {
	Payload *models.RestError
}
SearchUserMetaForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewSearchUserMetaForbidden

func NewSearchUserMetaForbidden() *SearchUserMetaForbidden

NewSearchUserMetaForbidden creates a SearchUserMetaForbidden with default headers values

func (*SearchUserMetaForbidden) Error

func (o *SearchUserMetaForbidden) Error() string

func (*SearchUserMetaForbidden) GetPayload

func (o *SearchUserMetaForbidden) GetPayload() *models.RestError

type SearchUserMetaInternalServerError

type SearchUserMetaInternalServerError struct {
	Payload *models.RestError
}
SearchUserMetaInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewSearchUserMetaInternalServerError

func NewSearchUserMetaInternalServerError() *SearchUserMetaInternalServerError

NewSearchUserMetaInternalServerError creates a SearchUserMetaInternalServerError with default headers values

func (*SearchUserMetaInternalServerError) Error

func (*SearchUserMetaInternalServerError) GetPayload

type SearchUserMetaNotFound

type SearchUserMetaNotFound struct {
	Payload *models.RestError
}
SearchUserMetaNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewSearchUserMetaNotFound

func NewSearchUserMetaNotFound() *SearchUserMetaNotFound

NewSearchUserMetaNotFound creates a SearchUserMetaNotFound with default headers values

func (*SearchUserMetaNotFound) Error

func (o *SearchUserMetaNotFound) Error() string

func (*SearchUserMetaNotFound) GetPayload

func (o *SearchUserMetaNotFound) GetPayload() *models.RestError

type SearchUserMetaOK

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

SearchUserMetaOK search user meta o k

func NewSearchUserMetaOK

func NewSearchUserMetaOK() *SearchUserMetaOK

NewSearchUserMetaOK creates a SearchUserMetaOK with default headers values

func (*SearchUserMetaOK) Error

func (o *SearchUserMetaOK) Error() string

func (*SearchUserMetaOK) GetPayload

type SearchUserMetaParams

type SearchUserMetaParams struct {

	// Body.
	Body *models.IdmSearchUserMetaRequest

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

SearchUserMetaParams contains all the parameters to send to the API endpoint

for the search user meta operation.

Typically these are written to a http.Request.

func NewSearchUserMetaParams

func NewSearchUserMetaParams() *SearchUserMetaParams

NewSearchUserMetaParams creates a new SearchUserMetaParams 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 NewSearchUserMetaParamsWithContext

func NewSearchUserMetaParamsWithContext(ctx context.Context) *SearchUserMetaParams

NewSearchUserMetaParamsWithContext creates a new SearchUserMetaParams object with the ability to set a context for a request.

func NewSearchUserMetaParamsWithHTTPClient

func NewSearchUserMetaParamsWithHTTPClient(client *http.Client) *SearchUserMetaParams

NewSearchUserMetaParamsWithHTTPClient creates a new SearchUserMetaParams object with the ability to set a custom HTTPClient for a request.

func NewSearchUserMetaParamsWithTimeout

func NewSearchUserMetaParamsWithTimeout(timeout time.Duration) *SearchUserMetaParams

NewSearchUserMetaParamsWithTimeout creates a new SearchUserMetaParams object with the ability to set a timeout on a request.

func (*SearchUserMetaParams) SetBody

SetBody adds the body to the search user meta params

func (*SearchUserMetaParams) SetContext

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

SetContext adds the context to the search user meta params

func (*SearchUserMetaParams) SetDefaults

func (o *SearchUserMetaParams) SetDefaults()

SetDefaults hydrates default values in the search user meta params (not the query body).

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

func (*SearchUserMetaParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search user meta params

func (*SearchUserMetaParams) SetTimeout

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

SetTimeout adds the timeout to the search user meta params

func (*SearchUserMetaParams) WithBody

WithBody adds the body to the search user meta params

func (*SearchUserMetaParams) WithContext

WithContext adds the context to the search user meta params

func (*SearchUserMetaParams) WithDefaults

func (o *SearchUserMetaParams) WithDefaults() *SearchUserMetaParams

WithDefaults hydrates default values in the search user meta params (not the query body).

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

func (*SearchUserMetaParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the search user meta params

func (*SearchUserMetaParams) WithTimeout

func (o *SearchUserMetaParams) WithTimeout(timeout time.Duration) *SearchUserMetaParams

WithTimeout adds the timeout to the search user meta params

func (*SearchUserMetaParams) WriteToRequest

func (o *SearchUserMetaParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type SearchUserMetaReader

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

SearchUserMetaReader is a Reader for the SearchUserMeta structure.

func (*SearchUserMetaReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SearchUserMetaUnauthorized

type SearchUserMetaUnauthorized struct {
}
SearchUserMetaUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewSearchUserMetaUnauthorized

func NewSearchUserMetaUnauthorized() *SearchUserMetaUnauthorized

NewSearchUserMetaUnauthorized creates a SearchUserMetaUnauthorized with default headers values

func (*SearchUserMetaUnauthorized) Error

type UpdateUserMetaForbidden

type UpdateUserMetaForbidden struct {
	Payload *models.RestError
}
UpdateUserMetaForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewUpdateUserMetaForbidden

func NewUpdateUserMetaForbidden() *UpdateUserMetaForbidden

NewUpdateUserMetaForbidden creates a UpdateUserMetaForbidden with default headers values

func (*UpdateUserMetaForbidden) Error

func (o *UpdateUserMetaForbidden) Error() string

func (*UpdateUserMetaForbidden) GetPayload

func (o *UpdateUserMetaForbidden) GetPayload() *models.RestError

type UpdateUserMetaInternalServerError

type UpdateUserMetaInternalServerError struct {
	Payload *models.RestError
}
UpdateUserMetaInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewUpdateUserMetaInternalServerError

func NewUpdateUserMetaInternalServerError() *UpdateUserMetaInternalServerError

NewUpdateUserMetaInternalServerError creates a UpdateUserMetaInternalServerError with default headers values

func (*UpdateUserMetaInternalServerError) Error

func (*UpdateUserMetaInternalServerError) GetPayload

type UpdateUserMetaNamespaceForbidden

type UpdateUserMetaNamespaceForbidden struct {
	Payload *models.RestError
}
UpdateUserMetaNamespaceForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewUpdateUserMetaNamespaceForbidden

func NewUpdateUserMetaNamespaceForbidden() *UpdateUserMetaNamespaceForbidden

NewUpdateUserMetaNamespaceForbidden creates a UpdateUserMetaNamespaceForbidden with default headers values

func (*UpdateUserMetaNamespaceForbidden) Error

func (*UpdateUserMetaNamespaceForbidden) GetPayload

type UpdateUserMetaNamespaceInternalServerError

type UpdateUserMetaNamespaceInternalServerError struct {
	Payload *models.RestError
}
UpdateUserMetaNamespaceInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewUpdateUserMetaNamespaceInternalServerError

func NewUpdateUserMetaNamespaceInternalServerError() *UpdateUserMetaNamespaceInternalServerError

NewUpdateUserMetaNamespaceInternalServerError creates a UpdateUserMetaNamespaceInternalServerError with default headers values

func (*UpdateUserMetaNamespaceInternalServerError) Error

func (*UpdateUserMetaNamespaceInternalServerError) GetPayload

type UpdateUserMetaNamespaceNotFound

type UpdateUserMetaNamespaceNotFound struct {
	Payload *models.RestError
}
UpdateUserMetaNamespaceNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewUpdateUserMetaNamespaceNotFound

func NewUpdateUserMetaNamespaceNotFound() *UpdateUserMetaNamespaceNotFound

NewUpdateUserMetaNamespaceNotFound creates a UpdateUserMetaNamespaceNotFound with default headers values

func (*UpdateUserMetaNamespaceNotFound) Error

func (*UpdateUserMetaNamespaceNotFound) GetPayload

type UpdateUserMetaNamespaceOK

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

UpdateUserMetaNamespaceOK update user meta namespace o k

func NewUpdateUserMetaNamespaceOK

func NewUpdateUserMetaNamespaceOK() *UpdateUserMetaNamespaceOK

NewUpdateUserMetaNamespaceOK creates a UpdateUserMetaNamespaceOK with default headers values

func (*UpdateUserMetaNamespaceOK) Error

func (o *UpdateUserMetaNamespaceOK) Error() string

func (*UpdateUserMetaNamespaceOK) GetPayload

type UpdateUserMetaNamespaceParams

type UpdateUserMetaNamespaceParams struct {

	// Body.
	Body *models.IdmUpdateUserMetaNamespaceRequest

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

UpdateUserMetaNamespaceParams contains all the parameters to send to the API endpoint

for the update user meta namespace operation.

Typically these are written to a http.Request.

func NewUpdateUserMetaNamespaceParams

func NewUpdateUserMetaNamespaceParams() *UpdateUserMetaNamespaceParams

NewUpdateUserMetaNamespaceParams creates a new UpdateUserMetaNamespaceParams 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 NewUpdateUserMetaNamespaceParamsWithContext

func NewUpdateUserMetaNamespaceParamsWithContext(ctx context.Context) *UpdateUserMetaNamespaceParams

NewUpdateUserMetaNamespaceParamsWithContext creates a new UpdateUserMetaNamespaceParams object with the ability to set a context for a request.

func NewUpdateUserMetaNamespaceParamsWithHTTPClient

func NewUpdateUserMetaNamespaceParamsWithHTTPClient(client *http.Client) *UpdateUserMetaNamespaceParams

NewUpdateUserMetaNamespaceParamsWithHTTPClient creates a new UpdateUserMetaNamespaceParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateUserMetaNamespaceParamsWithTimeout

func NewUpdateUserMetaNamespaceParamsWithTimeout(timeout time.Duration) *UpdateUserMetaNamespaceParams

NewUpdateUserMetaNamespaceParamsWithTimeout creates a new UpdateUserMetaNamespaceParams object with the ability to set a timeout on a request.

func (*UpdateUserMetaNamespaceParams) SetBody

SetBody adds the body to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) SetContext

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

SetContext adds the context to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) SetDefaults

func (o *UpdateUserMetaNamespaceParams) SetDefaults()

SetDefaults hydrates default values in the update user meta namespace params (not the query body).

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

func (*UpdateUserMetaNamespaceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) SetTimeout

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

SetTimeout adds the timeout to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) WithBody

WithBody adds the body to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) WithContext

WithContext adds the context to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) WithDefaults

WithDefaults hydrates default values in the update user meta namespace params (not the query body).

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

func (*UpdateUserMetaNamespaceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) WithTimeout

WithTimeout adds the timeout to the update user meta namespace params

func (*UpdateUserMetaNamespaceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateUserMetaNamespaceReader

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

UpdateUserMetaNamespaceReader is a Reader for the UpdateUserMetaNamespace structure.

func (*UpdateUserMetaNamespaceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateUserMetaNamespaceUnauthorized

type UpdateUserMetaNamespaceUnauthorized struct {
}
UpdateUserMetaNamespaceUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewUpdateUserMetaNamespaceUnauthorized

func NewUpdateUserMetaNamespaceUnauthorized() *UpdateUserMetaNamespaceUnauthorized

NewUpdateUserMetaNamespaceUnauthorized creates a UpdateUserMetaNamespaceUnauthorized with default headers values

func (*UpdateUserMetaNamespaceUnauthorized) Error

type UpdateUserMetaNotFound

type UpdateUserMetaNotFound struct {
	Payload *models.RestError
}
UpdateUserMetaNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewUpdateUserMetaNotFound

func NewUpdateUserMetaNotFound() *UpdateUserMetaNotFound

NewUpdateUserMetaNotFound creates a UpdateUserMetaNotFound with default headers values

func (*UpdateUserMetaNotFound) Error

func (o *UpdateUserMetaNotFound) Error() string

func (*UpdateUserMetaNotFound) GetPayload

func (o *UpdateUserMetaNotFound) GetPayload() *models.RestError

type UpdateUserMetaOK

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

UpdateUserMetaOK update user meta o k

func NewUpdateUserMetaOK

func NewUpdateUserMetaOK() *UpdateUserMetaOK

NewUpdateUserMetaOK creates a UpdateUserMetaOK with default headers values

func (*UpdateUserMetaOK) Error

func (o *UpdateUserMetaOK) Error() string

func (*UpdateUserMetaOK) GetPayload

type UpdateUserMetaParams

type UpdateUserMetaParams struct {

	// Body.
	Body *models.IdmUpdateUserMetaRequest

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

UpdateUserMetaParams contains all the parameters to send to the API endpoint

for the update user meta operation.

Typically these are written to a http.Request.

func NewUpdateUserMetaParams

func NewUpdateUserMetaParams() *UpdateUserMetaParams

NewUpdateUserMetaParams creates a new UpdateUserMetaParams 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 NewUpdateUserMetaParamsWithContext

func NewUpdateUserMetaParamsWithContext(ctx context.Context) *UpdateUserMetaParams

NewUpdateUserMetaParamsWithContext creates a new UpdateUserMetaParams object with the ability to set a context for a request.

func NewUpdateUserMetaParamsWithHTTPClient

func NewUpdateUserMetaParamsWithHTTPClient(client *http.Client) *UpdateUserMetaParams

NewUpdateUserMetaParamsWithHTTPClient creates a new UpdateUserMetaParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateUserMetaParamsWithTimeout

func NewUpdateUserMetaParamsWithTimeout(timeout time.Duration) *UpdateUserMetaParams

NewUpdateUserMetaParamsWithTimeout creates a new UpdateUserMetaParams object with the ability to set a timeout on a request.

func (*UpdateUserMetaParams) SetBody

SetBody adds the body to the update user meta params

func (*UpdateUserMetaParams) SetContext

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

SetContext adds the context to the update user meta params

func (*UpdateUserMetaParams) SetDefaults

func (o *UpdateUserMetaParams) SetDefaults()

SetDefaults hydrates default values in the update user meta params (not the query body).

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

func (*UpdateUserMetaParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update user meta params

func (*UpdateUserMetaParams) SetTimeout

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

SetTimeout adds the timeout to the update user meta params

func (*UpdateUserMetaParams) WithBody

WithBody adds the body to the update user meta params

func (*UpdateUserMetaParams) WithContext

WithContext adds the context to the update user meta params

func (*UpdateUserMetaParams) WithDefaults

func (o *UpdateUserMetaParams) WithDefaults() *UpdateUserMetaParams

WithDefaults hydrates default values in the update user meta params (not the query body).

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

func (*UpdateUserMetaParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update user meta params

func (*UpdateUserMetaParams) WithTimeout

func (o *UpdateUserMetaParams) WithTimeout(timeout time.Duration) *UpdateUserMetaParams

WithTimeout adds the timeout to the update user meta params

func (*UpdateUserMetaParams) WriteToRequest

func (o *UpdateUserMetaParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type UpdateUserMetaReader

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

UpdateUserMetaReader is a Reader for the UpdateUserMeta structure.

func (*UpdateUserMetaReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateUserMetaUnauthorized

type UpdateUserMetaUnauthorized struct {
}
UpdateUserMetaUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewUpdateUserMetaUnauthorized

func NewUpdateUserMetaUnauthorized() *UpdateUserMetaUnauthorized

NewUpdateUserMetaUnauthorized creates a UpdateUserMetaUnauthorized with default headers values

func (*UpdateUserMetaUnauthorized) Error

type UserBookmarksForbidden

type UserBookmarksForbidden struct {
	Payload *models.RestError
}
UserBookmarksForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewUserBookmarksForbidden

func NewUserBookmarksForbidden() *UserBookmarksForbidden

NewUserBookmarksForbidden creates a UserBookmarksForbidden with default headers values

func (*UserBookmarksForbidden) Error

func (o *UserBookmarksForbidden) Error() string

func (*UserBookmarksForbidden) GetPayload

func (o *UserBookmarksForbidden) GetPayload() *models.RestError

type UserBookmarksInternalServerError

type UserBookmarksInternalServerError struct {
	Payload *models.RestError
}
UserBookmarksInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewUserBookmarksInternalServerError

func NewUserBookmarksInternalServerError() *UserBookmarksInternalServerError

NewUserBookmarksInternalServerError creates a UserBookmarksInternalServerError with default headers values

func (*UserBookmarksInternalServerError) Error

func (*UserBookmarksInternalServerError) GetPayload

type UserBookmarksNotFound

type UserBookmarksNotFound struct {
	Payload *models.RestError
}
UserBookmarksNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewUserBookmarksNotFound

func NewUserBookmarksNotFound() *UserBookmarksNotFound

NewUserBookmarksNotFound creates a UserBookmarksNotFound with default headers values

func (*UserBookmarksNotFound) Error

func (o *UserBookmarksNotFound) Error() string

func (*UserBookmarksNotFound) GetPayload

func (o *UserBookmarksNotFound) GetPayload() *models.RestError

type UserBookmarksOK

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

UserBookmarksOK user bookmarks o k

func NewUserBookmarksOK

func NewUserBookmarksOK() *UserBookmarksOK

NewUserBookmarksOK creates a UserBookmarksOK with default headers values

func (*UserBookmarksOK) Error

func (o *UserBookmarksOK) Error() string

func (*UserBookmarksOK) GetPayload

func (o *UserBookmarksOK) GetPayload() *models.RestBulkMetaResponse

type UserBookmarksParams

type UserBookmarksParams struct {

	// Body.
	Body models.RestUserBookmarksRequest

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

UserBookmarksParams contains all the parameters to send to the API endpoint

for the user bookmarks operation.

Typically these are written to a http.Request.

func NewUserBookmarksParams

func NewUserBookmarksParams() *UserBookmarksParams

NewUserBookmarksParams creates a new UserBookmarksParams 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 NewUserBookmarksParamsWithContext

func NewUserBookmarksParamsWithContext(ctx context.Context) *UserBookmarksParams

NewUserBookmarksParamsWithContext creates a new UserBookmarksParams object with the ability to set a context for a request.

func NewUserBookmarksParamsWithHTTPClient

func NewUserBookmarksParamsWithHTTPClient(client *http.Client) *UserBookmarksParams

NewUserBookmarksParamsWithHTTPClient creates a new UserBookmarksParams object with the ability to set a custom HTTPClient for a request.

func NewUserBookmarksParamsWithTimeout

func NewUserBookmarksParamsWithTimeout(timeout time.Duration) *UserBookmarksParams

NewUserBookmarksParamsWithTimeout creates a new UserBookmarksParams object with the ability to set a timeout on a request.

func (*UserBookmarksParams) SetBody

SetBody adds the body to the user bookmarks params

func (*UserBookmarksParams) SetContext

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

SetContext adds the context to the user bookmarks params

func (*UserBookmarksParams) SetDefaults

func (o *UserBookmarksParams) SetDefaults()

SetDefaults hydrates default values in the user bookmarks params (not the query body).

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

func (*UserBookmarksParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the user bookmarks params

func (*UserBookmarksParams) SetTimeout

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

SetTimeout adds the timeout to the user bookmarks params

func (*UserBookmarksParams) WithBody

WithBody adds the body to the user bookmarks params

func (*UserBookmarksParams) WithContext

WithContext adds the context to the user bookmarks params

func (*UserBookmarksParams) WithDefaults

func (o *UserBookmarksParams) WithDefaults() *UserBookmarksParams

WithDefaults hydrates default values in the user bookmarks params (not the query body).

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

func (*UserBookmarksParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the user bookmarks params

func (*UserBookmarksParams) WithTimeout

func (o *UserBookmarksParams) WithTimeout(timeout time.Duration) *UserBookmarksParams

WithTimeout adds the timeout to the user bookmarks params

func (*UserBookmarksParams) WriteToRequest

func (o *UserBookmarksParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type UserBookmarksReader

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

UserBookmarksReader is a Reader for the UserBookmarks structure.

func (*UserBookmarksReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UserBookmarksUnauthorized

type UserBookmarksUnauthorized struct {
}
UserBookmarksUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewUserBookmarksUnauthorized

func NewUserBookmarksUnauthorized() *UserBookmarksUnauthorized

NewUserBookmarksUnauthorized creates a UserBookmarksUnauthorized with default headers values

func (*UserBookmarksUnauthorized) Error

func (o *UserBookmarksUnauthorized) Error() string

Jump to

Keyboard shortcuts

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