current_api_session

package
v0.26.53 Latest Latest
Warning

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

Go to latest
Published: Feb 12, 2026 License: Apache-2.0 Imports: 13 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for current api session API

func (*Client) CreateTotpToken added in v0.26.50

func (a *Client) CreateTotpToken(params *CreateTotpTokenParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateTotpTokenOK, error)

CreateTotpToken creates an m f a t o t p token that proves t o t p code checking has passed as a specific time for posture checks

Creates a TOTP token that proves TOTP validation occurred at a specific time. Used in posture response for posture checks.

func (*Client) DeleteCurrentAPISession

func (a *Client) DeleteCurrentAPISession(params *DeleteCurrentAPISessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCurrentAPISessionOK, error)

DeleteCurrentAPISession logouts

Terminates the current API session

func (*Client) DetailCurrentIdentityAuthenticator

func (a *Client) DetailCurrentIdentityAuthenticator(params *DetailCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailCurrentIdentityAuthenticatorOK, error)

DetailCurrentIdentityAuthenticator retrieves an authenticator for the current identity

Retrieves a single authenticator by id. Will only show authenticators assigned to the API session's identity.

func (*Client) ExtendCurrentIdentityAuthenticator

func (a *Client) ExtendCurrentIdentityAuthenticator(params *ExtendCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ExtendCurrentIdentityAuthenticatorOK, error)
ExtendCurrentIdentityAuthenticator allows the current identity to recieve a new certificate associated with a certificate based authenticator

This endpoint only functions for certificates issued by the controller. 3rd party certificates are not handled.

Allows an identity to extend its certificate's expiration date by using its current and valid client certificate to submit a CSR. This CSR may be passed in using a new private key, thus allowing private key rotation. The response from this endpoint is a new client certificate which the client must be verified via the /authenticators/{id}/extend-verify endpoint. After verification is completion any new connections must be made with new certificate. Prior to verification the old client certificate remains active.

func (*Client) ExtendVerifyCurrentIdentityAuthenticator

ExtendVerifyCurrentIdentityAuthenticator allows the current identity to validate reciept of a new client certificate

After submitting a CSR for a new client certificate the resulting public certificate must be re-submitted to this endpoint to verify receipt.

After receipt, the new client certificate must be used for new authentication requests.

func (*Client) GetCurrentAPISession

func (a *Client) GetCurrentAPISession(params *GetCurrentAPISessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCurrentAPISessionOK, error)

GetCurrentAPISession returns the current API session

Retrieves the API session that was used to issue the current request

func (*Client) ListCurrentIdentityAuthenticators

func (a *Client) ListCurrentIdentityAuthenticators(params *ListCurrentIdentityAuthenticatorsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListCurrentIdentityAuthenticatorsOK, error)

ListCurrentIdentityAuthenticators lists authenticators for the current identity

Retrieves a list of authenticators assigned to the current API session's identity; supports filtering, sorting, and pagination.

func (*Client) PatchCurrentIdentityAuthenticator

func (a *Client) PatchCurrentIdentityAuthenticator(params *PatchCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchCurrentIdentityAuthenticatorOK, error)
PatchCurrentIdentityAuthenticator updates the supplied fields on an authenticator of this identity

Update the supplied fields on an authenticator by id. Will only update authenticators assigned to the API

session's identity.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateCurrentIdentityAuthenticator

func (a *Client) UpdateCurrentIdentityAuthenticator(params *UpdateCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCurrentIdentityAuthenticatorOK, error)
UpdateCurrentIdentityAuthenticator updates all fields on an authenticator of this identity

Update all fields on an authenticator by id.  Will only update authenticators assigned to the API session's

identity.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption may be used to customize the behavior of Client methods.

type ClientService

