user_meta_service

package
v4.0.2 Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2023 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for 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) Code added in v4.0.1

func (o *DeleteUserMetaTagsForbidden) Code() int

Code gets the status code for the delete user meta tags forbidden response

func (*DeleteUserMetaTagsForbidden) Error

func (*DeleteUserMetaTagsForbidden) GetPayload

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

func (*DeleteUserMetaTagsForbidden) IsClientError

func (o *DeleteUserMetaTagsForbidden) IsClientError() bool

IsClientError returns true when this delete user meta tags forbidden response has a 4xx status code

func (*DeleteUserMetaTagsForbidden) IsCode

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

IsCode returns true when this delete user meta tags forbidden response a status code equal to that given

func (*DeleteUserMetaTagsForbidden) IsRedirect

func (o *DeleteUserMetaTagsForbidden) IsRedirect() bool

IsRedirect returns true when this delete user meta tags forbidden response has a 3xx status code

func (*DeleteUserMetaTagsForbidden) IsServerError

func (o *DeleteUserMetaTagsForbidden) IsServerError() bool

IsServerError returns true when this delete user meta tags forbidden response has a 5xx status code

func (*DeleteUserMetaTagsForbidden) IsSuccess

func (o *DeleteUserMetaTagsForbidden) IsSuccess() bool

IsSuccess returns true when this delete user meta tags forbidden response has a 2xx status code

func (*DeleteUserMetaTagsForbidden) String

func (o *DeleteUserMetaTagsForbidden) String() string

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) Code added in v4.0.1

Code gets the status code for the delete user meta tags internal server error response

func (*DeleteUserMetaTagsInternalServerError) Error

func (*DeleteUserMetaTagsInternalServerError) GetPayload

func (*DeleteUserMetaTagsInternalServerError) IsClientError

func (o *DeleteUserMetaTagsInternalServerError) IsClientError() bool

IsClientError returns true when this delete user meta tags internal server error response has a 4xx status code

func (*DeleteUserMetaTagsInternalServerError) IsCode

IsCode returns true when this delete user meta tags internal server error response a status code equal to that given

func (*DeleteUserMetaTagsInternalServerError) IsRedirect

IsRedirect returns true when this delete user meta tags internal server error response has a 3xx status code

func (*DeleteUserMetaTagsInternalServerError) IsServerError

func (o *DeleteUserMetaTagsInternalServerError) IsServerError() bool

IsServerError returns true when this delete user meta tags internal server error response has a 5xx status code

func (*DeleteUserMetaTagsInternalServerError) IsSuccess

IsSuccess returns true when this delete user meta tags internal server error response has a 2xx status code

func (*DeleteUserMetaTagsInternalServerError) String

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) Code added in v4.0.1

func (o *DeleteUserMetaTagsNotFound) Code() int

Code gets the status code for the delete user meta tags not found response

func (*DeleteUserMetaTagsNotFound) Error

func (*DeleteUserMetaTagsNotFound) GetPayload

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

func (*DeleteUserMetaTagsNotFound) IsClientError

func (o *DeleteUserMetaTagsNotFound) IsClientError() bool

IsClientError returns true when this delete user meta tags not found response has a 4xx status code

func (*DeleteUserMetaTagsNotFound) IsCode

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

IsCode returns true when this delete user meta tags not found response a status code equal to that given

func (*DeleteUserMetaTagsNotFound) IsRedirect

func (o *DeleteUserMetaTagsNotFound) IsRedirect() bool

IsRedirect returns true when this delete user meta tags not found response has a 3xx status code

func (*DeleteUserMetaTagsNotFound) IsServerError

func (o *DeleteUserMetaTagsNotFound) IsServerError() bool

IsServerError returns true when this delete user meta tags not found response has a 5xx status code

func (*DeleteUserMetaTagsNotFound) IsSuccess

func (o *DeleteUserMetaTagsNotFound) IsSuccess() bool

IsSuccess returns true when this delete user meta tags not found response has a 2xx status code

func (*DeleteUserMetaTagsNotFound) String

func (o *DeleteUserMetaTagsNotFound) String() string

type DeleteUserMetaTagsOK

type DeleteUserMetaTagsOK struct {
	Payload *models.RestDeleteUserMetaTagsResponse
}

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

A successful response.

func NewDeleteUserMetaTagsOK

func NewDeleteUserMetaTagsOK() *DeleteUserMetaTagsOK

NewDeleteUserMetaTagsOK creates a DeleteUserMetaTagsOK with default headers values

func (*DeleteUserMetaTagsOK) Code added in v4.0.1

func (o *DeleteUserMetaTagsOK) Code() int

Code gets the status code for the delete user meta tags o k response

func (*DeleteUserMetaTagsOK) Error

func (o *DeleteUserMetaTagsOK) Error() string

func (*DeleteUserMetaTagsOK) GetPayload

func (*DeleteUserMetaTagsOK) IsClientError

func (o *DeleteUserMetaTagsOK) IsClientError() bool

IsClientError returns true when this delete user meta tags o k response has a 4xx status code

func (*DeleteUserMetaTagsOK) IsCode

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

IsCode returns true when this delete user meta tags o k response a status code equal to that given

func (*DeleteUserMetaTagsOK) IsRedirect

func (o *DeleteUserMetaTagsOK) IsRedirect() bool

IsRedirect returns true when this delete user meta tags o k response has a 3xx status code

func (*DeleteUserMetaTagsOK) IsServerError

func (o *DeleteUserMetaTagsOK) IsServerError() bool

IsServerError returns true when this delete user meta tags o k response has a 5xx status code

func (*DeleteUserMetaTagsOK) IsSuccess

func (o *DeleteUserMetaTagsOK) IsSuccess() bool

IsSuccess returns true when this delete user meta tags o k response has a 2xx status code

func (*DeleteUserMetaTagsOK) String

func (o *DeleteUserMetaTagsOK) String() string

type DeleteUserMetaTagsParams

type DeleteUserMetaTagsParams struct {

	/* Namespace.

	   Delete tags from this namespace
	*/
	Namespace string

	/* Tags.

	   Delete this tag
	*/
	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) Code added in v4.0.1

Code gets the status code for the delete user meta tags unauthorized response

func (*DeleteUserMetaTagsUnauthorized) Error

func (*DeleteUserMetaTagsUnauthorized) IsClientError

func (o *DeleteUserMetaTagsUnauthorized) IsClientError() bool

IsClientError returns true when this delete user meta tags unauthorized response has a 4xx status code

func (*DeleteUserMetaTagsUnauthorized) IsCode

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

IsCode returns true when this delete user meta tags unauthorized response a status code equal to that given

func (*DeleteUserMetaTagsUnauthorized) IsRedirect

func (o *DeleteUserMetaTagsUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete user meta tags unauthorized response has a 3xx status code

func (*DeleteUserMetaTagsUnauthorized) IsServerError

func (o *DeleteUserMetaTagsUnauthorized) IsServerError() bool

IsServerError returns true when this delete user meta tags unauthorized response has a 5xx status code

func (*DeleteUserMetaTagsUnauthorized) IsSuccess

func (o *DeleteUserMetaTagsUnauthorized) IsSuccess() bool

IsSuccess returns true when this delete user meta tags unauthorized response has a 2xx status code

func (*DeleteUserMetaTagsUnauthorized) String

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) Code added in v4.0.1

Code gets the status code for the list user meta namespace forbidden response

func (*ListUserMetaNamespaceForbidden) Error

func (*ListUserMetaNamespaceForbidden) GetPayload

func (*ListUserMetaNamespaceForbidden) IsClientError

func (o *ListUserMetaNamespaceForbidden) IsClientError() bool

IsClientError returns true when this list user meta namespace forbidden response has a 4xx status code

func (*ListUserMetaNamespaceForbidden) IsCode

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

IsCode returns true when this list user meta namespace forbidden response a status code equal to that given

func (*ListUserMetaNamespaceForbidden) IsRedirect

func (o *ListUserMetaNamespaceForbidden) IsRedirect() bool

IsRedirect returns true when this list user meta namespace forbidden response has a 3xx status code

func (*ListUserMetaNamespaceForbidden) IsServerError

func (o *ListUserMetaNamespaceForbidden) IsServerError() bool

IsServerError returns true when this list user meta namespace forbidden response has a 5xx status code

func (*ListUserMetaNamespaceForbidden) IsSuccess

func (o *ListUserMetaNamespaceForbidden) IsSuccess() bool

IsSuccess returns true when this list user meta namespace forbidden response has a 2xx status code

func (*ListUserMetaNamespaceForbidden) String

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) Code added in v4.0.1

Code gets the status code for the list user meta namespace internal server error response

func (*ListUserMetaNamespaceInternalServerError) Error

func (*ListUserMetaNamespaceInternalServerError) GetPayload

func (*ListUserMetaNamespaceInternalServerError) IsClientError

IsClientError returns true when this list user meta namespace internal server error response has a 4xx status code

func (*ListUserMetaNamespaceInternalServerError) IsCode

IsCode returns true when this list user meta namespace internal server error response a status code equal to that given

func (*ListUserMetaNamespaceInternalServerError) IsRedirect

IsRedirect returns true when this list user meta namespace internal server error response has a 3xx status code

func (*ListUserMetaNamespaceInternalServerError) IsServerError

IsServerError returns true when this list user meta namespace internal server error response has a 5xx status code

func (*ListUserMetaNamespaceInternalServerError) IsSuccess

IsSuccess returns true when this list user meta namespace internal server error response has a 2xx status code

func (*ListUserMetaNamespaceInternalServerError) String

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) Code added in v4.0.1

Code gets the status code for the list user meta namespace not found response

func (*ListUserMetaNamespaceNotFound) Error

func (*ListUserMetaNamespaceNotFound) GetPayload

func (*ListUserMetaNamespaceNotFound) IsClientError

func (o *ListUserMetaNamespaceNotFound) IsClientError() bool

IsClientError returns true when this list user meta namespace not found response has a 4xx status code

func (*ListUserMetaNamespaceNotFound) IsCode

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

IsCode returns true when this list user meta namespace not found response a status code equal to that given

func (*ListUserMetaNamespaceNotFound) IsRedirect

func (o *ListUserMetaNamespaceNotFound) IsRedirect() bool

IsRedirect returns true when this list user meta namespace not found response has a 3xx status code

func (*ListUserMetaNamespaceNotFound) IsServerError

func (o *ListUserMetaNamespaceNotFound) IsServerError() bool

IsServerError returns true when this list user meta namespace not found response has a 5xx status code

func (*ListUserMetaNamespaceNotFound) IsSuccess

func (o *ListUserMetaNamespaceNotFound) IsSuccess() bool

IsSuccess returns true when this list user meta namespace not found response has a 2xx status code

func (*ListUserMetaNamespaceNotFound) String

type ListUserMetaNamespaceOK

type ListUserMetaNamespaceOK struct {
	Payload *models.RestUserMetaNamespaceCollection
}

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

A successful response.

func NewListUserMetaNamespaceOK

func NewListUserMetaNamespaceOK() *ListUserMetaNamespaceOK

NewListUserMetaNamespaceOK creates a ListUserMetaNamespaceOK with default headers values

func (*ListUserMetaNamespaceOK) Code added in v4.0.1

func (o *ListUserMetaNamespaceOK) Code() int

Code gets the status code for the list user meta namespace o k response

func (*ListUserMetaNamespaceOK) Error

func (o *ListUserMetaNamespaceOK) Error() string

func (*ListUserMetaNamespaceOK) GetPayload

func (*ListUserMetaNamespaceOK) IsClientError

func (o *ListUserMetaNamespaceOK) IsClientError() bool

IsClientError returns true when this list user meta namespace o k response has a 4xx status code

func (*ListUserMetaNamespaceOK) IsCode

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

IsCode returns true when this list user meta namespace o k response a status code equal to that given

func (*ListUserMetaNamespaceOK) IsRedirect

func (o *ListUserMetaNamespaceOK) IsRedirect() bool

IsRedirect returns true when this list user meta namespace o k response has a 3xx status code

func (*ListUserMetaNamespaceOK) IsServerError

func (o *ListUserMetaNamespaceOK) IsServerError() bool

IsServerError returns true when this list user meta namespace o k response has a 5xx status code

func (*ListUserMetaNamespaceOK) IsSuccess

func (o *ListUserMetaNamespaceOK) IsSuccess() bool

IsSuccess returns true when this list user meta namespace o k response has a 2xx status code

func (*ListUserMetaNamespaceOK) String

func (o *ListUserMetaNamespaceOK) String() string

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) Code added in v4.0.1

Code gets the status code for the list user meta namespace unauthorized response

func (*ListUserMetaNamespaceUnauthorized) Error

func (*ListUserMetaNamespaceUnauthorized) IsClientError

func (o *ListUserMetaNamespaceUnauthorized) IsClientError() bool

IsClientError returns true when this list user meta namespace unauthorized response has a 4xx status code

func (*ListUserMetaNamespaceUnauthorized) IsCode

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

IsCode returns true when this list user meta namespace unauthorized response a status code equal to that given

func (*ListUserMetaNamespaceUnauthorized) IsRedirect

func (o *ListUserMetaNamespaceUnauthorized) IsRedirect() bool

IsRedirect returns true when this list user meta namespace unauthorized response has a 3xx status code

func (*ListUserMetaNamespaceUnauthorized) IsServerError

func (o *ListUserMetaNamespaceUnauthorized) IsServerError() bool

IsServerError returns true when this list user meta namespace unauthorized response has a 5xx status code

func (*ListUserMetaNamespaceUnauthorized) IsSuccess

