oauth2

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

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

Go to latest
Published: Jan 29, 2024 License: Apache-2.0 Imports: 11 Imported by: 5

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthorizeFound

type AuthorizeFound struct {
}

AuthorizeFound describes a response with status code 302, with default header values.

Empty response

func NewAuthorizeFound

func NewAuthorizeFound() *AuthorizeFound

NewAuthorizeFound creates a AuthorizeFound with default headers values

func (*AuthorizeFound) Code

func (o *AuthorizeFound) Code() int

Code gets the status code for the authorize found response

func (*AuthorizeFound) Error

func (o *AuthorizeFound) Error() string

func (*AuthorizeFound) IsClientError

func (o *AuthorizeFound) IsClientError() bool

IsClientError returns true when this authorize found response has a 4xx status code

func (*AuthorizeFound) IsCode

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

IsCode returns true when this authorize found response a status code equal to that given

func (*AuthorizeFound) IsRedirect

func (o *AuthorizeFound) IsRedirect() bool

IsRedirect returns true when this authorize found response has a 3xx status code

func (*AuthorizeFound) IsServerError

func (o *AuthorizeFound) IsServerError() bool

IsServerError returns true when this authorize found response has a 5xx status code

func (*AuthorizeFound) IsSuccess

func (o *AuthorizeFound) IsSuccess() bool

IsSuccess returns true when this authorize found response has a 2xx status code

func (*AuthorizeFound) String

func (o *AuthorizeFound) String() string

type AuthorizeNotFound

type AuthorizeNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewAuthorizeNotFound

func NewAuthorizeNotFound() *AuthorizeNotFound

NewAuthorizeNotFound creates a AuthorizeNotFound with default headers values

func (*AuthorizeNotFound) Code

func (o *AuthorizeNotFound) Code() int

Code gets the status code for the authorize not found response

func (*AuthorizeNotFound) Error

func (o *AuthorizeNotFound) Error() string

func (*AuthorizeNotFound) GetPayload

func (o *AuthorizeNotFound) GetPayload() *models.GenericError

func (*AuthorizeNotFound) IsClientError

func (o *AuthorizeNotFound) IsClientError() bool

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

func (*AuthorizeNotFound) IsCode

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

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

func (*AuthorizeNotFound) IsRedirect

func (o *AuthorizeNotFound) IsRedirect() bool

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

func (*AuthorizeNotFound) IsServerError

func (o *AuthorizeNotFound) IsServerError() bool

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

func (*AuthorizeNotFound) IsSuccess

func (o *AuthorizeNotFound) IsSuccess() bool

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

func (*AuthorizeNotFound) String

func (o *AuthorizeNotFound) String() string

type AuthorizeParams