type ClientService interface {
	DeleteCurrentAPISession(params *DeleteCurrentAPISessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCurrentAPISessionOK, error)

	CreateTotpToken(params *CreateTotpTokenParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateTotpTokenOK, error)

	DetailCurrentIdentityAuthenticator(params *DetailCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DetailCurrentIdentityAuthenticatorOK, error)

	ExtendCurrentIdentityAuthenticator(params *ExtendCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ExtendCurrentIdentityAuthenticatorOK, error)

	ExtendVerifyCurrentIdentityAuthenticator(params *ExtendVerifyCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ExtendVerifyCurrentIdentityAuthenticatorOK, error)

	GetCurrentAPISession(params *GetCurrentAPISessionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCurrentAPISessionOK, error)

	ListCurrentIdentityAuthenticators(params *ListCurrentIdentityAuthenticatorsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListCurrentIdentityAuthenticatorsOK, error)

	PatchCurrentIdentityAuthenticator(params *PatchCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PatchCurrentIdentityAuthenticatorOK, error)

	UpdateCurrentIdentityAuthenticator(params *UpdateCurrentIdentityAuthenticatorParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCurrentIdentityAuthenticatorOK, 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 current api session API client.

func NewClientWithBasicAuth added in v0.26.53

func NewClientWithBasicAuth(host, basePath, scheme, user, password string) ClientService

New creates a new current api session API client with basic auth credentials. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - user: user for basic authentication header. - password: password for basic authentication header.

func NewClientWithBearerToken added in v0.26.53

func NewClientWithBearerToken(host, basePath, scheme, bearerToken string) ClientService

New creates a new current api session API client with a bearer token for authentication. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - bearerToken: bearer token for Bearer authentication header.

type CreateTotpTokenNotFound added in v0.26.50

type CreateTotpTokenNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The requested resource does not exist

func NewCreateTotpTokenNotFound added in v0.26.50

func NewCreateTotpTokenNotFound() *CreateTotpTokenNotFound

NewCreateTotpTokenNotFound creates a CreateTotpTokenNotFound with default headers values

func (*CreateTotpTokenNotFound) Code added in v0.26.53

func (o *CreateTotpTokenNotFound) Code() int

Code gets the status code for the create totp token not found response

func (*CreateTotpTokenNotFound) Error added in v0.26.50

func (o *CreateTotpTokenNotFound) Error() string

func (*CreateTotpTokenNotFound) GetPayload added in v0.26.50

func (*CreateTotpTokenNotFound) IsClientError added in v0.26.53

func (o *CreateTotpTokenNotFound) IsClientError() bool

IsClientError returns true when this create totp token not found response has a 4xx status code

func (*CreateTotpTokenNotFound) IsCode added in v0.26.53

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

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

func (*CreateTotpTokenNotFound) IsRedirect added in v0.26.53

func (o *CreateTotpTokenNotFound) IsRedirect() bool

IsRedirect returns true when this create totp token not found response has a 3xx status code

func (*CreateTotpTokenNotFound) IsServerError added in v0.26.53

func (o *CreateTotpTokenNotFound) IsServerError() bool

IsServerError returns true when this create totp token not found response has a 5xx status code

func (*CreateTotpTokenNotFound) IsSuccess added in v0.26.53

func (o *CreateTotpTokenNotFound) IsSuccess() bool

IsSuccess returns true when this create totp token not found response has a 2xx status code

func (*CreateTotpTokenNotFound) String added in v0.26.53

func (o *CreateTotpTokenNotFound) String() string

type CreateTotpTokenOK added in v0.26.50

type CreateTotpTokenOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.TotpTokenEnvelope
}

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

A TOTP token create response, contains a token used to satisfy posture checks

func NewCreateTotpTokenOK added in v0.26.50

func NewCreateTotpTokenOK() *CreateTotpTokenOK

NewCreateTotpTokenOK creates a CreateTotpTokenOK with default headers values

func (*CreateTotpTokenOK) Code added in v0.26.53

func (o *CreateTotpTokenOK) Code() int

Code gets the status code for the create totp token o k response

func (*CreateTotpTokenOK) Error added in v0.26.50

func (o *CreateTotpTokenOK) Error() string

func (*CreateTotpTokenOK) GetPayload added in v0.26.50

func (*CreateTotpTokenOK) IsClientError added in v0.26.53

func (o *CreateTotpTokenOK) IsClientError() bool

IsClientError returns true when this create totp token o k response has a 4xx status code

func (*CreateTotpTokenOK) IsCode added in v0.26.53

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

IsCode returns true when this create totp token o k response a status code equal to that given

func (*CreateTotpTokenOK) IsRedirect added in v0.26.53

func (o *CreateTotpTokenOK) IsRedirect() bool

IsRedirect returns true when this create totp token o k response has a 3xx status code

func (*CreateTotpTokenOK) IsServerError added in v0.26.53

func (o *CreateTotpTokenOK) IsServerError() bool

IsServerError returns true when this create totp token o k response has a 5xx status code

func (*CreateTotpTokenOK) IsSuccess added in v0.26.53

func (o *CreateTotpTokenOK) IsSuccess() bool

IsSuccess returns true when this create totp token o k response has a 2xx status code

func (*CreateTotpTokenOK) String added in v0.26.53

func (o *CreateTotpTokenOK) String() string

type CreateTotpTokenParams added in v0.26.50

type CreateTotpTokenParams struct {

	/* MfaValidation.

	   An MFA TOTP validation request
	*/
	MfaValidation *rest_model.MfaCode

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

CreateTotpTokenParams contains all the parameters to send to the API endpoint

for the create totp token operation.

Typically these are written to a http.Request.

func NewCreateTotpTokenParams added in v0.26.50

func NewCreateTotpTokenParams() *CreateTotpTokenParams

NewCreateTotpTokenParams creates a new CreateTotpTokenParams 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 NewCreateTotpTokenParamsWithContext added in v0.26.50

func NewCreateTotpTokenParamsWithContext(ctx context.Context) *CreateTotpTokenParams

NewCreateTotpTokenParamsWithContext creates a new CreateTotpTokenParams object with the ability to set a context for a request.

func NewCreateTotpTokenParamsWithHTTPClient added in v0.26.50

func NewCreateTotpTokenParamsWithHTTPClient(client *http.Client) *CreateTotpTokenParams

NewCreateTotpTokenParamsWithHTTPClient creates a new CreateTotpTokenParams object with the ability to set a custom HTTPClient for a request.

func NewCreateTotpTokenParamsWithTimeout added in v0.26.50

func NewCreateTotpTokenParamsWithTimeout(timeout time.Duration) *CreateTotpTokenParams

NewCreateTotpTokenParamsWithTimeout creates a new CreateTotpTokenParams object with the ability to set a timeout on a request.

func (*CreateTotpTokenParams) SetContext added in v0.26.50

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

SetContext adds the context to the create totp token params

func (*CreateTotpTokenParams) SetDefaults added in v0.26.50

func (o *CreateTotpTokenParams) SetDefaults()

SetDefaults hydrates default values in the create totp token params (not the query body).

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

func (*CreateTotpTokenParams) SetHTTPClient added in v0.26.50

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

SetHTTPClient adds the HTTPClient to the create totp token params

func (*CreateTotpTokenParams) SetMfaValidation added in v0.26.50

func (o *CreateTotpTokenParams) SetMfaValidation(mfaValidation *rest_model.MfaCode)

SetMfaValidation adds the mfaValidation to the create totp token params

func (*CreateTotpTokenParams) SetTimeout added in v0.26.50

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

SetTimeout adds the timeout to the create totp token params

func (*CreateTotpTokenParams) WithContext added in v0.26.50

WithContext adds the context to the create totp token params

func (*CreateTotpTokenParams) WithDefaults added in v0.26.50

func (o *CreateTotpTokenParams) WithDefaults() *CreateTotpTokenParams

WithDefaults hydrates default values in the create totp token params (not the query body).

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

func (*CreateTotpTokenParams) WithHTTPClient added in v0.26.50

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

WithHTTPClient adds the HTTPClient to the create totp token params

func (*CreateTotpTokenParams) WithMfaValidation added in v0.26.50

func (o *CreateTotpTokenParams) WithMfaValidation(mfaValidation *rest_model.MfaCode) *CreateTotpTokenParams

WithMfaValidation adds the mfaValidation to the create totp token params

func (*CreateTotpTokenParams) WithTimeout added in v0.26.50

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

WithTimeout adds the timeout to the create totp token params

func (*CreateTotpTokenParams) WriteToRequest added in v0.26.50

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

WriteToRequest writes these params to a swagger request

type CreateTotpTokenReader added in v0.26.50

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

CreateTotpTokenReader is a Reader for the CreateTotpToken structure.

func (*CreateTotpTokenReader) ReadResponse added in v0.26.50

func (o *CreateTotpTokenReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error)

ReadResponse reads a server response into the received o.

type CreateTotpTokenUnauthorized added in v0.26.50

type CreateTotpTokenUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewCreateTotpTokenUnauthorized added in v0.26.50

func NewCreateTotpTokenUnauthorized() *CreateTotpTokenUnauthorized

NewCreateTotpTokenUnauthorized creates a CreateTotpTokenUnauthorized with default headers values

func (*CreateTotpTokenUnauthorized) Code added in v0.26.53

func (o *CreateTotpTokenUnauthorized) Code() int

Code gets the status code for the create totp token unauthorized response

func (*CreateTotpTokenUnauthorized) Error added in v0.26.50

func (*CreateTotpTokenUnauthorized) GetPayload added in v0.26.50

func (*CreateTotpTokenUnauthorized) IsClientError added in v0.26.53

func (o *CreateTotpTokenUnauthorized) IsClientError() bool

IsClientError returns true when this create totp token unauthorized response has a 4xx status code

func (*CreateTotpTokenUnauthorized) IsCode added in v0.26.53

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

IsCode returns true when this create totp token unauthorized response a status code equal to that given

func (*CreateTotpTokenUnauthorized) IsRedirect added in v0.26.53

func (o *CreateTotpTokenUnauthorized) IsRedirect() bool

IsRedirect returns true when this create totp token unauthorized response has a 3xx status code

func (*CreateTotpTokenUnauthorized) IsServerError added in v0.26.53

func (o *CreateTotpTokenUnauthorized) IsServerError() bool

IsServerError returns true when this create totp token unauthorized response has a 5xx status code

func (*CreateTotpTokenUnauthorized) IsSuccess added in v0.26.53

func (o *CreateTotpTokenUnauthorized) IsSuccess() bool

IsSuccess returns true when this create totp token unauthorized response has a 2xx status code

func (*CreateTotpTokenUnauthorized) String added in v0.26.53

func (o *CreateTotpTokenUnauthorized) String() string

type DeleteCurrentAPISessionOK

type DeleteCurrentAPISessionOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.Empty
}

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

Base empty response

func NewDeleteCurrentAPISessionOK

func NewDeleteCurrentAPISessionOK() *DeleteCurrentAPISessionOK

NewDeleteCurrentAPISessionOK creates a DeleteCurrentAPISessionOK with default headers values

func (*DeleteCurrentAPISessionOK) Code added in v0.26.53

func (o *DeleteCurrentAPISessionOK) Code() int

Code gets the status code for the delete current Api session o k response

func (*DeleteCurrentAPISessionOK) Error

func (o *DeleteCurrentAPISessionOK) Error() string

func (*DeleteCurrentAPISessionOK) GetPayload

func (o *DeleteCurrentAPISessionOK) GetPayload() *rest_model.Empty

func (*DeleteCurrentAPISessionOK) IsClientError added in v0.26.53

func (o *DeleteCurrentAPISessionOK) IsClientError() bool

IsClientError returns true when this delete current Api session o k response has a 4xx status code

func (*DeleteCurrentAPISessionOK) IsCode added in v0.26.53

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

IsCode returns true when this delete current Api session o k response a status code equal to that given

func (*DeleteCurrentAPISessionOK) IsRedirect added in v0.26.53

func (o *DeleteCurrentAPISessionOK) IsRedirect() bool

IsRedirect returns true when this delete current Api session o k response has a 3xx status code

func (*DeleteCurrentAPISessionOK) IsServerError added in v0.26.53

func (o *DeleteCurrentAPISessionOK) IsServerError() bool

IsServerError returns true when this delete current Api session o k response has a 5xx status code

func (*DeleteCurrentAPISessionOK) IsSuccess added in v0.26.53

func (o *DeleteCurrentAPISessionOK) IsSuccess() bool

IsSuccess returns true when this delete current Api session o k response has a 2xx status code

func (*DeleteCurrentAPISessionOK) String added in v0.26.53

func (o *DeleteCurrentAPISessionOK) String() string

type DeleteCurrentAPISessionParams

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

DeleteCurrentAPISessionParams contains all the parameters to send to the API endpoint

for the delete current API session operation.

Typically these are written to a http.Request.

func NewDeleteCurrentAPISessionParams

func NewDeleteCurrentAPISessionParams() *DeleteCurrentAPISessionParams

NewDeleteCurrentAPISessionParams creates a new DeleteCurrentAPISessionParams 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 NewDeleteCurrentAPISessionParamsWithContext

func NewDeleteCurrentAPISessionParamsWithContext(ctx context.Context) *DeleteCurrentAPISessionParams

NewDeleteCurrentAPISessionParamsWithContext creates a new DeleteCurrentAPISessionParams object with the ability to set a context for a request.

func NewDeleteCurrentAPISessionParamsWithHTTPClient

func NewDeleteCurrentAPISessionParamsWithHTTPClient(client *http.Client) *DeleteCurrentAPISessionParams

NewDeleteCurrentAPISessionParamsWithHTTPClient creates a new DeleteCurrentAPISessionParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteCurrentAPISessionParamsWithTimeout

func NewDeleteCurrentAPISessionParamsWithTimeout(timeout time.Duration) *DeleteCurrentAPISessionParams

NewDeleteCurrentAPISessionParamsWithTimeout creates a new DeleteCurrentAPISessionParams object with the ability to set a timeout on a request.

func (*DeleteCurrentAPISessionParams) SetContext

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

SetContext adds the context to the delete current API session params

func (*DeleteCurrentAPISessionParams) SetDefaults

func (o *DeleteCurrentAPISessionParams) SetDefaults()

SetDefaults hydrates default values in the delete current API session params (not the query body).

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

func (*DeleteCurrentAPISessionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete current API session params

func (*DeleteCurrentAPISessionParams) SetTimeout

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

SetTimeout adds the timeout to the delete current API session params

func (*DeleteCurrentAPISessionParams) WithContext

WithContext adds the context to the delete current API session params

func (*DeleteCurrentAPISessionParams) WithDefaults

WithDefaults hydrates default values in the delete current API session params (not the query body).

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

func (*DeleteCurrentAPISessionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete current API session params

func (*DeleteCurrentAPISessionParams) WithTimeout

WithTimeout adds the timeout to the delete current API session params

func (*DeleteCurrentAPISessionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteCurrentAPISessionReader

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

DeleteCurrentAPISessionReader is a Reader for the DeleteCurrentAPISession structure.

func (*DeleteCurrentAPISessionReader) ReadResponse

func (o *DeleteCurrentAPISessionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error)

ReadResponse reads a server response into the received o.

type DeleteCurrentAPISessionUnauthorized

type DeleteCurrentAPISessionUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewDeleteCurrentAPISessionUnauthorized

func NewDeleteCurrentAPISessionUnauthorized() *DeleteCurrentAPISessionUnauthorized

NewDeleteCurrentAPISessionUnauthorized creates a DeleteCurrentAPISessionUnauthorized with default headers values

func (*DeleteCurrentAPISessionUnauthorized) Code added in v0.26.53

Code gets the status code for the delete current Api session unauthorized response

func (*DeleteCurrentAPISessionUnauthorized) Error

func (*DeleteCurrentAPISessionUnauthorized) GetPayload

func (*DeleteCurrentAPISessionUnauthorized) IsClientError added in v0.26.53

func (o *DeleteCurrentAPISessionUnauthorized) IsClientError() bool

IsClientError returns true when this delete current Api session unauthorized response has a 4xx status code

func (*DeleteCurrentAPISessionUnauthorized) IsCode added in v0.26.53

IsCode returns true when this delete current Api session unauthorized response a status code equal to that given

func (*DeleteCurrentAPISessionUnauthorized) IsRedirect added in v0.26.53

func (o *DeleteCurrentAPISessionUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete current Api session unauthorized response has a 3xx status code

func (*DeleteCurrentAPISessionUnauthorized) IsServerError added in v0.26.53

func (o *DeleteCurrentAPISessionUnauthorized) IsServerError() bool

IsServerError returns true when this delete current Api session unauthorized response has a 5xx status code

func (*DeleteCurrentAPISessionUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this delete current Api session unauthorized response has a 2xx status code

func (*DeleteCurrentAPISessionUnauthorized) String added in v0.26.53

type DetailCurrentIdentityAuthenticatorNotFound

type DetailCurrentIdentityAuthenticatorNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The requested resource does not exist

func NewDetailCurrentIdentityAuthenticatorNotFound

func NewDetailCurrentIdentityAuthenticatorNotFound() *DetailCurrentIdentityAuthenticatorNotFound

NewDetailCurrentIdentityAuthenticatorNotFound creates a DetailCurrentIdentityAuthenticatorNotFound with default headers values

func (*DetailCurrentIdentityAuthenticatorNotFound) Code added in v0.26.53

Code gets the status code for the detail current identity authenticator not found response

func (*DetailCurrentIdentityAuthenticatorNotFound) Error

func (*DetailCurrentIdentityAuthenticatorNotFound) GetPayload

func (*DetailCurrentIdentityAuthenticatorNotFound) IsClientError added in v0.26.53

IsClientError returns true when this detail current identity authenticator not found response has a 4xx status code

func (*DetailCurrentIdentityAuthenticatorNotFound) IsCode added in v0.26.53

IsCode returns true when this detail current identity authenticator not found response a status code equal to that given

func (*DetailCurrentIdentityAuthenticatorNotFound) IsRedirect added in v0.26.53

IsRedirect returns true when this detail current identity authenticator not found response has a 3xx status code

func (*DetailCurrentIdentityAuthenticatorNotFound) IsServerError added in v0.26.53

IsServerError returns true when this detail current identity authenticator not found response has a 5xx status code

func (*DetailCurrentIdentityAuthenticatorNotFound) IsSuccess added in v0.26.53

IsSuccess returns true when this detail current identity authenticator not found response has a 2xx status code

func (*DetailCurrentIdentityAuthenticatorNotFound) String added in v0.26.53

type DetailCurrentIdentityAuthenticatorOK

type DetailCurrentIdentityAuthenticatorOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.DetailAuthenticatorEnvelope
}

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

A singular authenticator resource

func NewDetailCurrentIdentityAuthenticatorOK

func NewDetailCurrentIdentityAuthenticatorOK() *DetailCurrentIdentityAuthenticatorOK

NewDetailCurrentIdentityAuthenticatorOK creates a DetailCurrentIdentityAuthenticatorOK with default headers values

func (*DetailCurrentIdentityAuthenticatorOK) Code added in v0.26.53

Code gets the status code for the detail current identity authenticator o k response

func (*DetailCurrentIdentityAuthenticatorOK) Error

func (*DetailCurrentIdentityAuthenticatorOK) GetPayload

func (*DetailCurrentIdentityAuthenticatorOK) IsClientError added in v0.26.53

func (o *DetailCurrentIdentityAuthenticatorOK) IsClientError() bool

IsClientError returns true when this detail current identity authenticator o k response has a 4xx status code

func (*DetailCurrentIdentityAuthenticatorOK) IsCode added in v0.26.53

IsCode returns true when this detail current identity authenticator o k response a status code equal to that given

func (*DetailCurrentIdentityAuthenticatorOK) IsRedirect added in v0.26.53

IsRedirect returns true when this detail current identity authenticator o k response has a 3xx status code

func (*DetailCurrentIdentityAuthenticatorOK) IsServerError added in v0.26.53

func (o *DetailCurrentIdentityAuthenticatorOK) IsServerError() bool

IsServerError returns true when this detail current identity authenticator o k response has a 5xx status code

func (*DetailCurrentIdentityAuthenticatorOK) IsSuccess added in v0.26.53

IsSuccess returns true when this detail current identity authenticator o k response has a 2xx status code

func (*DetailCurrentIdentityAuthenticatorOK) String added in v0.26.53

type DetailCurrentIdentityAuthenticatorParams

type DetailCurrentIdentityAuthenticatorParams struct {

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

DetailCurrentIdentityAuthenticatorParams contains all the parameters to send to the API endpoint

for the detail current identity authenticator operation.

Typically these are written to a http.Request.

func NewDetailCurrentIdentityAuthenticatorParams

func NewDetailCurrentIdentityAuthenticatorParams() *DetailCurrentIdentityAuthenticatorParams

NewDetailCurrentIdentityAuthenticatorParams creates a new DetailCurrentIdentityAuthenticatorParams 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 NewDetailCurrentIdentityAuthenticatorParamsWithContext

func NewDetailCurrentIdentityAuthenticatorParamsWithContext(ctx context.Context) *DetailCurrentIdentityAuthenticatorParams

NewDetailCurrentIdentityAuthenticatorParamsWithContext creates a new DetailCurrentIdentityAuthenticatorParams object with the ability to set a context for a request.

func NewDetailCurrentIdentityAuthenticatorParamsWithHTTPClient

func NewDetailCurrentIdentityAuthenticatorParamsWithHTTPClient(client *http.Client) *DetailCurrentIdentityAuthenticatorParams

NewDetailCurrentIdentityAuthenticatorParamsWithHTTPClient creates a new DetailCurrentIdentityAuthenticatorParams object with the ability to set a custom HTTPClient for a request.

func NewDetailCurrentIdentityAuthenticatorParamsWithTimeout

func NewDetailCurrentIdentityAuthenticatorParamsWithTimeout(timeout time.Duration) *DetailCurrentIdentityAuthenticatorParams

NewDetailCurrentIdentityAuthenticatorParamsWithTimeout creates a new DetailCurrentIdentityAuthenticatorParams object with the ability to set a timeout on a request.

func (*DetailCurrentIdentityAuthenticatorParams) SetContext

SetContext adds the context to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) SetDefaults

SetDefaults hydrates default values in the detail current identity authenticator params (not the query body).

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

func (*DetailCurrentIdentityAuthenticatorParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) SetID

SetID adds the id to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) SetTimeout

SetTimeout adds the timeout to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) WithContext

WithContext adds the context to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) WithDefaults

WithDefaults hydrates default values in the detail current identity authenticator params (not the query body).

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

func (*DetailCurrentIdentityAuthenticatorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) WithID

WithID adds the id to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) WithTimeout

WithTimeout adds the timeout to the detail current identity authenticator params

func (*DetailCurrentIdentityAuthenticatorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DetailCurrentIdentityAuthenticatorReader

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

DetailCurrentIdentityAuthenticatorReader is a Reader for the DetailCurrentIdentityAuthenticator structure.

func (*DetailCurrentIdentityAuthenticatorReader) ReadResponse

ReadResponse reads a server response into the received o.

type DetailCurrentIdentityAuthenticatorUnauthorized

type DetailCurrentIdentityAuthenticatorUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewDetailCurrentIdentityAuthenticatorUnauthorized

func NewDetailCurrentIdentityAuthenticatorUnauthorized() *DetailCurrentIdentityAuthenticatorUnauthorized

NewDetailCurrentIdentityAuthenticatorUnauthorized creates a DetailCurrentIdentityAuthenticatorUnauthorized with default headers values

func (*DetailCurrentIdentityAuthenticatorUnauthorized) Code added in v0.26.53

Code gets the status code for the detail current identity authenticator unauthorized response

func (*DetailCurrentIdentityAuthenticatorUnauthorized) Error

func (*DetailCurrentIdentityAuthenticatorUnauthorized) GetPayload

func (*DetailCurrentIdentityAuthenticatorUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this detail current identity authenticator unauthorized response has a 4xx status code

func (*DetailCurrentIdentityAuthenticatorUnauthorized) IsCode added in v0.26.53

IsCode returns true when this detail current identity authenticator unauthorized response a status code equal to that given

func (*DetailCurrentIdentityAuthenticatorUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this detail current identity authenticator unauthorized response has a 3xx status code

func (*DetailCurrentIdentityAuthenticatorUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this detail current identity authenticator unauthorized response has a 5xx status code

func (*DetailCurrentIdentityAuthenticatorUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this detail current identity authenticator unauthorized response has a 2xx status code

func (*DetailCurrentIdentityAuthenticatorUnauthorized) String added in v0.26.53

type ExtendCurrentIdentityAuthenticatorOK

type ExtendCurrentIdentityAuthenticatorOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.IdentityExtendEnrollmentEnvelope
}

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

A response containg the identity's new certificate

func NewExtendCurrentIdentityAuthenticatorOK

func NewExtendCurrentIdentityAuthenticatorOK() *ExtendCurrentIdentityAuthenticatorOK

NewExtendCurrentIdentityAuthenticatorOK creates a ExtendCurrentIdentityAuthenticatorOK with default headers values

func (*ExtendCurrentIdentityAuthenticatorOK) Code added in v0.26.53

Code gets the status code for the extend current identity authenticator o k response

func (*ExtendCurrentIdentityAuthenticatorOK) Error

func (*ExtendCurrentIdentityAuthenticatorOK) GetPayload

func (*ExtendCurrentIdentityAuthenticatorOK) IsClientError added in v0.26.53

func (o *ExtendCurrentIdentityAuthenticatorOK) IsClientError() bool

IsClientError returns true when this extend current identity authenticator o k response has a 4xx status code

func (*ExtendCurrentIdentityAuthenticatorOK) IsCode added in v0.26.53

IsCode returns true when this extend current identity authenticator o k response a status code equal to that given

func (*ExtendCurrentIdentityAuthenticatorOK) IsRedirect added in v0.26.53

IsRedirect returns true when this extend current identity authenticator o k response has a 3xx status code

func (*ExtendCurrentIdentityAuthenticatorOK) IsServerError added in v0.26.53

func (o *ExtendCurrentIdentityAuthenticatorOK) IsServerError() bool

IsServerError returns true when this extend current identity authenticator o k response has a 5xx status code

func (*ExtendCurrentIdentityAuthenticatorOK) IsSuccess added in v0.26.53

IsSuccess returns true when this extend current identity authenticator o k response has a 2xx status code

func (*ExtendCurrentIdentityAuthenticatorOK) String added in v0.26.53

type ExtendCurrentIdentityAuthenticatorParams

type ExtendCurrentIdentityAuthenticatorParams struct {

	// Extend.
	Extend *rest_model.IdentityExtendEnrollmentRequest

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

ExtendCurrentIdentityAuthenticatorParams contains all the parameters to send to the API endpoint

for the extend current identity authenticator operation.

Typically these are written to a http.Request.

func NewExtendCurrentIdentityAuthenticatorParams

func NewExtendCurrentIdentityAuthenticatorParams() *ExtendCurrentIdentityAuthenticatorParams

NewExtendCurrentIdentityAuthenticatorParams creates a new ExtendCurrentIdentityAuthenticatorParams 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 NewExtendCurrentIdentityAuthenticatorParamsWithContext

func NewExtendCurrentIdentityAuthenticatorParamsWithContext(ctx context.Context) *ExtendCurrentIdentityAuthenticatorParams

NewExtendCurrentIdentityAuthenticatorParamsWithContext creates a new ExtendCurrentIdentityAuthenticatorParams object with the ability to set a context for a request.

func NewExtendCurrentIdentityAuthenticatorParamsWithHTTPClient

func NewExtendCurrentIdentityAuthenticatorParamsWithHTTPClient(client *http.Client) *ExtendCurrentIdentityAuthenticatorParams

NewExtendCurrentIdentityAuthenticatorParamsWithHTTPClient creates a new ExtendCurrentIdentityAuthenticatorParams object with the ability to set a custom HTTPClient for a request.

func NewExtendCurrentIdentityAuthenticatorParamsWithTimeout

func NewExtendCurrentIdentityAuthenticatorParamsWithTimeout(timeout time.Duration) *ExtendCurrentIdentityAuthenticatorParams

NewExtendCurrentIdentityAuthenticatorParamsWithTimeout creates a new ExtendCurrentIdentityAuthenticatorParams object with the ability to set a timeout on a request.

func (*ExtendCurrentIdentityAuthenticatorParams) SetContext

SetContext adds the context to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) SetDefaults

SetDefaults hydrates default values in the extend current identity authenticator params (not the query body).

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

func (*ExtendCurrentIdentityAuthenticatorParams) SetExtend

SetExtend adds the extend to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) SetID

SetID adds the id to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) SetTimeout

SetTimeout adds the timeout to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) WithContext

WithContext adds the context to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) WithDefaults

WithDefaults hydrates default values in the extend current identity authenticator params (not the query body).

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

func (*ExtendCurrentIdentityAuthenticatorParams) WithExtend

WithExtend adds the extend to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) WithID