func (o *ListUserMetaNamespaceUnauthorized) IsSuccess() bool

IsSuccess returns true when this list user meta namespace unauthorized response has a 2xx status code

func (*ListUserMetaNamespaceUnauthorized) String

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) Code added in v4.0.1

func (o *ListUserMetaTagsForbidden) Code() int

Code gets the status code for the list user meta tags forbidden response

func (*ListUserMetaTagsForbidden) Error

func (o *ListUserMetaTagsForbidden) Error() string

func (*ListUserMetaTagsForbidden) GetPayload

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

func (*ListUserMetaTagsForbidden) IsClientError

func (o *ListUserMetaTagsForbidden) IsClientError() bool

IsClientError returns true when this list user meta tags forbidden response has a 4xx status code

func (*ListUserMetaTagsForbidden) IsCode

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

IsCode returns true when this list user meta tags forbidden response a status code equal to that given

func (*ListUserMetaTagsForbidden) IsRedirect

func (o *ListUserMetaTagsForbidden) IsRedirect() bool

IsRedirect returns true when this list user meta tags forbidden response has a 3xx status code

func (*ListUserMetaTagsForbidden) IsServerError

func (o *ListUserMetaTagsForbidden) IsServerError() bool

IsServerError returns true when this list user meta tags forbidden response has a 5xx status code

func (*ListUserMetaTagsForbidden) IsSuccess

func (o *ListUserMetaTagsForbidden) IsSuccess() bool

IsSuccess returns true when this list user meta tags forbidden response has a 2xx status code

func (*ListUserMetaTagsForbidden) String

func (o *ListUserMetaTagsForbidden) String() string

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) Code added in v4.0.1

Code gets the status code for the list user meta tags internal server error response

func (*ListUserMetaTagsInternalServerError) Error

func (*ListUserMetaTagsInternalServerError) GetPayload

func (*ListUserMetaTagsInternalServerError) IsClientError

func (o *ListUserMetaTagsInternalServerError) IsClientError() bool

IsClientError returns true when this list user meta tags internal server error response has a 4xx status code

func (*ListUserMetaTagsInternalServerError) IsCode

IsCode returns true when this list user meta tags internal server error response a status code equal to that given

func (*ListUserMetaTagsInternalServerError) IsRedirect

func (o *ListUserMetaTagsInternalServerError) IsRedirect() bool

IsRedirect returns true when this list user meta tags internal server error response has a 3xx status code

func (*ListUserMetaTagsInternalServerError) IsServerError

func (o *ListUserMetaTagsInternalServerError) IsServerError() bool

IsServerError returns true when this list user meta tags internal server error response has a 5xx status code

func (*ListUserMetaTagsInternalServerError) IsSuccess

IsSuccess returns true when this list user meta tags internal server error response has a 2xx status code

func (*ListUserMetaTagsInternalServerError) String

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) Code added in v4.0.1

func (o *ListUserMetaTagsNotFound) Code() int

Code gets the status code for the list user meta tags not found response

func (*ListUserMetaTagsNotFound) Error

func (o *ListUserMetaTagsNotFound) Error() string

func (*ListUserMetaTagsNotFound) GetPayload

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

func (*ListUserMetaTagsNotFound) IsClientError

func (o *ListUserMetaTagsNotFound) IsClientError() bool

IsClientError returns true when this list user meta tags not found response has a 4xx status code

func (*ListUserMetaTagsNotFound) IsCode

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

IsCode returns true when this list user meta tags not found response a status code equal to that given

func (*ListUserMetaTagsNotFound) IsRedirect

func (o *ListUserMetaTagsNotFound) IsRedirect() bool

IsRedirect returns true when this list user meta tags not found response has a 3xx status code

func (*ListUserMetaTagsNotFound) IsServerError

func (o *ListUserMetaTagsNotFound) IsServerError() bool

IsServerError returns true when this list user meta tags not found response has a 5xx status code

func (*ListUserMetaTagsNotFound) IsSuccess

func (o *ListUserMetaTagsNotFound) IsSuccess() bool

IsSuccess returns true when this list user meta tags not found response has a 2xx status code

func (*ListUserMetaTagsNotFound) String

func (o *ListUserMetaTagsNotFound) String() string

type ListUserMetaTagsOK

type ListUserMetaTagsOK struct {
	Payload *models.RestListUserMetaTagsResponse
}

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

A successful response.

func NewListUserMetaTagsOK

func NewListUserMetaTagsOK() *ListUserMetaTagsOK

NewListUserMetaTagsOK creates a ListUserMetaTagsOK with default headers values

func (*ListUserMetaTagsOK) Code added in v4.0.1

func (o *ListUserMetaTagsOK) Code() int

Code gets the status code for the list user meta tags o k response

func (*ListUserMetaTagsOK) Error

func (o *ListUserMetaTagsOK) Error() string

func (*ListUserMetaTagsOK) GetPayload

func (*ListUserMetaTagsOK) IsClientError

func (o *ListUserMetaTagsOK) IsClientError() bool

IsClientError returns true when this list user meta tags o k response has a 4xx status code

func (*ListUserMetaTagsOK) IsCode

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

IsCode returns true when this list user meta tags o k response a status code equal to that given

func (*ListUserMetaTagsOK) IsRedirect

func (o *ListUserMetaTagsOK) IsRedirect() bool

IsRedirect returns true when this list user meta tags o k response has a 3xx status code

func (*ListUserMetaTagsOK) IsServerError

func (o *ListUserMetaTagsOK) IsServerError() bool

IsServerError returns true when this list user meta tags o k response has a 5xx status code

func (*ListUserMetaTagsOK) IsSuccess

func (o *ListUserMetaTagsOK) IsSuccess() bool

IsSuccess returns true when this list user meta tags o k response has a 2xx status code

func (*ListUserMetaTagsOK) String

func (o *ListUserMetaTagsOK) String() string

type ListUserMetaTagsParams

