auth_entity_controller

package
v0.0.0-...-7b3e9a7 Latest Latest
Warning

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

Go to latest
Published: Jan 26, 2022 License: Apache-2.0 Imports: 11 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for auth entity controller API

func (*Client) ListAuthEntity

func (a *Client) ListAuthEntity(params *ListAuthEntityParams, authInfo runtime.ClientAuthInfoWriter) (*ListAuthEntityOK, error)

ListAuthEntity lists

func (*Client) MultiDeleteAuthEntity

func (a *Client) MultiDeleteAuthEntity(params *MultiDeleteAuthEntityParams, authInfo runtime.ClientAuthInfoWriter) (*MultiDeleteAuthEntityOK, error)

MultiDeleteAuthEntity multis delete

func (*Client) ReadAuthEntity

func (a *Client) ReadAuthEntity(params *ReadAuthEntityParams, authInfo runtime.ClientAuthInfoWriter) (*ReadAuthEntityOK, error)

ReadAuthEntity reads

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	ListAuthEntity(params *ListAuthEntityParams, authInfo runtime.ClientAuthInfoWriter) (*ListAuthEntityOK, error)

	MultiDeleteAuthEntity(params *MultiDeleteAuthEntityParams, authInfo runtime.ClientAuthInfoWriter) (*MultiDeleteAuthEntityOK, error)

	ReadAuthEntity(params *ReadAuthEntityParams, authInfo runtime.ClientAuthInfoWriter) (*ReadAuthEntityOK, 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 auth entity controller API client.

type ListAuthEntityBadRequest

type ListAuthEntityBadRequest struct {
	Payload *models.APIResult
}

ListAuthEntityBadRequest handles this case with default header values.

Bad Request

func NewListAuthEntityBadRequest

func NewListAuthEntityBadRequest() *ListAuthEntityBadRequest

NewListAuthEntityBadRequest creates a ListAuthEntityBadRequest with default headers values

func (*ListAuthEntityBadRequest) Error

func (o *ListAuthEntityBadRequest) Error() string

func (*ListAuthEntityBadRequest) GetPayload

func (o *ListAuthEntityBadRequest) GetPayload() *models.APIResult

type ListAuthEntityConflict

type ListAuthEntityConflict struct {
	Payload *models.APIResult
}

ListAuthEntityConflict handles this case with default header values.

Conflict

func NewListAuthEntityConflict

func NewListAuthEntityConflict() *ListAuthEntityConflict

NewListAuthEntityConflict creates a ListAuthEntityConflict with default headers values

func (*ListAuthEntityConflict) Error

func (o *ListAuthEntityConflict) Error() string

func (*ListAuthEntityConflict) GetPayload

func (o *ListAuthEntityConflict) GetPayload() *models.APIResult

type ListAuthEntityForbidden

type ListAuthEntityForbidden struct {
	Payload *models.APIResult
}

ListAuthEntityForbidden handles this case with default header values.

Forbidden

func NewListAuthEntityForbidden

func NewListAuthEntityForbidden() *ListAuthEntityForbidden

NewListAuthEntityForbidden creates a ListAuthEntityForbidden with default headers values

func (*ListAuthEntityForbidden) Error

func (o *ListAuthEntityForbidden) Error() string

func (*ListAuthEntityForbidden) GetPayload

func (o *ListAuthEntityForbidden) GetPayload() *models.APIResult

type ListAuthEntityInternalServerError

type ListAuthEntityInternalServerError struct {
	Payload *models.APIResult
}

ListAuthEntityInternalServerError handles this case with default header values.

Internal Server Error

func NewListAuthEntityInternalServerError

func NewListAuthEntityInternalServerError() *ListAuthEntityInternalServerError

NewListAuthEntityInternalServerError creates a ListAuthEntityInternalServerError with default headers values

func (*ListAuthEntityInternalServerError) Error

func (*ListAuthEntityInternalServerError) GetPayload

type ListAuthEntityNotFound

type ListAuthEntityNotFound struct {
	Payload *models.APIResult
}

ListAuthEntityNotFound handles this case with default header values.

Not Found

func NewListAuthEntityNotFound

func NewListAuthEntityNotFound() *ListAuthEntityNotFound

NewListAuthEntityNotFound creates a ListAuthEntityNotFound with default headers values

func (*ListAuthEntityNotFound) Error

func (o *ListAuthEntityNotFound) Error() string

func (*ListAuthEntityNotFound) GetPayload

func (o *ListAuthEntityNotFound) GetPayload() *models.APIResult

type ListAuthEntityOK

type ListAuthEntityOK struct {
	Payload *models.APIResultListAuthenticationEntity
}

ListAuthEntityOK handles this case with default header values.

OK

func NewListAuthEntityOK

func NewListAuthEntityOK() *ListAuthEntityOK

NewListAuthEntityOK creates a ListAuthEntityOK with default headers values

func (*ListAuthEntityOK) Error

func (o *ListAuthEntityOK) Error() string

func (*ListAuthEntityOK) GetPayload

type ListAuthEntityParams

type ListAuthEntityParams struct {

	/*Embed
	  Fields to embed

	*/
	Embed *string
	/*Entityname
	  entityname

	*/
	Entityname *string
	/*Fields
	  Output fields

	*/
	Fields *string
	/*Fulltextsearch
	  If 'true', interpret 'q' parameter as full text search query, defaults to 'false'

	*/
	Fulltextsearch *bool
	/*Ldaptype
	  ldaptype

	*/
	Ldaptype *string
	/*Limit
	  A maximum number of returned objects in listing, if '-1' or '0' no limit is applied

	*/
	Limit *int32
	/*Orderby
	  Fields to order by

	*/
	Orderby *string
	/*Q
	  A search-spec of full text search query (see fulltextsearch parameter)

	*/
	Q *string
	/*Start
	  A start offset in object listing

	*/
	Start *int32

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

ListAuthEntityParams contains all the parameters to send to the API endpoint for the list auth entity operation typically these are written to a http.Request

func NewListAuthEntityParams

func NewListAuthEntityParams() *ListAuthEntityParams

NewListAuthEntityParams creates a new ListAuthEntityParams object with the default values initialized.

func NewListAuthEntityParamsWithContext

func NewListAuthEntityParamsWithContext(ctx context.Context) *ListAuthEntityParams

NewListAuthEntityParamsWithContext creates a new ListAuthEntityParams object with the default values initialized, and the ability to set a context for a request

func NewListAuthEntityParamsWithHTTPClient

func NewListAuthEntityParamsWithHTTPClient(client *http.Client) *ListAuthEntityParams

NewListAuthEntityParamsWithHTTPClient creates a new ListAuthEntityParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewListAuthEntityParamsWithTimeout

func NewListAuthEntityParamsWithTimeout(timeout time.Duration) *ListAuthEntityParams

NewListAuthEntityParamsWithTimeout creates a new ListAuthEntityParams object with the default values initialized, and the ability to set a timeout on a request

func (*ListAuthEntityParams) SetContext

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

SetContext adds the context to the list auth entity params

func (*ListAuthEntityParams) SetEmbed

func (o *ListAuthEntityParams) SetEmbed(embed *string)

SetEmbed adds the embed to the list auth entity params

func (*ListAuthEntityParams) SetEntityname

func (o *ListAuthEntityParams) SetEntityname(entityname *string)

SetEntityname adds the entityname to the list auth entity params

func (*ListAuthEntityParams) SetFields

func (o *ListAuthEntityParams) SetFields(fields *string)

SetFields adds the fields to the list auth entity params

func (*ListAuthEntityParams) SetFulltextsearch

func (o *ListAuthEntityParams) SetFulltextsearch(fulltextsearch *bool)

SetFulltextsearch adds the fulltextsearch to the list auth entity params

func (*ListAuthEntityParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list auth entity params

func (*ListAuthEntityParams) SetLdaptype

func (o *ListAuthEntityParams) SetLdaptype(ldaptype *string)

SetLdaptype adds the ldaptype to the list auth entity params

func (*ListAuthEntityParams) SetLimit

func (o *ListAuthEntityParams) SetLimit(limit *int32)

SetLimit adds the limit to the list auth entity params

func (*ListAuthEntityParams) SetOrderby

func (o *ListAuthEntityParams) SetOrderby(orderby *string)

SetOrderby adds the orderby to the list auth entity params

func (*ListAuthEntityParams) SetQ

func (o *ListAuthEntityParams) SetQ(q *string)

SetQ adds the q to the list auth entity params

func (*ListAuthEntityParams) SetStart

func (o *ListAuthEntityParams) SetStart(start *int32)

SetStart adds the start to the list auth entity params

func (*ListAuthEntityParams) SetTimeout

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

SetTimeout adds the timeout to the list auth entity params

func (*ListAuthEntityParams) WithContext

WithContext adds the context to the list auth entity params

func (*ListAuthEntityParams) WithEmbed

func (o *ListAuthEntityParams) WithEmbed(embed *string) *ListAuthEntityParams

WithEmbed adds the embed to the list auth entity params

func (*ListAuthEntityParams) WithEntityname

func (o *ListAuthEntityParams) WithEntityname(entityname *string) *ListAuthEntityParams

WithEntityname adds the entityname to the list auth entity params

func (*ListAuthEntityParams) WithFields

func (o *ListAuthEntityParams) WithFields(fields *string) *ListAuthEntityParams

WithFields adds the fields to the list auth entity params

func (*ListAuthEntityParams) WithFulltextsearch

func (o *ListAuthEntityParams) WithFulltextsearch(fulltextsearch *bool) *ListAuthEntityParams

WithFulltextsearch adds the fulltextsearch to the list auth entity params

func (*ListAuthEntityParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list auth entity params

func (*ListAuthEntityParams) WithLdaptype

func (o *ListAuthEntityParams) WithLdaptype(ldaptype *string) *ListAuthEntityParams

WithLdaptype adds the ldaptype to the list auth entity params

func (*ListAuthEntityParams) WithLimit

func (o *ListAuthEntityParams) WithLimit(limit *int32) *ListAuthEntityParams

WithLimit adds the limit to the list auth entity params

func (*ListAuthEntityParams) WithOrderby

func (o *ListAuthEntityParams) WithOrderby(orderby *string) *ListAuthEntityParams

WithOrderby adds the orderby to the list auth entity params

func (*ListAuthEntityParams) WithQ

WithQ adds the q to the list auth entity params

func (*ListAuthEntityParams) WithStart

func (o *ListAuthEntityParams) WithStart(start *int32) *ListAuthEntityParams

WithStart adds the start to the list auth entity params

func (*ListAuthEntityParams) WithTimeout

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

WithTimeout adds the timeout to the list auth entity params

func (*ListAuthEntityParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListAuthEntityReader

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

ListAuthEntityReader is a Reader for the ListAuthEntity structure.

func (*ListAuthEntityReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListAuthEntityUnauthorized

type ListAuthEntityUnauthorized struct {
	Payload *models.APIResult
}

ListAuthEntityUnauthorized handles this case with default header values.

Unauthorized

func NewListAuthEntityUnauthorized

func NewListAuthEntityUnauthorized() *ListAuthEntityUnauthorized

NewListAuthEntityUnauthorized creates a ListAuthEntityUnauthorized with default headers values

func (*ListAuthEntityUnauthorized) Error

func (*ListAuthEntityUnauthorized) GetPayload

func (o *ListAuthEntityUnauthorized) GetPayload() *models.APIResult

type MultiDeleteAuthEntityBadRequest

type MultiDeleteAuthEntityBadRequest struct {
	Payload *models.APIResult
}

MultiDeleteAuthEntityBadRequest handles this case with default header values.

Bad Request

func NewMultiDeleteAuthEntityBadRequest

func NewMultiDeleteAuthEntityBadRequest() *MultiDeleteAuthEntityBadRequest

NewMultiDeleteAuthEntityBadRequest creates a MultiDeleteAuthEntityBadRequest with default headers values

func (*MultiDeleteAuthEntityBadRequest) Error

func (*MultiDeleteAuthEntityBadRequest) GetPayload

type MultiDeleteAuthEntityConflict

type MultiDeleteAuthEntityConflict struct {
	Payload *models.APIResult
}

MultiDeleteAuthEntityConflict handles this case with default header values.

Conflict

func NewMultiDeleteAuthEntityConflict

func NewMultiDeleteAuthEntityConflict() *MultiDeleteAuthEntityConflict

NewMultiDeleteAuthEntityConflict creates a MultiDeleteAuthEntityConflict with default headers values

func (*MultiDeleteAuthEntityConflict) Error

func (*MultiDeleteAuthEntityConflict) GetPayload

type MultiDeleteAuthEntityForbidden

type MultiDeleteAuthEntityForbidden struct {
	Payload *models.APIResult
}

MultiDeleteAuthEntityForbidden handles this case with default header values.

Forbidden

func NewMultiDeleteAuthEntityForbidden

func NewMultiDeleteAuthEntityForbidden() *MultiDeleteAuthEntityForbidden

NewMultiDeleteAuthEntityForbidden creates a MultiDeleteAuthEntityForbidden with default headers values

func (*MultiDeleteAuthEntityForbidden) Error

func (*MultiDeleteAuthEntityForbidden) GetPayload

type MultiDeleteAuthEntityInternalServerError

type MultiDeleteAuthEntityInternalServerError struct {
	Payload *models.APIResult
}

MultiDeleteAuthEntityInternalServerError handles this case with default header values.

Internal Server Error

func NewMultiDeleteAuthEntityInternalServerError

func NewMultiDeleteAuthEntityInternalServerError() *MultiDeleteAuthEntityInternalServerError

NewMultiDeleteAuthEntityInternalServerError creates a MultiDeleteAuthEntityInternalServerError with default headers values

func (*MultiDeleteAuthEntityInternalServerError) Error

func (*MultiDeleteAuthEntityInternalServerError) GetPayload

type MultiDeleteAuthEntityNotFound

type MultiDeleteAuthEntityNotFound struct {
	Payload *models.APIResult
}

MultiDeleteAuthEntityNotFound handles this case with default header values.

Not Found

func NewMultiDeleteAuthEntityNotFound

func NewMultiDeleteAuthEntityNotFound() *MultiDeleteAuthEntityNotFound

NewMultiDeleteAuthEntityNotFound creates a MultiDeleteAuthEntityNotFound with default headers values

func (*MultiDeleteAuthEntityNotFound) Error

func (*MultiDeleteAuthEntityNotFound) GetPayload

type MultiDeleteAuthEntityOK

type MultiDeleteAuthEntityOK struct {
	Payload *models.APIResultVoid
}

MultiDeleteAuthEntityOK handles this case with default header values.

OK

func NewMultiDeleteAuthEntityOK

func NewMultiDeleteAuthEntityOK() *MultiDeleteAuthEntityOK

NewMultiDeleteAuthEntityOK creates a MultiDeleteAuthEntityOK with default headers values

func (*MultiDeleteAuthEntityOK) Error

func (o *MultiDeleteAuthEntityOK) Error() string

func (*MultiDeleteAuthEntityOK) GetPayload

func (o *MultiDeleteAuthEntityOK) GetPayload() *models.APIResultVoid

type MultiDeleteAuthEntityParams

type MultiDeleteAuthEntityParams struct {

	/*Ids
	  A comma-separated list of resource identifiers

	*/
	Ids string

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

MultiDeleteAuthEntityParams contains all the parameters to send to the API endpoint for the multi delete auth entity operation typically these are written to a http.Request

func NewMultiDeleteAuthEntityParams

func NewMultiDeleteAuthEntityParams() *MultiDeleteAuthEntityParams

NewMultiDeleteAuthEntityParams creates a new MultiDeleteAuthEntityParams object with the default values initialized.

func NewMultiDeleteAuthEntityParamsWithContext

func NewMultiDeleteAuthEntityParamsWithContext(ctx context.Context) *MultiDeleteAuthEntityParams

NewMultiDeleteAuthEntityParamsWithContext creates a new MultiDeleteAuthEntityParams object with the default values initialized, and the ability to set a context for a request

func NewMultiDeleteAuthEntityParamsWithHTTPClient

func NewMultiDeleteAuthEntityParamsWithHTTPClient(client *http.Client) *MultiDeleteAuthEntityParams

NewMultiDeleteAuthEntityParamsWithHTTPClient creates a new MultiDeleteAuthEntityParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewMultiDeleteAuthEntityParamsWithTimeout

func NewMultiDeleteAuthEntityParamsWithTimeout(timeout time.Duration) *MultiDeleteAuthEntityParams

NewMultiDeleteAuthEntityParamsWithTimeout creates a new MultiDeleteAuthEntityParams object with the default values initialized, and the ability to set a timeout on a request

func (*MultiDeleteAuthEntityParams) SetContext

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

SetContext adds the context to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) SetIds

func (o *MultiDeleteAuthEntityParams) SetIds(ids string)

SetIds adds the ids to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) SetTimeout

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

SetTimeout adds the timeout to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) WithContext

WithContext adds the context to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) WithIds

WithIds adds the ids to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) WithTimeout

WithTimeout adds the timeout to the multi delete auth entity params

func (*MultiDeleteAuthEntityParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type MultiDeleteAuthEntityReader

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

MultiDeleteAuthEntityReader is a Reader for the MultiDeleteAuthEntity structure.

func (*MultiDeleteAuthEntityReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type MultiDeleteAuthEntityUnauthorized

type MultiDeleteAuthEntityUnauthorized struct {
	Payload *models.APIResult
}

MultiDeleteAuthEntityUnauthorized handles this case with default header values.

Unauthorized

func NewMultiDeleteAuthEntityUnauthorized

func NewMultiDeleteAuthEntityUnauthorized() *MultiDeleteAuthEntityUnauthorized

NewMultiDeleteAuthEntityUnauthorized creates a MultiDeleteAuthEntityUnauthorized with default headers values

func (*MultiDeleteAuthEntityUnauthorized) Error

func (*MultiDeleteAuthEntityUnauthorized) GetPayload

type ReadAuthEntityBadRequest

type ReadAuthEntityBadRequest struct {
	Payload *models.APIResult
}

ReadAuthEntityBadRequest handles this case with default header values.

Bad Request

func NewReadAuthEntityBadRequest

func NewReadAuthEntityBadRequest() *ReadAuthEntityBadRequest

NewReadAuthEntityBadRequest creates a ReadAuthEntityBadRequest with default headers values

func (*ReadAuthEntityBadRequest) Error

func (o *ReadAuthEntityBadRequest) Error() string

func (*ReadAuthEntityBadRequest) GetPayload

func (o *ReadAuthEntityBadRequest) GetPayload() *models.APIResult

type ReadAuthEntityConflict

type ReadAuthEntityConflict struct {
	Payload *models.APIResult
}

ReadAuthEntityConflict handles this case with default header values.

Conflict

func NewReadAuthEntityConflict

func NewReadAuthEntityConflict() *ReadAuthEntityConflict

NewReadAuthEntityConflict creates a ReadAuthEntityConflict with default headers values

func (*ReadAuthEntityConflict) Error

func (o *ReadAuthEntityConflict) Error() string

func (*ReadAuthEntityConflict) GetPayload

func (o *ReadAuthEntityConflict) GetPayload() *models.APIResult

type ReadAuthEntityForbidden

type ReadAuthEntityForbidden struct {
	Payload *models.APIResult
}

ReadAuthEntityForbidden handles this case with default header values.

Forbidden

func NewReadAuthEntityForbidden

func NewReadAuthEntityForbidden() *ReadAuthEntityForbidden

NewReadAuthEntityForbidden creates a ReadAuthEntityForbidden with default headers values

func (*ReadAuthEntityForbidden) Error

func (o *ReadAuthEntityForbidden) Error() string

func (*ReadAuthEntityForbidden) GetPayload

func (o *ReadAuthEntityForbidden) GetPayload() *models.APIResult

type ReadAuthEntityInternalServerError

type ReadAuthEntityInternalServerError struct {
	Payload *models.APIResult
}

ReadAuthEntityInternalServerError handles this case with default header values.

Internal Server Error

func NewReadAuthEntityInternalServerError

func NewReadAuthEntityInternalServerError() *ReadAuthEntityInternalServerError

NewReadAuthEntityInternalServerError creates a ReadAuthEntityInternalServerError with default headers values

func (*ReadAuthEntityInternalServerError) Error

func (*ReadAuthEntityInternalServerError) GetPayload

type ReadAuthEntityNotFound

type ReadAuthEntityNotFound struct {
	Payload *models.APIResult
}

ReadAuthEntityNotFound handles this case with default header values.

Not Found

func NewReadAuthEntityNotFound

func NewReadAuthEntityNotFound() *ReadAuthEntityNotFound

NewReadAuthEntityNotFound creates a ReadAuthEntityNotFound with default headers values

func (*ReadAuthEntityNotFound) Error

func (o *ReadAuthEntityNotFound) Error() string

func (*ReadAuthEntityNotFound) GetPayload

func (o *ReadAuthEntityNotFound) GetPayload() *models.APIResult

type ReadAuthEntityOK

type ReadAuthEntityOK struct {
	Payload *models.APIResultAuthenticationEntity
}

ReadAuthEntityOK handles this case with default header values.

OK

func NewReadAuthEntityOK

func NewReadAuthEntityOK() *ReadAuthEntityOK

NewReadAuthEntityOK creates a ReadAuthEntityOK with default headers values

func (*ReadAuthEntityOK) Error

func (o *ReadAuthEntityOK) Error() string

func (*ReadAuthEntityOK) GetPayload

type ReadAuthEntityParams

type ReadAuthEntityParams struct {

	/*Embed
	  Fields to embed

	*/
	Embed *string
	/*Fields
	  Output fields

	*/
	Fields *string
	/*ID
	  id

	*/
	ID int64

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

ReadAuthEntityParams contains all the parameters to send to the API endpoint for the read auth entity operation typically these are written to a http.Request

func NewReadAuthEntityParams

func NewReadAuthEntityParams() *ReadAuthEntityParams

NewReadAuthEntityParams creates a new ReadAuthEntityParams object with the default values initialized.

func NewReadAuthEntityParamsWithContext

func NewReadAuthEntityParamsWithContext(ctx context.Context) *ReadAuthEntityParams

NewReadAuthEntityParamsWithContext creates a new ReadAuthEntityParams object with the default values initialized, and the ability to set a context for a request

func NewReadAuthEntityParamsWithHTTPClient

func NewReadAuthEntityParamsWithHTTPClient(client *http.Client) *ReadAuthEntityParams

NewReadAuthEntityParamsWithHTTPClient creates a new ReadAuthEntityParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewReadAuthEntityParamsWithTimeout

func NewReadAuthEntityParamsWithTimeout(timeout time.Duration) *ReadAuthEntityParams

NewReadAuthEntityParamsWithTimeout creates a new ReadAuthEntityParams object with the default values initialized, and the ability to set a timeout on a request

func (*ReadAuthEntityParams) SetContext

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

SetContext adds the context to the read auth entity params

func (*ReadAuthEntityParams) SetEmbed

func (o *ReadAuthEntityParams) SetEmbed(embed *string)

SetEmbed adds the embed to the read auth entity params

func (*ReadAuthEntityParams) SetFields

func (o *ReadAuthEntityParams) SetFields(fields *string)

SetFields adds the fields to the read auth entity params

func (*ReadAuthEntityParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the read auth entity params

func (*ReadAuthEntityParams) SetID

func (o *ReadAuthEntityParams) SetID(id int64)

SetID adds the id to the read auth entity params

func (*ReadAuthEntityParams) SetTimeout

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

SetTimeout adds the timeout to the read auth entity params

func (*ReadAuthEntityParams) WithContext

WithContext adds the context to the read auth entity params

func (*ReadAuthEntityParams) WithEmbed

func (o *ReadAuthEntityParams) WithEmbed(embed *string) *ReadAuthEntityParams

WithEmbed adds the embed to the read auth entity params

func (*ReadAuthEntityParams) WithFields

func (o *ReadAuthEntityParams) WithFields(fields *string) *ReadAuthEntityParams

WithFields adds the fields to the read auth entity params

func (*ReadAuthEntityParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the read auth entity params

func (*ReadAuthEntityParams) WithID

WithID adds the id to the read auth entity params

func (*ReadAuthEntityParams) WithTimeout

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

WithTimeout adds the timeout to the read auth entity params

func (*ReadAuthEntityParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ReadAuthEntityReader

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

ReadAuthEntityReader is a Reader for the ReadAuthEntity structure.

func (*ReadAuthEntityReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ReadAuthEntityUnauthorized

type ReadAuthEntityUnauthorized struct {
	Payload *models.APIResult
}

ReadAuthEntityUnauthorized handles this case with default header values.

Unauthorized

func NewReadAuthEntityUnauthorized

func NewReadAuthEntityUnauthorized() *ReadAuthEntityUnauthorized

NewReadAuthEntityUnauthorized creates a ReadAuthEntityUnauthorized with default headers values

func (*ReadAuthEntityUnauthorized) Error

func (*ReadAuthEntityUnauthorized) GetPayload

func (o *ReadAuthEntityUnauthorized) GetPayload() *models.APIResult

Jump to

Keyboard shortcuts

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