WithID adds the id to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) WithTimeout

WithTimeout adds the timeout to the extend current identity authenticator params

func (*ExtendCurrentIdentityAuthenticatorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ExtendCurrentIdentityAuthenticatorReader

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

ExtendCurrentIdentityAuthenticatorReader is a Reader for the ExtendCurrentIdentityAuthenticator structure.

func (*ExtendCurrentIdentityAuthenticatorReader) ReadResponse

ReadResponse reads a server response into the received o.

type ExtendCurrentIdentityAuthenticatorUnauthorized

type ExtendCurrentIdentityAuthenticatorUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewExtendCurrentIdentityAuthenticatorUnauthorized

func NewExtendCurrentIdentityAuthenticatorUnauthorized() *ExtendCurrentIdentityAuthenticatorUnauthorized

NewExtendCurrentIdentityAuthenticatorUnauthorized creates a ExtendCurrentIdentityAuthenticatorUnauthorized with default headers values

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) Code added in v0.26.53

Code gets the status code for the extend current identity authenticator unauthorized response

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) Error

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) GetPayload

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this extend current identity authenticator unauthorized response has a 4xx status code

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) IsCode added in v0.26.53

IsCode returns true when this extend current identity authenticator unauthorized response a status code equal to that given

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this extend current identity authenticator unauthorized response has a 3xx status code

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this extend current identity authenticator unauthorized response has a 5xx status code

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this extend current identity authenticator unauthorized response has a 2xx status code