type ListUserMetaTagsParams struct {

	/* Namespace.

	   List user meta tags for this 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) Code added in v4.0.1

Code gets the status code for the list user meta tags unauthorized response

func (*ListUserMetaTagsUnauthorized) Error

func (*ListUserMetaTagsUnauthorized) IsClientError

func (o *ListUserMetaTagsUnauthorized) IsClientError() bool

IsClientError returns true when this list user meta tags unauthorized response has a 4xx status code

func (*ListUserMetaTagsUnauthorized) IsCode

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

IsCode returns true when this list user meta tags unauthorized response a status code equal to that given

func (*ListUserMetaTagsUnauthorized) IsRedirect

func (o *ListUserMetaTagsUnauthorized) IsRedirect() bool

IsRedirect returns true when this list user meta tags unauthorized response has a 3xx status code

func (*ListUserMetaTagsUnauthorized) IsServerError

func (o *ListUserMetaTagsUnauthorized) IsServerError() bool

IsServerError returns true when this list user meta tags unauthorized response has a 5xx status code

func (*ListUserMetaTagsUnauthorized) IsSuccess

func (o *ListUserMetaTagsUnauthorized) IsSuccess() bool

IsSuccess returns true when this list user meta tags unauthorized response has a 2xx status code

func (*ListUserMetaTagsUnauthorized) String

type PutUserMetaTagBody

type PutUserMetaTagBody struct {

	// New tag value
	Tag string `json:"Tag,omitempty"`
}

PutUserMetaTagBody RestPutUserMetaTagRequest swagger:model PutUserMetaTagBody

func (*PutUserMetaTagBody) ContextValidate

func (o *PutUserMetaTagBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this put user meta tag body based on context it is used

func (*PutUserMetaTagBody) MarshalBinary

func (o *PutUserMetaTagBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PutUserMetaTagBody) UnmarshalBinary

func (o *PutUserMetaTagBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PutUserMetaTagBody) Validate

func (o *PutUserMetaTagBody) Validate(formats strfmt.Registry) error

Validate validates this put user meta tag body

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) Code added in v4.0.1

func (o *PutUserMetaTagForbidden) Code() int

Code gets the status code for the put user meta tag forbidden response

func (*PutUserMetaTagForbidden) Error

func (o *PutUserMetaTagForbidden) Error() string

func (*PutUserMetaTagForbidden) GetPayload

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

func (*PutUserMetaTagForbidden) IsClientError

func (o *PutUserMetaTagForbidden) IsClientError() bool

IsClientError returns true when this put user meta tag forbidden response has a 4xx status code

func (*PutUserMetaTagForbidden) IsCode

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

IsCode returns true when this put user meta tag forbidden response a status code equal to that given

func (*PutUserMetaTagForbidden) IsRedirect

func (o *PutUserMetaTagForbidden) IsRedirect() bool

IsRedirect returns true when this put user meta tag forbidden response has a 3xx status code

func (*PutUserMetaTagForbidden) IsServerError

func (o *PutUserMetaTagForbidden) IsServerError() bool

IsServerError returns true when this put user meta tag forbidden response has a 5xx status code

func (*PutUserMetaTagForbidden) IsSuccess

func (o *PutUserMetaTagForbidden) IsSuccess() bool

IsSuccess returns true when this put user meta tag forbidden response has a 2xx status code

func (*PutUserMetaTagForbidden) String

func (o *PutUserMetaTagForbidden) String() string

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) Code added in v4.0.1

Code gets the status code for the put user meta tag internal server error response

func (*PutUserMetaTagInternalServerError) Error

func (*PutUserMetaTagInternalServerError) GetPayload

func (*PutUserMetaTagInternalServerError) IsClientError

func (o *PutUserMetaTagInternalServerError) IsClientError() bool

IsClientError returns true when this put user meta tag internal server error response has a 4xx status code

func (*PutUserMetaTagInternalServerError) IsCode

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

IsCode returns true when this put user meta tag internal server error response a status code equal to that given

func (*PutUserMetaTagInternalServerError) IsRedirect

func (o *PutUserMetaTagInternalServerError) IsRedirect() bool

IsRedirect returns true when this put user meta tag internal server error response has a 3xx status code

func (*PutUserMetaTagInternalServerError) IsServerError

func (o *PutUserMetaTagInternalServerError) IsServerError() bool

IsServerError returns true when this put user meta tag internal server error response has a 5xx status code

func (*PutUserMetaTagInternalServerError) IsSuccess

func (o *PutUserMetaTagInternalServerError) IsSuccess() bool

IsSuccess returns true when this put user meta tag internal server error response has a 2xx status code

func (*PutUserMetaTagInternalServerError) String

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) Code added in v4.0.1

func (o *PutUserMetaTagNotFound) Code() int

Code gets the status code for the put user meta tag not found response

func (*PutUserMetaTagNotFound) Error

func (o *PutUserMetaTagNotFound) Error() string

func (*PutUserMetaTagNotFound) GetPayload

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

func (*PutUserMetaTagNotFound) IsClientError

func (o *PutUserMetaTagNotFound) IsClientError() bool

IsClientError returns true when this put user meta tag not found response has a 4xx status code

func (*PutUserMetaTagNotFound) IsCode

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

IsCode returns true when this put user meta tag not found response a status code equal to that given

func (*PutUserMetaTagNotFound) IsRedirect

func (o *PutUserMetaTagNotFound) IsRedirect() bool

IsRedirect returns true when this put user meta tag not found response has a 3xx status code

func (*PutUserMetaTagNotFound) IsServerError

func (o *PutUserMetaTagNotFound) IsServerError() bool

IsServerError returns true when this put user meta tag not found response has a 5xx status code

func (*PutUserMetaTagNotFound) IsSuccess

func (o *PutUserMetaTagNotFound) IsSuccess() bool

IsSuccess returns true when this put user meta tag not found response has a 2xx status code

func (*PutUserMetaTagNotFound) String

func (o *PutUserMetaTagNotFound) String() string

type PutUserMetaTagOK

type PutUserMetaTagOK struct {
	Payload *models.RestPutUserMetaTagResponse
}

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

A successful response.

func NewPutUserMetaTagOK

func NewPutUserMetaTagOK() *PutUserMetaTagOK

NewPutUserMetaTagOK creates a PutUserMetaTagOK with default headers values

func (*PutUserMetaTagOK) Code added in v4.0.1

func (o *PutUserMetaTagOK) Code() int

Code gets the status code for the put user meta tag o k response

func (*PutUserMetaTagOK) Error

func (o *PutUserMetaTagOK) Error() string

func (*PutUserMetaTagOK) GetPayload

func (*PutUserMetaTagOK) IsClientError

func (o *PutUserMetaTagOK) IsClientError() bool

IsClientError returns true when this put user meta tag o k response has a 4xx status code

func (*PutUserMetaTagOK) IsCode

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

IsCode returns true when this put user meta tag o k response a status code equal to that given

func (*PutUserMetaTagOK) IsRedirect

func (o *PutUserMetaTagOK) IsRedirect() bool

IsRedirect returns true when this put user meta tag o k response has a 3xx status code

func (*PutUserMetaTagOK) IsServerError

func (o *PutUserMetaTagOK) IsServerError() bool

IsServerError returns true when this put user meta tag o k response has a 5xx status code

func (*PutUserMetaTagOK) IsSuccess

func (o *PutUserMetaTagOK) IsSuccess() bool

IsSuccess returns true when this put user meta tag o k response has a 2xx status code

func (*PutUserMetaTagOK) String

func (o *PutUserMetaTagOK) String() string

type PutUserMetaTagParams

type PutUserMetaTagParams struct {

	/* Namespace.

	   Add a tag value for this namespace
	*/
	Namespace string

	// Body.
	Body PutUserMetaTagBody

	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

func (o *PutUserMetaTagParams) SetBody(body PutUserMetaTagBody)

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) Code added in v4.0.1