type AuthorizeParams struct {

	// Claims.
	Claims *string

	/* ClientID.

	     Client application identifier


	You can find the `client_id` value on the Settings page of the required client application.
	*/
	ClientID string

	// CodeChallenge.
	CodeChallenge *string

	// CodeChallengeMethod.
	CodeChallengeMethod *string

	/* DpopJkt.

	   Thumbprint of the DPoP public key
	*/
	DpopJkt *string

	// IdpHint.
	IdpHint *string

	// Nonce.
	Nonce *string

	// RedirectURI.
	RedirectURI *string

	// Request.
	Request *string

	// RequestURI.
	RequestURI *string

	// ResponseType.
	ResponseType string

	// Scope.
	Scope *string

	// State.
	State *string

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

AuthorizeParams contains all the parameters to send to the API endpoint

for the authorize operation.

Typically these are written to a http.Request.

func NewAuthorizeParams

func NewAuthorizeParams() *AuthorizeParams

NewAuthorizeParams creates a new AuthorizeParams 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 NewAuthorizeParamsWithContext

func NewAuthorizeParamsWithContext(ctx context.Context) *AuthorizeParams

NewAuthorizeParamsWithContext creates a new AuthorizeParams object with the ability to set a context for a request.

func NewAuthorizeParamsWithHTTPClient

func NewAuthorizeParamsWithHTTPClient(client *http.Client) *AuthorizeParams

NewAuthorizeParamsWithHTTPClient creates a new AuthorizeParams object with the ability to set a custom HTTPClient for a request.

func NewAuthorizeParamsWithTimeout

func NewAuthorizeParamsWithTimeout(timeout time.Duration) *AuthorizeParams

NewAuthorizeParamsWithTimeout creates a new AuthorizeParams object with the ability to set a timeout on a request.

func (*AuthorizeParams) SetClaims

func (o *AuthorizeParams) SetClaims(claims *string)

SetClaims adds the claims to the authorize params

func (*AuthorizeParams) SetClientID

func (o *AuthorizeParams) SetClientID(clientID string)

SetClientID adds the clientId to the authorize params

func (*AuthorizeParams) SetCodeChallenge

func (o *AuthorizeParams) SetCodeChallenge(codeChallenge *string)

SetCodeChallenge adds the codeChallenge to the authorize params

func (*AuthorizeParams) SetCodeChallengeMethod

func (o *AuthorizeParams) SetCodeChallengeMethod(codeChallengeMethod *string)

SetCodeChallengeMethod adds the codeChallengeMethod to the authorize params

func (*AuthorizeParams) SetContext

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

SetContext adds the context to the authorize params

func (*AuthorizeParams) SetDefaults

func (o *AuthorizeParams) SetDefaults()

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

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

func (*AuthorizeParams) SetDpopJkt

func (o *AuthorizeParams) SetDpopJkt(dpopJkt *string)

SetDpopJkt adds the dpopJkt to the authorize params

func (*AuthorizeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the authorize params

func (*AuthorizeParams) SetIdpHint

func (o *AuthorizeParams) SetIdpHint(idpHint *string)

SetIdpHint adds the idpHint to the authorize params

func (*AuthorizeParams) SetNonce

func (o *AuthorizeParams) SetNonce(nonce *string)

SetNonce adds the nonce to the authorize params

func (*AuthorizeParams) SetRedirectURI

func (o *AuthorizeParams) SetRedirectURI(redirectURI *string)

SetRedirectURI adds the redirectUri to the authorize params

func (*AuthorizeParams) SetRequest

func (o *AuthorizeParams) SetRequest(request *string)

SetRequest adds the request to the authorize params

func (*AuthorizeParams) SetRequestURI

func (o *AuthorizeParams) SetRequestURI(requestURI *string)

SetRequestURI adds the requestUri to the authorize params

func (*AuthorizeParams) SetResponseType

func (o *AuthorizeParams) SetResponseType(responseType string)

SetResponseType adds the responseType to the authorize params

func (*AuthorizeParams) SetScope

func (o *AuthorizeParams) SetScope(scope *string)

SetScope adds the scope to the authorize params

func (*AuthorizeParams) SetState

func (o *AuthorizeParams) SetState(state *string)

SetState adds the state to the authorize params

func (*AuthorizeParams) SetTimeout

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

SetTimeout adds the timeout to the authorize params

func (*AuthorizeParams) WithClaims

func (o *AuthorizeParams) WithClaims(claims *string) *AuthorizeParams

WithClaims adds the claims to the authorize params

func (*AuthorizeParams) WithClientID

func (o *AuthorizeParams) WithClientID(clientID string) *AuthorizeParams

WithClientID adds the clientID to the authorize params

func (*AuthorizeParams) WithCodeChallenge

func (o *AuthorizeParams) WithCodeChallenge(codeChallenge *string) *AuthorizeParams

WithCodeChallenge adds the codeChallenge to the authorize params

func (*AuthorizeParams) WithCodeChallengeMethod

func (o *AuthorizeParams) WithCodeChallengeMethod(codeChallengeMethod *string) *AuthorizeParams

WithCodeChallengeMethod adds the codeChallengeMethod to the authorize params

func (*AuthorizeParams) WithContext

func (o *AuthorizeParams) WithContext(ctx context.Context) *AuthorizeParams

WithContext adds the context to the authorize params

func (*AuthorizeParams) WithDefaults

func (o *AuthorizeParams) WithDefaults() *AuthorizeParams

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

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

func (*AuthorizeParams) WithDpopJkt

func (o *AuthorizeParams) WithDpopJkt(dpopJkt *string) *AuthorizeParams

WithDpopJkt adds the dpopJkt to the authorize params

func (*AuthorizeParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the authorize params

func (*AuthorizeParams) WithIdpHint

func (o *AuthorizeParams) WithIdpHint(idpHint *string) *AuthorizeParams

WithIdpHint adds the idpHint to the authorize params

func (*AuthorizeParams) WithNonce

func (o *AuthorizeParams) WithNonce(nonce *string) *AuthorizeParams

WithNonce adds the nonce to the authorize params

func (*AuthorizeParams) WithRedirectURI

func (o *AuthorizeParams) WithRedirectURI(redirectURI *string) *AuthorizeParams

WithRedirectURI adds the redirectURI to the authorize params

func (*AuthorizeParams) WithRequest

func (o *AuthorizeParams) WithRequest(request *string) *AuthorizeParams

WithRequest adds the request to the authorize params

func (*AuthorizeParams) WithRequestURI

func (o *AuthorizeParams) WithRequestURI(requestURI *string) *AuthorizeParams

WithRequestURI adds the requestURI to the authorize params

func (*AuthorizeParams) WithResponseType

func (o *AuthorizeParams) WithResponseType(responseType string) *AuthorizeParams

WithResponseType adds the responseType to the authorize params

func (*AuthorizeParams) WithScope

func (o *AuthorizeParams) WithScope(scope *string) *AuthorizeParams

WithScope adds the scope to the authorize params

func (*AuthorizeParams) WithState

func (o *AuthorizeParams) WithState(state *string) *AuthorizeParams

WithState adds the state to the authorize params

func (*AuthorizeParams) WithTimeout

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

WithTimeout adds the timeout to the authorize params

func (*AuthorizeParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type AuthorizeReader

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

AuthorizeReader is a Reader for the Authorize structure.

func (*AuthorizeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type AuthorizeTooManyRequests

type AuthorizeTooManyRequests struct {
	Payload *models.GenericError
}

AuthorizeTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewAuthorizeTooManyRequests

func NewAuthorizeTooManyRequests() *AuthorizeTooManyRequests

NewAuthorizeTooManyRequests creates a AuthorizeTooManyRequests with default headers values

func (*AuthorizeTooManyRequests) Code

func (o *AuthorizeTooManyRequests) Code() int

Code gets the status code for the authorize too many requests response

func (*AuthorizeTooManyRequests) Error

func (o *AuthorizeTooManyRequests) Error() string

func (*AuthorizeTooManyRequests) GetPayload

func (o *AuthorizeTooManyRequests) GetPayload() *models.GenericError

func (*AuthorizeTooManyRequests) IsClientError

func (o *AuthorizeTooManyRequests) IsClientError() bool

IsClientError returns true when this authorize too many requests response has a 4xx status code

func (*AuthorizeTooManyRequests) IsCode

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

IsCode returns true when this authorize too many requests response a status code equal to that given

func (*AuthorizeTooManyRequests) IsRedirect

func (o *AuthorizeTooManyRequests) IsRedirect() bool

IsRedirect returns true when this authorize too many requests response has a 3xx status code

func (*AuthorizeTooManyRequests) IsServerError

func (o *AuthorizeTooManyRequests) IsServerError() bool

IsServerError returns true when this authorize too many requests response has a 5xx status code

func (*AuthorizeTooManyRequests) IsSuccess

func (o *AuthorizeTooManyRequests) IsSuccess() bool

IsSuccess returns true when this authorize too many requests response has a 2xx status code

func (*AuthorizeTooManyRequests) String

func (o *AuthorizeTooManyRequests) String() string

type AuthorizeUnauthorized

type AuthorizeUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewAuthorizeUnauthorized

func NewAuthorizeUnauthorized() *AuthorizeUnauthorized

NewAuthorizeUnauthorized creates a AuthorizeUnauthorized with default headers values

func (*AuthorizeUnauthorized) Code

func (o *AuthorizeUnauthorized) Code() int

Code gets the status code for the authorize unauthorized response

func (*AuthorizeUnauthorized) Error

func (o *AuthorizeUnauthorized) Error() string

func (*AuthorizeUnauthorized) GetPayload

func (o *AuthorizeUnauthorized) GetPayload() *models.GenericError

func (*AuthorizeUnauthorized) IsClientError

func (o *AuthorizeUnauthorized) IsClientError() bool

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

func (*AuthorizeUnauthorized) IsCode

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

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

func (*AuthorizeUnauthorized) IsRedirect

func (o *AuthorizeUnauthorized) IsRedirect() bool

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

func (*AuthorizeUnauthorized) IsServerError

func (o *AuthorizeUnauthorized) IsServerError() bool

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

func (*AuthorizeUnauthorized) IsSuccess

func (o *AuthorizeUnauthorized) IsSuccess() bool

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

func (*AuthorizeUnauthorized) String

func (o *AuthorizeUnauthorized) String() string

type BackchannelAuthenticationBadRequest

type BackchannelAuthenticationBadRequest struct {
	Payload *models.BackchannelAuthenticationError
}

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

Backchannel authentication error

func NewBackchannelAuthenticationBadRequest

func NewBackchannelAuthenticationBadRequest() *BackchannelAuthenticationBadRequest

NewBackchannelAuthenticationBadRequest creates a BackchannelAuthenticationBadRequest with default headers values

func (*BackchannelAuthenticationBadRequest) Code

Code gets the status code for the backchannel authentication bad request response

func (*BackchannelAuthenticationBadRequest) Error

func (*BackchannelAuthenticationBadRequest) GetPayload

func (*BackchannelAuthenticationBadRequest) IsClientError

func (o *BackchannelAuthenticationBadRequest) IsClientError() bool

IsClientError returns true when this backchannel authentication bad request response has a 4xx status code

func (*BackchannelAuthenticationBadRequest) IsCode

IsCode returns true when this backchannel authentication bad request response a status code equal to that given

func (*BackchannelAuthenticationBadRequest) IsRedirect

func (o *BackchannelAuthenticationBadRequest) IsRedirect() bool

IsRedirect returns true when this backchannel authentication bad request response has a 3xx status code

func (*BackchannelAuthenticationBadRequest) IsServerError

func (o *BackchannelAuthenticationBadRequest) IsServerError() bool

IsServerError returns true when this backchannel authentication bad request response has a 5xx status code

func (*BackchannelAuthenticationBadRequest) IsSuccess

IsSuccess returns true when this backchannel authentication bad request response has a 2xx status code

func (*BackchannelAuthenticationBadRequest) String

type BackchannelAuthenticationOK

type BackchannelAuthenticationOK struct {
	Payload *models.BackchannelAuthenticationResponse
}

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

Backchannel authentication response

func NewBackchannelAuthenticationOK

func NewBackchannelAuthenticationOK() *BackchannelAuthenticationOK

NewBackchannelAuthenticationOK creates a BackchannelAuthenticationOK with default headers values

func (*BackchannelAuthenticationOK) Code

func (o *BackchannelAuthenticationOK) Code() int

Code gets the status code for the backchannel authentication o k response

func (*BackchannelAuthenticationOK) Error

func (*BackchannelAuthenticationOK) GetPayload

func (*BackchannelAuthenticationOK) IsClientError

func (o *BackchannelAuthenticationOK) IsClientError() bool

IsClientError returns true when this backchannel authentication o k response has a 4xx status code

func (*BackchannelAuthenticationOK) IsCode

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

IsCode returns true when this backchannel authentication o k response a status code equal to that given

func (*BackchannelAuthenticationOK) IsRedirect

func (o *BackchannelAuthenticationOK) IsRedirect() bool

IsRedirect returns true when this backchannel authentication o k response has a 3xx status code

func (*BackchannelAuthenticationOK) IsServerError

func (o *BackchannelAuthenticationOK) IsServerError() bool

IsServerError returns true when this backchannel authentication o k response has a 5xx status code

func (*BackchannelAuthenticationOK) IsSuccess

func (o *BackchannelAuthenticationOK) IsSuccess() bool

IsSuccess returns true when this backchannel authentication o k response has a 2xx status code

func (*BackchannelAuthenticationOK) String

func (o *BackchannelAuthenticationOK) String() string

type BackchannelAuthenticationParams

type BackchannelAuthenticationParams struct {

	/* AcrValues.

	     Requested Authentication Context Class Reference values.
	A space-separated string that specifies the acr values that the OpenID Provider is being requested to use for processing this Authentication Request, with the values appearing in order of preference
	*/
	AcrValues *string

	/* BindingMessage.

	   A human-readable identifier or message intended to be displayed on both the consumption device and the authentication device to interlock them together for the transaction by way of a visual cue for the end-user.
	*/
	BindingMessage *string

	/* ClientAssertion.

	   client assertion
	*/
	ClientAssertion *string

	/* ClientAssertionType.

	   client assertion type
	*/
	ClientAssertionType *string

	// ClientID.
	ClientID *string

	/* ClientNotificationToken.

	   It is a bearer token provided by the Client that will be used by the OpenID Provider to authenticate the callback request to the Client.
	*/
	ClientNotificationToken *string

	// ClientSecret.
	ClientSecret *string

	/* IDTokenHint.

	   An ID Token previously issued to the Client by the OpenID Provider being passed back as a hint to identify the end-user for whom authentication is being requested.
	*/
	IDTokenHint *string

	/* LoginHint.

	   A hint to the OpenID Provider regarding the end-user for whom authentication is being requested.
	*/
	LoginHint *string

	/* LoginHintToken.

	   A token containing information identifying the end-user for whom authentication is being requested
	*/
	LoginHintToken *string

	/* Request.

	   signed authentication request
	*/
	Request *string

	/* RequestedExpiry.

	   A positive integer allowing the client to request the expires_in value for the auth_req_id the server will return.

	   Format: int64
	*/
	RequestedExpiry *int64

	/* Scope.

	   The scope of the access request. Must contain openid scope value.
	*/
	Scope *string

	/* UserCode.

	   A secret code, such as a password or pin, that is known only to the user but verifiable by the OP. The code is used to authorize sending an authentication request to the user's authentication device.
	*/
	UserCode *string

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

BackchannelAuthenticationParams contains all the parameters to send to the API endpoint

for the backchannel authentication operation.

Typically these are written to a http.Request.

func NewBackchannelAuthenticationParams

func NewBackchannelAuthenticationParams() *BackchannelAuthenticationParams

NewBackchannelAuthenticationParams creates a new BackchannelAuthenticationParams 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 NewBackchannelAuthenticationParamsWithContext

func NewBackchannelAuthenticationParamsWithContext(ctx context.Context) *BackchannelAuthenticationParams

NewBackchannelAuthenticationParamsWithContext creates a new BackchannelAuthenticationParams object with the ability to set a context for a request.

func NewBackchannelAuthenticationParamsWithHTTPClient

func NewBackchannelAuthenticationParamsWithHTTPClient(client *http.Client) *BackchannelAuthenticationParams

NewBackchannelAuthenticationParamsWithHTTPClient creates a new BackchannelAuthenticationParams object with the ability to set a custom HTTPClient for a request.

func NewBackchannelAuthenticationParamsWithTimeout

func NewBackchannelAuthenticationParamsWithTimeout(timeout time.Duration) *BackchannelAuthenticationParams

NewBackchannelAuthenticationParamsWithTimeout creates a new BackchannelAuthenticationParams object with the ability to set a timeout on a request.

func (*BackchannelAuthenticationParams) SetAcrValues

func (o *BackchannelAuthenticationParams) SetAcrValues(acrValues *string)

SetAcrValues adds the acrValues to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetBindingMessage

func (o *BackchannelAuthenticationParams) SetBindingMessage(bindingMessage *string)

SetBindingMessage adds the bindingMessage to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetClientAssertion

func (o *BackchannelAuthenticationParams) SetClientAssertion(clientAssertion *string)

SetClientAssertion adds the clientAssertion to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetClientAssertionType

func (o *BackchannelAuthenticationParams) SetClientAssertionType(clientAssertionType *string)

SetClientAssertionType adds the clientAssertionType to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetClientID

func (o *BackchannelAuthenticationParams) SetClientID(clientID *string)

SetClientID adds the clientId to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetClientNotificationToken

func (o *BackchannelAuthenticationParams) SetClientNotificationToken(clientNotificationToken *string)

SetClientNotificationToken adds the clientNotificationToken to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetClientSecret

func (o *BackchannelAuthenticationParams) SetClientSecret(clientSecret *string)

SetClientSecret adds the clientSecret to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetContext

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

SetContext adds the context to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetDefaults

func (o *BackchannelAuthenticationParams) SetDefaults()

SetDefaults hydrates default values in the backchannel authentication params (not the query body).

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

func (*BackchannelAuthenticationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetIDTokenHint

func (o *BackchannelAuthenticationParams) SetIDTokenHint(iDTokenHint *string)

SetIDTokenHint adds the idTokenHint to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetLoginHint

func (o *BackchannelAuthenticationParams) SetLoginHint(loginHint *string)

SetLoginHint adds the loginHint to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetLoginHintToken

func (o *BackchannelAuthenticationParams) SetLoginHintToken(loginHintToken *string)

SetLoginHintToken adds the loginHintToken to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetRequest

func (o *BackchannelAuthenticationParams) SetRequest(request *string)

SetRequest adds the request to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetRequestedExpiry

func (o *BackchannelAuthenticationParams) SetRequestedExpiry(requestedExpiry *int64)

SetRequestedExpiry adds the requestedExpiry to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetScope

func (o *BackchannelAuthenticationParams) SetScope(scope *string)

SetScope adds the scope to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetTimeout

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

SetTimeout adds the timeout to the backchannel authentication params

func (*BackchannelAuthenticationParams) SetUserCode

func (o *BackchannelAuthenticationParams) SetUserCode(userCode *string)

SetUserCode adds the userCode to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithAcrValues

WithAcrValues adds the acrValues to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithBindingMessage

func (o *BackchannelAuthenticationParams) WithBindingMessage(bindingMessage *string) *BackchannelAuthenticationParams

WithBindingMessage adds the bindingMessage to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithClientAssertion

func (o *BackchannelAuthenticationParams) WithClientAssertion(clientAssertion *string) *BackchannelAuthenticationParams

WithClientAssertion adds the clientAssertion to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithClientAssertionType

func (o *BackchannelAuthenticationParams) WithClientAssertionType(clientAssertionType *string) *BackchannelAuthenticationParams

WithClientAssertionType adds the clientAssertionType to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithClientID

WithClientID adds the clientID to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithClientNotificationToken

func (o *BackchannelAuthenticationParams) WithClientNotificationToken(clientNotificationToken *string) *BackchannelAuthenticationParams

WithClientNotificationToken adds the clientNotificationToken to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithClientSecret

func (o *BackchannelAuthenticationParams) WithClientSecret(clientSecret *string) *BackchannelAuthenticationParams

WithClientSecret adds the clientSecret to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithContext

WithContext adds the context to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithDefaults

WithDefaults hydrates default values in the backchannel authentication params (not the query body).

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

func (*BackchannelAuthenticationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithIDTokenHint

WithIDTokenHint adds the iDTokenHint to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithLoginHint

WithLoginHint adds the loginHint to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithLoginHintToken

func (o *BackchannelAuthenticationParams) WithLoginHintToken(loginHintToken *string) *BackchannelAuthenticationParams

WithLoginHintToken adds the loginHintToken to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithRequest

WithRequest adds the request to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithRequestedExpiry

func (o *BackchannelAuthenticationParams) WithRequestedExpiry(requestedExpiry *int64) *BackchannelAuthenticationParams

WithRequestedExpiry adds the requestedExpiry to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithScope

WithScope adds the scope to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithTimeout

WithTimeout adds the timeout to the backchannel authentication params

func (*BackchannelAuthenticationParams) WithUserCode

WithUserCode adds the userCode to the backchannel authentication params

func (*BackchannelAuthenticationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type BackchannelAuthenticationReader

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

BackchannelAuthenticationReader is a Reader for the BackchannelAuthentication structure.

func (*BackchannelAuthenticationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type BackchannelAuthenticationUnauthorized

type BackchannelAuthenticationUnauthorized struct {
	Payload *models.BackchannelAuthenticationError
}

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

Backchannel authentication error

func NewBackchannelAuthenticationUnauthorized

func NewBackchannelAuthenticationUnauthorized() *BackchannelAuthenticationUnauthorized

NewBackchannelAuthenticationUnauthorized creates a BackchannelAuthenticationUnauthorized with default headers values

func (*BackchannelAuthenticationUnauthorized) Code

Code gets the status code for the backchannel authentication unauthorized response

func (*BackchannelAuthenticationUnauthorized) Error

func (*BackchannelAuthenticationUnauthorized) GetPayload

func (*BackchannelAuthenticationUnauthorized) IsClientError

func (o *BackchannelAuthenticationUnauthorized) IsClientError() bool

IsClientError returns true when this backchannel authentication unauthorized response has a 4xx status code

func (*BackchannelAuthenticationUnauthorized) IsCode

IsCode returns true when this backchannel authentication unauthorized response a status code equal to that given

func (*BackchannelAuthenticationUnauthorized) IsRedirect

IsRedirect returns true when this backchannel authentication unauthorized response has a 3xx status code

func (*BackchannelAuthenticationUnauthorized) IsServerError

func (o *BackchannelAuthenticationUnauthorized) IsServerError() bool

IsServerError returns true when this backchannel authentication unauthorized response has a 5xx status code

func (*BackchannelAuthenticationUnauthorized) IsSuccess

IsSuccess returns true when this backchannel authentication unauthorized response has a 2xx status code

func (*BackchannelAuthenticationUnauthorized) String

type Client

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

Client for oauth2 API

func (*Client) Authorize

func (a *Client) Authorize(params *AuthorizeParams, opts ...ClientOption) error
Authorize thes o auth 2 0 authorize endpoint

The authorization endpoint is used to interact with the resource

owner and obtain an authorization grant.

func (*Client) BackchannelAuthentication

func (a *Client) BackchannelAuthentication(params *BackchannelAuthenticationParams, opts ...ClientOption) (*BackchannelAuthenticationOK, error)

BackchannelAuthentication opens ID connect client initiated backchannel authentication endpoint

Client-Initiated Backchannel Authentication defines an authentication request that is requested directly from the Client to the OpenID Provider without going through the user's browser.

func (*Client) DeviceAuthorization

func (a *Client) DeviceAuthorization(params *DeviceAuthorizationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeviceAuthorizationOK, error)
DeviceAuthorization os auth 2 0 device authorization endpoint

The Device Authorization endpoint is designed for Internet-

connected devices that either lack a browser to perform a user-agent- based authorization or are input constrained to the extent that requiring the user to input text in order to authenticate during the authorization flow is impractical.

func (*Client) DynamicClientRegistration

func (a *Client) DynamicClientRegistration(params *DynamicClientRegistrationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationCreated, error)
DynamicClientRegistration os auth 2 0 dynamic client registration endpoint

Dynamic Client Registration endpoint allows to dynamically register OAuth 2.0 client applications

with the Cloudentity Platform. When a request with all required registration metadata values reaches the Cloudentity authorization server, the server issues a client identifier and provides client metadata values registered for the client. Client applications can use their registration data to communicate with the Cloudentity platform using the OAuth 2.0 protocol.

func (*Client) DynamicClientRegistrationDeleteClient

DynamicClientRegistrationDeleteClient os auth 2 0 dynamic client registration delete client endpoint

This endpoint allows to delete a dynamically registered client.

func (*Client) DynamicClientRegistrationGetClient

func (a *Client) DynamicClientRegistrationGetClient(params *DynamicClientRegistrationGetClientParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationGetClientOK, error)

DynamicClientRegistrationGetClient os auth 2 0 dynamic client registration get client endpoint

This endpoint allows to get metadata values of a dynamically registered client.

func (*Client) DynamicClientRegistrationUpdateClient

func (a *Client) DynamicClientRegistrationUpdateClient(params *DynamicClientRegistrationUpdateClientParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationUpdateClientOK, error)

DynamicClientRegistrationUpdateClient os auth 2 0 dynamic client registration update client endpoint

This endpoint allows to update metadata values of a dynamically registered client.

func (*Client) Introspect

func (a *Client) Introspect(params *IntrospectParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*IntrospectOK, error)
Introspect thes o auth 2 0 introspection endpoint

Takes the `token` parameter representing an OAuth 2.0 token (the one the application wants to

introspect) and returns a JSON representing the metadata surrounding the token such as, for example, whether the token is still active, what are the approved access scopes, what is the authentication context in which the token was issued.

Token introspection allows resource servers or applications to query this information regardless of whether or not it is carried in the token itself. It allows to use this method along with or independently of structured token values. Additionally, you can use the mechanism to introspect the token in a particular authentication context and ascertain the relevant metadata about the token to make the authorization decision appropriately.

Client applications that call the OAuth 2.0 Introspection Endpoint must authenticate with the Cloudentity authorization server either with a valid access token provided as the value of the `Authorization: Bearer $AT` request header or using the client authentication method configured for the client application.

When a client application is assigned the `introspect_tokens` scope, it can introspect tokens that belong to client applications **registered within the same workspace** as the client app requesting the token instrospection. When a client application has no `introspect_tokens` scope assigned, it can **only introspect its tokens**.

func (*Client) Jwks

func (a *Client) Jwks(params *JwksParams, opts ...ClientOption) (*JwksOK, error)
Jwks JSONs web keys discovery endpoint

This endpoint returns the signing key(s) the client uses to validate

signatures from the authorization server.

func (*Client) PushedAuthorizationRequest

func (a *Client) PushedAuthorizationRequest(params *PushedAuthorizationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PushedAuthorizationRequestCreated, error)
PushedAuthorizationRequest pusheds authorization request p a r endpoint

This endpoint allows clients to push the payload of an OAuth 2.0 authorization request to the authorization server

via a direct request and provides them with a request URI that is used as reference to the data in a subsequent call to the authorization endpoint.

func (*Client) Revoke

func (a *Client) Revoke(params *RevokeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RevokeOK, error)
Revoke thes o auth 2 0 revocation endpoint

Supports revocation of access and refresh tokens. The token to be revoked must be provided as the

value of the `token` parameter. When a token is revoked, it cannot be used to, for example, exchange a refresh token to an access token.

Client applications that call the OAuth 2.0 Revocation Endpoint must authenticate with the Cloudentity authorization server either with a valid access token provided as the value of the `Authorization: Bearer $AT` request header or using the client authentication method configured for the client application.

When a client application is assigned the `revoke_tokens` scope, it can revoke tokens that belong to client applications **registered within the same workspace** as the client app requesting the token revocation. When a client application has no `revoke_tokens` scope assigned, it can **only revoke its tokens**.

func (*Client) RpInitiatedLogout

func (a *Client) RpInitiatedLogout(params *RpInitiatedLogoutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RpInitiatedLogoutOK, error)
RpInitiatedLogout os ID c 1 0 r p initiated logout endpoint

Perform RP-Initiated Logout. See

[OpenID Connect RP-Initiated Logout 1.0 spec](https://openid.net/specs/openid-connect-rpinitiated-1_0.html).

func (*Client) RpInitiatedLogoutPost

func (a *Client) RpInitiatedLogoutPost(params *RpInitiatedLogoutPostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RpInitiatedLogoutPostOK, error)
RpInitiatedLogoutPost os ID c 1 0 r p initiated logout endpoint

Perform RP-Initiated Logout. See

[OpenID Connect RP-Initiated Logout 1.0 spec](https://openid.net/specs/openid-connect-rpinitiated-1_0.html).

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) Token

func (a *Client) Token(params *TokenParams, opts ...ClientOption) (*TokenOK, error)
Token thes o auth 2 0 token endpoint

The token endpoint is used by the client to obtain an access token by

presenting its authorization grant or refresh token.

func (*Client) Userinfo

func (a *Client) Userinfo(params *UserinfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UserinfoOK, error)
Userinfo opens ID connect userinfo endpoint

The UserInfo Endpoint is an OAuth 2.0 Protected Resource that

returns Claims about the authenticated End-User. To obtain the requested Claims about the End-User, the Client makes a request to the UserInfo Endpoint using an Access Token obtained through OpenID Connect Authentication. These Claims are represented by a JSON object that contains a collection of name and value pairs for the Claims.

func (*Client) WellKnown

func (a *Client) WellKnown(params *WellKnownParams, opts ...ClientOption) (*WellKnownOK, error)

WellKnown opens ID connect discovery endpoint

Returns OpenID configuration.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	Authorize(params *AuthorizeParams, opts ...ClientOption) error

	BackchannelAuthentication(params *BackchannelAuthenticationParams, opts ...ClientOption) (*BackchannelAuthenticationOK, error)

	DeviceAuthorization(params *DeviceAuthorizationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeviceAuthorizationOK, error)

	DynamicClientRegistration(params *DynamicClientRegistrationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationCreated, error)

	DynamicClientRegistrationDeleteClient(params *DynamicClientRegistrationDeleteClientParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationDeleteClientNoContent, error)

	DynamicClientRegistrationGetClient(params *DynamicClientRegistrationGetClientParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationGetClientOK, error)

	DynamicClientRegistrationUpdateClient(params *DynamicClientRegistrationUpdateClientParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DynamicClientRegistrationUpdateClientOK, error)

	Introspect(params *IntrospectParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*IntrospectOK, error)

	Jwks(params *JwksParams, opts ...ClientOption) (*JwksOK, error)

	PushedAuthorizationRequest(params *PushedAuthorizationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PushedAuthorizationRequestCreated, error)

	Revoke(params *RevokeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RevokeOK, error)

	RpInitiatedLogout(params *RpInitiatedLogoutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RpInitiatedLogoutOK, error)

	RpInitiatedLogoutPost(params *RpInitiatedLogoutPostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RpInitiatedLogoutPostOK, error)

	Token(params *TokenParams, opts ...ClientOption) (*TokenOK, error)

	Userinfo(params *UserinfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UserinfoOK, error)

	WellKnown(params *WellKnownParams, opts ...ClientOption) (*WellKnownOK, 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 oauth2 API client.

type DeviceAuthorizationBadRequest

type DeviceAuthorizationBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewDeviceAuthorizationBadRequest

func NewDeviceAuthorizationBadRequest() *DeviceAuthorizationBadRequest

NewDeviceAuthorizationBadRequest creates a DeviceAuthorizationBadRequest with default headers values

func (*DeviceAuthorizationBadRequest) Code

Code gets the status code for the device authorization bad request response

func (*DeviceAuthorizationBadRequest) Error

func (*DeviceAuthorizationBadRequest) GetPayload

func (o *DeviceAuthorizationBadRequest) GetPayload() *models.Error

func (*DeviceAuthorizationBadRequest) IsClientError

func (o *DeviceAuthorizationBadRequest) IsClientError() bool

IsClientError returns true when this device authorization bad request response has a 4xx status code

func (*DeviceAuthorizationBadRequest) IsCode

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

IsCode returns true when this device authorization bad request response a status code equal to that given

func (*DeviceAuthorizationBadRequest) IsRedirect

func (o *DeviceAuthorizationBadRequest) IsRedirect() bool

IsRedirect returns true when this device authorization bad request response has a 3xx status code

func (*DeviceAuthorizationBadRequest) IsServerError

func (o *DeviceAuthorizationBadRequest) IsServerError() bool

IsServerError returns true when this device authorization bad request response has a 5xx status code

func (*DeviceAuthorizationBadRequest) IsSuccess

func (o *DeviceAuthorizationBadRequest) IsSuccess() bool

IsSuccess returns true when this device authorization bad request response has a 2xx status code

func (*DeviceAuthorizationBadRequest) String

type DeviceAuthorizationMethodNotAllowed

type DeviceAuthorizationMethodNotAllowed struct {
	Payload *models.Error
}

DeviceAuthorizationMethodNotAllowed describes a response with status code 405, with default header values.

Method not allowed

func NewDeviceAuthorizationMethodNotAllowed

func NewDeviceAuthorizationMethodNotAllowed() *DeviceAuthorizationMethodNotAllowed

NewDeviceAuthorizationMethodNotAllowed creates a DeviceAuthorizationMethodNotAllowed with default headers values

func (*DeviceAuthorizationMethodNotAllowed) Code

Code gets the status code for the device authorization method not allowed response

func (*DeviceAuthorizationMethodNotAllowed) Error

func (*DeviceAuthorizationMethodNotAllowed) GetPayload

func (*DeviceAuthorizationMethodNotAllowed) IsClientError

func (o *DeviceAuthorizationMethodNotAllowed) IsClientError() bool

IsClientError returns true when this device authorization method not allowed response has a 4xx status code

func (*DeviceAuthorizationMethodNotAllowed) IsCode

IsCode returns true when this device authorization method not allowed response a status code equal to that given

func (*DeviceAuthorizationMethodNotAllowed) IsRedirect

func (o *DeviceAuthorizationMethodNotAllowed) IsRedirect() bool

IsRedirect returns true when this device authorization method not allowed response has a 3xx status code

func (*DeviceAuthorizationMethodNotAllowed) IsServerError

func (o *DeviceAuthorizationMethodNotAllowed) IsServerError() bool

IsServerError returns true when this device authorization method not allowed response has a 5xx status code

func (*DeviceAuthorizationMethodNotAllowed) IsSuccess

IsSuccess returns true when this device authorization method not allowed response has a 2xx status code

func (*DeviceAuthorizationMethodNotAllowed) String

type DeviceAuthorizationOK

type DeviceAuthorizationOK struct {
	Payload *models.DeviceResponse
}

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

Device Authorization Response

func NewDeviceAuthorizationOK

func NewDeviceAuthorizationOK() *DeviceAuthorizationOK

NewDeviceAuthorizationOK creates a DeviceAuthorizationOK with default headers values

func (*DeviceAuthorizationOK) Code

func (o *DeviceAuthorizationOK) Code() int

Code gets the status code for the device authorization o k response

func (*DeviceAuthorizationOK) Error

func (o *DeviceAuthorizationOK) Error() string

func (*DeviceAuthorizationOK) GetPayload

func (o *DeviceAuthorizationOK) GetPayload() *models.DeviceResponse

func (*DeviceAuthorizationOK) IsClientError

func (o *DeviceAuthorizationOK) IsClientError() bool

IsClientError returns true when this device authorization o k response has a 4xx status code

func (*DeviceAuthorizationOK) IsCode

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

IsCode returns true when this device authorization o k response a status code equal to that given

func (*DeviceAuthorizationOK) IsRedirect

func (o *DeviceAuthorizationOK) IsRedirect() bool

IsRedirect returns true when this device authorization o k response has a 3xx status code

func (*DeviceAuthorizationOK) IsServerError

func (o *DeviceAuthorizationOK) IsServerError() bool

IsServerError returns true when this device authorization o k response has a 5xx status code

func (*DeviceAuthorizationOK) IsSuccess

func (o *DeviceAuthorizationOK) IsSuccess() bool

IsSuccess returns true when this device authorization o k response has a 2xx status code

func (*DeviceAuthorizationOK) String

func (o *DeviceAuthorizationOK) String() string

type DeviceAuthorizationParams

type DeviceAuthorizationParams struct {

	/* ClientID.

	   Client id
	*/
	ClientID string

	/* Scope.

	   Scope
	*/
	Scope *string

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

DeviceAuthorizationParams contains all the parameters to send to the API endpoint

for the device authorization operation.

Typically these are written to a http.Request.

func NewDeviceAuthorizationParams

func NewDeviceAuthorizationParams() *DeviceAuthorizationParams

NewDeviceAuthorizationParams creates a new DeviceAuthorizationParams 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 NewDeviceAuthorizationParamsWithContext

func NewDeviceAuthorizationParamsWithContext(ctx context.Context) *DeviceAuthorizationParams

NewDeviceAuthorizationParamsWithContext creates a new DeviceAuthorizationParams object with the ability to set a context for a request.

func NewDeviceAuthorizationParamsWithHTTPClient

func NewDeviceAuthorizationParamsWithHTTPClient(client *http.Client) *DeviceAuthorizationParams

NewDeviceAuthorizationParamsWithHTTPClient creates a new DeviceAuthorizationParams object with the ability to set a custom HTTPClient for a request.

func NewDeviceAuthorizationParamsWithTimeout

func NewDeviceAuthorizationParamsWithTimeout(timeout time.Duration) *DeviceAuthorizationParams

NewDeviceAuthorizationParamsWithTimeout creates a new DeviceAuthorizationParams object with the ability to set a timeout on a request.

func (*DeviceAuthorizationParams) SetClientID

func (o *DeviceAuthorizationParams) SetClientID(clientID string)

SetClientID adds the clientId to the device authorization params

func (*DeviceAuthorizationParams) SetContext

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

SetContext adds the context to the device authorization params

func (*DeviceAuthorizationParams) SetDefaults

func (o *DeviceAuthorizationParams) SetDefaults()

SetDefaults hydrates default values in the device authorization params (not the query body).

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

func (*DeviceAuthorizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the device authorization params

func (*DeviceAuthorizationParams) SetScope

func (o *DeviceAuthorizationParams) SetScope(scope *string)

SetScope adds the scope to the device authorization params

func (*DeviceAuthorizationParams) SetTimeout

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

SetTimeout adds the timeout to the device authorization params

func (*DeviceAuthorizationParams) WithClientID

func (o *DeviceAuthorizationParams) WithClientID(clientID string) *DeviceAuthorizationParams

WithClientID adds the clientID to the device authorization params

func (*DeviceAuthorizationParams) WithContext

WithContext adds the context to the device authorization params

func (*DeviceAuthorizationParams) WithDefaults

WithDefaults hydrates default values in the device authorization params (not the query body).

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

func (*DeviceAuthorizationParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the device authorization params

func (*DeviceAuthorizationParams) WithScope

WithScope adds the scope to the device authorization params

func (*DeviceAuthorizationParams) WithTimeout

WithTimeout adds the timeout to the device authorization params

func (*DeviceAuthorizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeviceAuthorizationReader

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

DeviceAuthorizationReader is a Reader for the DeviceAuthorization structure.

func (*DeviceAuthorizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeviceAuthorizationRequestEntityTooLarge

type DeviceAuthorizationRequestEntityTooLarge struct {
	Payload *models.Error
}

DeviceAuthorizationRequestEntityTooLarge describes a response with status code 413, with default header values.

Payload too large

func NewDeviceAuthorizationRequestEntityTooLarge

func NewDeviceAuthorizationRequestEntityTooLarge() *DeviceAuthorizationRequestEntityTooLarge

NewDeviceAuthorizationRequestEntityTooLarge creates a DeviceAuthorizationRequestEntityTooLarge with default headers values

func (*DeviceAuthorizationRequestEntityTooLarge) Code

Code gets the status code for the device authorization request entity too large response

func (*DeviceAuthorizationRequestEntityTooLarge) Error

func (*DeviceAuthorizationRequestEntityTooLarge) GetPayload

func (*DeviceAuthorizationRequestEntityTooLarge) IsClientError

IsClientError returns true when this device authorization request entity too large response has a 4xx status code

func (*DeviceAuthorizationRequestEntityTooLarge) IsCode

IsCode returns true when this device authorization request entity too large response a status code equal to that given

func (*DeviceAuthorizationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this device authorization request entity too large response has a 3xx status code

func (*DeviceAuthorizationRequestEntityTooLarge) IsServerError

IsServerError returns true when this device authorization request entity too large response has a 5xx status code

func (*DeviceAuthorizationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this device authorization request entity too large response has a 2xx status code

func (*DeviceAuthorizationRequestEntityTooLarge) String

type DeviceAuthorizationTooManyRequests

type DeviceAuthorizationTooManyRequests struct {
	Payload *models.Error
}

DeviceAuthorizationTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewDeviceAuthorizationTooManyRequests

func NewDeviceAuthorizationTooManyRequests() *DeviceAuthorizationTooManyRequests

NewDeviceAuthorizationTooManyRequests creates a DeviceAuthorizationTooManyRequests with default headers values

func (*DeviceAuthorizationTooManyRequests) Code

Code gets the status code for the device authorization too many requests response

func (*DeviceAuthorizationTooManyRequests) Error

func (*DeviceAuthorizationTooManyRequests) GetPayload

func (*DeviceAuthorizationTooManyRequests) IsClientError

func (o *DeviceAuthorizationTooManyRequests) IsClientError() bool

IsClientError returns true when this device authorization too many requests response has a 4xx status code

func (*DeviceAuthorizationTooManyRequests) IsCode

IsCode returns true when this device authorization too many requests response a status code equal to that given

func (*DeviceAuthorizationTooManyRequests) IsRedirect

func (o *DeviceAuthorizationTooManyRequests) IsRedirect() bool

IsRedirect returns true when this device authorization too many requests response has a 3xx status code

func (*DeviceAuthorizationTooManyRequests) IsServerError

func (o *DeviceAuthorizationTooManyRequests) IsServerError() bool

IsServerError returns true when this device authorization too many requests response has a 5xx status code

func (*DeviceAuthorizationTooManyRequests) IsSuccess

IsSuccess returns true when this device authorization too many requests response has a 2xx status code

func (*DeviceAuthorizationTooManyRequests) String

type DeviceAuthorizationUnauthorized

type DeviceAuthorizationUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewDeviceAuthorizationUnauthorized

func NewDeviceAuthorizationUnauthorized() *DeviceAuthorizationUnauthorized

NewDeviceAuthorizationUnauthorized creates a DeviceAuthorizationUnauthorized with default headers values

func (*DeviceAuthorizationUnauthorized) Code

Code gets the status code for the device authorization unauthorized response

func (*DeviceAuthorizationUnauthorized) Error

func (*DeviceAuthorizationUnauthorized) GetPayload

func (o *DeviceAuthorizationUnauthorized) GetPayload() *models.Error

func (*DeviceAuthorizationUnauthorized) IsClientError

func (o *DeviceAuthorizationUnauthorized) IsClientError() bool

IsClientError returns true when this device authorization unauthorized response has a 4xx status code

func (*DeviceAuthorizationUnauthorized) IsCode

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

IsCode returns true when this device authorization unauthorized response a status code equal to that given

func (*DeviceAuthorizationUnauthorized) IsRedirect

func (o *DeviceAuthorizationUnauthorized) IsRedirect() bool

IsRedirect returns true when this device authorization unauthorized response has a 3xx status code

func (*DeviceAuthorizationUnauthorized) IsServerError

func (o *DeviceAuthorizationUnauthorized) IsServerError() bool

IsServerError returns true when this device authorization unauthorized response has a 5xx status code

func (*DeviceAuthorizationUnauthorized) IsSuccess

func (o *DeviceAuthorizationUnauthorized) IsSuccess() bool

IsSuccess returns true when this device authorization unauthorized response has a 2xx status code

func (*DeviceAuthorizationUnauthorized) String

type DynamicClientRegistrationBadRequest

type DynamicClientRegistrationBadRequest struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationBadRequest

func NewDynamicClientRegistrationBadRequest() *DynamicClientRegistrationBadRequest

NewDynamicClientRegistrationBadRequest creates a DynamicClientRegistrationBadRequest with default headers values

func (*DynamicClientRegistrationBadRequest) Code

Code gets the status code for the dynamic client registration bad request response

func (*DynamicClientRegistrationBadRequest) Error

func (*DynamicClientRegistrationBadRequest) GetPayload

func (*DynamicClientRegistrationBadRequest) IsClientError

func (o *DynamicClientRegistrationBadRequest) IsClientError() bool

IsClientError returns true when this dynamic client registration bad request response has a 4xx status code

func (*DynamicClientRegistrationBadRequest) IsCode

IsCode returns true when this dynamic client registration bad request response a status code equal to that given

func (*DynamicClientRegistrationBadRequest) IsRedirect

func (o *DynamicClientRegistrationBadRequest) IsRedirect() bool

IsRedirect returns true when this dynamic client registration bad request response has a 3xx status code

func (*DynamicClientRegistrationBadRequest) IsServerError

func (o *DynamicClientRegistrationBadRequest) IsServerError() bool

IsServerError returns true when this dynamic client registration bad request response has a 5xx status code

func (*DynamicClientRegistrationBadRequest) IsSuccess

IsSuccess returns true when this dynamic client registration bad request response has a 2xx status code

func (*DynamicClientRegistrationBadRequest) String

type DynamicClientRegistrationCreated

type DynamicClientRegistrationCreated struct {
	Payload *models.DynamicClientRegistrationResponse
}

DynamicClientRegistrationCreated describes a response with status code 201, with default header values.

Dynamic client registration response

func NewDynamicClientRegistrationCreated

func NewDynamicClientRegistrationCreated() *DynamicClientRegistrationCreated

NewDynamicClientRegistrationCreated creates a DynamicClientRegistrationCreated with default headers values

func (*DynamicClientRegistrationCreated) Code

Code gets the status code for the dynamic client registration created response

func (*DynamicClientRegistrationCreated) Error

func (*DynamicClientRegistrationCreated) GetPayload

func (*DynamicClientRegistrationCreated) IsClientError

func (o *DynamicClientRegistrationCreated) IsClientError() bool

IsClientError returns true when this dynamic client registration created response has a 4xx status code

func (*DynamicClientRegistrationCreated) IsCode

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

IsCode returns true when this dynamic client registration created response a status code equal to that given

func (*DynamicClientRegistrationCreated) IsRedirect

func (o *DynamicClientRegistrationCreated) IsRedirect() bool

IsRedirect returns true when this dynamic client registration created response has a 3xx status code

func (*DynamicClientRegistrationCreated) IsServerError

func (o *DynamicClientRegistrationCreated) IsServerError() bool

IsServerError returns true when this dynamic client registration created response has a 5xx status code

func (*DynamicClientRegistrationCreated) IsSuccess

func (o *DynamicClientRegistrationCreated) IsSuccess() bool

IsSuccess returns true when this dynamic client registration created response has a 2xx status code

func (*DynamicClientRegistrationCreated) String

type DynamicClientRegistrationDeleteClientBadRequest

type DynamicClientRegistrationDeleteClientBadRequest struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationDeleteClientBadRequest

func NewDynamicClientRegistrationDeleteClientBadRequest() *DynamicClientRegistrationDeleteClientBadRequest

NewDynamicClientRegistrationDeleteClientBadRequest creates a DynamicClientRegistrationDeleteClientBadRequest with default headers values

func (*DynamicClientRegistrationDeleteClientBadRequest) Code

Code gets the status code for the dynamic client registration delete client bad request response

func (*DynamicClientRegistrationDeleteClientBadRequest) Error

func (*DynamicClientRegistrationDeleteClientBadRequest) GetPayload

func (*DynamicClientRegistrationDeleteClientBadRequest) IsClientError

IsClientError returns true when this dynamic client registration delete client bad request response has a 4xx status code

func (*DynamicClientRegistrationDeleteClientBadRequest) IsCode

IsCode returns true when this dynamic client registration delete client bad request response a status code equal to that given

func (*DynamicClientRegistrationDeleteClientBadRequest) IsRedirect

IsRedirect returns true when this dynamic client registration delete client bad request response has a 3xx status code

func (*DynamicClientRegistrationDeleteClientBadRequest) IsServerError

IsServerError returns true when this dynamic client registration delete client bad request response has a 5xx status code

func (*DynamicClientRegistrationDeleteClientBadRequest) IsSuccess

IsSuccess returns true when this dynamic client registration delete client bad request response has a 2xx status code

func (*DynamicClientRegistrationDeleteClientBadRequest) String

type DynamicClientRegistrationDeleteClientForbidden

type DynamicClientRegistrationDeleteClientForbidden struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationDeleteClientForbidden

func NewDynamicClientRegistrationDeleteClientForbidden() *DynamicClientRegistrationDeleteClientForbidden

NewDynamicClientRegistrationDeleteClientForbidden creates a DynamicClientRegistrationDeleteClientForbidden with default headers values

func (*DynamicClientRegistrationDeleteClientForbidden) Code

Code gets the status code for the dynamic client registration delete client forbidden response

func (*DynamicClientRegistrationDeleteClientForbidden) Error

func (*DynamicClientRegistrationDeleteClientForbidden) GetPayload

func (*DynamicClientRegistrationDeleteClientForbidden) IsClientError

IsClientError returns true when this dynamic client registration delete client forbidden response has a 4xx status code

func (*DynamicClientRegistrationDeleteClientForbidden) IsCode

IsCode returns true when this dynamic client registration delete client forbidden response a status code equal to that given

func (*DynamicClientRegistrationDeleteClientForbidden) IsRedirect

IsRedirect returns true when this dynamic client registration delete client forbidden response has a 3xx status code

func (*DynamicClientRegistrationDeleteClientForbidden) IsServerError

IsServerError returns true when this dynamic client registration delete client forbidden response has a 5xx status code

func (*DynamicClientRegistrationDeleteClientForbidden) IsSuccess

IsSuccess returns true when this dynamic client registration delete client forbidden response has a 2xx status code

func (*DynamicClientRegistrationDeleteClientForbidden) String

type DynamicClientRegistrationDeleteClientNoContent

type DynamicClientRegistrationDeleteClientNoContent struct {
}

DynamicClientRegistrationDeleteClientNoContent describes a response with status code 204, with default header values.

Client has been deleted

func NewDynamicClientRegistrationDeleteClientNoContent

func NewDynamicClientRegistrationDeleteClientNoContent() *DynamicClientRegistrationDeleteClientNoContent

NewDynamicClientRegistrationDeleteClientNoContent creates a DynamicClientRegistrationDeleteClientNoContent with default headers values

func (*DynamicClientRegistrationDeleteClientNoContent) Code

Code gets the status code for the dynamic client registration delete client no content response

func (*DynamicClientRegistrationDeleteClientNoContent) Error

func (*DynamicClientRegistrationDeleteClientNoContent) IsClientError

IsClientError returns true when this dynamic client registration delete client no content response has a 4xx status code

func (*DynamicClientRegistrationDeleteClientNoContent) IsCode

IsCode returns true when this dynamic client registration delete client no content response a status code equal to that given

func (*DynamicClientRegistrationDeleteClientNoContent) IsRedirect

IsRedirect returns true when this dynamic client registration delete client no content response has a 3xx status code

func (*DynamicClientRegistrationDeleteClientNoContent) IsServerError

IsServerError returns true when this dynamic client registration delete client no content response has a 5xx status code

func (*DynamicClientRegistrationDeleteClientNoContent) IsSuccess

IsSuccess returns true when this dynamic client registration delete client no content response has a 2xx status code

func (*DynamicClientRegistrationDeleteClientNoContent) String

type DynamicClientRegistrationDeleteClientNotFound

type DynamicClientRegistrationDeleteClientNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewDynamicClientRegistrationDeleteClientNotFound

func NewDynamicClientRegistrationDeleteClientNotFound() *DynamicClientRegistrationDeleteClientNotFound

NewDynamicClientRegistrationDeleteClientNotFound creates a DynamicClientRegistrationDeleteClientNotFound with default headers values

func (*DynamicClientRegistrationDeleteClientNotFound) Code

Code gets the status code for the dynamic client registration delete client not found response

func (*DynamicClientRegistrationDeleteClientNotFound) Error

func (*DynamicClientRegistrationDeleteClientNotFound) GetPayload

func (*DynamicClientRegistrationDeleteClientNotFound) IsClientError

IsClientError returns true when this dynamic client registration delete client not found response has a 4xx status code

func (*DynamicClientRegistrationDeleteClientNotFound) IsCode

IsCode returns true when this dynamic client registration delete client not found response a status code equal to that given

func (*DynamicClientRegistrationDeleteClientNotFound) IsRedirect

IsRedirect returns true when this dynamic client registration delete client not found response has a 3xx status code

func (*DynamicClientRegistrationDeleteClientNotFound) IsServerError

IsServerError returns true when this dynamic client registration delete client not found response has a 5xx status code

func (*DynamicClientRegistrationDeleteClientNotFound) IsSuccess

IsSuccess returns true when this dynamic client registration delete client not found response has a 2xx status code

func (*DynamicClientRegistrationDeleteClientNotFound) String

type DynamicClientRegistrationDeleteClientParams

type DynamicClientRegistrationDeleteClientParams struct {

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

DynamicClientRegistrationDeleteClientParams contains all the parameters to send to the API endpoint

for the dynamic client registration delete client operation.

Typically these are written to a http.Request.

func NewDynamicClientRegistrationDeleteClientParams

func NewDynamicClientRegistrationDeleteClientParams() *DynamicClientRegistrationDeleteClientParams

NewDynamicClientRegistrationDeleteClientParams creates a new DynamicClientRegistrationDeleteClientParams 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 NewDynamicClientRegistrationDeleteClientParamsWithContext

func NewDynamicClientRegistrationDeleteClientParamsWithContext(ctx context.Context) *DynamicClientRegistrationDeleteClientParams

NewDynamicClientRegistrationDeleteClientParamsWithContext creates a new DynamicClientRegistrationDeleteClientParams object with the ability to set a context for a request.

func NewDynamicClientRegistrationDeleteClientParamsWithHTTPClient

func NewDynamicClientRegistrationDeleteClientParamsWithHTTPClient(client *http.Client) *DynamicClientRegistrationDeleteClientParams

NewDynamicClientRegistrationDeleteClientParamsWithHTTPClient creates a new DynamicClientRegistrationDeleteClientParams object with the ability to set a custom HTTPClient for a request.

func NewDynamicClientRegistrationDeleteClientParamsWithTimeout

func NewDynamicClientRegistrationDeleteClientParamsWithTimeout(timeout time.Duration) *DynamicClientRegistrationDeleteClientParams

NewDynamicClientRegistrationDeleteClientParamsWithTimeout creates a new DynamicClientRegistrationDeleteClientParams object with the ability to set a timeout on a request.

func (*DynamicClientRegistrationDeleteClientParams) SetCid

SetCid adds the cid to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) SetContext

SetContext adds the context to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) SetDefaults

SetDefaults hydrates default values in the dynamic client registration delete client params (not the query body).

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

func (*DynamicClientRegistrationDeleteClientParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) SetTimeout

SetTimeout adds the timeout to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) WithCid

WithCid adds the cid to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) WithContext

WithContext adds the context to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) WithDefaults

WithDefaults hydrates default values in the dynamic client registration delete client params (not the query body).

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

func (*DynamicClientRegistrationDeleteClientParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) WithTimeout

WithTimeout adds the timeout to the dynamic client registration delete client params

func (*DynamicClientRegistrationDeleteClientParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DynamicClientRegistrationDeleteClientReader

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

DynamicClientRegistrationDeleteClientReader is a Reader for the DynamicClientRegistrationDeleteClient structure.

func (*DynamicClientRegistrationDeleteClientReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DynamicClientRegistrationDeleteClientUnauthorized

type DynamicClientRegistrationDeleteClientUnauthorized struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationDeleteClientUnauthorized

func NewDynamicClientRegistrationDeleteClientUnauthorized() *DynamicClientRegistrationDeleteClientUnauthorized

NewDynamicClientRegistrationDeleteClientUnauthorized creates a DynamicClientRegistrationDeleteClientUnauthorized with default headers values

func (*DynamicClientRegistrationDeleteClientUnauthorized) Code

Code gets the status code for the dynamic client registration delete client unauthorized response

func (*DynamicClientRegistrationDeleteClientUnauthorized) Error

func (*DynamicClientRegistrationDeleteClientUnauthorized) GetPayload

func (*DynamicClientRegistrationDeleteClientUnauthorized) IsClientError

IsClientError returns true when this dynamic client registration delete client unauthorized response has a 4xx status code

func (*DynamicClientRegistrationDeleteClientUnauthorized) IsCode

IsCode returns true when this dynamic client registration delete client unauthorized response a status code equal to that given

func (*DynamicClientRegistrationDeleteClientUnauthorized) IsRedirect

IsRedirect returns true when this dynamic client registration delete client unauthorized response has a 3xx status code

func (*DynamicClientRegistrationDeleteClientUnauthorized) IsServerError

IsServerError returns true when this dynamic client registration delete client unauthorized response has a 5xx status code

func (*DynamicClientRegistrationDeleteClientUnauthorized) IsSuccess

IsSuccess returns true when this dynamic client registration delete client unauthorized response has a 2xx status code

func (*DynamicClientRegistrationDeleteClientUnauthorized) String

type DynamicClientRegistrationForbidden

type DynamicClientRegistrationForbidden struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationForbidden

func NewDynamicClientRegistrationForbidden() *DynamicClientRegistrationForbidden

NewDynamicClientRegistrationForbidden creates a DynamicClientRegistrationForbidden with default headers values

func (*DynamicClientRegistrationForbidden) Code

Code gets the status code for the dynamic client registration forbidden response

func (*DynamicClientRegistrationForbidden) Error

func (*DynamicClientRegistrationForbidden) GetPayload

func (*DynamicClientRegistrationForbidden) IsClientError

func (o *DynamicClientRegistrationForbidden) IsClientError() bool

IsClientError returns true when this dynamic client registration forbidden response has a 4xx status code

func (*DynamicClientRegistrationForbidden) IsCode

IsCode returns true when this dynamic client registration forbidden response a status code equal to that given

func (*DynamicClientRegistrationForbidden) IsRedirect

func (o *DynamicClientRegistrationForbidden) IsRedirect() bool

IsRedirect returns true when this dynamic client registration forbidden response has a 3xx status code

func (*DynamicClientRegistrationForbidden) IsServerError

func (o *DynamicClientRegistrationForbidden) IsServerError() bool

IsServerError returns true when this dynamic client registration forbidden response has a 5xx status code

func (*DynamicClientRegistrationForbidden) IsSuccess

IsSuccess returns true when this dynamic client registration forbidden response has a 2xx status code

func (*DynamicClientRegistrationForbidden) String

type DynamicClientRegistrationGetClientBadRequest

type DynamicClientRegistrationGetClientBadRequest struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationGetClientBadRequest

func NewDynamicClientRegistrationGetClientBadRequest() *DynamicClientRegistrationGetClientBadRequest

NewDynamicClientRegistrationGetClientBadRequest creates a DynamicClientRegistrationGetClientBadRequest with default headers values

func (*DynamicClientRegistrationGetClientBadRequest) Code

Code gets the status code for the dynamic client registration get client bad request response

func (*DynamicClientRegistrationGetClientBadRequest) Error

func (*DynamicClientRegistrationGetClientBadRequest) GetPayload

func (*DynamicClientRegistrationGetClientBadRequest) IsClientError

IsClientError returns true when this dynamic client registration get client bad request response has a 4xx status code

func (*DynamicClientRegistrationGetClientBadRequest) IsCode

IsCode returns true when this dynamic client registration get client bad request response a status code equal to that given

func (*DynamicClientRegistrationGetClientBadRequest) IsRedirect

IsRedirect returns true when this dynamic client registration get client bad request response has a 3xx status code

func (*DynamicClientRegistrationGetClientBadRequest) IsServerError

IsServerError returns true when this dynamic client registration get client bad request response has a 5xx status code

func (*DynamicClientRegistrationGetClientBadRequest) IsSuccess

IsSuccess returns true when this dynamic client registration get client bad request response has a 2xx status code

func (*DynamicClientRegistrationGetClientBadRequest) String

type DynamicClientRegistrationGetClientForbidden

type DynamicClientRegistrationGetClientForbidden struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationGetClientForbidden

func NewDynamicClientRegistrationGetClientForbidden() *DynamicClientRegistrationGetClientForbidden

NewDynamicClientRegistrationGetClientForbidden creates a DynamicClientRegistrationGetClientForbidden with default headers values

func (*DynamicClientRegistrationGetClientForbidden) Code

Code gets the status code for the dynamic client registration get client forbidden response

func (*DynamicClientRegistrationGetClientForbidden) Error

func (*DynamicClientRegistrationGetClientForbidden) GetPayload

func (*DynamicClientRegistrationGetClientForbidden) IsClientError

IsClientError returns true when this dynamic client registration get client forbidden response has a 4xx status code

func (*DynamicClientRegistrationGetClientForbidden) IsCode

IsCode returns true when this dynamic client registration get client forbidden response a status code equal to that given

func (*DynamicClientRegistrationGetClientForbidden) IsRedirect

IsRedirect returns true when this dynamic client registration get client forbidden response has a 3xx status code

func (*DynamicClientRegistrationGetClientForbidden) IsServerError

IsServerError returns true when this dynamic client registration get client forbidden response has a 5xx status code

func (*DynamicClientRegistrationGetClientForbidden) IsSuccess

IsSuccess returns true when this dynamic client registration get client forbidden response has a 2xx status code

func (*DynamicClientRegistrationGetClientForbidden) String

type DynamicClientRegistrationGetClientNotFound

type DynamicClientRegistrationGetClientNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewDynamicClientRegistrationGetClientNotFound

func NewDynamicClientRegistrationGetClientNotFound() *DynamicClientRegistrationGetClientNotFound

NewDynamicClientRegistrationGetClientNotFound creates a DynamicClientRegistrationGetClientNotFound with default headers values

func (*DynamicClientRegistrationGetClientNotFound) Code

Code gets the status code for the dynamic client registration get client not found response

func (*DynamicClientRegistrationGetClientNotFound) Error

func (*DynamicClientRegistrationGetClientNotFound) GetPayload

func (*DynamicClientRegistrationGetClientNotFound) IsClientError

IsClientError returns true when this dynamic client registration get client not found response has a 4xx status code

func (*DynamicClientRegistrationGetClientNotFound) IsCode

IsCode returns true when this dynamic client registration get client not found response a status code equal to that given

func (*DynamicClientRegistrationGetClientNotFound) IsRedirect

IsRedirect returns true when this dynamic client registration get client not found response has a 3xx status code

func (*DynamicClientRegistrationGetClientNotFound) IsServerError

IsServerError returns true when this dynamic client registration get client not found response has a 5xx status code

func (*DynamicClientRegistrationGetClientNotFound) IsSuccess

IsSuccess returns true when this dynamic client registration get client not found response has a 2xx status code

func (*DynamicClientRegistrationGetClientNotFound) String

type DynamicClientRegistrationGetClientOK

type DynamicClientRegistrationGetClientOK struct {
	Payload *models.DynamicClientRegistrationResponse
}

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

Dynamic client registration response

func NewDynamicClientRegistrationGetClientOK

func NewDynamicClientRegistrationGetClientOK() *DynamicClientRegistrationGetClientOK

NewDynamicClientRegistrationGetClientOK creates a DynamicClientRegistrationGetClientOK with default headers values

func (*DynamicClientRegistrationGetClientOK) Code

Code gets the status code for the dynamic client registration get client o k response

func (*DynamicClientRegistrationGetClientOK) Error

func (*DynamicClientRegistrationGetClientOK) GetPayload

func (*DynamicClientRegistrationGetClientOK) IsClientError

func (o *DynamicClientRegistrationGetClientOK) IsClientError() bool

IsClientError returns true when this dynamic client registration get client o k response has a 4xx status code

func (*DynamicClientRegistrationGetClientOK) IsCode

IsCode returns true when this dynamic client registration get client o k response a status code equal to that given

func (*DynamicClientRegistrationGetClientOK) IsRedirect

IsRedirect returns true when this dynamic client registration get client o k response has a 3xx status code

func (*DynamicClientRegistrationGetClientOK) IsServerError

func (o *DynamicClientRegistrationGetClientOK) IsServerError() bool

IsServerError returns true when this dynamic client registration get client o k response has a 5xx status code

func (*DynamicClientRegistrationGetClientOK) IsSuccess

IsSuccess returns true when this dynamic client registration get client o k response has a 2xx status code

func (*DynamicClientRegistrationGetClientOK) String

type DynamicClientRegistrationGetClientParams

type DynamicClientRegistrationGetClientParams struct {

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

DynamicClientRegistrationGetClientParams contains all the parameters to send to the API endpoint

for the dynamic client registration get client operation.

Typically these are written to a http.Request.

func NewDynamicClientRegistrationGetClientParams

func NewDynamicClientRegistrationGetClientParams() *DynamicClientRegistrationGetClientParams

NewDynamicClientRegistrationGetClientParams creates a new DynamicClientRegistrationGetClientParams 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 NewDynamicClientRegistrationGetClientParamsWithContext

func NewDynamicClientRegistrationGetClientParamsWithContext(ctx context.Context) *DynamicClientRegistrationGetClientParams

NewDynamicClientRegistrationGetClientParamsWithContext creates a new DynamicClientRegistrationGetClientParams object with the ability to set a context for a request.

func NewDynamicClientRegistrationGetClientParamsWithHTTPClient

func NewDynamicClientRegistrationGetClientParamsWithHTTPClient(client *http.Client) *DynamicClientRegistrationGetClientParams

NewDynamicClientRegistrationGetClientParamsWithHTTPClient creates a new DynamicClientRegistrationGetClientParams object with the ability to set a custom HTTPClient for a request.

func NewDynamicClientRegistrationGetClientParamsWithTimeout

func NewDynamicClientRegistrationGetClientParamsWithTimeout(timeout time.Duration) *DynamicClientRegistrationGetClientParams

NewDynamicClientRegistrationGetClientParamsWithTimeout creates a new DynamicClientRegistrationGetClientParams object with the ability to set a timeout on a request.

func (*DynamicClientRegistrationGetClientParams) SetCid

SetCid adds the cid to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) SetContext

SetContext adds the context to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) SetDefaults

SetDefaults hydrates default values in the dynamic client registration get client params (not the query body).

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

func (*DynamicClientRegistrationGetClientParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) SetTimeout

SetTimeout adds the timeout to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) WithCid

WithCid adds the cid to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) WithContext

WithContext adds the context to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) WithDefaults

WithDefaults hydrates default values in the dynamic client registration get client params (not the query body).

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

func (*DynamicClientRegistrationGetClientParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) WithTimeout

WithTimeout adds the timeout to the dynamic client registration get client params

func (*DynamicClientRegistrationGetClientParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DynamicClientRegistrationGetClientReader

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

DynamicClientRegistrationGetClientReader is a Reader for the DynamicClientRegistrationGetClient structure.

func (*DynamicClientRegistrationGetClientReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DynamicClientRegistrationGetClientUnauthorized

type DynamicClientRegistrationGetClientUnauthorized struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationGetClientUnauthorized

func NewDynamicClientRegistrationGetClientUnauthorized() *DynamicClientRegistrationGetClientUnauthorized

NewDynamicClientRegistrationGetClientUnauthorized creates a DynamicClientRegistrationGetClientUnauthorized with default headers values

func (*DynamicClientRegistrationGetClientUnauthorized) Code

Code gets the status code for the dynamic client registration get client unauthorized response

func (*DynamicClientRegistrationGetClientUnauthorized) Error

func (*DynamicClientRegistrationGetClientUnauthorized) GetPayload

func (*DynamicClientRegistrationGetClientUnauthorized) IsClientError

IsClientError returns true when this dynamic client registration get client unauthorized response has a 4xx status code

func (*DynamicClientRegistrationGetClientUnauthorized) IsCode

IsCode returns true when this dynamic client registration get client unauthorized response a status code equal to that given

func (*DynamicClientRegistrationGetClientUnauthorized) IsRedirect

IsRedirect returns true when this dynamic client registration get client unauthorized response has a 3xx status code

func (*DynamicClientRegistrationGetClientUnauthorized) IsServerError

IsServerError returns true when this dynamic client registration get client unauthorized response has a 5xx status code

func (*DynamicClientRegistrationGetClientUnauthorized) IsSuccess

IsSuccess returns true when this dynamic client registration get client unauthorized response has a 2xx status code

func (*DynamicClientRegistrationGetClientUnauthorized) String

type DynamicClientRegistrationNotFound

type DynamicClientRegistrationNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewDynamicClientRegistrationNotFound

func NewDynamicClientRegistrationNotFound() *DynamicClientRegistrationNotFound

NewDynamicClientRegistrationNotFound creates a DynamicClientRegistrationNotFound with default headers values

func (*DynamicClientRegistrationNotFound) Code

Code gets the status code for the dynamic client registration not found response

func (*DynamicClientRegistrationNotFound) Error

func (*DynamicClientRegistrationNotFound) GetPayload

func (*DynamicClientRegistrationNotFound) IsClientError

func (o *DynamicClientRegistrationNotFound) IsClientError() bool

IsClientError returns true when this dynamic client registration not found response has a 4xx status code

func (*DynamicClientRegistrationNotFound) IsCode

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

IsCode returns true when this dynamic client registration not found response a status code equal to that given

func (*DynamicClientRegistrationNotFound) IsRedirect

func (o *DynamicClientRegistrationNotFound) IsRedirect() bool

IsRedirect returns true when this dynamic client registration not found response has a 3xx status code

func (*DynamicClientRegistrationNotFound) IsServerError

func (o *DynamicClientRegistrationNotFound) IsServerError() bool

IsServerError returns true when this dynamic client registration not found response has a 5xx status code

func (*DynamicClientRegistrationNotFound) IsSuccess

func (o *DynamicClientRegistrationNotFound) IsSuccess() bool

IsSuccess returns true when this dynamic client registration not found response has a 2xx status code

func (*DynamicClientRegistrationNotFound) String

type DynamicClientRegistrationParams

type DynamicClientRegistrationParams struct {

	// Client.
	Client *models.DynamicClientRegistrationRequest

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

DynamicClientRegistrationParams contains all the parameters to send to the API endpoint

for the dynamic client registration operation.

Typically these are written to a http.Request.

func NewDynamicClientRegistrationParams

func NewDynamicClientRegistrationParams() *DynamicClientRegistrationParams

NewDynamicClientRegistrationParams creates a new DynamicClientRegistrationParams 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 NewDynamicClientRegistrationParamsWithContext

func NewDynamicClientRegistrationParamsWithContext(ctx context.Context) *DynamicClientRegistrationParams

NewDynamicClientRegistrationParamsWithContext creates a new DynamicClientRegistrationParams object with the ability to set a context for a request.

func NewDynamicClientRegistrationParamsWithHTTPClient

func NewDynamicClientRegistrationParamsWithHTTPClient(client *http.Client) *DynamicClientRegistrationParams

NewDynamicClientRegistrationParamsWithHTTPClient creates a new DynamicClientRegistrationParams object with the ability to set a custom HTTPClient for a request.

func NewDynamicClientRegistrationParamsWithTimeout

func NewDynamicClientRegistrationParamsWithTimeout(timeout time.Duration) *DynamicClientRegistrationParams

NewDynamicClientRegistrationParamsWithTimeout creates a new DynamicClientRegistrationParams object with the ability to set a timeout on a request.

func (*DynamicClientRegistrationParams) SetClient

SetClient adds the client to the dynamic client registration params

func (*DynamicClientRegistrationParams) SetContext

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

SetContext adds the context to the dynamic client registration params

func (*DynamicClientRegistrationParams) SetDefaults

func (o *DynamicClientRegistrationParams) SetDefaults()

SetDefaults hydrates default values in the dynamic client registration params (not the query body).

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

func (*DynamicClientRegistrationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dynamic client registration params

func (*DynamicClientRegistrationParams) SetTimeout

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

SetTimeout adds the timeout to the dynamic client registration params

func (*DynamicClientRegistrationParams) WithClient

WithClient adds the client to the dynamic client registration params

func (*DynamicClientRegistrationParams) WithContext

WithContext adds the context to the dynamic client registration params

func (*DynamicClientRegistrationParams) WithDefaults

WithDefaults hydrates default values in the dynamic client registration params (not the query body).

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

func (*DynamicClientRegistrationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dynamic client registration params

func (*DynamicClientRegistrationParams) WithTimeout

WithTimeout adds the timeout to the dynamic client registration params

func (*DynamicClientRegistrationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DynamicClientRegistrationReader

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

DynamicClientRegistrationReader is a Reader for the DynamicClientRegistration structure.

func (*DynamicClientRegistrationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DynamicClientRegistrationUnauthorized

type DynamicClientRegistrationUnauthorized struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationUnauthorized

func NewDynamicClientRegistrationUnauthorized() *DynamicClientRegistrationUnauthorized

NewDynamicClientRegistrationUnauthorized creates a DynamicClientRegistrationUnauthorized with default headers values

func (*DynamicClientRegistrationUnauthorized) Code

Code gets the status code for the dynamic client registration unauthorized response

func (*DynamicClientRegistrationUnauthorized) Error

func (*DynamicClientRegistrationUnauthorized) GetPayload

func (*DynamicClientRegistrationUnauthorized) IsClientError

func (o *DynamicClientRegistrationUnauthorized) IsClientError() bool

IsClientError returns true when this dynamic client registration unauthorized response has a 4xx status code

func (*DynamicClientRegistrationUnauthorized) IsCode

IsCode returns true when this dynamic client registration unauthorized response a status code equal to that given

func (*DynamicClientRegistrationUnauthorized) IsRedirect

IsRedirect returns true when this dynamic client registration unauthorized response has a 3xx status code

func (*DynamicClientRegistrationUnauthorized) IsServerError

func (o *DynamicClientRegistrationUnauthorized) IsServerError() bool

IsServerError returns true when this dynamic client registration unauthorized response has a 5xx status code

func (*DynamicClientRegistrationUnauthorized) IsSuccess

IsSuccess returns true when this dynamic client registration unauthorized response has a 2xx status code

func (*DynamicClientRegistrationUnauthorized) String

type DynamicClientRegistrationUpdateClientBadRequest

type DynamicClientRegistrationUpdateClientBadRequest struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationUpdateClientBadRequest

func NewDynamicClientRegistrationUpdateClientBadRequest() *DynamicClientRegistrationUpdateClientBadRequest

NewDynamicClientRegistrationUpdateClientBadRequest creates a DynamicClientRegistrationUpdateClientBadRequest with default headers values

func (*DynamicClientRegistrationUpdateClientBadRequest) Code

Code gets the status code for the dynamic client registration update client bad request response

func (*DynamicClientRegistrationUpdateClientBadRequest) Error

func (*DynamicClientRegistrationUpdateClientBadRequest) GetPayload

func (*DynamicClientRegistrationUpdateClientBadRequest) IsClientError

IsClientError returns true when this dynamic client registration update client bad request response has a 4xx status code

func (*DynamicClientRegistrationUpdateClientBadRequest) IsCode

IsCode returns true when this dynamic client registration update client bad request response a status code equal to that given

func (*DynamicClientRegistrationUpdateClientBadRequest) IsRedirect

IsRedirect returns true when this dynamic client registration update client bad request response has a 3xx status code

func (*DynamicClientRegistrationUpdateClientBadRequest) IsServerError

IsServerError returns true when this dynamic client registration update client bad request response has a 5xx status code

func (*DynamicClientRegistrationUpdateClientBadRequest) IsSuccess

IsSuccess returns true when this dynamic client registration update client bad request response has a 2xx status code

func (*DynamicClientRegistrationUpdateClientBadRequest) String

type DynamicClientRegistrationUpdateClientForbidden

type DynamicClientRegistrationUpdateClientForbidden struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationUpdateClientForbidden

func NewDynamicClientRegistrationUpdateClientForbidden() *DynamicClientRegistrationUpdateClientForbidden

NewDynamicClientRegistrationUpdateClientForbidden creates a DynamicClientRegistrationUpdateClientForbidden with default headers values

func (*DynamicClientRegistrationUpdateClientForbidden) Code

Code gets the status code for the dynamic client registration update client forbidden response

func (*DynamicClientRegistrationUpdateClientForbidden) Error

func (*DynamicClientRegistrationUpdateClientForbidden) GetPayload

func (*DynamicClientRegistrationUpdateClientForbidden) IsClientError

IsClientError returns true when this dynamic client registration update client forbidden response has a 4xx status code

func (*DynamicClientRegistrationUpdateClientForbidden) IsCode

IsCode returns true when this dynamic client registration update client forbidden response a status code equal to that given

func (*DynamicClientRegistrationUpdateClientForbidden) IsRedirect

IsRedirect returns true when this dynamic client registration update client forbidden response has a 3xx status code

func (*DynamicClientRegistrationUpdateClientForbidden) IsServerError

IsServerError returns true when this dynamic client registration update client forbidden response has a 5xx status code

func (*DynamicClientRegistrationUpdateClientForbidden) IsSuccess

IsSuccess returns true when this dynamic client registration update client forbidden response has a 2xx status code

func (*DynamicClientRegistrationUpdateClientForbidden) String

type DynamicClientRegistrationUpdateClientNotFound

type DynamicClientRegistrationUpdateClientNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewDynamicClientRegistrationUpdateClientNotFound

func NewDynamicClientRegistrationUpdateClientNotFound() *DynamicClientRegistrationUpdateClientNotFound

NewDynamicClientRegistrationUpdateClientNotFound creates a DynamicClientRegistrationUpdateClientNotFound with default headers values

func (*DynamicClientRegistrationUpdateClientNotFound) Code

Code gets the status code for the dynamic client registration update client not found response

func (*DynamicClientRegistrationUpdateClientNotFound) Error

func (*DynamicClientRegistrationUpdateClientNotFound) GetPayload

func (*DynamicClientRegistrationUpdateClientNotFound) IsClientError

IsClientError returns true when this dynamic client registration update client not found response has a 4xx status code

func (*DynamicClientRegistrationUpdateClientNotFound) IsCode

IsCode returns true when this dynamic client registration update client not found response a status code equal to that given

func (*DynamicClientRegistrationUpdateClientNotFound) IsRedirect

IsRedirect returns true when this dynamic client registration update client not found response has a 3xx status code

func (*DynamicClientRegistrationUpdateClientNotFound) IsServerError

IsServerError returns true when this dynamic client registration update client not found response has a 5xx status code

func (*DynamicClientRegistrationUpdateClientNotFound) IsSuccess

IsSuccess returns true when this dynamic client registration update client not found response has a 2xx status code

func (*DynamicClientRegistrationUpdateClientNotFound) String

type DynamicClientRegistrationUpdateClientOK

type DynamicClientRegistrationUpdateClientOK struct {
	Payload *models.DynamicClientRegistrationResponse
}

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

Dynamic client registration response

func NewDynamicClientRegistrationUpdateClientOK

func NewDynamicClientRegistrationUpdateClientOK() *DynamicClientRegistrationUpdateClientOK

NewDynamicClientRegistrationUpdateClientOK creates a DynamicClientRegistrationUpdateClientOK with default headers values

func (*DynamicClientRegistrationUpdateClientOK) Code

Code gets the status code for the dynamic client registration update client o k response

func (*DynamicClientRegistrationUpdateClientOK) Error

func (*DynamicClientRegistrationUpdateClientOK) GetPayload

func (*DynamicClientRegistrationUpdateClientOK) IsClientError

func (o *DynamicClientRegistrationUpdateClientOK) IsClientError() bool

IsClientError returns true when this dynamic client registration update client o k response has a 4xx status code

func (*DynamicClientRegistrationUpdateClientOK) IsCode

IsCode returns true when this dynamic client registration update client o k response a status code equal to that given

func (*DynamicClientRegistrationUpdateClientOK) IsRedirect

IsRedirect returns true when this dynamic client registration update client o k response has a 3xx status code

func (*DynamicClientRegistrationUpdateClientOK) IsServerError

func (o *DynamicClientRegistrationUpdateClientOK) IsServerError() bool

IsServerError returns true when this dynamic client registration update client o k response has a 5xx status code

func (*DynamicClientRegistrationUpdateClientOK) IsSuccess

IsSuccess returns true when this dynamic client registration update client o k response has a 2xx status code

func (*DynamicClientRegistrationUpdateClientOK) String

type DynamicClientRegistrationUpdateClientParams

type DynamicClientRegistrationUpdateClientParams struct {

	// Client.
	Client *models.DynamicClientRegistrationRequest

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

DynamicClientRegistrationUpdateClientParams contains all the parameters to send to the API endpoint

for the dynamic client registration update client operation.

Typically these are written to a http.Request.

func NewDynamicClientRegistrationUpdateClientParams

func NewDynamicClientRegistrationUpdateClientParams() *DynamicClientRegistrationUpdateClientParams

NewDynamicClientRegistrationUpdateClientParams creates a new DynamicClientRegistrationUpdateClientParams 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 NewDynamicClientRegistrationUpdateClientParamsWithContext

func NewDynamicClientRegistrationUpdateClientParamsWithContext(ctx context.Context) *DynamicClientRegistrationUpdateClientParams

NewDynamicClientRegistrationUpdateClientParamsWithContext creates a new DynamicClientRegistrationUpdateClientParams object with the ability to set a context for a request.

func NewDynamicClientRegistrationUpdateClientParamsWithHTTPClient

func NewDynamicClientRegistrationUpdateClientParamsWithHTTPClient(client *http.Client) *DynamicClientRegistrationUpdateClientParams

NewDynamicClientRegistrationUpdateClientParamsWithHTTPClient creates a new DynamicClientRegistrationUpdateClientParams object with the ability to set a custom HTTPClient for a request.

func NewDynamicClientRegistrationUpdateClientParamsWithTimeout

func NewDynamicClientRegistrationUpdateClientParamsWithTimeout(timeout time.Duration) *DynamicClientRegistrationUpdateClientParams

NewDynamicClientRegistrationUpdateClientParamsWithTimeout creates a new DynamicClientRegistrationUpdateClientParams object with the ability to set a timeout on a request.

func (*DynamicClientRegistrationUpdateClientParams) SetCid

SetCid adds the cid to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) SetClient

SetClient adds the client to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) SetContext

SetContext adds the context to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) SetDefaults

SetDefaults hydrates default values in the dynamic client registration update client params (not the query body).

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

func (*DynamicClientRegistrationUpdateClientParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) SetTimeout

SetTimeout adds the timeout to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) WithCid

WithCid adds the cid to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) WithClient

WithClient adds the client to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) WithContext

WithContext adds the context to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) WithDefaults

WithDefaults hydrates default values in the dynamic client registration update client params (not the query body).

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

func (*DynamicClientRegistrationUpdateClientParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) WithTimeout

WithTimeout adds the timeout to the dynamic client registration update client params

func (*DynamicClientRegistrationUpdateClientParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DynamicClientRegistrationUpdateClientReader

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

DynamicClientRegistrationUpdateClientReader is a Reader for the DynamicClientRegistrationUpdateClient structure.

func (*DynamicClientRegistrationUpdateClientReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DynamicClientRegistrationUpdateClientUnauthorized

type DynamicClientRegistrationUpdateClientUnauthorized struct {
	Payload *models.RFC6749Error
}

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

RFC6749 error

func NewDynamicClientRegistrationUpdateClientUnauthorized

func NewDynamicClientRegistrationUpdateClientUnauthorized() *DynamicClientRegistrationUpdateClientUnauthorized

NewDynamicClientRegistrationUpdateClientUnauthorized creates a DynamicClientRegistrationUpdateClientUnauthorized with default headers values

func (*DynamicClientRegistrationUpdateClientUnauthorized) Code

Code gets the status code for the dynamic client registration update client unauthorized response

func (*DynamicClientRegistrationUpdateClientUnauthorized) Error

func (*DynamicClientRegistrationUpdateClientUnauthorized) GetPayload

func (*DynamicClientRegistrationUpdateClientUnauthorized) IsClientError

IsClientError returns true when this dynamic client registration update client unauthorized response has a 4xx status code

func (*DynamicClientRegistrationUpdateClientUnauthorized) IsCode

IsCode returns true when this dynamic client registration update client unauthorized response a status code equal to that given

func (*DynamicClientRegistrationUpdateClientUnauthorized) IsRedirect

IsRedirect returns true when this dynamic client registration update client unauthorized response has a 3xx status code

func (*DynamicClientRegistrationUpdateClientUnauthorized) IsServerError

IsServerError returns true when this dynamic client registration update client unauthorized response has a 5xx status code

func (*DynamicClientRegistrationUpdateClientUnauthorized) IsSuccess

IsSuccess returns true when this dynamic client registration update client unauthorized response has a 2xx status code

func (*DynamicClientRegistrationUpdateClientUnauthorized) String

type IntrospectNotFound

type IntrospectNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewIntrospectNotFound

func NewIntrospectNotFound() *IntrospectNotFound

NewIntrospectNotFound creates a IntrospectNotFound with default headers values

func (*IntrospectNotFound) Code

func (o *IntrospectNotFound) Code() int

Code gets the status code for the introspect not found response

func (*IntrospectNotFound) Error

func (o *IntrospectNotFound) Error() string

func (*IntrospectNotFound) GetPayload

func (o *IntrospectNotFound) GetPayload() *models.GenericError

func (*IntrospectNotFound) IsClientError

func (o *IntrospectNotFound) IsClientError() bool

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

func (*IntrospectNotFound) IsCode

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

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

func (*IntrospectNotFound) IsRedirect

func (o *IntrospectNotFound) IsRedirect() bool

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

func (*IntrospectNotFound) IsServerError

func (o *IntrospectNotFound) IsServerError() bool

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

func (*IntrospectNotFound) IsSuccess

func (o *IntrospectNotFound) IsSuccess() bool

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

func (*IntrospectNotFound) String

func (o *IntrospectNotFound) String() string

type IntrospectOK

type IntrospectOK struct {
	Payload *models.IntrospectResponse
}

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

Token introspection response

func NewIntrospectOK

func NewIntrospectOK() *IntrospectOK

NewIntrospectOK creates a IntrospectOK with default headers values

func (*IntrospectOK) Code

func (o *IntrospectOK) Code() int

Code gets the status code for the introspect o k response

func (*IntrospectOK) Error

func (o *IntrospectOK) Error() string

func (*IntrospectOK) GetPayload

func (o *IntrospectOK) GetPayload() *models.IntrospectResponse

func (*IntrospectOK) IsClientError

func (o *IntrospectOK) IsClientError() bool

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

func (*IntrospectOK) IsCode

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

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

func (*IntrospectOK) IsRedirect

func (o *IntrospectOK) IsRedirect() bool

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

func (*IntrospectOK) IsServerError

func (o *IntrospectOK) IsServerError() bool

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

func (*IntrospectOK) IsSuccess

func (o *IntrospectOK) IsSuccess() bool

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

func (*IntrospectOK) String

func (o *IntrospectOK) String() string

type IntrospectParams

type IntrospectParams struct {

	/* SSOSessionExtend.

	   Indicates if sso session should be extended for the request. Optional. Default `true`
	*/
	SSOSessionExtend *bool

	// Token.
	Token *string

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

IntrospectParams contains all the parameters to send to the API endpoint

for the introspect operation.

Typically these are written to a http.Request.

func NewIntrospectParams

func NewIntrospectParams() *IntrospectParams

NewIntrospectParams creates a new IntrospectParams 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 NewIntrospectParamsWithContext

func NewIntrospectParamsWithContext(ctx context.Context) *IntrospectParams

NewIntrospectParamsWithContext creates a new IntrospectParams object with the ability to set a context for a request.

func NewIntrospectParamsWithHTTPClient

func NewIntrospectParamsWithHTTPClient(client *http.Client) *IntrospectParams

NewIntrospectParamsWithHTTPClient creates a new IntrospectParams object with the ability to set a custom HTTPClient for a request.

func NewIntrospectParamsWithTimeout

func NewIntrospectParamsWithTimeout(timeout time.Duration) *IntrospectParams

NewIntrospectParamsWithTimeout creates a new IntrospectParams object with the ability to set a timeout on a request.

func (*IntrospectParams) SetContext

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

SetContext adds the context to the introspect params

func (*IntrospectParams) SetDefaults

func (o *IntrospectParams) SetDefaults()

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

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

func (*IntrospectParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the introspect params

func (*IntrospectParams) SetSSOSessionExtend

func (o *IntrospectParams) SetSSOSessionExtend(sSOSessionExtend *bool)

SetSSOSessionExtend adds the sSOSessionExtend to the introspect params

func (*IntrospectParams) SetTimeout

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

SetTimeout adds the timeout to the introspect params

func (*IntrospectParams) SetToken

func (o *IntrospectParams) SetToken(token *string)

SetToken adds the token to the introspect params

func (*IntrospectParams) WithContext

func (o *IntrospectParams) WithContext(ctx context.Context) *IntrospectParams

WithContext adds the context to the introspect params

func (*IntrospectParams) WithDefaults

func (o *IntrospectParams) WithDefaults() *IntrospectParams

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

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

func (*IntrospectParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the introspect params

func (*IntrospectParams) WithSSOSessionExtend

func (o *IntrospectParams) WithSSOSessionExtend(sSOSessionExtend *bool) *IntrospectParams

WithSSOSessionExtend adds the sSOSessionExtend to the introspect params

func (*IntrospectParams) WithTimeout

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

WithTimeout adds the timeout to the introspect params

func (*IntrospectParams) WithToken

func (o *IntrospectParams) WithToken(token *string) *IntrospectParams

WithToken adds the token to the introspect params

func (*IntrospectParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type IntrospectReader

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

IntrospectReader is a Reader for the Introspect structure.

func (*IntrospectReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type IntrospectTooManyRequests

type IntrospectTooManyRequests struct {
	Payload *models.GenericError
}

IntrospectTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewIntrospectTooManyRequests

func NewIntrospectTooManyRequests() *IntrospectTooManyRequests

NewIntrospectTooManyRequests creates a IntrospectTooManyRequests with default headers values

func (*IntrospectTooManyRequests) Code

func (o *IntrospectTooManyRequests) Code() int

Code gets the status code for the introspect too many requests response

func (*IntrospectTooManyRequests) Error

func (o *IntrospectTooManyRequests) Error() string

func (*IntrospectTooManyRequests) GetPayload

func (*IntrospectTooManyRequests) IsClientError

func (o *IntrospectTooManyRequests) IsClientError() bool

IsClientError returns true when this introspect too many requests response has a 4xx status code

func (*IntrospectTooManyRequests) IsCode

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

IsCode returns true when this introspect too many requests response a status code equal to that given

func (*IntrospectTooManyRequests) IsRedirect

func (o *IntrospectTooManyRequests) IsRedirect() bool

IsRedirect returns true when this introspect too many requests response has a 3xx status code

func (*IntrospectTooManyRequests) IsServerError

func (o *IntrospectTooManyRequests) IsServerError() bool

IsServerError returns true when this introspect too many requests response has a 5xx status code

func (*IntrospectTooManyRequests) IsSuccess

func (o *IntrospectTooManyRequests) IsSuccess() bool

IsSuccess returns true when this introspect too many requests response has a 2xx status code

func (*IntrospectTooManyRequests) String

func (o *IntrospectTooManyRequests) String() string

type IntrospectUnauthorized

type IntrospectUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewIntrospectUnauthorized

func NewIntrospectUnauthorized() *IntrospectUnauthorized

NewIntrospectUnauthorized creates a IntrospectUnauthorized with default headers values

func (*IntrospectUnauthorized) Code

func (o *IntrospectUnauthorized) Code() int

Code gets the status code for the introspect unauthorized response

func (*IntrospectUnauthorized) Error

func (o *IntrospectUnauthorized) Error() string

func (*IntrospectUnauthorized) GetPayload

func (o *IntrospectUnauthorized) GetPayload() *models.GenericError

func (*IntrospectUnauthorized) IsClientError

func (o *IntrospectUnauthorized) IsClientError() bool

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

func (*IntrospectUnauthorized) IsCode

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

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

func (*IntrospectUnauthorized) IsRedirect

func (o *IntrospectUnauthorized) IsRedirect() bool

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

func (*IntrospectUnauthorized) IsServerError

func (o *IntrospectUnauthorized) IsServerError() bool

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

func (*IntrospectUnauthorized) IsSuccess

func (o *IntrospectUnauthorized) IsSuccess() bool

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

func (*IntrospectUnauthorized) String

func (o *IntrospectUnauthorized) String() string

type JwksNotFound

type JwksNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewJwksNotFound

func NewJwksNotFound() *JwksNotFound

NewJwksNotFound creates a JwksNotFound with default headers values

func (*JwksNotFound) Code

func (o *JwksNotFound) Code() int

Code gets the status code for the jwks not found response

func (*JwksNotFound) Error

func (o *JwksNotFound) Error() string

func (*JwksNotFound) GetPayload

func (o *JwksNotFound) GetPayload() *models.GenericError

func (*JwksNotFound) IsClientError

func (o *JwksNotFound) IsClientError() bool

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

func (*JwksNotFound) IsCode

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

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

func (*JwksNotFound) IsRedirect

func (o *JwksNotFound) IsRedirect() bool

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

func (*JwksNotFound) IsServerError

func (o *JwksNotFound) IsServerError() bool

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

func (*JwksNotFound) IsSuccess

func (o *JwksNotFound) IsSuccess() bool

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

func (*JwksNotFound) String

func (o *JwksNotFound) String() string

type JwksOK

type JwksOK struct {
	Payload *models.ClientJWKs
}

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

JWKs

func NewJwksOK

func NewJwksOK() *JwksOK

NewJwksOK creates a JwksOK with default headers values

func (*JwksOK) Code

func (o *JwksOK) Code() int

Code gets the status code for the jwks o k response

func (*JwksOK) Error

func (o *JwksOK) Error() string

func (*JwksOK) GetPayload

func (o *JwksOK) GetPayload() *models.ClientJWKs

func (*JwksOK) IsClientError

func (o *JwksOK) IsClientError() bool

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

func (*JwksOK) IsCode

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

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

func (*JwksOK) IsRedirect

func (o *JwksOK) IsRedirect() bool

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

func (*JwksOK) IsServerError

func (o *JwksOK) IsServerError() bool

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

func (*JwksOK) IsSuccess

func (o *JwksOK) IsSuccess() bool

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

func (*JwksOK) String

func (o *JwksOK) String() string

type JwksParams

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

JwksParams contains all the parameters to send to the API endpoint

for the jwks operation.

Typically these are written to a http.Request.

func NewJwksParams

func NewJwksParams() *JwksParams

NewJwksParams creates a new JwksParams 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 NewJwksParamsWithContext

func NewJwksParamsWithContext(ctx context.Context) *JwksParams

NewJwksParamsWithContext creates a new JwksParams object with the ability to set a context for a request.

func NewJwksParamsWithHTTPClient

func NewJwksParamsWithHTTPClient(client *http.Client) *JwksParams

NewJwksParamsWithHTTPClient creates a new JwksParams object with the ability to set a custom HTTPClient for a request.

func NewJwksParamsWithTimeout

func NewJwksParamsWithTimeout(timeout time.Duration) *JwksParams

NewJwksParamsWithTimeout creates a new JwksParams object with the ability to set a timeout on a request.

func (*JwksParams) SetContext

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

SetContext adds the context to the jwks params

func (*JwksParams) SetDefaults

func (o *JwksParams) SetDefaults()

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

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

func (*JwksParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jwks params

func (*JwksParams) SetTimeout

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

SetTimeout adds the timeout to the jwks params

func (*JwksParams) WithContext

func (o *JwksParams) WithContext(ctx context.Context) *JwksParams

WithContext adds the context to the jwks params

func (*JwksParams) WithDefaults

func (o *JwksParams) WithDefaults() *JwksParams

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

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

func (*JwksParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jwks params

func (*JwksParams) WithTimeout

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

WithTimeout adds the timeout to the jwks params

func (*JwksParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type JwksReader

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

JwksReader is a Reader for the Jwks structure.

func (*JwksReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PushedAuthorizationRequestBadRequest

type PushedAuthorizationRequestBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewPushedAuthorizationRequestBadRequest

func NewPushedAuthorizationRequestBadRequest() *PushedAuthorizationRequestBadRequest

NewPushedAuthorizationRequestBadRequest creates a PushedAuthorizationRequestBadRequest with default headers values

func (*PushedAuthorizationRequestBadRequest) Code

Code gets the status code for the pushed authorization request bad request response

func (*PushedAuthorizationRequestBadRequest) Error

func (*PushedAuthorizationRequestBadRequest) GetPayload

func (*PushedAuthorizationRequestBadRequest) IsClientError

func (o *PushedAuthorizationRequestBadRequest) IsClientError() bool

IsClientError returns true when this pushed authorization request bad request response has a 4xx status code

func (*PushedAuthorizationRequestBadRequest) IsCode

IsCode returns true when this pushed authorization request bad request response a status code equal to that given

func (*PushedAuthorizationRequestBadRequest) IsRedirect

IsRedirect returns true when this pushed authorization request bad request response has a 3xx status code

func (*PushedAuthorizationRequestBadRequest) IsServerError

func (o *PushedAuthorizationRequestBadRequest) IsServerError() bool

IsServerError returns true when this pushed authorization request bad request response has a 5xx status code

func (*PushedAuthorizationRequestBadRequest) IsSuccess

IsSuccess returns true when this pushed authorization request bad request response has a 2xx status code

func (*PushedAuthorizationRequestBadRequest) String

type PushedAuthorizationRequestCreated

type PushedAuthorizationRequestCreated struct {
	Payload *models.PARResponse
}

PushedAuthorizationRequestCreated describes a response with status code 201, with default header values.

Pushed Authorization Response

func NewPushedAuthorizationRequestCreated

func NewPushedAuthorizationRequestCreated() *PushedAuthorizationRequestCreated

NewPushedAuthorizationRequestCreated creates a PushedAuthorizationRequestCreated with default headers values

func (*PushedAuthorizationRequestCreated) Code

Code gets the status code for the pushed authorization request created response

func (*PushedAuthorizationRequestCreated) Error

func (*PushedAuthorizationRequestCreated) GetPayload

func (*PushedAuthorizationRequestCreated) IsClientError

func (o *PushedAuthorizationRequestCreated) IsClientError() bool

IsClientError returns true when this pushed authorization request created response has a 4xx status code

func (*PushedAuthorizationRequestCreated) IsCode

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

IsCode returns true when this pushed authorization request created response a status code equal to that given

func (*PushedAuthorizationRequestCreated) IsRedirect

func (o *PushedAuthorizationRequestCreated) IsRedirect() bool

IsRedirect returns true when this pushed authorization request created response has a 3xx status code

func (*PushedAuthorizationRequestCreated) IsServerError

func (o *PushedAuthorizationRequestCreated) IsServerError() bool

IsServerError returns true when this pushed authorization request created response has a 5xx status code

func (*PushedAuthorizationRequestCreated) IsSuccess

func (o *PushedAuthorizationRequestCreated) IsSuccess() bool

IsSuccess returns true when this pushed authorization request created response has a 2xx status code

func (*PushedAuthorizationRequestCreated) String

type PushedAuthorizationRequestMethodNotAllowed

type PushedAuthorizationRequestMethodNotAllowed struct {
	Payload *models.Error
}

PushedAuthorizationRequestMethodNotAllowed describes a response with status code 405, with default header values.

Method not allowed

func NewPushedAuthorizationRequestMethodNotAllowed

func NewPushedAuthorizationRequestMethodNotAllowed() *PushedAuthorizationRequestMethodNotAllowed

NewPushedAuthorizationRequestMethodNotAllowed creates a PushedAuthorizationRequestMethodNotAllowed with default headers values

func (*PushedAuthorizationRequestMethodNotAllowed) Code

Code gets the status code for the pushed authorization request method not allowed response

func (*PushedAuthorizationRequestMethodNotAllowed) Error

func (*PushedAuthorizationRequestMethodNotAllowed) GetPayload

func (*PushedAuthorizationRequestMethodNotAllowed) IsClientError

IsClientError returns true when this pushed authorization request method not allowed response has a 4xx status code

func (*PushedAuthorizationRequestMethodNotAllowed) IsCode

IsCode returns true when this pushed authorization request method not allowed response a status code equal to that given

func (*PushedAuthorizationRequestMethodNotAllowed) IsRedirect

IsRedirect returns true when this pushed authorization request method not allowed response has a 3xx status code

func (*PushedAuthorizationRequestMethodNotAllowed) IsServerError

IsServerError returns true when this pushed authorization request method not allowed response has a 5xx status code

func (*PushedAuthorizationRequestMethodNotAllowed) IsSuccess

IsSuccess returns true when this pushed authorization request method not allowed response has a 2xx status code

func (*PushedAuthorizationRequestMethodNotAllowed) String

type PushedAuthorizationRequestParams

type PushedAuthorizationRequestParams struct {

	/* AcrValues.

	   Requested Authentication Context Class Reference values.
	*/
	AcrValues *string

	/* AuthorizationDetails.

	   Authorization details
	*/
	AuthorizationDetails *string

	/* ClientAssertion.

	   client assertion
	*/
	ClientAssertion *string

	/* ClientAssertionType.

	   client assertion type
	*/
	ClientAssertionType *string

	/* ClientID.

	   Client id
	*/
	ClientID string

	/* ClientSecret.

	   Client secret
	*/
	ClientSecret *string

	/* CodeChallenge.

	   Code challenge
	*/
	CodeChallenge *string

	/* CodeChallengeMethod.

	   Code challenge method
	*/
	CodeChallengeMethod *string

	/* Dpop.

	   DPoP proof
	*/
	Dpop *string

	/* DpopJkt.

	   Thumbprint of the DPoP public key
	*/
	DpopJkt *string

	/* RedirectURI.

	   Redirect uri
	*/
	RedirectURI string

	/* Request.

	   Request Object that holds authorization request parameters
	*/
	Request *string

	/* ResponseType.

	   Response type
	*/
	ResponseType string

	/* Scope.

	   Scope
	*/
	Scope *string

	/* State.

	   State
	*/
	State *string

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

PushedAuthorizationRequestParams contains all the parameters to send to the API endpoint

for the pushed authorization request operation.

Typically these are written to a http.Request.

func NewPushedAuthorizationRequestParams

func NewPushedAuthorizationRequestParams() *PushedAuthorizationRequestParams

NewPushedAuthorizationRequestParams creates a new PushedAuthorizationRequestParams 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 NewPushedAuthorizationRequestParamsWithContext

func NewPushedAuthorizationRequestParamsWithContext(ctx context.Context) *PushedAuthorizationRequestParams

NewPushedAuthorizationRequestParamsWithContext creates a new PushedAuthorizationRequestParams object with the ability to set a context for a request.

func NewPushedAuthorizationRequestParamsWithHTTPClient

func NewPushedAuthorizationRequestParamsWithHTTPClient(client *http.Client) *PushedAuthorizationRequestParams

NewPushedAuthorizationRequestParamsWithHTTPClient creates a new PushedAuthorizationRequestParams object with the ability to set a custom HTTPClient for a request.

func NewPushedAuthorizationRequestParamsWithTimeout

func NewPushedAuthorizationRequestParamsWithTimeout(timeout time.Duration) *PushedAuthorizationRequestParams

NewPushedAuthorizationRequestParamsWithTimeout creates a new PushedAuthorizationRequestParams object with the ability to set a timeout on a request.

func (*PushedAuthorizationRequestParams) SetAcrValues

func (o *PushedAuthorizationRequestParams) SetAcrValues(acrValues *string)

SetAcrValues adds the acrValues to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetAuthorizationDetails

func (o *PushedAuthorizationRequestParams) SetAuthorizationDetails(authorizationDetails *string)

SetAuthorizationDetails adds the authorizationDetails to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetClientAssertion

func (o *PushedAuthorizationRequestParams) SetClientAssertion(clientAssertion *string)

SetClientAssertion adds the clientAssertion to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetClientAssertionType

func (o *PushedAuthorizationRequestParams) SetClientAssertionType(clientAssertionType *string)

SetClientAssertionType adds the clientAssertionType to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetClientID

func (o *PushedAuthorizationRequestParams) SetClientID(clientID string)

SetClientID adds the clientId to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetClientSecret

func (o *PushedAuthorizationRequestParams) SetClientSecret(clientSecret *string)

SetClientSecret adds the clientSecret to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetCodeChallenge

func (o *PushedAuthorizationRequestParams) SetCodeChallenge(codeChallenge *string)

SetCodeChallenge adds the codeChallenge to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetCodeChallengeMethod

func (o *PushedAuthorizationRequestParams) SetCodeChallengeMethod(codeChallengeMethod *string)

SetCodeChallengeMethod adds the codeChallengeMethod to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetContext

SetContext adds the context to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetDefaults

func (o *PushedAuthorizationRequestParams) SetDefaults()

SetDefaults hydrates default values in the pushed authorization request params (not the query body).

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

func (*PushedAuthorizationRequestParams) SetDpop

func (o *PushedAuthorizationRequestParams) SetDpop(dpop *string)

SetDpop adds the dpop to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetDpopJkt

func (o *PushedAuthorizationRequestParams) SetDpopJkt(dpopJkt *string)

SetDpopJkt adds the dpopJkt to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetRedirectURI

func (o *PushedAuthorizationRequestParams) SetRedirectURI(redirectURI string)

SetRedirectURI adds the redirectUri to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetRequest

func (o *PushedAuthorizationRequestParams) SetRequest(request *string)

SetRequest adds the request to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetResponseType

func (o *PushedAuthorizationRequestParams) SetResponseType(responseType string)

SetResponseType adds the responseType to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetScope

func (o *PushedAuthorizationRequestParams) SetScope(scope *string)

SetScope adds the scope to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetState

func (o *PushedAuthorizationRequestParams) SetState(state *string)

SetState adds the state to the pushed authorization request params

func (*PushedAuthorizationRequestParams) SetTimeout

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

SetTimeout adds the timeout to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithAcrValues

WithAcrValues adds the acrValues to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithAuthorizationDetails

func (o *PushedAuthorizationRequestParams) WithAuthorizationDetails(authorizationDetails *string) *PushedAuthorizationRequestParams

WithAuthorizationDetails adds the authorizationDetails to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithClientAssertion

func (o *PushedAuthorizationRequestParams) WithClientAssertion(clientAssertion *string) *PushedAuthorizationRequestParams

WithClientAssertion adds the clientAssertion to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithClientAssertionType

func (o *PushedAuthorizationRequestParams) WithClientAssertionType(clientAssertionType *string) *PushedAuthorizationRequestParams

WithClientAssertionType adds the clientAssertionType to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithClientID

WithClientID adds the clientID to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithClientSecret

func (o *PushedAuthorizationRequestParams) WithClientSecret(clientSecret *string) *PushedAuthorizationRequestParams

WithClientSecret adds the clientSecret to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithCodeChallenge

func (o *PushedAuthorizationRequestParams) WithCodeChallenge(codeChallenge *string) *PushedAuthorizationRequestParams

WithCodeChallenge adds the codeChallenge to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithCodeChallengeMethod

func (o *PushedAuthorizationRequestParams) WithCodeChallengeMethod(codeChallengeMethod *string) *PushedAuthorizationRequestParams

WithCodeChallengeMethod adds the codeChallengeMethod to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithContext

WithContext adds the context to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithDefaults

WithDefaults hydrates default values in the pushed authorization request params (not the query body).

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

func (*PushedAuthorizationRequestParams) WithDpop

WithDpop adds the dpop to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithDpopJkt

WithDpopJkt adds the dpopJkt to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithRedirectURI

WithRedirectURI adds the redirectURI to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithRequest

WithRequest adds the request to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithResponseType

WithResponseType adds the responseType to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithScope

WithScope adds the scope to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithState

WithState adds the state to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WithTimeout

WithTimeout adds the timeout to the pushed authorization request params

func (*PushedAuthorizationRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PushedAuthorizationRequestReader

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

PushedAuthorizationRequestReader is a Reader for the PushedAuthorizationRequest structure.

func (*PushedAuthorizationRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PushedAuthorizationRequestRequestEntityTooLarge

type PushedAuthorizationRequestRequestEntityTooLarge struct {
	Payload *models.Error
}

PushedAuthorizationRequestRequestEntityTooLarge describes a response with status code 413, with default header values.

Payload too large

func NewPushedAuthorizationRequestRequestEntityTooLarge

func NewPushedAuthorizationRequestRequestEntityTooLarge() *PushedAuthorizationRequestRequestEntityTooLarge

NewPushedAuthorizationRequestRequestEntityTooLarge creates a PushedAuthorizationRequestRequestEntityTooLarge with default headers values

func (*PushedAuthorizationRequestRequestEntityTooLarge) Code

Code gets the status code for the pushed authorization request request entity too large response

func (*PushedAuthorizationRequestRequestEntityTooLarge) Error

func (*PushedAuthorizationRequestRequestEntityTooLarge) GetPayload

func (*PushedAuthorizationRequestRequestEntityTooLarge) IsClientError

IsClientError returns true when this pushed authorization request request entity too large response has a 4xx status code

func (*PushedAuthorizationRequestRequestEntityTooLarge) IsCode

IsCode returns true when this pushed authorization request request entity too large response a status code equal to that given

func (*PushedAuthorizationRequestRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this pushed authorization request request entity too large response has a 3xx status code

func (*PushedAuthorizationRequestRequestEntityTooLarge) IsServerError

IsServerError returns true when this pushed authorization request request entity too large response has a 5xx status code

func (*PushedAuthorizationRequestRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this pushed authorization request request entity too large response has a 2xx status code

func (*PushedAuthorizationRequestRequestEntityTooLarge) String

type PushedAuthorizationRequestTooManyRequests

type PushedAuthorizationRequestTooManyRequests struct {
	Payload *models.Error
}

PushedAuthorizationRequestTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewPushedAuthorizationRequestTooManyRequests

func NewPushedAuthorizationRequestTooManyRequests() *PushedAuthorizationRequestTooManyRequests

NewPushedAuthorizationRequestTooManyRequests creates a PushedAuthorizationRequestTooManyRequests with default headers values

func (*PushedAuthorizationRequestTooManyRequests) Code

Code gets the status code for the pushed authorization request too many requests response

func (*PushedAuthorizationRequestTooManyRequests) Error

func (*PushedAuthorizationRequestTooManyRequests) GetPayload

func (*PushedAuthorizationRequestTooManyRequests) IsClientError

IsClientError returns true when this pushed authorization request too many requests response has a 4xx status code

func (*PushedAuthorizationRequestTooManyRequests) IsCode

IsCode returns true when this pushed authorization request too many requests response a status code equal to that given

func (*PushedAuthorizationRequestTooManyRequests) IsRedirect

IsRedirect returns true when this pushed authorization request too many requests response has a 3xx status code

func (*PushedAuthorizationRequestTooManyRequests) IsServerError

IsServerError returns true when this pushed authorization request too many requests response has a 5xx status code

func (*PushedAuthorizationRequestTooManyRequests) IsSuccess

IsSuccess returns true when this pushed authorization request too many requests response has a 2xx status code

func (*PushedAuthorizationRequestTooManyRequests) String

type PushedAuthorizationRequestUnauthorized

type PushedAuthorizationRequestUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewPushedAuthorizationRequestUnauthorized

func NewPushedAuthorizationRequestUnauthorized() *PushedAuthorizationRequestUnauthorized

NewPushedAuthorizationRequestUnauthorized creates a PushedAuthorizationRequestUnauthorized with default headers values

func (*PushedAuthorizationRequestUnauthorized) Code

Code gets the status code for the pushed authorization request unauthorized response

func (*PushedAuthorizationRequestUnauthorized) Error

func (*PushedAuthorizationRequestUnauthorized) GetPayload

func (*PushedAuthorizationRequestUnauthorized) IsClientError

func (o *PushedAuthorizationRequestUnauthorized) IsClientError() bool

IsClientError returns true when this pushed authorization request unauthorized response has a 4xx status code

func (*PushedAuthorizationRequestUnauthorized) IsCode

IsCode returns true when this pushed authorization request unauthorized response a status code equal to that given

func (*PushedAuthorizationRequestUnauthorized) IsRedirect

IsRedirect returns true when this pushed authorization request unauthorized response has a 3xx status code

func (*PushedAuthorizationRequestUnauthorized) IsServerError

func (o *PushedAuthorizationRequestUnauthorized) IsServerError() bool

IsServerError returns true when this pushed authorization request unauthorized response has a 5xx status code

func (*PushedAuthorizationRequestUnauthorized) IsSuccess

IsSuccess returns true when this pushed authorization request unauthorized response has a 2xx status code

func (*PushedAuthorizationRequestUnauthorized) String

type RevokeNotFound

type RevokeNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewRevokeNotFound

func NewRevokeNotFound() *RevokeNotFound

NewRevokeNotFound creates a RevokeNotFound with default headers values

func (*RevokeNotFound) Code

func (o *RevokeNotFound) Code() int

Code gets the status code for the revoke not found response

func (*RevokeNotFound) Error

func (o *RevokeNotFound) Error() string

func (*RevokeNotFound) GetPayload

func (o *RevokeNotFound) GetPayload() *models.GenericError

func (*RevokeNotFound) IsClientError

func (o *RevokeNotFound) IsClientError() bool

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

func (*RevokeNotFound) IsCode

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

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

func (*RevokeNotFound) IsRedirect

func (o *RevokeNotFound) IsRedirect() bool

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

func (*RevokeNotFound) IsServerError

func (o *RevokeNotFound) IsServerError() bool

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

func (*RevokeNotFound) IsSuccess

func (o *RevokeNotFound) IsSuccess() bool

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

func (*RevokeNotFound) String

func (o *RevokeNotFound) String() string

type RevokeOK

type RevokeOK struct {
}

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

Empty response

func NewRevokeOK

func NewRevokeOK() *RevokeOK

NewRevokeOK creates a RevokeOK with default headers values

func (*RevokeOK) Code

func (o *RevokeOK) Code() int

Code gets the status code for the revoke o k response

func (*RevokeOK) Error

func (o *RevokeOK) Error() string

func (*RevokeOK) IsClientError

func (o *RevokeOK) IsClientError() bool

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

func (*RevokeOK) IsCode

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

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

func (*RevokeOK) IsRedirect

func (o *RevokeOK) IsRedirect() bool

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

func (*RevokeOK) IsServerError

func (o *RevokeOK) IsServerError() bool

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

func (*RevokeOK) IsSuccess

func (o *RevokeOK) IsSuccess() bool

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

func (*RevokeOK) String

func (o *RevokeOK) String() string

type RevokeParams

type RevokeParams struct {

	// Token.
	Token *string

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

RevokeParams contains all the parameters to send to the API endpoint

for the revoke operation.

Typically these are written to a http.Request.

func NewRevokeParams

func NewRevokeParams() *RevokeParams

NewRevokeParams creates a new RevokeParams 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 NewRevokeParamsWithContext

func NewRevokeParamsWithContext(ctx context.Context) *RevokeParams

NewRevokeParamsWithContext creates a new RevokeParams object with the ability to set a context for a request.

func NewRevokeParamsWithHTTPClient

func NewRevokeParamsWithHTTPClient(client *http.Client) *RevokeParams

NewRevokeParamsWithHTTPClient creates a new RevokeParams object with the ability to set a custom HTTPClient for a request.

func NewRevokeParamsWithTimeout

func NewRevokeParamsWithTimeout(timeout time.Duration) *RevokeParams

NewRevokeParamsWithTimeout creates a new RevokeParams object with the ability to set a timeout on a request.

func (*RevokeParams) SetContext

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

SetContext adds the context to the revoke params

func (*RevokeParams) SetDefaults

func (o *RevokeParams) SetDefaults()

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

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

func (*RevokeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the revoke params

func (*RevokeParams) SetTimeout

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

SetTimeout adds the timeout to the revoke params

func (*RevokeParams) SetToken

func (o *RevokeParams) SetToken(token *string)

SetToken adds the token to the revoke params

func (*RevokeParams) WithContext

func (o *RevokeParams) WithContext(ctx context.Context) *RevokeParams

WithContext adds the context to the revoke params

func (*RevokeParams) WithDefaults

func (o *RevokeParams) WithDefaults() *RevokeParams

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

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

func (*RevokeParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the revoke params

func (*RevokeParams) WithTimeout

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

WithTimeout adds the timeout to the revoke params

func (*RevokeParams) WithToken

func (o *RevokeParams) WithToken(token *string) *RevokeParams

WithToken adds the token to the revoke params

func (*RevokeParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type RevokeReader

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

RevokeReader is a Reader for the Revoke structure.

func (*RevokeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RevokeTooManyRequests

type RevokeTooManyRequests struct {
	Payload *models.GenericError
}

RevokeTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewRevokeTooManyRequests

func NewRevokeTooManyRequests() *RevokeTooManyRequests

NewRevokeTooManyRequests creates a RevokeTooManyRequests with default headers values

func (*RevokeTooManyRequests) Code

func (o *RevokeTooManyRequests) Code() int

Code gets the status code for the revoke too many requests response

func (*RevokeTooManyRequests) Error

func (o *RevokeTooManyRequests) Error() string

func (*RevokeTooManyRequests) GetPayload

func (o *RevokeTooManyRequests) GetPayload() *models.GenericError

func (*RevokeTooManyRequests) IsClientError

func (o *RevokeTooManyRequests) IsClientError() bool

IsClientError returns true when this revoke too many requests response has a 4xx status code

func (*RevokeTooManyRequests) IsCode

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

IsCode returns true when this revoke too many requests response a status code equal to that given

func (*RevokeTooManyRequests) IsRedirect

func (o *RevokeTooManyRequests) IsRedirect() bool

IsRedirect returns true when this revoke too many requests response has a 3xx status code

func (*RevokeTooManyRequests) IsServerError

func (o *RevokeTooManyRequests) IsServerError() bool

IsServerError returns true when this revoke too many requests response has a 5xx status code

func (*RevokeTooManyRequests) IsSuccess

func (o *RevokeTooManyRequests) IsSuccess() bool

IsSuccess returns true when this revoke too many requests response has a 2xx status code

func (*RevokeTooManyRequests) String

func (o *RevokeTooManyRequests) String() string

type RevokeUnauthorized

type RevokeUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewRevokeUnauthorized

func NewRevokeUnauthorized() *RevokeUnauthorized

NewRevokeUnauthorized creates a RevokeUnauthorized with default headers values

func (*RevokeUnauthorized) Code

func (o *RevokeUnauthorized) Code() int

Code gets the status code for the revoke unauthorized response

func (*RevokeUnauthorized) Error

func (o *RevokeUnauthorized) Error() string

func (*RevokeUnauthorized) GetPayload

func (o *RevokeUnauthorized) GetPayload() *models.GenericError

func (*RevokeUnauthorized) IsClientError

func (o *RevokeUnauthorized) IsClientError() bool

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

func (*RevokeUnauthorized) IsCode

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

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

func (*RevokeUnauthorized) IsRedirect

func (o *RevokeUnauthorized) IsRedirect() bool

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

func (*RevokeUnauthorized) IsServerError

func (o *RevokeUnauthorized) IsServerError() bool

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

func (*RevokeUnauthorized) IsSuccess

func (o *RevokeUnauthorized) IsSuccess() bool

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

func (*RevokeUnauthorized) String

func (o *RevokeUnauthorized) String() string

type RpInitiatedLogoutNotFound

type RpInitiatedLogoutNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewRpInitiatedLogoutNotFound

func NewRpInitiatedLogoutNotFound() *RpInitiatedLogoutNotFound

NewRpInitiatedLogoutNotFound creates a RpInitiatedLogoutNotFound with default headers values

func (*RpInitiatedLogoutNotFound) Code

func (o *RpInitiatedLogoutNotFound) Code() int

Code gets the status code for the rp initiated logout not found response

func (*RpInitiatedLogoutNotFound) Error

func (o *RpInitiatedLogoutNotFound) Error() string

func (*RpInitiatedLogoutNotFound) GetPayload

func (*RpInitiatedLogoutNotFound) IsClientError

func (o *RpInitiatedLogoutNotFound) IsClientError() bool

IsClientError returns true when this rp initiated logout not found response has a 4xx status code

func (*RpInitiatedLogoutNotFound) IsCode

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

IsCode returns true when this rp initiated logout not found response a status code equal to that given

func (*RpInitiatedLogoutNotFound) IsRedirect

func (o *RpInitiatedLogoutNotFound) IsRedirect() bool

IsRedirect returns true when this rp initiated logout not found response has a 3xx status code

func (*RpInitiatedLogoutNotFound) IsServerError

func (o *RpInitiatedLogoutNotFound) IsServerError() bool

IsServerError returns true when this rp initiated logout not found response has a 5xx status code

func (*RpInitiatedLogoutNotFound) IsSuccess

func (o *RpInitiatedLogoutNotFound) IsSuccess() bool

IsSuccess returns true when this rp initiated logout not found response has a 2xx status code

func (*RpInitiatedLogoutNotFound) String

func (o *RpInitiatedLogoutNotFound) String() string

type RpInitiatedLogoutOK

type RpInitiatedLogoutOK struct {
}

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

Empty response

func NewRpInitiatedLogoutOK

func NewRpInitiatedLogoutOK() *RpInitiatedLogoutOK

NewRpInitiatedLogoutOK creates a RpInitiatedLogoutOK with default headers values

func (*RpInitiatedLogoutOK) Code

func (o *RpInitiatedLogoutOK) Code() int

Code gets the status code for the rp initiated logout o k response

func (*RpInitiatedLogoutOK) Error

func (o *RpInitiatedLogoutOK) Error() string

func (*RpInitiatedLogoutOK) IsClientError

func (o *RpInitiatedLogoutOK) IsClientError() bool

IsClientError returns true when this rp initiated logout o k response has a 4xx status code

func (*RpInitiatedLogoutOK) IsCode

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

IsCode returns true when this rp initiated logout o k response a status code equal to that given

func (*RpInitiatedLogoutOK) IsRedirect

func (o *RpInitiatedLogoutOK) IsRedirect() bool

IsRedirect returns true when this rp initiated logout o k response has a 3xx status code

func (*RpInitiatedLogoutOK) IsServerError

func (o *RpInitiatedLogoutOK) IsServerError() bool

IsServerError returns true when this rp initiated logout o k response has a 5xx status code

func (*RpInitiatedLogoutOK) IsSuccess

func (o *RpInitiatedLogoutOK) IsSuccess() bool

IsSuccess returns true when this rp initiated logout o k response has a 2xx status code

func (*RpInitiatedLogoutOK) String

func (o *RpInitiatedLogoutOK) String() string

type RpInitiatedLogoutParams

type RpInitiatedLogoutParams struct {

	// ClientID.
	ClientID *string

	// IDTokenHint.
	IDTokenHint *string

	// LogoutHint.
	LogoutHint *string

	// PostLogoutRedirectURI.
	PostLogoutRedirectURI *string

	// State.
	State *string

	// UILocales.
	UILocales []string

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

RpInitiatedLogoutParams contains all the parameters to send to the API endpoint

for the rp initiated logout operation.

Typically these are written to a http.Request.

func NewRpInitiatedLogoutParams

func NewRpInitiatedLogoutParams() *RpInitiatedLogoutParams

NewRpInitiatedLogoutParams creates a new RpInitiatedLogoutParams 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 NewRpInitiatedLogoutParamsWithContext

func NewRpInitiatedLogoutParamsWithContext(ctx context.Context) *RpInitiatedLogoutParams

NewRpInitiatedLogoutParamsWithContext creates a new RpInitiatedLogoutParams object with the ability to set a context for a request.

func NewRpInitiatedLogoutParamsWithHTTPClient

func NewRpInitiatedLogoutParamsWithHTTPClient(client *http.Client) *RpInitiatedLogoutParams

NewRpInitiatedLogoutParamsWithHTTPClient creates a new RpInitiatedLogoutParams object with the ability to set a custom HTTPClient for a request.

func NewRpInitiatedLogoutParamsWithTimeout

func NewRpInitiatedLogoutParamsWithTimeout(timeout time.Duration) *RpInitiatedLogoutParams

NewRpInitiatedLogoutParamsWithTimeout creates a new RpInitiatedLogoutParams object with the ability to set a timeout on a request.

func (*RpInitiatedLogoutParams) SetClientID

func (o *RpInitiatedLogoutParams) SetClientID(clientID *string)

SetClientID adds the clientId to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetContext

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

SetContext adds the context to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetDefaults

func (o *RpInitiatedLogoutParams) SetDefaults()

SetDefaults hydrates default values in the rp initiated logout params (not the query body).

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

func (*RpInitiatedLogoutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetIDTokenHint

func (o *RpInitiatedLogoutParams) SetIDTokenHint(iDTokenHint *string)

SetIDTokenHint adds the idTokenHint to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetLogoutHint

func (o *RpInitiatedLogoutParams) SetLogoutHint(logoutHint *string)

SetLogoutHint adds the logoutHint to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetPostLogoutRedirectURI

func (o *RpInitiatedLogoutParams) SetPostLogoutRedirectURI(postLogoutRedirectURI *string)

SetPostLogoutRedirectURI adds the postLogoutRedirectUri to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetState

func (o *RpInitiatedLogoutParams) SetState(state *string)

SetState adds the state to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetTimeout

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

SetTimeout adds the timeout to the rp initiated logout params

func (*RpInitiatedLogoutParams) SetUILocales

func (o *RpInitiatedLogoutParams) SetUILocales(uILocales []string)

SetUILocales adds the uiLocales to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithClientID

func (o *RpInitiatedLogoutParams) WithClientID(clientID *string) *RpInitiatedLogoutParams

WithClientID adds the clientID to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithContext

WithContext adds the context to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithDefaults

WithDefaults hydrates default values in the rp initiated logout params (not the query body).

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

func (*RpInitiatedLogoutParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithIDTokenHint

func (o *RpInitiatedLogoutParams) WithIDTokenHint(iDTokenHint *string) *RpInitiatedLogoutParams

WithIDTokenHint adds the iDTokenHint to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithLogoutHint

func (o *RpInitiatedLogoutParams) WithLogoutHint(logoutHint *string) *RpInitiatedLogoutParams

WithLogoutHint adds the logoutHint to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithPostLogoutRedirectURI

func (o *RpInitiatedLogoutParams) WithPostLogoutRedirectURI(postLogoutRedirectURI *string) *RpInitiatedLogoutParams

WithPostLogoutRedirectURI adds the postLogoutRedirectURI to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithState

WithState adds the state to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithTimeout

WithTimeout adds the timeout to the rp initiated logout params

func (*RpInitiatedLogoutParams) WithUILocales

func (o *RpInitiatedLogoutParams) WithUILocales(uILocales []string) *RpInitiatedLogoutParams

WithUILocales adds the uILocales to the rp initiated logout params

func (*RpInitiatedLogoutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RpInitiatedLogoutPostNotFound

type RpInitiatedLogoutPostNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewRpInitiatedLogoutPostNotFound

func NewRpInitiatedLogoutPostNotFound() *RpInitiatedLogoutPostNotFound

NewRpInitiatedLogoutPostNotFound creates a RpInitiatedLogoutPostNotFound with default headers values

func (*RpInitiatedLogoutPostNotFound) Code

Code gets the status code for the rp initiated logout post not found response

func (*RpInitiatedLogoutPostNotFound) Error

func (*RpInitiatedLogoutPostNotFound) GetPayload

func (*RpInitiatedLogoutPostNotFound) IsClientError

func (o *RpInitiatedLogoutPostNotFound) IsClientError() bool

IsClientError returns true when this rp initiated logout post not found response has a 4xx status code

func (*RpInitiatedLogoutPostNotFound) IsCode

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

IsCode returns true when this rp initiated logout post not found response a status code equal to that given

func (*RpInitiatedLogoutPostNotFound) IsRedirect

func (o *RpInitiatedLogoutPostNotFound) IsRedirect() bool

IsRedirect returns true when this rp initiated logout post not found response has a 3xx status code

func (*RpInitiatedLogoutPostNotFound) IsServerError

func (o *RpInitiatedLogoutPostNotFound) IsServerError() bool

IsServerError returns true when this rp initiated logout post not found response has a 5xx status code

func (*RpInitiatedLogoutPostNotFound) IsSuccess

func (o *RpInitiatedLogoutPostNotFound) IsSuccess() bool

IsSuccess returns true when this rp initiated logout post not found response has a 2xx status code

func (*RpInitiatedLogoutPostNotFound) String

type RpInitiatedLogoutPostOK

type RpInitiatedLogoutPostOK struct {
}

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

Empty response

func NewRpInitiatedLogoutPostOK

func NewRpInitiatedLogoutPostOK() *RpInitiatedLogoutPostOK

NewRpInitiatedLogoutPostOK creates a RpInitiatedLogoutPostOK with default headers values

func (*RpInitiatedLogoutPostOK) Code

func (o *RpInitiatedLogoutPostOK) Code() int

Code gets the status code for the rp initiated logout post o k response

func (*RpInitiatedLogoutPostOK) Error

func (o *RpInitiatedLogoutPostOK) Error() string

func (*RpInitiatedLogoutPostOK) IsClientError

func (o *RpInitiatedLogoutPostOK) IsClientError() bool

IsClientError returns true when this rp initiated logout post o k response has a 4xx status code

func (*RpInitiatedLogoutPostOK) IsCode

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

IsCode returns true when this rp initiated logout post o k response a status code equal to that given

func (*RpInitiatedLogoutPostOK) IsRedirect

func (o *RpInitiatedLogoutPostOK) IsRedirect() bool

IsRedirect returns true when this rp initiated logout post o k response has a 3xx status code

func (*RpInitiatedLogoutPostOK) IsServerError

func (o *RpInitiatedLogoutPostOK) IsServerError() bool

IsServerError returns true when this rp initiated logout post o k response has a 5xx status code

func (*RpInitiatedLogoutPostOK) IsSuccess

func (o *RpInitiatedLogoutPostOK) IsSuccess() bool

IsSuccess returns true when this rp initiated logout post o k response has a 2xx status code

func (*RpInitiatedLogoutPostOK) String

func (o *RpInitiatedLogoutPostOK) String() string

type RpInitiatedLogoutPostParams

type RpInitiatedLogoutPostParams struct {

	// ClientID.
	ClientID *string

	// IDTokenHint.
	IDTokenHint *string

	// LogoutHint.
	LogoutHint *string

	// PostLogoutRedirectURI.
	PostLogoutRedirectURI *string

	// State.
	State *string

	// UILocales.
	UILocales []string

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

RpInitiatedLogoutPostParams contains all the parameters to send to the API endpoint

for the rp initiated logout post operation.

Typically these are written to a http.Request.

func NewRpInitiatedLogoutPostParams

func NewRpInitiatedLogoutPostParams() *RpInitiatedLogoutPostParams

NewRpInitiatedLogoutPostParams creates a new RpInitiatedLogoutPostParams 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 NewRpInitiatedLogoutPostParamsWithContext

func NewRpInitiatedLogoutPostParamsWithContext(ctx context.Context) *RpInitiatedLogoutPostParams

NewRpInitiatedLogoutPostParamsWithContext creates a new RpInitiatedLogoutPostParams object with the ability to set a context for a request.

func NewRpInitiatedLogoutPostParamsWithHTTPClient

func NewRpInitiatedLogoutPostParamsWithHTTPClient(client *http.Client) *RpInitiatedLogoutPostParams

NewRpInitiatedLogoutPostParamsWithHTTPClient creates a new RpInitiatedLogoutPostParams object with the ability to set a custom HTTPClient for a request.

func NewRpInitiatedLogoutPostParamsWithTimeout

func NewRpInitiatedLogoutPostParamsWithTimeout(timeout time.Duration) *RpInitiatedLogoutPostParams

NewRpInitiatedLogoutPostParamsWithTimeout creates a new RpInitiatedLogoutPostParams object with the ability to set a timeout on a request.

func (*RpInitiatedLogoutPostParams) SetClientID

func (o *RpInitiatedLogoutPostParams) SetClientID(clientID *string)

SetClientID adds the clientId to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetContext

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

SetContext adds the context to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetDefaults

func (o *RpInitiatedLogoutPostParams) SetDefaults()

SetDefaults hydrates default values in the rp initiated logout post params (not the query body).

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

func (*RpInitiatedLogoutPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetIDTokenHint

func (o *RpInitiatedLogoutPostParams) SetIDTokenHint(iDTokenHint *string)

SetIDTokenHint adds the idTokenHint to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetLogoutHint

func (o *RpInitiatedLogoutPostParams) SetLogoutHint(logoutHint *string)

SetLogoutHint adds the logoutHint to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetPostLogoutRedirectURI

func (o *RpInitiatedLogoutPostParams) SetPostLogoutRedirectURI(postLogoutRedirectURI *string)

SetPostLogoutRedirectURI adds the postLogoutRedirectUri to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetState

func (o *RpInitiatedLogoutPostParams) SetState(state *string)

SetState adds the state to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetTimeout

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

SetTimeout adds the timeout to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) SetUILocales

func (o *RpInitiatedLogoutPostParams) SetUILocales(uILocales []string)

SetUILocales adds the uiLocales to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithClientID

WithClientID adds the clientID to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithContext

WithContext adds the context to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithDefaults

WithDefaults hydrates default values in the rp initiated logout post params (not the query body).

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

func (*RpInitiatedLogoutPostParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithIDTokenHint

func (o *RpInitiatedLogoutPostParams) WithIDTokenHint(iDTokenHint *string) *RpInitiatedLogoutPostParams

WithIDTokenHint adds the iDTokenHint to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithLogoutHint

func (o *RpInitiatedLogoutPostParams) WithLogoutHint(logoutHint *string) *RpInitiatedLogoutPostParams

WithLogoutHint adds the logoutHint to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithPostLogoutRedirectURI

func (o *RpInitiatedLogoutPostParams) WithPostLogoutRedirectURI(postLogoutRedirectURI *string) *RpInitiatedLogoutPostParams

WithPostLogoutRedirectURI adds the postLogoutRedirectURI to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithState

WithState adds the state to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithTimeout

WithTimeout adds the timeout to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WithUILocales

func (o *RpInitiatedLogoutPostParams) WithUILocales(uILocales []string) *RpInitiatedLogoutPostParams

WithUILocales adds the uILocales to the rp initiated logout post params

func (*RpInitiatedLogoutPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RpInitiatedLogoutPostReader

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

RpInitiatedLogoutPostReader is a Reader for the RpInitiatedLogoutPost structure.

func (*RpInitiatedLogoutPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RpInitiatedLogoutPostTooManyRequests

type RpInitiatedLogoutPostTooManyRequests struct {
	Payload *models.GenericError
}

RpInitiatedLogoutPostTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewRpInitiatedLogoutPostTooManyRequests

func NewRpInitiatedLogoutPostTooManyRequests() *RpInitiatedLogoutPostTooManyRequests

NewRpInitiatedLogoutPostTooManyRequests creates a RpInitiatedLogoutPostTooManyRequests with default headers values

func (*RpInitiatedLogoutPostTooManyRequests) Code

Code gets the status code for the rp initiated logout post too many requests response

func (*RpInitiatedLogoutPostTooManyRequests) Error

func (*RpInitiatedLogoutPostTooManyRequests) GetPayload

func (*RpInitiatedLogoutPostTooManyRequests) IsClientError

func (o *RpInitiatedLogoutPostTooManyRequests) IsClientError() bool

IsClientError returns true when this rp initiated logout post too many requests response has a 4xx status code

func (*RpInitiatedLogoutPostTooManyRequests) IsCode

IsCode returns true when this rp initiated logout post too many requests response a status code equal to that given

func (*RpInitiatedLogoutPostTooManyRequests) IsRedirect

IsRedirect returns true when this rp initiated logout post too many requests response has a 3xx status code

func (*RpInitiatedLogoutPostTooManyRequests) IsServerError

func (o *RpInitiatedLogoutPostTooManyRequests) IsServerError() bool

IsServerError returns true when this rp initiated logout post too many requests response has a 5xx status code

func (*RpInitiatedLogoutPostTooManyRequests) IsSuccess

IsSuccess returns true when this rp initiated logout post too many requests response has a 2xx status code

func (*RpInitiatedLogoutPostTooManyRequests) String

type RpInitiatedLogoutPostUnauthorized

type RpInitiatedLogoutPostUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewRpInitiatedLogoutPostUnauthorized

func NewRpInitiatedLogoutPostUnauthorized() *RpInitiatedLogoutPostUnauthorized

NewRpInitiatedLogoutPostUnauthorized creates a RpInitiatedLogoutPostUnauthorized with default headers values

func (*RpInitiatedLogoutPostUnauthorized) Code

Code gets the status code for the rp initiated logout post unauthorized response

func (*RpInitiatedLogoutPostUnauthorized) Error

func (*RpInitiatedLogoutPostUnauthorized) GetPayload

func (*RpInitiatedLogoutPostUnauthorized) IsClientError

func (o *RpInitiatedLogoutPostUnauthorized) IsClientError() bool

IsClientError returns true when this rp initiated logout post unauthorized response has a 4xx status code

func (*RpInitiatedLogoutPostUnauthorized) IsCode

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

IsCode returns true when this rp initiated logout post unauthorized response a status code equal to that given

func (*RpInitiatedLogoutPostUnauthorized) IsRedirect

func (o *RpInitiatedLogoutPostUnauthorized) IsRedirect() bool

IsRedirect returns true when this rp initiated logout post unauthorized response has a 3xx status code

func (*RpInitiatedLogoutPostUnauthorized) IsServerError

func (o *RpInitiatedLogoutPostUnauthorized) IsServerError() bool

IsServerError returns true when this rp initiated logout post unauthorized response has a 5xx status code

func (*RpInitiatedLogoutPostUnauthorized) IsSuccess

func (o *RpInitiatedLogoutPostUnauthorized) IsSuccess() bool

IsSuccess returns true when this rp initiated logout post unauthorized response has a 2xx status code

func (*RpInitiatedLogoutPostUnauthorized) String

type RpInitiatedLogoutReader

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

RpInitiatedLogoutReader is a Reader for the RpInitiatedLogout structure.

func (*RpInitiatedLogoutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RpInitiatedLogoutTooManyRequests

type RpInitiatedLogoutTooManyRequests struct {
	Payload *models.GenericError
}

RpInitiatedLogoutTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewRpInitiatedLogoutTooManyRequests

func NewRpInitiatedLogoutTooManyRequests() *RpInitiatedLogoutTooManyRequests

NewRpInitiatedLogoutTooManyRequests creates a RpInitiatedLogoutTooManyRequests with default headers values

func (*RpInitiatedLogoutTooManyRequests) Code

Code gets the status code for the rp initiated logout too many requests response

func (*RpInitiatedLogoutTooManyRequests) Error

func (*RpInitiatedLogoutTooManyRequests) GetPayload

func (*RpInitiatedLogoutTooManyRequests) IsClientError

func (o *RpInitiatedLogoutTooManyRequests) IsClientError() bool

IsClientError returns true when this rp initiated logout too many requests response has a 4xx status code

func (*RpInitiatedLogoutTooManyRequests) IsCode

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

IsCode returns true when this rp initiated logout too many requests response a status code equal to that given

func (*RpInitiatedLogoutTooManyRequests) IsRedirect

func (o *RpInitiatedLogoutTooManyRequests) IsRedirect() bool

IsRedirect returns true when this rp initiated logout too many requests response has a 3xx status code

func (*RpInitiatedLogoutTooManyRequests) IsServerError

func (o *RpInitiatedLogoutTooManyRequests) IsServerError() bool

IsServerError returns true when this rp initiated logout too many requests response has a 5xx status code

func (*RpInitiatedLogoutTooManyRequests) IsSuccess

func (o *RpInitiatedLogoutTooManyRequests) IsSuccess() bool

IsSuccess returns true when this rp initiated logout too many requests response has a 2xx status code

func (*RpInitiatedLogoutTooManyRequests) String

type RpInitiatedLogoutUnauthorized

type RpInitiatedLogoutUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewRpInitiatedLogoutUnauthorized

func NewRpInitiatedLogoutUnauthorized() *RpInitiatedLogoutUnauthorized

NewRpInitiatedLogoutUnauthorized creates a RpInitiatedLogoutUnauthorized with default headers values

func (*RpInitiatedLogoutUnauthorized) Code

Code gets the status code for the rp initiated logout unauthorized response

func (*RpInitiatedLogoutUnauthorized) Error

func (*RpInitiatedLogoutUnauthorized) GetPayload

func (*RpInitiatedLogoutUnauthorized) IsClientError

func (o *RpInitiatedLogoutUnauthorized) IsClientError() bool

IsClientError returns true when this rp initiated logout unauthorized response has a 4xx status code

func (*RpInitiatedLogoutUnauthorized) IsCode

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

IsCode returns true when this rp initiated logout unauthorized response a status code equal to that given

func (*RpInitiatedLogoutUnauthorized) IsRedirect

func (o *RpInitiatedLogoutUnauthorized) IsRedirect() bool

IsRedirect returns true when this rp initiated logout unauthorized response has a 3xx status code

func (*RpInitiatedLogoutUnauthorized) IsServerError

func (o *RpInitiatedLogoutUnauthorized) IsServerError() bool

IsServerError returns true when this rp initiated logout unauthorized response has a 5xx status code

func (*RpInitiatedLogoutUnauthorized) IsSuccess

func (o *RpInitiatedLogoutUnauthorized) IsSuccess() bool

IsSuccess returns true when this rp initiated logout unauthorized response has a 2xx status code

func (*RpInitiatedLogoutUnauthorized) String

type TokenNotFound

type TokenNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewTokenNotFound

func NewTokenNotFound() *TokenNotFound

NewTokenNotFound creates a TokenNotFound with default headers values

func (*TokenNotFound) Code

func (o *TokenNotFound) Code() int

Code gets the status code for the token not found response

func (*TokenNotFound) Error

func (o *TokenNotFound) Error() string

func (*TokenNotFound) GetPayload

func (o *TokenNotFound) GetPayload() *models.GenericError

func (*TokenNotFound) IsClientError

func (o *TokenNotFound) IsClientError() bool

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

func (*TokenNotFound) IsCode

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

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

func (*TokenNotFound) IsRedirect

func (o *TokenNotFound) IsRedirect() bool

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

func (*TokenNotFound) IsServerError

func (o *TokenNotFound) IsServerError() bool

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

func (*TokenNotFound) IsSuccess

func (o *TokenNotFound) IsSuccess() bool

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

func (*TokenNotFound) String

func (o *TokenNotFound) String() string

type TokenOK

type TokenOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.TokenResponse
}

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

Token

func NewTokenOK

func NewTokenOK() *TokenOK

NewTokenOK creates a TokenOK with default headers values

func (*TokenOK) Code

func (o *TokenOK) Code() int

Code gets the status code for the token o k response

func (*TokenOK) Error

func (o *TokenOK) Error() string

func (*TokenOK) GetPayload

func (o *TokenOK) GetPayload() *models.TokenResponse

func (*TokenOK) IsClientError

func (o *TokenOK) IsClientError() bool

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

func (*TokenOK) IsCode

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

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

func (*TokenOK) IsRedirect

func (o *TokenOK) IsRedirect() bool

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

func (*TokenOK) IsServerError

func (o *TokenOK) IsServerError() bool

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

func (*TokenOK) IsSuccess

func (o *TokenOK) IsSuccess() bool

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

func (*TokenOK) String

func (o *TokenOK) String() string

type TokenParams

type TokenParams struct {

	// ActorToken.
	ActorToken *string

	// ActorTokenType.
	ActorTokenType *string

	// ClientID.
	ClientID *string

	// ClientSecret.
	ClientSecret *string

	// Code.
	Code *string

	// CodeVerifier.
	CodeVerifier *string

	/* Dpop.

	   DPoP proof
	*/
	Dpop *string

	// GrantType.
	GrantType string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	// Password.
	Password *string

	// RedirectURI.
	RedirectURI *string

	// RefreshToken.
	RefreshToken *string

	// RequestedTokenType.
	RequestedTokenType *string

	// Scope.
	Scope *string

	// SubjectToken.
	SubjectToken *string

	// SubjectTokenType.
	SubjectTokenType *string

	// Username.
	Username *string

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

TokenParams contains all the parameters to send to the API endpoint

for the token operation.

Typically these are written to a http.Request.

func NewTokenParams

func NewTokenParams() *TokenParams

NewTokenParams creates a new TokenParams 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 NewTokenParamsWithContext

func NewTokenParamsWithContext(ctx context.Context) *TokenParams

NewTokenParamsWithContext creates a new TokenParams object with the ability to set a context for a request.

func NewTokenParamsWithHTTPClient

func NewTokenParamsWithHTTPClient(client *http.Client) *TokenParams

NewTokenParamsWithHTTPClient creates a new TokenParams object with the ability to set a custom HTTPClient for a request.

func NewTokenParamsWithTimeout

func NewTokenParamsWithTimeout(timeout time.Duration) *TokenParams

NewTokenParamsWithTimeout creates a new TokenParams object with the ability to set a timeout on a request.

func (*TokenParams) SetActorToken

func (o *TokenParams) SetActorToken(actorToken *string)

SetActorToken adds the actorToken to the token params

func (*TokenParams) SetActorTokenType

func (o *TokenParams) SetActorTokenType(actorTokenType *string)

SetActorTokenType adds the actorTokenType to the token params

func (*TokenParams) SetClientID

func (o *TokenParams) SetClientID(clientID *string)

SetClientID adds the clientId to the token params

func (*TokenParams) SetClientSecret

func (o *TokenParams) SetClientSecret(clientSecret *string)

SetClientSecret adds the clientSecret to the token params

func (*TokenParams) SetCode

func (o *TokenParams) SetCode(code *string)

SetCode adds the code to the token params

func (*TokenParams) SetCodeVerifier

func (o *TokenParams) SetCodeVerifier(codeVerifier *string)

SetCodeVerifier adds the codeVerifier to the token params

func (*TokenParams) SetContext

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

SetContext adds the context to the token params

func (*TokenParams) SetDefaults

func (o *TokenParams) SetDefaults()

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

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

func (*TokenParams) SetDpop

func (o *TokenParams) SetDpop(dpop *string)

SetDpop adds the dpop to the token params

func (*TokenParams) SetGrantType

func (o *TokenParams) SetGrantType(grantType string)

SetGrantType adds the grantType to the token params

func (*TokenParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the token params

func (*TokenParams) SetIfMatch

func (o *TokenParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the token params

func (*TokenParams) SetPassword

func (o *TokenParams) SetPassword(password *string)

SetPassword adds the password to the token params

func (*TokenParams) SetRedirectURI

func (o *TokenParams) SetRedirectURI(redirectURI *string)

SetRedirectURI adds the redirectUri to the token params

func (*TokenParams) SetRefreshToken

func (o *TokenParams) SetRefreshToken(refreshToken *string)

SetRefreshToken adds the refreshToken to the token params

func (*TokenParams) SetRequestedTokenType

func (o *TokenParams) SetRequestedTokenType(requestedTokenType *string)

SetRequestedTokenType adds the requestedTokenType to the token params

func (*TokenParams) SetScope

func (o *TokenParams) SetScope(scope *string)

SetScope adds the scope to the token params

func (*TokenParams) SetSubjectToken

func (o *TokenParams) SetSubjectToken(subjectToken *string)

SetSubjectToken adds the subjectToken to the token params

func (*TokenParams) SetSubjectTokenType

func (o *TokenParams) SetSubjectTokenType(subjectTokenType *string)

SetSubjectTokenType adds the subjectTokenType to the token params

func (*TokenParams) SetTimeout

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

SetTimeout adds the timeout to the token params

func (*TokenParams) SetUsername

func (o *TokenParams) SetUsername(username *string)

SetUsername adds the username to the token params

func (*TokenParams) WithActorToken

func (o *TokenParams) WithActorToken(actorToken *string) *TokenParams

WithActorToken adds the actorToken to the token params

func (*TokenParams) WithActorTokenType

func (o *TokenParams) WithActorTokenType(actorTokenType *string) *TokenParams

WithActorTokenType adds the actorTokenType to the token params

func (*TokenParams) WithClientID

func (o *TokenParams) WithClientID(clientID *string) *TokenParams

WithClientID adds the clientID to the token params

func (*TokenParams) WithClientSecret

func (o *TokenParams) WithClientSecret(clientSecret *string) *TokenParams

WithClientSecret adds the clientSecret to the token params

func (*TokenParams) WithCode

func (o *TokenParams) WithCode(code *string) *TokenParams

WithCode adds the code to the token params

func (*TokenParams) WithCodeVerifier

func (o *TokenParams) WithCodeVerifier(codeVerifier *string) *TokenParams

WithCodeVerifier adds the codeVerifier to the token params

func (*TokenParams) WithContext

func (o *TokenParams) WithContext(ctx context.Context) *TokenParams

WithContext adds the context to the token params

func (*TokenParams) WithDefaults

func (o *TokenParams) WithDefaults() *TokenParams

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

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

func (*TokenParams) WithDpop

func (o *TokenParams) WithDpop(dpop *string) *TokenParams

WithDpop adds the dpop to the token params

func (*TokenParams) WithGrantType

func (o *TokenParams) WithGrantType(grantType string) *TokenParams

WithGrantType adds the grantType to the token params

func (*TokenParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the token params

func (*TokenParams) WithIfMatch

func (o *TokenParams) WithIfMatch(ifMatch *string) *TokenParams

WithIfMatch adds the ifMatch to the token params

func (*TokenParams) WithPassword

func (o *TokenParams) WithPassword(password *string) *TokenParams

WithPassword adds the password to the token params

func (*TokenParams) WithRedirectURI

func (o *TokenParams) WithRedirectURI(redirectURI *string) *TokenParams

WithRedirectURI adds the redirectURI to the token params

func (*TokenParams) WithRefreshToken

func (o *TokenParams) WithRefreshToken(refreshToken *string) *TokenParams

WithRefreshToken adds the refreshToken to the token params

func (*TokenParams) WithRequestedTokenType

func (o *TokenParams) WithRequestedTokenType(requestedTokenType *string) *TokenParams

WithRequestedTokenType adds the requestedTokenType to the token params

func (*TokenParams) WithScope

func (o *TokenParams) WithScope(scope *string) *TokenParams

WithScope adds the scope to the token params

func (*TokenParams) WithSubjectToken

func (o *TokenParams) WithSubjectToken(subjectToken *string) *TokenParams

WithSubjectToken adds the subjectToken to the token params

func (*TokenParams) WithSubjectTokenType

func (o *TokenParams) WithSubjectTokenType(subjectTokenType *string) *TokenParams

WithSubjectTokenType adds the subjectTokenType to the token params

func (*TokenParams) WithTimeout

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

WithTimeout adds the timeout to the token params

func (*TokenParams) WithUsername

func (o *TokenParams) WithUsername(username *string) *TokenParams

WithUsername adds the username to the token params

func (*TokenParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type TokenPreconditionFailed

type TokenPreconditionFailed struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewTokenPreconditionFailed

func NewTokenPreconditionFailed() *TokenPreconditionFailed

NewTokenPreconditionFailed creates a TokenPreconditionFailed with default headers values

func (*TokenPreconditionFailed) Code

func (o *TokenPreconditionFailed) Code() int

Code gets the status code for the token precondition failed response

func (*TokenPreconditionFailed) Error

func (o *TokenPreconditionFailed) Error() string

func (*TokenPreconditionFailed) GetPayload

func (o *TokenPreconditionFailed) GetPayload() *models.GenericError

func (*TokenPreconditionFailed) IsClientError

func (o *TokenPreconditionFailed) IsClientError() bool

IsClientError returns true when this token precondition failed response has a 4xx status code

func (*TokenPreconditionFailed) IsCode

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

IsCode returns true when this token precondition failed response a status code equal to that given

func (*TokenPreconditionFailed) IsRedirect

func (o *TokenPreconditionFailed) IsRedirect() bool

IsRedirect returns true when this token precondition failed response has a 3xx status code

func (*TokenPreconditionFailed) IsServerError

func (o *TokenPreconditionFailed) IsServerError() bool

IsServerError returns true when this token precondition failed response has a 5xx status code

func (*TokenPreconditionFailed) IsSuccess

func (o *TokenPreconditionFailed) IsSuccess() bool

IsSuccess returns true when this token precondition failed response has a 2xx status code

func (*TokenPreconditionFailed) String

func (o *TokenPreconditionFailed) String() string

type TokenReader

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

TokenReader is a Reader for the Token structure.

func (*TokenReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TokenTooManyRequests

type TokenTooManyRequests struct {
	Payload *models.GenericError
}

TokenTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewTokenTooManyRequests

func NewTokenTooManyRequests() *TokenTooManyRequests

NewTokenTooManyRequests creates a TokenTooManyRequests with default headers values

func (*TokenTooManyRequests) Code

func (o *TokenTooManyRequests) Code() int

Code gets the status code for the token too many requests response

func (*TokenTooManyRequests) Error

func (o *TokenTooManyRequests) Error() string

func (*TokenTooManyRequests) GetPayload

func (o *TokenTooManyRequests) GetPayload() *models.GenericError

func (*TokenTooManyRequests) IsClientError

func (o *TokenTooManyRequests) IsClientError() bool

IsClientError returns true when this token too many requests response has a 4xx status code

func (*TokenTooManyRequests) IsCode

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

IsCode returns true when this token too many requests response a status code equal to that given

func (*TokenTooManyRequests) IsRedirect

func (o *TokenTooManyRequests) IsRedirect() bool

IsRedirect returns true when this token too many requests response has a 3xx status code

func (*TokenTooManyRequests) IsServerError

func (o *TokenTooManyRequests) IsServerError() bool

IsServerError returns true when this token too many requests response has a 5xx status code

func (*TokenTooManyRequests) IsSuccess

func (o *TokenTooManyRequests) IsSuccess() bool

IsSuccess returns true when this token too many requests response has a 2xx status code

func (*TokenTooManyRequests) String

func (o *TokenTooManyRequests) String() string

type TokenUnauthorized

type TokenUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewTokenUnauthorized

func NewTokenUnauthorized() *TokenUnauthorized

NewTokenUnauthorized creates a TokenUnauthorized with default headers values

func (*TokenUnauthorized) Code

func (o *TokenUnauthorized) Code() int

Code gets the status code for the token unauthorized response

func (*TokenUnauthorized) Error

func (o *TokenUnauthorized) Error() string

func (*TokenUnauthorized) GetPayload

func (o *TokenUnauthorized) GetPayload() *models.GenericError

func (*TokenUnauthorized) IsClientError

func (o *TokenUnauthorized) IsClientError() bool

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

func (*TokenUnauthorized) IsCode

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

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

func (*TokenUnauthorized) IsRedirect

func (o *TokenUnauthorized) IsRedirect() bool

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

func (*TokenUnauthorized) IsServerError

func (o *TokenUnauthorized) IsServerError() bool

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

func (*TokenUnauthorized) IsSuccess

func (o *TokenUnauthorized) IsSuccess() bool

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

func (*TokenUnauthorized) String

func (o *TokenUnauthorized) String() string

type UserinfoNotFound

type UserinfoNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewUserinfoNotFound

func NewUserinfoNotFound() *UserinfoNotFound

NewUserinfoNotFound creates a UserinfoNotFound with default headers values

func (*UserinfoNotFound) Code

func (o *UserinfoNotFound) Code() int

Code gets the status code for the userinfo not found response

func (*UserinfoNotFound) Error

func (o *UserinfoNotFound) Error() string

func (*UserinfoNotFound) GetPayload

func (o *UserinfoNotFound) GetPayload() *models.GenericError

func (*UserinfoNotFound) IsClientError

func (o *UserinfoNotFound) IsClientError() bool

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

func (*UserinfoNotFound) IsCode

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

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

func (*UserinfoNotFound) IsRedirect

func (o *UserinfoNotFound) IsRedirect() bool

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

func (*UserinfoNotFound) IsServerError

func (o *UserinfoNotFound) IsServerError() bool

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

func (*UserinfoNotFound) IsSuccess

func (o *UserinfoNotFound) IsSuccess() bool

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

func (*UserinfoNotFound) String

func (o *UserinfoNotFound) String() string

type UserinfoOK

type UserinfoOK struct {
	Payload *models.UserinfoResponse
}

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

Userinfo

func NewUserinfoOK

func NewUserinfoOK() *UserinfoOK

NewUserinfoOK creates a UserinfoOK with default headers values

func (*UserinfoOK) Code

func (o *UserinfoOK) Code() int

Code gets the status code for the userinfo o k response

func (*UserinfoOK) Error

func (o *UserinfoOK) Error() string

func (*UserinfoOK) GetPayload

func (o *UserinfoOK) GetPayload() *models.UserinfoResponse

func (*UserinfoOK) IsClientError

func (o *UserinfoOK) IsClientError() bool

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

func (*UserinfoOK) IsCode

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

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

func (*UserinfoOK) IsRedirect

func (o *UserinfoOK) IsRedirect() bool

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

func (*UserinfoOK) IsServerError

func (o *UserinfoOK) IsServerError() bool

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

func (*UserinfoOK) IsSuccess

func (o *UserinfoOK) IsSuccess() bool

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

func (*UserinfoOK) String

func (o *UserinfoOK) String() string

type UserinfoParams

type UserinfoParams struct {

	/* SSOSessionExtend.

	   Indicates if sso session should be extended for the request. Optional. Default `true`
	*/
	SSOSessionExtend *bool

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

UserinfoParams contains all the parameters to send to the API endpoint

for the userinfo operation.

Typically these are written to a http.Request.

func NewUserinfoParams

func NewUserinfoParams() *UserinfoParams

NewUserinfoParams creates a new UserinfoParams 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 NewUserinfoParamsWithContext

func NewUserinfoParamsWithContext(ctx context.Context) *UserinfoParams

NewUserinfoParamsWithContext creates a new UserinfoParams object with the ability to set a context for a request.

func NewUserinfoParamsWithHTTPClient

func NewUserinfoParamsWithHTTPClient(client *http.Client) *UserinfoParams

NewUserinfoParamsWithHTTPClient creates a new UserinfoParams object with the ability to set a custom HTTPClient for a request.

func NewUserinfoParamsWithTimeout

func NewUserinfoParamsWithTimeout(timeout time.Duration) *UserinfoParams

NewUserinfoParamsWithTimeout creates a new UserinfoParams object with the ability to set a timeout on a request.

func (*UserinfoParams) SetContext

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

SetContext adds the context to the userinfo params

func (*UserinfoParams) SetDefaults

func (o *UserinfoParams) SetDefaults()

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

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

func (*UserinfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the userinfo params

func (*UserinfoParams) SetSSOSessionExtend

func (o *UserinfoParams) SetSSOSessionExtend(sSOSessionExtend *bool)

SetSSOSessionExtend adds the sSOSessionExtend to the userinfo params

func (*UserinfoParams) SetTimeout

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

SetTimeout adds the timeout to the userinfo params

func (*UserinfoParams) WithContext

func (o *UserinfoParams) WithContext(ctx context.Context) *UserinfoParams

WithContext adds the context to the userinfo params

func (*UserinfoParams) WithDefaults

func (o *UserinfoParams) WithDefaults() *UserinfoParams

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

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

func (*UserinfoParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the userinfo params

func (*UserinfoParams) WithSSOSessionExtend

func (o *UserinfoParams) WithSSOSessionExtend(sSOSessionExtend *bool) *UserinfoParams

WithSSOSessionExtend adds the sSOSessionExtend to the userinfo params

func (*UserinfoParams) WithTimeout

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

WithTimeout adds the timeout to the userinfo params

func (*UserinfoParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UserinfoReader

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

UserinfoReader is a Reader for the Userinfo structure.

func (*UserinfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UserinfoTooManyRequests

type UserinfoTooManyRequests struct {
	Payload *models.GenericError
}

UserinfoTooManyRequests describes a response with status code 429, with default header values.

ErrorResponse

func NewUserinfoTooManyRequests

func NewUserinfoTooManyRequests() *UserinfoTooManyRequests

NewUserinfoTooManyRequests creates a UserinfoTooManyRequests with default headers values

func (*UserinfoTooManyRequests) Code

func (o *UserinfoTooManyRequests) Code() int

Code gets the status code for the userinfo too many requests response

func (*UserinfoTooManyRequests) Error

func (o *UserinfoTooManyRequests) Error() string

func (*UserinfoTooManyRequests) GetPayload

func (o *UserinfoTooManyRequests) GetPayload() *models.GenericError

func (*UserinfoTooManyRequests) IsClientError

func (o *UserinfoTooManyRequests) IsClientError() bool

IsClientError returns true when this userinfo too many requests response has a 4xx status code

func (*UserinfoTooManyRequests) IsCode

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

IsCode returns true when this userinfo too many requests response a status code equal to that given

func (*UserinfoTooManyRequests) IsRedirect

func (o *UserinfoTooManyRequests) IsRedirect() bool

IsRedirect returns true when this userinfo too many requests response has a 3xx status code

func (*UserinfoTooManyRequests) IsServerError

func (o *UserinfoTooManyRequests) IsServerError() bool

IsServerError returns true when this userinfo too many requests response has a 5xx status code

func (*UserinfoTooManyRequests) IsSuccess

func (o *UserinfoTooManyRequests) IsSuccess() bool

IsSuccess returns true when this userinfo too many requests response has a 2xx status code

func (*UserinfoTooManyRequests) String

func (o *UserinfoTooManyRequests) String() string

type UserinfoUnauthorized

type UserinfoUnauthorized struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewUserinfoUnauthorized

func NewUserinfoUnauthorized() *UserinfoUnauthorized

NewUserinfoUnauthorized creates a UserinfoUnauthorized with default headers values

func (*UserinfoUnauthorized) Code

func (o *UserinfoUnauthorized) Code() int

Code gets the status code for the userinfo unauthorized response

func (*UserinfoUnauthorized) Error

func (o *UserinfoUnauthorized) Error() string

func (*UserinfoUnauthorized) GetPayload

func (o *UserinfoUnauthorized) GetPayload() *models.GenericError

func (*UserinfoUnauthorized) IsClientError

func (o *UserinfoUnauthorized) IsClientError() bool

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

func (*UserinfoUnauthorized) IsCode

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

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

func (*UserinfoUnauthorized) IsRedirect

func (o *UserinfoUnauthorized) IsRedirect() bool

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

func (*UserinfoUnauthorized) IsServerError

func (o *UserinfoUnauthorized) IsServerError() bool

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

func (*UserinfoUnauthorized) IsSuccess

func (o *UserinfoUnauthorized) IsSuccess() bool

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

func (*UserinfoUnauthorized) String

func (o *UserinfoUnauthorized) String() string

type WellKnownNotFound

type WellKnownNotFound struct {
	Payload *models.GenericError
}

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

ErrorResponse

func NewWellKnownNotFound

func NewWellKnownNotFound() *WellKnownNotFound

NewWellKnownNotFound creates a WellKnownNotFound with default headers values

func (*WellKnownNotFound) Code

func (o *WellKnownNotFound) Code() int

Code gets the status code for the well known not found response

func (*WellKnownNotFound) Error

func (o *WellKnownNotFound) Error() string

func (*WellKnownNotFound) GetPayload

func (o *WellKnownNotFound) GetPayload() *models.GenericError

func (*WellKnownNotFound) IsClientError

func (o *WellKnownNotFound) IsClientError() bool

IsClientError returns true when this well known not found response has a 4xx status code

func (*WellKnownNotFound) IsCode

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

IsCode returns true when this well known not found response a status code equal to that given

func (*WellKnownNotFound) IsRedirect

func (o *WellKnownNotFound) IsRedirect() bool

IsRedirect returns true when this well known not found response has a 3xx status code

func (*WellKnownNotFound) IsServerError

func (o *WellKnownNotFound) IsServerError() bool

IsServerError returns true when this well known not found response has a 5xx status code

func (*WellKnownNotFound) IsSuccess

func (o *WellKnownNotFound) IsSuccess() bool

IsSuccess returns true when this well known not found response has a 2xx status code

func (*WellKnownNotFound) String

func (o *WellKnownNotFound) String() string

type WellKnownOK

type WellKnownOK struct {
	Payload *models.WellKnown
}

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

OpenID configuration

func NewWellKnownOK

func NewWellKnownOK() *WellKnownOK

NewWellKnownOK creates a WellKnownOK with default headers values

func (*WellKnownOK) Code

func (o *WellKnownOK) Code() int

Code gets the status code for the well known o k response

func (*WellKnownOK) Error

func (o *WellKnownOK) Error() string

func (*WellKnownOK) GetPayload

func (o *WellKnownOK) GetPayload() *models.WellKnown

func (*WellKnownOK) IsClientError

func (o *WellKnownOK) IsClientError() bool

IsClientError returns true when this well known o k response has a 4xx status code

func (*WellKnownOK) IsCode

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

IsCode returns true when this well known o k response a status code equal to that given

func (*WellKnownOK) IsRedirect

func (o *WellKnownOK) IsRedirect() bool

IsRedirect returns true when this well known o k response has a 3xx status code

func (*WellKnownOK) IsServerError

func (o *WellKnownOK) IsServerError() bool

IsServerError returns true when this well known o k response has a 5xx status code

func (*WellKnownOK) IsSuccess

func (o *WellKnownOK) IsSuccess() bool

IsSuccess returns true when this well known o k response has a 2xx status code

func (*WellKnownOK) String

func (o *WellKnownOK) String() string

type WellKnownParams

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

WellKnownParams contains all the parameters to send to the API endpoint

for the well known operation.

Typically these are written to a http.Request.

func NewWellKnownParams

func NewWellKnownParams() *WellKnownParams

NewWellKnownParams creates a new WellKnownParams 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 NewWellKnownParamsWithContext

func NewWellKnownParamsWithContext(ctx context.Context) *WellKnownParams

NewWellKnownParamsWithContext creates a new WellKnownParams object with the ability to set a context for a request.

func NewWellKnownParamsWithHTTPClient

func NewWellKnownParamsWithHTTPClient(client *http.Client) *WellKnownParams

NewWellKnownParamsWithHTTPClient creates a new WellKnownParams object with the ability to set a custom HTTPClient for a request.

func NewWellKnownParamsWithTimeout

func NewWellKnownParamsWithTimeout(timeout time.Duration) *WellKnownParams

NewWellKnownParamsWithTimeout creates a new WellKnownParams object with the ability to set a timeout on a request.

func (*WellKnownParams) SetContext

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

SetContext adds the context to the well known params

func (*WellKnownParams) SetDefaults

func (o *WellKnownParams) SetDefaults()

SetDefaults hydrates default values in the well known params (not the query body).

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

func (*WellKnownParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the well known params

func (*WellKnownParams) SetTimeout

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

SetTimeout adds the timeout to the well known params

func (*WellKnownParams) WithContext

func (o *WellKnownParams) WithContext(ctx context.Context) *WellKnownParams

WithContext adds the context to the well known params

func (*WellKnownParams) WithDefaults

func (o *WellKnownParams) WithDefaults() *WellKnownParams

WithDefaults hydrates default values in the well known params (not the query body).

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

func (*WellKnownParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the well known params

func (*WellKnownParams) WithTimeout

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

WithTimeout adds the timeout to the well known params

func (*WellKnownParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type WellKnownReader

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

WellKnownReader is a Reader for the WellKnown structure.

func (*WellKnownReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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