func (*ExtendCurrentIdentityAuthenticatorUnauthorized) String added in v0.26.53

type ExtendVerifyCurrentIdentityAuthenticatorOK

type ExtendVerifyCurrentIdentityAuthenticatorOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.Empty
}

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

Base empty response

func NewExtendVerifyCurrentIdentityAuthenticatorOK

func NewExtendVerifyCurrentIdentityAuthenticatorOK() *ExtendVerifyCurrentIdentityAuthenticatorOK

NewExtendVerifyCurrentIdentityAuthenticatorOK creates a ExtendVerifyCurrentIdentityAuthenticatorOK with default headers values

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) Code added in v0.26.53

Code gets the status code for the extend verify current identity authenticator o k response

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) Error

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) GetPayload

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) IsClientError added in v0.26.53

IsClientError returns true when this extend verify current identity authenticator o k response has a 4xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) IsCode added in v0.26.53

IsCode returns true when this extend verify current identity authenticator o k response a status code equal to that given

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) IsRedirect added in v0.26.53

IsRedirect returns true when this extend verify current identity authenticator o k response has a 3xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) IsServerError added in v0.26.53

IsServerError returns true when this extend verify current identity authenticator o k response has a 5xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) IsSuccess added in v0.26.53

IsSuccess returns true when this extend verify current identity authenticator o k response has a 2xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorOK) String added in v0.26.53

type ExtendVerifyCurrentIdentityAuthenticatorParams

type ExtendVerifyCurrentIdentityAuthenticatorParams struct {

	// Extend.
	Extend *rest_model.IdentityExtendValidateEnrollmentRequest

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

ExtendVerifyCurrentIdentityAuthenticatorParams contains all the parameters to send to the API endpoint

for the extend verify current identity authenticator operation.

Typically these are written to a http.Request.

func NewExtendVerifyCurrentIdentityAuthenticatorParams

func NewExtendVerifyCurrentIdentityAuthenticatorParams() *ExtendVerifyCurrentIdentityAuthenticatorParams

NewExtendVerifyCurrentIdentityAuthenticatorParams creates a new ExtendVerifyCurrentIdentityAuthenticatorParams 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 NewExtendVerifyCurrentIdentityAuthenticatorParamsWithContext

func NewExtendVerifyCurrentIdentityAuthenticatorParamsWithContext(ctx context.Context) *ExtendVerifyCurrentIdentityAuthenticatorParams

NewExtendVerifyCurrentIdentityAuthenticatorParamsWithContext creates a new ExtendVerifyCurrentIdentityAuthenticatorParams object with the ability to set a context for a request.

func NewExtendVerifyCurrentIdentityAuthenticatorParamsWithHTTPClient

func NewExtendVerifyCurrentIdentityAuthenticatorParamsWithHTTPClient(client *http.Client) *ExtendVerifyCurrentIdentityAuthenticatorParams

NewExtendVerifyCurrentIdentityAuthenticatorParamsWithHTTPClient creates a new ExtendVerifyCurrentIdentityAuthenticatorParams object with the ability to set a custom HTTPClient for a request.

func NewExtendVerifyCurrentIdentityAuthenticatorParamsWithTimeout

func NewExtendVerifyCurrentIdentityAuthenticatorParamsWithTimeout(timeout time.Duration) *ExtendVerifyCurrentIdentityAuthenticatorParams

NewExtendVerifyCurrentIdentityAuthenticatorParamsWithTimeout creates a new ExtendVerifyCurrentIdentityAuthenticatorParams object with the ability to set a timeout on a request.

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) SetContext