func (o *PutUserMetaTagUnauthorized) Code() int

Code gets the status code for the put user meta tag unauthorized response

func (*PutUserMetaTagUnauthorized) Error

func (*PutUserMetaTagUnauthorized) IsClientError

func (o *PutUserMetaTagUnauthorized) IsClientError() bool

IsClientError returns true when this put user meta tag unauthorized response has a 4xx status code

func (*PutUserMetaTagUnauthorized) IsCode

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

IsCode returns true when this put user meta tag unauthorized response a status code equal to that given

func (*PutUserMetaTagUnauthorized) IsRedirect

func (o *PutUserMetaTagUnauthorized) IsRedirect() bool

IsRedirect returns true when this put user meta tag unauthorized response has a 3xx status code

func (*PutUserMetaTagUnauthorized) IsServerError

func (o *PutUserMetaTagUnauthorized) IsServerError() bool

IsServerError returns true when this put user meta tag unauthorized response has a 5xx status code

func (*PutUserMetaTagUnauthorized) IsSuccess

func (o *PutUserMetaTagUnauthorized) IsSuccess() bool

IsSuccess returns true when this put user meta tag unauthorized response has a 2xx status code

func (*PutUserMetaTagUnauthorized) String

func (o *PutUserMetaTagUnauthorized) String() string

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) Code added in v4.0.1

func (o *SearchUserMetaForbidden) Code() int

Code gets the status code for the search user meta forbidden response

func (*SearchUserMetaForbidden) Error

func (o *SearchUserMetaForbidden) Error() string

func (*SearchUserMetaForbidden) GetPayload

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

func (*SearchUserMetaForbidden) IsClientError

func (o *SearchUserMetaForbidden) IsClientError() bool

IsClientError returns true when this search user meta forbidden response has a 4xx status code

func (*SearchUserMetaForbidden) IsCode

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

IsCode returns true when this search user meta forbidden response a status code equal to that given

func (*SearchUserMetaForbidden) IsRedirect

func (o *SearchUserMetaForbidden) IsRedirect() bool

IsRedirect returns true when this search user meta forbidden response has a 3xx status code

func (*SearchUserMetaForbidden) IsServerError

func (o *SearchUserMetaForbidden) IsServerError() bool

IsServerError returns true when this search user meta forbidden response has a 5xx status code

func (*SearchUserMetaForbidden) IsSuccess

func (o *SearchUserMetaForbidden) IsSuccess() bool

IsSuccess returns true when this search user meta forbidden response has a 2xx status code

func (*SearchUserMetaForbidden) String

func (o *SearchUserMetaForbidden) String() string

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) Code added in v4.0.1

Code gets the status code for the search user meta internal server error response

func (*SearchUserMetaInternalServerError) Error

func (*SearchUserMetaInternalServerError) GetPayload

func (*SearchUserMetaInternalServerError) IsClientError

func (o *SearchUserMetaInternalServerError) IsClientError() bool

IsClientError returns true when this search user meta internal server error response has a 4xx status code

func (*SearchUserMetaInternalServerError) IsCode

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

IsCode returns true when this search user meta internal server error response a status code equal to that given

func (*SearchUserMetaInternalServerError) IsRedirect

func (o *SearchUserMetaInternalServerError) IsRedirect() bool

IsRedirect returns true when this search user meta internal server error response has a 3xx status code

func (*SearchUserMetaInternalServerError) IsServerError

func (o *SearchUserMetaInternalServerError) IsServerError() bool

IsServerError returns true when this search user meta internal server error response has a 5xx status code

func (*SearchUserMetaInternalServerError) IsSuccess

func (o *SearchUserMetaInternalServerError) IsSuccess() bool

IsSuccess returns true when this search user meta internal server error response has a 2xx status code

func (*SearchUserMetaInternalServerError) String

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) Code added in v4.0.1

func (o *SearchUserMetaNotFound) Code() int

Code gets the status code for the search user meta not found response

func (*SearchUserMetaNotFound) Error

func (o *SearchUserMetaNotFound) Error() string

func (*SearchUserMetaNotFound) GetPayload

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

func (*SearchUserMetaNotFound) IsClientError

func (o *SearchUserMetaNotFound) IsClientError() bool

IsClientError returns true when this search user meta not found response has a 4xx status code

func (*SearchUserMetaNotFound) IsCode

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

IsCode returns true when this search user meta not found response a status code equal to that given

func (*SearchUserMetaNotFound) IsRedirect

func (o *SearchUserMetaNotFound) IsRedirect() bool

IsRedirect returns true when this search user meta not found response has a 3xx status code

func (*SearchUserMetaNotFound) IsServerError

func (o *SearchUserMetaNotFound) IsServerError() bool

IsServerError returns true when this search user meta not found response has a 5xx status code

func (*SearchUserMetaNotFound) IsSuccess

func (o *SearchUserMetaNotFound) IsSuccess() bool

IsSuccess returns true when this search user meta not found response has a 2xx status code

func (*SearchUserMetaNotFound) String

func (o *SearchUserMetaNotFound) String() string

type SearchUserMetaOK

type SearchUserMetaOK struct {
	Payload *models.RestUserMetaCollection
}

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

A successful response.

func NewSearchUserMetaOK

func NewSearchUserMetaOK() *SearchUserMetaOK

NewSearchUserMetaOK creates a SearchUserMetaOK with default headers values

func (*SearchUserMetaOK) Code added in v4.0.1

func (o *SearchUserMetaOK) Code() int

Code gets the status code for the search user meta o k response

func (*SearchUserMetaOK) Error

func (o *SearchUserMetaOK) Error() string

func (*SearchUserMetaOK) GetPayload

func (*SearchUserMetaOK) IsClientError

func (o *SearchUserMetaOK) IsClientError() bool

IsClientError returns true when this search user meta o k response has a 4xx status code

func (*SearchUserMetaOK) IsCode

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

IsCode returns true when this search user meta o k response a status code equal to that given

func (*SearchUserMetaOK) IsRedirect

func (o *SearchUserMetaOK) IsRedirect() bool

IsRedirect returns true when this search user meta o k response has a 3xx status code

func (*SearchUserMetaOK) IsServerError

func (o *SearchUserMetaOK) IsServerError() bool

IsServerError returns true when this search user meta o k response has a 5xx status code

func (*SearchUserMetaOK) IsSuccess

func (o *SearchUserMetaOK) IsSuccess() bool

IsSuccess returns true when this search user meta o k response has a 2xx status code

func (*SearchUserMetaOK) String

func (o *SearchUserMetaOK) String() string

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) Code added in v4.0.1

func (o *SearchUserMetaUnauthorized) Code() int

Code gets the status code for the search user meta unauthorized response

func (*SearchUserMetaUnauthorized) Error

func (*SearchUserMetaUnauthorized) IsClientError

func (o *SearchUserMetaUnauthorized) IsClientError() bool

IsClientError returns true when this search user meta unauthorized response has a 4xx status code

func (*SearchUserMetaUnauthorized) IsCode

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

IsCode returns true when this search user meta unauthorized response a status code equal to that given

func (*SearchUserMetaUnauthorized) IsRedirect

func (o *SearchUserMetaUnauthorized) IsRedirect() bool

IsRedirect returns true when this search user meta unauthorized response has a 3xx status code

func (*SearchUserMetaUnauthorized) IsServerError

func (o *SearchUserMetaUnauthorized) IsServerError() bool

IsServerError returns true when this search user meta unauthorized response has a 5xx status code

func (*SearchUserMetaUnauthorized) IsSuccess

func (o *SearchUserMetaUnauthorized) IsSuccess() bool

IsSuccess returns true when this search user meta unauthorized response has a 2xx status code

func (*SearchUserMetaUnauthorized) String

func (o *SearchUserMetaUnauthorized) String() string

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) Code added in v4.0.1

func (o *UpdateUserMetaForbidden) Code() int

Code gets the status code for the update user meta forbidden response

func (*UpdateUserMetaForbidden) Error

func (o *UpdateUserMetaForbidden) Error() string

func (*UpdateUserMetaForbidden) GetPayload

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

func (*UpdateUserMetaForbidden) IsClientError

func (o *UpdateUserMetaForbidden) IsClientError() bool

IsClientError returns true when this update user meta forbidden response has a 4xx status code

func (*UpdateUserMetaForbidden) IsCode

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

IsCode returns true when this update user meta forbidden response a status code equal to that given

func (*UpdateUserMetaForbidden) IsRedirect

func (o *UpdateUserMetaForbidden) IsRedirect() bool

IsRedirect returns true when this update user meta forbidden response has a 3xx status code

func (*UpdateUserMetaForbidden) IsServerError

func (o *UpdateUserMetaForbidden) IsServerError() bool

IsServerError returns true when this update user meta forbidden response has a 5xx status code

func (*UpdateUserMetaForbidden) IsSuccess

func (o *UpdateUserMetaForbidden) IsSuccess() bool

IsSuccess returns true when this update user meta forbidden response has a 2xx status code

func (*UpdateUserMetaForbidden) String

func (o *UpdateUserMetaForbidden) String() string

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) Code added in v4.0.1

Code gets the status code for the update user meta internal server error response

func (*UpdateUserMetaInternalServerError) Error

func (*UpdateUserMetaInternalServerError) GetPayload

func (*UpdateUserMetaInternalServerError) IsClientError

func (o *UpdateUserMetaInternalServerError) IsClientError() bool

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

func (*UpdateUserMetaInternalServerError) IsCode

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

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

func (*UpdateUserMetaInternalServerError) IsRedirect

func (o *UpdateUserMetaInternalServerError) IsRedirect() bool

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

func (*UpdateUserMetaInternalServerError) IsServerError

func (o *UpdateUserMetaInternalServerError) IsServerError() bool

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

func (*UpdateUserMetaInternalServerError) IsSuccess

func (o *UpdateUserMetaInternalServerError) IsSuccess() bool

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

func (*UpdateUserMetaInternalServerError) String

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) Code added in v4.0.1

Code gets the status code for the update user meta namespace forbidden response

func (*UpdateUserMetaNamespaceForbidden) Error

func (*UpdateUserMetaNamespaceForbidden) GetPayload

func (*UpdateUserMetaNamespaceForbidden) IsClientError

func (o *UpdateUserMetaNamespaceForbidden) IsClientError() bool

IsClientError returns true when this update user meta namespace forbidden response has a 4xx status code

func (*UpdateUserMetaNamespaceForbidden) IsCode

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

IsCode returns true when this update user meta namespace forbidden response a status code equal to that given

func (*UpdateUserMetaNamespaceForbidden) IsRedirect

func (o *UpdateUserMetaNamespaceForbidden) IsRedirect() bool

IsRedirect returns true when this update user meta namespace forbidden response has a 3xx status code

func (*UpdateUserMetaNamespaceForbidden) IsServerError

func (o *UpdateUserMetaNamespaceForbidden) IsServerError() bool

IsServerError returns true when this update user meta namespace forbidden response has a 5xx status code

func (*UpdateUserMetaNamespaceForbidden) IsSuccess

func (o *UpdateUserMetaNamespaceForbidden) IsSuccess() bool

IsSuccess returns true when this update user meta namespace forbidden response has a 2xx status code

func (*UpdateUserMetaNamespaceForbidden) String

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) Code added in v4.0.1

Code gets the status code for the update user meta namespace internal server error response

func (*UpdateUserMetaNamespaceInternalServerError) Error

func (*UpdateUserMetaNamespaceInternalServerError) GetPayload

func (*UpdateUserMetaNamespaceInternalServerError) IsClientError

IsClientError returns true when this update user meta namespace internal server error response has a 4xx status code

func (*UpdateUserMetaNamespaceInternalServerError) IsCode

IsCode returns true when this update user meta namespace internal server error response a status code equal to that given

func (*UpdateUserMetaNamespaceInternalServerError) IsRedirect

IsRedirect returns true when this update user meta namespace internal server error response has a 3xx status code

func (*UpdateUserMetaNamespaceInternalServerError) IsServerError

IsServerError returns true when this update user meta namespace internal server error response has a 5xx status code

func (*UpdateUserMetaNamespaceInternalServerError) IsSuccess

IsSuccess returns true when this update user meta namespace internal server error response has a 2xx status code

func (*UpdateUserMetaNamespaceInternalServerError) String

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) Code added in v4.0.1

Code gets the status code for the update user meta namespace not found response

func (*UpdateUserMetaNamespaceNotFound) Error

func (*UpdateUserMetaNamespaceNotFound) GetPayload

func (*UpdateUserMetaNamespaceNotFound) IsClientError

func (o *UpdateUserMetaNamespaceNotFound) IsClientError() bool

IsClientError returns true when this update user meta namespace not found response has a 4xx status code

func (*UpdateUserMetaNamespaceNotFound) IsCode

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

IsCode returns true when this update user meta namespace not found response a status code equal to that given

func (*UpdateUserMetaNamespaceNotFound) IsRedirect

func (o *UpdateUserMetaNamespaceNotFound) IsRedirect() bool

IsRedirect returns true when this update user meta namespace not found response has a 3xx status code

func (*UpdateUserMetaNamespaceNotFound) IsServerError

func (o *UpdateUserMetaNamespaceNotFound) IsServerError() bool

IsServerError returns true when this update user meta namespace not found response has a 5xx status code

func (*UpdateUserMetaNamespaceNotFound) IsSuccess

func (o *UpdateUserMetaNamespaceNotFound) IsSuccess() bool

IsSuccess returns true when this update user meta namespace not found response has a 2xx status code

func (*UpdateUserMetaNamespaceNotFound) String

type UpdateUserMetaNamespaceOK