SetContext adds the context to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) SetDefaults

SetDefaults hydrates default values in the extend verify current identity authenticator params (not the query body).

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

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) SetExtend

SetExtend adds the extend to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) SetID

SetID adds the id to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) SetTimeout

SetTimeout adds the timeout to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WithContext

WithContext adds the context to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WithDefaults

WithDefaults hydrates default values in the extend verify current identity authenticator params (not the query body).

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

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WithExtend

WithExtend adds the extend to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WithID

WithID adds the id to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WithTimeout

WithTimeout adds the timeout to the extend verify current identity authenticator params

func (*ExtendVerifyCurrentIdentityAuthenticatorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ExtendVerifyCurrentIdentityAuthenticatorReader

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

ExtendVerifyCurrentIdentityAuthenticatorReader is a Reader for the ExtendVerifyCurrentIdentityAuthenticator structure.

func (*ExtendVerifyCurrentIdentityAuthenticatorReader) ReadResponse

ReadResponse reads a server response into the received o.

type ExtendVerifyCurrentIdentityAuthenticatorUnauthorized

type ExtendVerifyCurrentIdentityAuthenticatorUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewExtendVerifyCurrentIdentityAuthenticatorUnauthorized

func NewExtendVerifyCurrentIdentityAuthenticatorUnauthorized() *ExtendVerifyCurrentIdentityAuthenticatorUnauthorized

NewExtendVerifyCurrentIdentityAuthenticatorUnauthorized creates a ExtendVerifyCurrentIdentityAuthenticatorUnauthorized with default headers values

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) Code added in v0.26.53

Code gets the status code for the extend verify current identity authenticator unauthorized response

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) Error

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) GetPayload

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this extend verify current identity authenticator unauthorized response has a 4xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) IsCode added in v0.26.53

IsCode returns true when this extend verify current identity authenticator unauthorized response a status code equal to that given

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this extend verify current identity authenticator unauthorized response has a 3xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this extend verify current identity authenticator unauthorized response has a 5xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this extend verify current identity authenticator unauthorized response has a 2xx status code

func (*ExtendVerifyCurrentIdentityAuthenticatorUnauthorized) String added in v0.26.53

type GetCurrentAPISessionOK

type GetCurrentAPISessionOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.CurrentAPISessionDetailEnvelope
}

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

The API session associated with the session used to issue the request

func NewGetCurrentAPISessionOK

func NewGetCurrentAPISessionOK() *GetCurrentAPISessionOK

NewGetCurrentAPISessionOK creates a GetCurrentAPISessionOK with default headers values

func (*GetCurrentAPISessionOK) Code added in v0.26.53

func (o *GetCurrentAPISessionOK) Code() int

Code gets the status code for the get current Api session o k response

func (*GetCurrentAPISessionOK) Error

func (o *GetCurrentAPISessionOK) Error() string

func (*GetCurrentAPISessionOK) GetPayload

func (*GetCurrentAPISessionOK) IsClientError added in v0.26.53

func (o *GetCurrentAPISessionOK) IsClientError() bool

IsClientError returns true when this get current Api session o k response has a 4xx status code

func (*GetCurrentAPISessionOK) IsCode added in v0.26.53

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

IsCode returns true when this get current Api session o k response a status code equal to that given

func (*GetCurrentAPISessionOK) IsRedirect added in v0.26.53

func (o *GetCurrentAPISessionOK) IsRedirect() bool

IsRedirect returns true when this get current Api session o k response has a 3xx status code

func (*GetCurrentAPISessionOK) IsServerError added in v0.26.53

func (o *GetCurrentAPISessionOK) IsServerError() bool

IsServerError returns true when this get current Api session o k response has a 5xx status code

func (*GetCurrentAPISessionOK) IsSuccess added in v0.26.53

func (o *GetCurrentAPISessionOK) IsSuccess() bool

IsSuccess returns true when this get current Api session o k response has a 2xx status code

func (*GetCurrentAPISessionOK) String added in v0.26.53

func (o *GetCurrentAPISessionOK) String() string

type GetCurrentAPISessionParams

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

GetCurrentAPISessionParams contains all the parameters to send to the API endpoint

for the get current API session operation.

Typically these are written to a http.Request.

func NewGetCurrentAPISessionParams

func NewGetCurrentAPISessionParams() *GetCurrentAPISessionParams

NewGetCurrentAPISessionParams creates a new GetCurrentAPISessionParams 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 NewGetCurrentAPISessionParamsWithContext

func NewGetCurrentAPISessionParamsWithContext(ctx context.Context) *GetCurrentAPISessionParams

NewGetCurrentAPISessionParamsWithContext creates a new GetCurrentAPISessionParams object with the ability to set a context for a request.

func NewGetCurrentAPISessionParamsWithHTTPClient

func NewGetCurrentAPISessionParamsWithHTTPClient(client *http.Client) *GetCurrentAPISessionParams

NewGetCurrentAPISessionParamsWithHTTPClient creates a new GetCurrentAPISessionParams object with the ability to set a custom HTTPClient for a request.

func NewGetCurrentAPISessionParamsWithTimeout

func NewGetCurrentAPISessionParamsWithTimeout(timeout time.Duration) *GetCurrentAPISessionParams

NewGetCurrentAPISessionParamsWithTimeout creates a new GetCurrentAPISessionParams object with the ability to set a timeout on a request.

func (*GetCurrentAPISessionParams) SetContext

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

SetContext adds the context to the get current API session params

func (*GetCurrentAPISessionParams) SetDefaults

func (o *GetCurrentAPISessionParams) SetDefaults()

SetDefaults hydrates default values in the get current API session params (not the query body).

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