type UpdateUserMetaNamespaceOK struct {
	Payload *models.IdmUpdateUserMetaNamespaceResponse
}

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

A successful response.

func NewUpdateUserMetaNamespaceOK

func NewUpdateUserMetaNamespaceOK() *UpdateUserMetaNamespaceOK

NewUpdateUserMetaNamespaceOK creates a UpdateUserMetaNamespaceOK with default headers values

func (*UpdateUserMetaNamespaceOK) Code added in v4.0.1

func (o *UpdateUserMetaNamespaceOK) Code() int

Code gets the status code for the update user meta namespace o k response

func (*UpdateUserMetaNamespaceOK) Error

func (o *UpdateUserMetaNamespaceOK) Error() string

func (*UpdateUserMetaNamespaceOK) GetPayload

func (*UpdateUserMetaNamespaceOK) IsClientError

func (o *UpdateUserMetaNamespaceOK) IsClientError() bool

IsClientError returns true when this update user meta namespace o k response has a 4xx status code

func (*UpdateUserMetaNamespaceOK) IsCode

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

IsCode returns true when this update user meta namespace o k response a status code equal to that given

func (*UpdateUserMetaNamespaceOK) IsRedirect

func (o *UpdateUserMetaNamespaceOK) IsRedirect() bool

IsRedirect returns true when this update user meta namespace o k response has a 3xx status code

func (*UpdateUserMetaNamespaceOK) IsServerError

func (o *UpdateUserMetaNamespaceOK) IsServerError() bool

IsServerError returns true when this update user meta namespace o k response has a 5xx status code

func (*UpdateUserMetaNamespaceOK) IsSuccess

func (o *UpdateUserMetaNamespaceOK) IsSuccess() bool

IsSuccess returns true when this update user meta namespace o k response has a 2xx status code

func (*UpdateUserMetaNamespaceOK) String

func (o *UpdateUserMetaNamespaceOK) String() string

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) Code added in v4.0.1

Code gets the status code for the update user meta namespace unauthorized response

func (*UpdateUserMetaNamespaceUnauthorized) Error

func (*UpdateUserMetaNamespaceUnauthorized) IsClientError

func (o *UpdateUserMetaNamespaceUnauthorized) IsClientError() bool

IsClientError returns true when this update user meta namespace unauthorized response has a 4xx status code

func (*UpdateUserMetaNamespaceUnauthorized) IsCode

IsCode returns true when this update user meta namespace unauthorized response a status code equal to that given

func (*UpdateUserMetaNamespaceUnauthorized) IsRedirect

func (o *UpdateUserMetaNamespaceUnauthorized) IsRedirect() bool

IsRedirect returns true when this update user meta namespace unauthorized response has a 3xx status code

func (*UpdateUserMetaNamespaceUnauthorized) IsServerError

func (o *UpdateUserMetaNamespaceUnauthorized) IsServerError() bool

IsServerError returns true when this update user meta namespace unauthorized response has a 5xx status code

func (*UpdateUserMetaNamespaceUnauthorized) IsSuccess

IsSuccess returns true when this update user meta namespace unauthorized response has a 2xx status code

func (*UpdateUserMetaNamespaceUnauthorized) String

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) Code added in v4.0.1

func (o *UpdateUserMetaNotFound) Code() int

Code gets the status code for the update user meta not found response

func (*UpdateUserMetaNotFound) Error

func (o *UpdateUserMetaNotFound) Error() string

func (*UpdateUserMetaNotFound) GetPayload

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

func (*UpdateUserMetaNotFound) IsClientError

func (o *UpdateUserMetaNotFound) IsClientError() bool

IsClientError returns true when this update user meta not found response has a 4xx status code

func (*UpdateUserMetaNotFound) IsCode

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

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

func (*UpdateUserMetaNotFound) IsRedirect

func (o *UpdateUserMetaNotFound) IsRedirect() bool

IsRedirect returns true when this update user meta not found response has a 3xx status code

func (*UpdateUserMetaNotFound) IsServerError

func (o *UpdateUserMetaNotFound) IsServerError() bool

IsServerError returns true when this update user meta not found response has a 5xx status code

func (*UpdateUserMetaNotFound) IsSuccess

func (o *UpdateUserMetaNotFound) IsSuccess() bool

IsSuccess returns true when this update user meta not found response has a 2xx status code

func (*UpdateUserMetaNotFound) String

func (o *UpdateUserMetaNotFound) String() string

type UpdateUserMetaOK

type UpdateUserMetaOK struct {
	Payload *models.IdmUpdateUserMetaResponse
}

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

A successful response.

func NewUpdateUserMetaOK

func NewUpdateUserMetaOK() *UpdateUserMetaOK

NewUpdateUserMetaOK creates a UpdateUserMetaOK with default headers values

func (*UpdateUserMetaOK) Code added in v4.0.1

func (o *UpdateUserMetaOK) Code() int

Code gets the status code for the update user meta o k response

func (*UpdateUserMetaOK) Error

func (o *UpdateUserMetaOK) Error() string

func (*UpdateUserMetaOK) GetPayload

func (*UpdateUserMetaOK) IsClientError

func (o *UpdateUserMetaOK) IsClientError() bool

IsClientError returns true when this update user meta o k response has a 4xx status code

func (*UpdateUserMetaOK) IsCode

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

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

func (*UpdateUserMetaOK) IsRedirect

func (o *UpdateUserMetaOK) IsRedirect() bool

IsRedirect returns true when this update user meta o k response has a 3xx status code

func (*UpdateUserMetaOK) IsServerError

func (o *UpdateUserMetaOK) IsServerError() bool

IsServerError returns true when this update user meta o k response has a 5xx status code

func (*UpdateUserMetaOK) IsSuccess

func (o *UpdateUserMetaOK) IsSuccess() bool

IsSuccess returns true when this update user meta o k response has a 2xx status code

func (*UpdateUserMetaOK) String

func (o *UpdateUserMetaOK) String() string

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) Code added in v4.0.1

func (o *UpdateUserMetaUnauthorized) Code() int

Code gets the status code for the update user meta unauthorized response

func (*UpdateUserMetaUnauthorized) Error

func (*UpdateUserMetaUnauthorized) IsClientError

func (o *UpdateUserMetaUnauthorized) IsClientError() bool

IsClientError returns true when this update user meta unauthorized response has a 4xx status code

func (*UpdateUserMetaUnauthorized) IsCode

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

IsCode returns true when this update user meta unauthorized response a status code equal to that given

func (*UpdateUserMetaUnauthorized) IsRedirect

func (o *UpdateUserMetaUnauthorized) IsRedirect() bool

IsRedirect returns true when this update user meta unauthorized response has a 3xx status code

func (*UpdateUserMetaUnauthorized) IsServerError

func (o *UpdateUserMetaUnauthorized) IsServerError() bool

IsServerError returns true when this update user meta unauthorized response has a 5xx status code

func (*UpdateUserMetaUnauthorized) IsSuccess

func (o *UpdateUserMetaUnauthorized) IsSuccess() bool

IsSuccess returns true when this update user meta unauthorized response has a 2xx status code

func (*UpdateUserMetaUnauthorized) String

func (o *UpdateUserMetaUnauthorized) String() string

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) Code added in v4.0.1

func (o *UserBookmarksForbidden) Code() int

Code gets the status code for the user bookmarks forbidden response

func (*UserBookmarksForbidden) Error

func (o *UserBookmarksForbidden) Error() string

func (*UserBookmarksForbidden) GetPayload

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

func (*UserBookmarksForbidden) IsClientError

func (o *UserBookmarksForbidden) IsClientError() bool

IsClientError returns true when this user bookmarks forbidden response has a 4xx status code

func (*UserBookmarksForbidden) IsCode

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

IsCode returns true when this user bookmarks forbidden response a status code equal to that given

func (*UserBookmarksForbidden) IsRedirect

func (o *UserBookmarksForbidden) IsRedirect() bool

IsRedirect returns true when this user bookmarks forbidden response has a 3xx status code

func (*UserBookmarksForbidden) IsServerError

func (o *UserBookmarksForbidden) IsServerError() bool

IsServerError returns true when this user bookmarks forbidden response has a 5xx status code

func (*UserBookmarksForbidden) IsSuccess

func (o *UserBookmarksForbidden) IsSuccess() bool

IsSuccess returns true when this user bookmarks forbidden response has a 2xx status code

func (*UserBookmarksForbidden) String

func (o *UserBookmarksForbidden) String() string

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) Code added in v4.0.1

Code gets the status code for the user bookmarks internal server error response

func (*UserBookmarksInternalServerError) Error

func (*UserBookmarksInternalServerError) GetPayload

func (*UserBookmarksInternalServerError) IsClientError

func (o *UserBookmarksInternalServerError) IsClientError() bool

IsClientError returns true when this user bookmarks internal server error response has a 4xx status code

func (*UserBookmarksInternalServerError) IsCode

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

IsCode returns true when this user bookmarks internal server error response a status code equal to that given

func (*UserBookmarksInternalServerError) IsRedirect

func (o *UserBookmarksInternalServerError) IsRedirect() bool

IsRedirect returns true when this user bookmarks internal server error response has a 3xx status code

func (*UserBookmarksInternalServerError) IsServerError

func (o *UserBookmarksInternalServerError) IsServerError() bool

IsServerError returns true when this user bookmarks internal server error response has a 5xx status code

func (*UserBookmarksInternalServerError) IsSuccess

func (o *UserBookmarksInternalServerError) IsSuccess() bool

IsSuccess returns true when this user bookmarks internal server error response has a 2xx status code

func (*UserBookmarksInternalServerError) String

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) Code added in v4.0.1

func (o *UserBookmarksNotFound) Code() int

Code gets the status code for the user bookmarks not found response

func (*UserBookmarksNotFound) Error

func (o *UserBookmarksNotFound) Error() string

func (*UserBookmarksNotFound) GetPayload

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

func (*UserBookmarksNotFound) IsClientError

func (o *UserBookmarksNotFound) IsClientError() bool

IsClientError returns true when this user bookmarks not found response has a 4xx status code

func (*UserBookmarksNotFound) IsCode

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

IsCode returns true when this user bookmarks not found response a status code equal to that given

func (*UserBookmarksNotFound) IsRedirect

func (o *UserBookmarksNotFound) IsRedirect() bool

IsRedirect returns true when this user bookmarks not found response has a 3xx status code

func (*UserBookmarksNotFound) IsServerError

func (o *UserBookmarksNotFound) IsServerError() bool

IsServerError returns true when this user bookmarks not found response has a 5xx status code

func (*UserBookmarksNotFound) IsSuccess

func (o *UserBookmarksNotFound) IsSuccess() bool

IsSuccess returns true when this user bookmarks not found response has a 2xx status code

func (*UserBookmarksNotFound) String

func (o *UserBookmarksNotFound) String() string

type UserBookmarksOK

type UserBookmarksOK struct {
	Payload *models.RestBulkMetaResponse
}

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

A successful response.

func NewUserBookmarksOK

func NewUserBookmarksOK() *UserBookmarksOK

NewUserBookmarksOK creates a UserBookmarksOK with default headers values

func (*UserBookmarksOK) Code added in v4.0.1

func (o *UserBookmarksOK) Code() int

Code gets the status code for the user bookmarks o k response

func (*UserBookmarksOK) Error

func (o *UserBookmarksOK) Error() string

func (*UserBookmarksOK) GetPayload

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

func (*UserBookmarksOK) IsClientError

func (o *UserBookmarksOK) IsClientError() bool

IsClientError returns true when this user bookmarks o k response has a 4xx status code

func (*UserBookmarksOK) IsCode

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

IsCode returns true when this user bookmarks o k response a status code equal to that given

func (*UserBookmarksOK) IsRedirect

func (o *UserBookmarksOK) IsRedirect() bool

IsRedirect returns true when this user bookmarks o k response has a 3xx status code

func (*UserBookmarksOK) IsServerError

func (o *UserBookmarksOK) IsServerError() bool

IsServerError returns true when this user bookmarks o k response has a 5xx status code

func (*UserBookmarksOK) IsSuccess

func (o *UserBookmarksOK) IsSuccess() bool

IsSuccess returns true when this user bookmarks o k response has a 2xx status code

func (*UserBookmarksOK) String

func (o *UserBookmarksOK) String() string

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) Code added in v4.0.1

func (o *UserBookmarksUnauthorized) Code() int

Code gets the status code for the user bookmarks unauthorized response

func (*UserBookmarksUnauthorized) Error

func (o *UserBookmarksUnauthorized) Error() string

func (*UserBookmarksUnauthorized) IsClientError

func (o *UserBookmarksUnauthorized) IsClientError() bool

IsClientError returns true when this user bookmarks unauthorized response has a 4xx status code

func (*UserBookmarksUnauthorized) IsCode

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

IsCode returns true when this user bookmarks unauthorized response a status code equal to that given

func (*UserBookmarksUnauthorized) IsRedirect

func (o *UserBookmarksUnauthorized) IsRedirect() bool

IsRedirect returns true when this user bookmarks unauthorized response has a 3xx status code

func (*UserBookmarksUnauthorized) IsServerError

func (o *UserBookmarksUnauthorized) IsServerError() bool

IsServerError returns true when this user bookmarks unauthorized response has a 5xx status code

func (*UserBookmarksUnauthorized) IsSuccess

func (o *UserBookmarksUnauthorized) IsSuccess() bool

IsSuccess returns true when this user bookmarks unauthorized response has a 2xx status code

func (*UserBookmarksUnauthorized) String

func (o *UserBookmarksUnauthorized) String() string

Jump to

Keyboard shortcuts

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