func (*GetCurrentAPISessionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get current API session params

func (*GetCurrentAPISessionParams) SetTimeout

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

SetTimeout adds the timeout to the get current API session params

func (*GetCurrentAPISessionParams) WithContext

WithContext adds the context to the get current API session params

func (*GetCurrentAPISessionParams) WithDefaults

WithDefaults hydrates default values in the get current API session params (not the query body).

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

func (*GetCurrentAPISessionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get current API session params

func (*GetCurrentAPISessionParams) WithTimeout

WithTimeout adds the timeout to the get current API session params

func (*GetCurrentAPISessionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCurrentAPISessionReader

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

GetCurrentAPISessionReader is a Reader for the GetCurrentAPISession structure.

func (*GetCurrentAPISessionReader) ReadResponse

func (o *GetCurrentAPISessionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error)

ReadResponse reads a server response into the received o.

type GetCurrentAPISessionUnauthorized

type GetCurrentAPISessionUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewGetCurrentAPISessionUnauthorized

func NewGetCurrentAPISessionUnauthorized() *GetCurrentAPISessionUnauthorized

NewGetCurrentAPISessionUnauthorized creates a GetCurrentAPISessionUnauthorized with default headers values

func (*GetCurrentAPISessionUnauthorized) Code added in v0.26.53

Code gets the status code for the get current Api session unauthorized response

func (*GetCurrentAPISessionUnauthorized) Error

func (*GetCurrentAPISessionUnauthorized) GetPayload

func (*GetCurrentAPISessionUnauthorized) IsClientError added in v0.26.53

func (o *GetCurrentAPISessionUnauthorized) IsClientError() bool

IsClientError returns true when this get current Api session unauthorized response has a 4xx status code

func (*GetCurrentAPISessionUnauthorized) IsCode added in v0.26.53

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

IsCode returns true when this get current Api session unauthorized response a status code equal to that given

func (*GetCurrentAPISessionUnauthorized) IsRedirect added in v0.26.53

func (o *GetCurrentAPISessionUnauthorized) IsRedirect() bool

IsRedirect returns true when this get current Api session unauthorized response has a 3xx status code

func (*GetCurrentAPISessionUnauthorized) IsServerError added in v0.26.53

func (o *GetCurrentAPISessionUnauthorized) IsServerError() bool

IsServerError returns true when this get current Api session unauthorized response has a 5xx status code

func (*GetCurrentAPISessionUnauthorized) IsSuccess added in v0.26.53

func (o *GetCurrentAPISessionUnauthorized) IsSuccess() bool

IsSuccess returns true when this get current Api session unauthorized response has a 2xx status code

func (*GetCurrentAPISessionUnauthorized) String added in v0.26.53

type ListCurrentIdentityAuthenticatorsBadRequest

type ListCurrentIdentityAuthenticatorsBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewListCurrentIdentityAuthenticatorsBadRequest

func NewListCurrentIdentityAuthenticatorsBadRequest() *ListCurrentIdentityAuthenticatorsBadRequest

NewListCurrentIdentityAuthenticatorsBadRequest creates a ListCurrentIdentityAuthenticatorsBadRequest with default headers values

func (*ListCurrentIdentityAuthenticatorsBadRequest) Code added in v0.26.53

Code gets the status code for the list current identity authenticators bad request response

func (*ListCurrentIdentityAuthenticatorsBadRequest) Error

func (*ListCurrentIdentityAuthenticatorsBadRequest) GetPayload

func (*ListCurrentIdentityAuthenticatorsBadRequest) IsClientError added in v0.26.53

IsClientError returns true when this list current identity authenticators bad request response has a 4xx status code

func (*ListCurrentIdentityAuthenticatorsBadRequest) IsCode added in v0.26.53

IsCode returns true when this list current identity authenticators bad request response a status code equal to that given

func (*ListCurrentIdentityAuthenticatorsBadRequest) IsRedirect added in v0.26.53

IsRedirect returns true when this list current identity authenticators bad request response has a 3xx status code

func (*ListCurrentIdentityAuthenticatorsBadRequest) IsServerError added in v0.26.53

IsServerError returns true when this list current identity authenticators bad request response has a 5xx status code

func (*ListCurrentIdentityAuthenticatorsBadRequest) IsSuccess added in v0.26.53

IsSuccess returns true when this list current identity authenticators bad request response has a 2xx status code

func (*ListCurrentIdentityAuthenticatorsBadRequest) String added in v0.26.53

type ListCurrentIdentityAuthenticatorsOK

type ListCurrentIdentityAuthenticatorsOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.ListAuthenticatorsEnvelope
}

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

A list of authenticators

func NewListCurrentIdentityAuthenticatorsOK

func NewListCurrentIdentityAuthenticatorsOK() *ListCurrentIdentityAuthenticatorsOK

NewListCurrentIdentityAuthenticatorsOK creates a ListCurrentIdentityAuthenticatorsOK with default headers values

func (*ListCurrentIdentityAuthenticatorsOK) Code added in v0.26.53

Code gets the status code for the list current identity authenticators o k response

func (*ListCurrentIdentityAuthenticatorsOK) Error

func (*ListCurrentIdentityAuthenticatorsOK) GetPayload

func (*ListCurrentIdentityAuthenticatorsOK) IsClientError added in v0.26.53

func (o *ListCurrentIdentityAuthenticatorsOK) IsClientError() bool

IsClientError returns true when this list current identity authenticators o k response has a 4xx status code

func (*ListCurrentIdentityAuthenticatorsOK) IsCode added in v0.26.53

IsCode returns true when this list current identity authenticators o k response a status code equal to that given

func (*ListCurrentIdentityAuthenticatorsOK) IsRedirect added in v0.26.53

func (o *ListCurrentIdentityAuthenticatorsOK) IsRedirect() bool

IsRedirect returns true when this list current identity authenticators o k response has a 3xx status code

func (*ListCurrentIdentityAuthenticatorsOK) IsServerError added in v0.26.53

func (o *ListCurrentIdentityAuthenticatorsOK) IsServerError() bool

IsServerError returns true when this list current identity authenticators o k response has a 5xx status code

func (*ListCurrentIdentityAuthenticatorsOK) IsSuccess added in v0.26.53

IsSuccess returns true when this list current identity authenticators o k response has a 2xx status code

func (*ListCurrentIdentityAuthenticatorsOK) String added in v0.26.53

type ListCurrentIdentityAuthenticatorsParams

type ListCurrentIdentityAuthenticatorsParams struct {

	// Filter.
	Filter *string

	// Limit.
	Limit *int64

	// Offset.
	Offset *int64

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

ListCurrentIdentityAuthenticatorsParams contains all the parameters to send to the API endpoint

for the list current identity authenticators operation.

Typically these are written to a http.Request.

func NewListCurrentIdentityAuthenticatorsParams

func NewListCurrentIdentityAuthenticatorsParams() *ListCurrentIdentityAuthenticatorsParams

NewListCurrentIdentityAuthenticatorsParams creates a new ListCurrentIdentityAuthenticatorsParams 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 NewListCurrentIdentityAuthenticatorsParamsWithContext

func NewListCurrentIdentityAuthenticatorsParamsWithContext(ctx context.Context) *ListCurrentIdentityAuthenticatorsParams

NewListCurrentIdentityAuthenticatorsParamsWithContext creates a new ListCurrentIdentityAuthenticatorsParams object with the ability to set a context for a request.

func NewListCurrentIdentityAuthenticatorsParamsWithHTTPClient

func NewListCurrentIdentityAuthenticatorsParamsWithHTTPClient(client *http.Client) *ListCurrentIdentityAuthenticatorsParams

NewListCurrentIdentityAuthenticatorsParamsWithHTTPClient creates a new ListCurrentIdentityAuthenticatorsParams object with the ability to set a custom HTTPClient for a request.

func NewListCurrentIdentityAuthenticatorsParamsWithTimeout

func NewListCurrentIdentityAuthenticatorsParamsWithTimeout(timeout time.Duration) *ListCurrentIdentityAuthenticatorsParams

NewListCurrentIdentityAuthenticatorsParamsWithTimeout creates a new ListCurrentIdentityAuthenticatorsParams object with the ability to set a timeout on a request.

func (*ListCurrentIdentityAuthenticatorsParams) SetContext

SetContext adds the context to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) SetDefaults

func (o *ListCurrentIdentityAuthenticatorsParams) SetDefaults()

SetDefaults hydrates default values in the list current identity authenticators params (not the query body).

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

func (*ListCurrentIdentityAuthenticatorsParams) SetFilter

func (o *ListCurrentIdentityAuthenticatorsParams) SetFilter(filter *string)

SetFilter adds the filter to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) SetLimit

func (o *ListCurrentIdentityAuthenticatorsParams) SetLimit(limit *int64)

SetLimit adds the limit to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) SetOffset

func (o *ListCurrentIdentityAuthenticatorsParams) SetOffset(offset *int64)

SetOffset adds the offset to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) SetTimeout

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

SetTimeout adds the timeout to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WithContext

WithContext adds the context to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WithDefaults

WithDefaults hydrates default values in the list current identity authenticators params (not the query body).

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

func (*ListCurrentIdentityAuthenticatorsParams) WithFilter

WithFilter adds the filter to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WithLimit

WithLimit adds the limit to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WithOffset

WithOffset adds the offset to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WithTimeout

WithTimeout adds the timeout to the list current identity authenticators params

func (*ListCurrentIdentityAuthenticatorsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListCurrentIdentityAuthenticatorsReader

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

ListCurrentIdentityAuthenticatorsReader is a Reader for the ListCurrentIdentityAuthenticators structure.

func (*ListCurrentIdentityAuthenticatorsReader) ReadResponse

ReadResponse reads a server response into the received o.

type ListCurrentIdentityAuthenticatorsUnauthorized

type ListCurrentIdentityAuthenticatorsUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewListCurrentIdentityAuthenticatorsUnauthorized

func NewListCurrentIdentityAuthenticatorsUnauthorized() *ListCurrentIdentityAuthenticatorsUnauthorized

NewListCurrentIdentityAuthenticatorsUnauthorized creates a ListCurrentIdentityAuthenticatorsUnauthorized with default headers values

func (*ListCurrentIdentityAuthenticatorsUnauthorized) Code added in v0.26.53

Code gets the status code for the list current identity authenticators unauthorized response

func (*ListCurrentIdentityAuthenticatorsUnauthorized) Error

func (*ListCurrentIdentityAuthenticatorsUnauthorized) GetPayload

func (*ListCurrentIdentityAuthenticatorsUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this list current identity authenticators unauthorized response has a 4xx status code

func (*ListCurrentIdentityAuthenticatorsUnauthorized) IsCode added in v0.26.53

IsCode returns true when this list current identity authenticators unauthorized response a status code equal to that given

func (*ListCurrentIdentityAuthenticatorsUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this list current identity authenticators unauthorized response has a 3xx status code

func (*ListCurrentIdentityAuthenticatorsUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this list current identity authenticators unauthorized response has a 5xx status code

func (*ListCurrentIdentityAuthenticatorsUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this list current identity authenticators unauthorized response has a 2xx status code

func (*ListCurrentIdentityAuthenticatorsUnauthorized) String added in v0.26.53

type PatchCurrentIdentityAuthenticatorBadRequest

type PatchCurrentIdentityAuthenticatorBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewPatchCurrentIdentityAuthenticatorBadRequest

func NewPatchCurrentIdentityAuthenticatorBadRequest() *PatchCurrentIdentityAuthenticatorBadRequest

NewPatchCurrentIdentityAuthenticatorBadRequest creates a PatchCurrentIdentityAuthenticatorBadRequest with default headers values

func (*PatchCurrentIdentityAuthenticatorBadRequest) Code added in v0.26.53

Code gets the status code for the patch current identity authenticator bad request response

func (*PatchCurrentIdentityAuthenticatorBadRequest) Error

func (*PatchCurrentIdentityAuthenticatorBadRequest) GetPayload

func (*PatchCurrentIdentityAuthenticatorBadRequest) IsClientError added in v0.26.53

IsClientError returns true when this patch current identity authenticator bad request response has a 4xx status code

func (*PatchCurrentIdentityAuthenticatorBadRequest) IsCode added in v0.26.53

IsCode returns true when this patch current identity authenticator bad request response a status code equal to that given

func (*PatchCurrentIdentityAuthenticatorBadRequest) IsRedirect added in v0.26.53

IsRedirect returns true when this patch current identity authenticator bad request response has a 3xx status code

func (*PatchCurrentIdentityAuthenticatorBadRequest) IsServerError added in v0.26.53

IsServerError returns true when this patch current identity authenticator bad request response has a 5xx status code

func (*PatchCurrentIdentityAuthenticatorBadRequest) IsSuccess added in v0.26.53

IsSuccess returns true when this patch current identity authenticator bad request response has a 2xx status code

func (*PatchCurrentIdentityAuthenticatorBadRequest) String added in v0.26.53

type PatchCurrentIdentityAuthenticatorNotFound

type PatchCurrentIdentityAuthenticatorNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The requested resource does not exist

func NewPatchCurrentIdentityAuthenticatorNotFound

func NewPatchCurrentIdentityAuthenticatorNotFound() *PatchCurrentIdentityAuthenticatorNotFound

NewPatchCurrentIdentityAuthenticatorNotFound creates a PatchCurrentIdentityAuthenticatorNotFound with default headers values

func (*PatchCurrentIdentityAuthenticatorNotFound) Code added in v0.26.53

Code gets the status code for the patch current identity authenticator not found response

func (*PatchCurrentIdentityAuthenticatorNotFound) Error

func (*PatchCurrentIdentityAuthenticatorNotFound) GetPayload

func (*PatchCurrentIdentityAuthenticatorNotFound) IsClientError added in v0.26.53

IsClientError returns true when this patch current identity authenticator not found response has a 4xx status code

func (*PatchCurrentIdentityAuthenticatorNotFound) IsCode added in v0.26.53

IsCode returns true when this patch current identity authenticator not found response a status code equal to that given

func (*PatchCurrentIdentityAuthenticatorNotFound) IsRedirect added in v0.26.53

IsRedirect returns true when this patch current identity authenticator not found response has a 3xx status code

func (*PatchCurrentIdentityAuthenticatorNotFound) IsServerError added in v0.26.53

IsServerError returns true when this patch current identity authenticator not found response has a 5xx status code

func (*PatchCurrentIdentityAuthenticatorNotFound) IsSuccess added in v0.26.53

IsSuccess returns true when this patch current identity authenticator not found response has a 2xx status code

func (*PatchCurrentIdentityAuthenticatorNotFound) String added in v0.26.53

type PatchCurrentIdentityAuthenticatorOK

type PatchCurrentIdentityAuthenticatorOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.Empty
}

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

The patch request was successful and the resource has been altered

func NewPatchCurrentIdentityAuthenticatorOK

func NewPatchCurrentIdentityAuthenticatorOK() *PatchCurrentIdentityAuthenticatorOK

NewPatchCurrentIdentityAuthenticatorOK creates a PatchCurrentIdentityAuthenticatorOK with default headers values

func (*PatchCurrentIdentityAuthenticatorOK) Code added in v0.26.53

Code gets the status code for the patch current identity authenticator o k response

func (*PatchCurrentIdentityAuthenticatorOK) Error

func (*PatchCurrentIdentityAuthenticatorOK) GetPayload

func (*PatchCurrentIdentityAuthenticatorOK) IsClientError added in v0.26.53

func (o *PatchCurrentIdentityAuthenticatorOK) IsClientError() bool

IsClientError returns true when this patch current identity authenticator o k response has a 4xx status code

func (*PatchCurrentIdentityAuthenticatorOK) IsCode added in v0.26.53

IsCode returns true when this patch current identity authenticator o k response a status code equal to that given

func (*PatchCurrentIdentityAuthenticatorOK) IsRedirect added in v0.26.53

func (o *PatchCurrentIdentityAuthenticatorOK) IsRedirect() bool

IsRedirect returns true when this patch current identity authenticator o k response has a 3xx status code

func (*PatchCurrentIdentityAuthenticatorOK) IsServerError added in v0.26.53

func (o *PatchCurrentIdentityAuthenticatorOK) IsServerError() bool

IsServerError returns true when this patch current identity authenticator o k response has a 5xx status code

func (*PatchCurrentIdentityAuthenticatorOK) IsSuccess added in v0.26.53

IsSuccess returns true when this patch current identity authenticator o k response has a 2xx status code

func (*PatchCurrentIdentityAuthenticatorOK) String added in v0.26.53

type PatchCurrentIdentityAuthenticatorParams

type PatchCurrentIdentityAuthenticatorParams struct {

	/* Authenticator.

	   An authenticator patch object
	*/
	Authenticator *rest_model.AuthenticatorPatchWithCurrent

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

PatchCurrentIdentityAuthenticatorParams contains all the parameters to send to the API endpoint

for the patch current identity authenticator operation.

Typically these are written to a http.Request.

func NewPatchCurrentIdentityAuthenticatorParams

func NewPatchCurrentIdentityAuthenticatorParams() *PatchCurrentIdentityAuthenticatorParams

NewPatchCurrentIdentityAuthenticatorParams creates a new PatchCurrentIdentityAuthenticatorParams 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 NewPatchCurrentIdentityAuthenticatorParamsWithContext

func NewPatchCurrentIdentityAuthenticatorParamsWithContext(ctx context.Context) *PatchCurrentIdentityAuthenticatorParams

NewPatchCurrentIdentityAuthenticatorParamsWithContext creates a new PatchCurrentIdentityAuthenticatorParams object with the ability to set a context for a request.

func NewPatchCurrentIdentityAuthenticatorParamsWithHTTPClient

func NewPatchCurrentIdentityAuthenticatorParamsWithHTTPClient(client *http.Client) *PatchCurrentIdentityAuthenticatorParams

NewPatchCurrentIdentityAuthenticatorParamsWithHTTPClient creates a new PatchCurrentIdentityAuthenticatorParams object with the ability to set a custom HTTPClient for a request.

func NewPatchCurrentIdentityAuthenticatorParamsWithTimeout

func NewPatchCurrentIdentityAuthenticatorParamsWithTimeout(timeout time.Duration) *PatchCurrentIdentityAuthenticatorParams

NewPatchCurrentIdentityAuthenticatorParamsWithTimeout creates a new PatchCurrentIdentityAuthenticatorParams object with the ability to set a timeout on a request.

func (*PatchCurrentIdentityAuthenticatorParams) SetAuthenticator

SetAuthenticator adds the authenticator to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) SetContext

SetContext adds the context to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) SetDefaults

func (o *PatchCurrentIdentityAuthenticatorParams) SetDefaults()

SetDefaults hydrates default values in the patch current identity authenticator params (not the query body).

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

func (*PatchCurrentIdentityAuthenticatorParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) SetID

SetID adds the id to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) SetTimeout

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

SetTimeout adds the timeout to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) WithAuthenticator

WithAuthenticator adds the authenticator to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) WithContext

WithContext adds the context to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) WithDefaults

WithDefaults hydrates default values in the patch current identity authenticator params (not the query body).

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

func (*PatchCurrentIdentityAuthenticatorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) WithID

WithID adds the id to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) WithTimeout

WithTimeout adds the timeout to the patch current identity authenticator params

func (*PatchCurrentIdentityAuthenticatorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchCurrentIdentityAuthenticatorReader

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

PatchCurrentIdentityAuthenticatorReader is a Reader for the PatchCurrentIdentityAuthenticator structure.

func (*PatchCurrentIdentityAuthenticatorReader) ReadResponse

ReadResponse reads a server response into the received o.

type PatchCurrentIdentityAuthenticatorUnauthorized

type PatchCurrentIdentityAuthenticatorUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewPatchCurrentIdentityAuthenticatorUnauthorized

func NewPatchCurrentIdentityAuthenticatorUnauthorized() *PatchCurrentIdentityAuthenticatorUnauthorized

NewPatchCurrentIdentityAuthenticatorUnauthorized creates a PatchCurrentIdentityAuthenticatorUnauthorized with default headers values

func (*PatchCurrentIdentityAuthenticatorUnauthorized) Code added in v0.26.53

Code gets the status code for the patch current identity authenticator unauthorized response

func (*PatchCurrentIdentityAuthenticatorUnauthorized) Error

func (*PatchCurrentIdentityAuthenticatorUnauthorized) GetPayload

func (*PatchCurrentIdentityAuthenticatorUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this patch current identity authenticator unauthorized response has a 4xx status code

func (*PatchCurrentIdentityAuthenticatorUnauthorized) IsCode added in v0.26.53

IsCode returns true when this patch current identity authenticator unauthorized response a status code equal to that given

func (*PatchCurrentIdentityAuthenticatorUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this patch current identity authenticator unauthorized response has a 3xx status code

func (*PatchCurrentIdentityAuthenticatorUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this patch current identity authenticator unauthorized response has a 5xx status code

func (*PatchCurrentIdentityAuthenticatorUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this patch current identity authenticator unauthorized response has a 2xx status code

func (*PatchCurrentIdentityAuthenticatorUnauthorized) String added in v0.26.53

type UpdateCurrentIdentityAuthenticatorBadRequest

type UpdateCurrentIdentityAuthenticatorBadRequest struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

func NewUpdateCurrentIdentityAuthenticatorBadRequest

func NewUpdateCurrentIdentityAuthenticatorBadRequest() *UpdateCurrentIdentityAuthenticatorBadRequest

NewUpdateCurrentIdentityAuthenticatorBadRequest creates a UpdateCurrentIdentityAuthenticatorBadRequest with default headers values

func (*UpdateCurrentIdentityAuthenticatorBadRequest) Code added in v0.26.53

Code gets the status code for the update current identity authenticator bad request response

func (*UpdateCurrentIdentityAuthenticatorBadRequest) Error

func (*UpdateCurrentIdentityAuthenticatorBadRequest) GetPayload

func (*UpdateCurrentIdentityAuthenticatorBadRequest) IsClientError added in v0.26.53

IsClientError returns true when this update current identity authenticator bad request response has a 4xx status code

func (*UpdateCurrentIdentityAuthenticatorBadRequest) IsCode added in v0.26.53

IsCode returns true when this update current identity authenticator bad request response a status code equal to that given

func (*UpdateCurrentIdentityAuthenticatorBadRequest) IsRedirect added in v0.26.53

IsRedirect returns true when this update current identity authenticator bad request response has a 3xx status code

func (*UpdateCurrentIdentityAuthenticatorBadRequest) IsServerError added in v0.26.53

IsServerError returns true when this update current identity authenticator bad request response has a 5xx status code

func (*UpdateCurrentIdentityAuthenticatorBadRequest) IsSuccess added in v0.26.53

IsSuccess returns true when this update current identity authenticator bad request response has a 2xx status code

func (*UpdateCurrentIdentityAuthenticatorBadRequest) String added in v0.26.53

type UpdateCurrentIdentityAuthenticatorNotFound

type UpdateCurrentIdentityAuthenticatorNotFound struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The requested resource does not exist

func NewUpdateCurrentIdentityAuthenticatorNotFound

func NewUpdateCurrentIdentityAuthenticatorNotFound() *UpdateCurrentIdentityAuthenticatorNotFound

NewUpdateCurrentIdentityAuthenticatorNotFound creates a UpdateCurrentIdentityAuthenticatorNotFound with default headers values

func (*UpdateCurrentIdentityAuthenticatorNotFound) Code added in v0.26.53

Code gets the status code for the update current identity authenticator not found response

func (*UpdateCurrentIdentityAuthenticatorNotFound) Error

func (*UpdateCurrentIdentityAuthenticatorNotFound) GetPayload

func (*UpdateCurrentIdentityAuthenticatorNotFound) IsClientError added in v0.26.53

IsClientError returns true when this update current identity authenticator not found response has a 4xx status code

func (*UpdateCurrentIdentityAuthenticatorNotFound) IsCode added in v0.26.53

IsCode returns true when this update current identity authenticator not found response a status code equal to that given

func (*UpdateCurrentIdentityAuthenticatorNotFound) IsRedirect added in v0.26.53

IsRedirect returns true when this update current identity authenticator not found response has a 3xx status code

func (*UpdateCurrentIdentityAuthenticatorNotFound) IsServerError added in v0.26.53

IsServerError returns true when this update current identity authenticator not found response has a 5xx status code

func (*UpdateCurrentIdentityAuthenticatorNotFound) IsSuccess added in v0.26.53

IsSuccess returns true when this update current identity authenticator not found response has a 2xx status code

func (*UpdateCurrentIdentityAuthenticatorNotFound) String added in v0.26.53

type UpdateCurrentIdentityAuthenticatorOK

type UpdateCurrentIdentityAuthenticatorOK struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.Empty
}

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

The update request was successful and the resource has been altered

func NewUpdateCurrentIdentityAuthenticatorOK

func NewUpdateCurrentIdentityAuthenticatorOK() *UpdateCurrentIdentityAuthenticatorOK

NewUpdateCurrentIdentityAuthenticatorOK creates a UpdateCurrentIdentityAuthenticatorOK with default headers values

func (*UpdateCurrentIdentityAuthenticatorOK) Code added in v0.26.53

Code gets the status code for the update current identity authenticator o k response

func (*UpdateCurrentIdentityAuthenticatorOK) Error

func (*UpdateCurrentIdentityAuthenticatorOK) GetPayload

func (*UpdateCurrentIdentityAuthenticatorOK) IsClientError added in v0.26.53

func (o *UpdateCurrentIdentityAuthenticatorOK) IsClientError() bool

IsClientError returns true when this update current identity authenticator o k response has a 4xx status code

func (*UpdateCurrentIdentityAuthenticatorOK) IsCode added in v0.26.53

IsCode returns true when this update current identity authenticator o k response a status code equal to that given

func (*UpdateCurrentIdentityAuthenticatorOK) IsRedirect added in v0.26.53

IsRedirect returns true when this update current identity authenticator o k response has a 3xx status code

func (*UpdateCurrentIdentityAuthenticatorOK) IsServerError added in v0.26.53

func (o *UpdateCurrentIdentityAuthenticatorOK) IsServerError() bool

IsServerError returns true when this update current identity authenticator o k response has a 5xx status code

func (*UpdateCurrentIdentityAuthenticatorOK) IsSuccess added in v0.26.53

IsSuccess returns true when this update current identity authenticator o k response has a 2xx status code

func (*UpdateCurrentIdentityAuthenticatorOK) String added in v0.26.53

type UpdateCurrentIdentityAuthenticatorParams

type UpdateCurrentIdentityAuthenticatorParams struct {

	/* Authenticator.

	   An authenticator put object
	*/
	Authenticator *rest_model.AuthenticatorUpdateWithCurrent

	/* ID.

	   The id of the requested resource
	*/
	ID string

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

UpdateCurrentIdentityAuthenticatorParams contains all the parameters to send to the API endpoint

for the update current identity authenticator operation.

Typically these are written to a http.Request.

func NewUpdateCurrentIdentityAuthenticatorParams

func NewUpdateCurrentIdentityAuthenticatorParams() *UpdateCurrentIdentityAuthenticatorParams

NewUpdateCurrentIdentityAuthenticatorParams creates a new UpdateCurrentIdentityAuthenticatorParams 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 NewUpdateCurrentIdentityAuthenticatorParamsWithContext

func NewUpdateCurrentIdentityAuthenticatorParamsWithContext(ctx context.Context) *UpdateCurrentIdentityAuthenticatorParams

NewUpdateCurrentIdentityAuthenticatorParamsWithContext creates a new UpdateCurrentIdentityAuthenticatorParams object with the ability to set a context for a request.

func NewUpdateCurrentIdentityAuthenticatorParamsWithHTTPClient

func NewUpdateCurrentIdentityAuthenticatorParamsWithHTTPClient(client *http.Client) *UpdateCurrentIdentityAuthenticatorParams

NewUpdateCurrentIdentityAuthenticatorParamsWithHTTPClient creates a new UpdateCurrentIdentityAuthenticatorParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateCurrentIdentityAuthenticatorParamsWithTimeout

func NewUpdateCurrentIdentityAuthenticatorParamsWithTimeout(timeout time.Duration) *UpdateCurrentIdentityAuthenticatorParams

NewUpdateCurrentIdentityAuthenticatorParamsWithTimeout creates a new UpdateCurrentIdentityAuthenticatorParams object with the ability to set a timeout on a request.

func (*UpdateCurrentIdentityAuthenticatorParams) SetAuthenticator

SetAuthenticator adds the authenticator to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) SetContext

SetContext adds the context to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) SetDefaults

SetDefaults hydrates default values in the update current identity authenticator params (not the query body).

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

func (*UpdateCurrentIdentityAuthenticatorParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) SetID

SetID adds the id to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) SetTimeout

SetTimeout adds the timeout to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) WithAuthenticator

WithAuthenticator adds the authenticator to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) WithContext

WithContext adds the context to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) WithDefaults

WithDefaults hydrates default values in the update current identity authenticator params (not the query body).

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

func (*UpdateCurrentIdentityAuthenticatorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) WithID

WithID adds the id to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) WithTimeout

WithTimeout adds the timeout to the update current identity authenticator params

func (*UpdateCurrentIdentityAuthenticatorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateCurrentIdentityAuthenticatorReader

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

UpdateCurrentIdentityAuthenticatorReader is a Reader for the UpdateCurrentIdentityAuthenticator structure.

func (*UpdateCurrentIdentityAuthenticatorReader) ReadResponse

ReadResponse reads a server response into the received o.

type UpdateCurrentIdentityAuthenticatorUnauthorized

type UpdateCurrentIdentityAuthenticatorUnauthorized struct {

	/* Denotes different type of security token related information
	 */
	WWWAuthenticate []string

	Payload *rest_model.APIErrorEnvelope
}

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

The supplied session does not have the correct access rights to request this resource

func NewUpdateCurrentIdentityAuthenticatorUnauthorized

func NewUpdateCurrentIdentityAuthenticatorUnauthorized() *UpdateCurrentIdentityAuthenticatorUnauthorized

NewUpdateCurrentIdentityAuthenticatorUnauthorized creates a UpdateCurrentIdentityAuthenticatorUnauthorized with default headers values

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) Code added in v0.26.53

Code gets the status code for the update current identity authenticator unauthorized response

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) Error

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) GetPayload

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) IsClientError added in v0.26.53

IsClientError returns true when this update current identity authenticator unauthorized response has a 4xx status code

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) IsCode added in v0.26.53

IsCode returns true when this update current identity authenticator unauthorized response a status code equal to that given

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) IsRedirect added in v0.26.53

IsRedirect returns true when this update current identity authenticator unauthorized response has a 3xx status code

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) IsServerError added in v0.26.53

IsServerError returns true when this update current identity authenticator unauthorized response has a 5xx status code

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) IsSuccess added in v0.26.53

IsSuccess returns true when this update current identity authenticator unauthorized response has a 2xx status code

func (*UpdateCurrentIdentityAuthenticatorUnauthorized) String added in v0.26.53

Jump to

Keyboard shortcuts

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