o_auth

package
v0.0.0-...-e2f0fdc Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2023 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   DeleteOauthClient deletes o auth client
	*/
	DeleteOauthClient(ctx context.Context, params *DeleteOauthClientParams) error
	/*
	   GetOauthAuthorization gets a client that is authorized by the resource owner
	*/
	GetOauthAuthorization(ctx context.Context, params *GetOauthAuthorizationParams) (*GetOauthAuthorizationOK, error)
	/*
	   GetOauthAuthorizations lists clients that have been authorized requested or revoked by the resource owner
	*/
	GetOauthAuthorizations(ctx context.Context, params *GetOauthAuthorizationsParams) (*GetOauthAuthorizationsOK, error)
	/*
	   GetOauthClient gets o auth client
	*/
	GetOauthClient(ctx context.Context, params *GetOauthClientParams) (*GetOauthClientOK, error)
	/*
	   GetOauthClientUsageQueryResult gets the results of a usage query
	*/
	GetOauthClientUsageQueryResult(ctx context.Context, params *GetOauthClientUsageQueryResultParams) (*GetOauthClientUsageQueryResultOK, error)
	/*
	   GetOauthClientUsageSummary gets a summary of o auth client API usage
	   After calling this method, you will then need to poll for the query results based on the returned execution Id
	*/
	GetOauthClientUsageSummary(ctx context.Context, params *GetOauthClientUsageSummaryParams) (*GetOauthClientUsageSummaryOK, *GetOauthClientUsageSummaryAccepted, error)
	/*
	   GetOauthClients thes list of o auth clients
	*/
	GetOauthClients(ctx context.Context, params *GetOauthClientsParams) (*GetOauthClientsOK, error)
	/*
	   GetOauthScope ans o auth scope
	*/
	GetOauthScope(ctx context.Context, params *GetOauthScopeParams) (*GetOauthScopeOK, error)
	/*
	   GetOauthScopes thes list of o auth scopes
	*/
	GetOauthScopes(ctx context.Context, params *GetOauthScopesParams) (*GetOauthScopesOK, error)
	/*
	   PostOauthClientSecret regenerates client secret
	   This operation will set the client secret to a randomly generated cryptographically random value. All clients must be updated with the new secret. This operation should be used with caution.
	*/
	PostOauthClientSecret(ctx context.Context, params *PostOauthClientSecretParams) (*PostOauthClientSecretOK, error)
	/*
	   PostOauthClientUsageQuery queries for o auth client API usage
	   After calling this method, you will then need to poll for the query results based on the returned execution Id
	*/
	PostOauthClientUsageQuery(ctx context.Context, params *PostOauthClientUsageQueryParams) (*PostOauthClientUsageQueryOK, *PostOauthClientUsageQueryAccepted, error)
	/*
	   PostOauthClients creates o auth client
	   The OAuth Grant/Client is required in order to create an authentication token and gain access to PureCloud.
	   The preferred authorizedGrantTypes is 'CODE' which requires applications to send a client ID and client secret. This is typically a web server.
	   If the client is unable to secure the client secret then the 'TOKEN' grant type aka IMPLICIT should be used. This is would be for browser or mobile apps.
	   If a client is to be used outside of the context of a user then the 'CLIENT-CREDENTIALS' grant may be used. In this case the client must be granted roles
	   via the 'roleIds' field.
	*/
	PostOauthClients(ctx context.Context, params *PostOauthClientsParams) (*PostOauthClientsOK, error)
	/*
	   PutOauthClient updates o auth client
	*/
	PutOauthClient(ctx context.Context, params *PutOauthClientParams) (*PutOauthClientOK, error)
}

API is the interface of the o auth client

type Client

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

Client for o auth API

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry, authInfo runtime.ClientAuthInfoWriter) *Client

New creates a new o auth API client.

func (*Client) DeleteOauthClient

func (a *Client) DeleteOauthClient(ctx context.Context, params *DeleteOauthClientParams) error

DeleteOauthClient deletes o auth client

func (*Client) GetOauthAuthorization

func (a *Client) GetOauthAuthorization(ctx context.Context, params *GetOauthAuthorizationParams) (*GetOauthAuthorizationOK, error)

GetOauthAuthorization gets a client that is authorized by the resource owner

func (*Client) GetOauthAuthorizations

func (a *Client) GetOauthAuthorizations(ctx context.Context, params *GetOauthAuthorizationsParams) (*GetOauthAuthorizationsOK, error)

GetOauthAuthorizations lists clients that have been authorized requested or revoked by the resource owner

func (*Client) GetOauthClient

func (a *Client) GetOauthClient(ctx context.Context, params *GetOauthClientParams) (*GetOauthClientOK, error)

GetOauthClient gets o auth client

func (*Client) GetOauthClientUsageQueryResult

func (a *Client) GetOauthClientUsageQueryResult(ctx context.Context, params *GetOauthClientUsageQueryResultParams) (*GetOauthClientUsageQueryResultOK, error)

GetOauthClientUsageQueryResult gets the results of a usage query

func (*Client) GetOauthClientUsageSummary

GetOauthClientUsageSummary gets a summary of o auth client API usage

After calling this method, you will then need to poll for the query results based on the returned execution Id

func (*Client) GetOauthClients

func (a *Client) GetOauthClients(ctx context.Context, params *GetOauthClientsParams) (*GetOauthClientsOK, error)

GetOauthClients thes list of o auth clients

func (*Client) GetOauthScope

func (a *Client) GetOauthScope(ctx context.Context, params *GetOauthScopeParams) (*GetOauthScopeOK, error)

GetOauthScope ans o auth scope

func (*Client) GetOauthScopes

func (a *Client) GetOauthScopes(ctx context.Context, params *GetOauthScopesParams) (*GetOauthScopesOK, error)

GetOauthScopes thes list of o auth scopes

func (*Client) PostOauthClientSecret

func (a *Client) PostOauthClientSecret(ctx context.Context, params *PostOauthClientSecretParams) (*PostOauthClientSecretOK, error)

PostOauthClientSecret regenerates client secret

This operation will set the client secret to a randomly generated cryptographically random value. All clients must be updated with the new secret. This operation should be used with caution.

func (*Client) PostOauthClientUsageQuery

PostOauthClientUsageQuery queries for o auth client API usage

After calling this method, you will then need to poll for the query results based on the returned execution Id

func (*Client) PostOauthClients

func (a *Client) PostOauthClients(ctx context.Context, params *PostOauthClientsParams) (*PostOauthClientsOK, error)

PostOauthClients creates o auth client

The OAuth Grant/Client is required in order to create an authentication token and gain access to PureCloud. The preferred authorizedGrantTypes is 'CODE' which requires applications to send a client ID and client secret. This is typically a web server. If the client is unable to secure the client secret then the 'TOKEN' grant type aka IMPLICIT should be used. This is would be for browser or mobile apps. If a client is to be used outside of the context of a user then the 'CLIENT-CREDENTIALS' grant may be used. In this case the client must be granted roles via the 'roleIds' field.

func (*Client) PutOauthClient

func (a *Client) PutOauthClient(ctx context.Context, params *PutOauthClientParams) (*PutOauthClientOK, error)

PutOauthClient updates o auth client

type DeleteOauthClientBadRequest

type DeleteOauthClientBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewDeleteOauthClientBadRequest

func NewDeleteOauthClientBadRequest() *DeleteOauthClientBadRequest

NewDeleteOauthClientBadRequest creates a DeleteOauthClientBadRequest with default headers values

func (*DeleteOauthClientBadRequest) Error

func (*DeleteOauthClientBadRequest) GetPayload

func (o *DeleteOauthClientBadRequest) GetPayload() *models.ErrorBody

func (*DeleteOauthClientBadRequest) IsClientError

func (o *DeleteOauthClientBadRequest) IsClientError() bool

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

func (*DeleteOauthClientBadRequest) IsCode

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

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

func (*DeleteOauthClientBadRequest) IsRedirect

func (o *DeleteOauthClientBadRequest) IsRedirect() bool

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

func (*DeleteOauthClientBadRequest) IsServerError

func (o *DeleteOauthClientBadRequest) IsServerError() bool

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

func (*DeleteOauthClientBadRequest) IsSuccess

func (o *DeleteOauthClientBadRequest) IsSuccess() bool

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

func (*DeleteOauthClientBadRequest) String

func (o *DeleteOauthClientBadRequest) String() string

type DeleteOauthClientDefault

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

DeleteOauthClientDefault describes a response with status code -1, with default header values.

successful operation

func NewDeleteOauthClientDefault

func NewDeleteOauthClientDefault(code int) *DeleteOauthClientDefault

NewDeleteOauthClientDefault creates a DeleteOauthClientDefault with default headers values

func (*DeleteOauthClientDefault) Code

func (o *DeleteOauthClientDefault) Code() int

Code gets the status code for the delete oauth client default response

func (*DeleteOauthClientDefault) Error

func (o *DeleteOauthClientDefault) Error() string

func (*DeleteOauthClientDefault) IsClientError

func (o *DeleteOauthClientDefault) IsClientError() bool

IsClientError returns true when this delete oauth client default response has a 4xx status code

func (*DeleteOauthClientDefault) IsCode

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

IsCode returns true when this delete oauth client default response a status code equal to that given

func (*DeleteOauthClientDefault) IsRedirect

func (o *DeleteOauthClientDefault) IsRedirect() bool

IsRedirect returns true when this delete oauth client default response has a 3xx status code

func (*DeleteOauthClientDefault) IsServerError

func (o *DeleteOauthClientDefault) IsServerError() bool

IsServerError returns true when this delete oauth client default response has a 5xx status code

func (*DeleteOauthClientDefault) IsSuccess

func (o *DeleteOauthClientDefault) IsSuccess() bool

IsSuccess returns true when this delete oauth client default response has a 2xx status code

func (*DeleteOauthClientDefault) String

func (o *DeleteOauthClientDefault) String() string

type DeleteOauthClientForbidden

type DeleteOauthClientForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteOauthClientForbidden

func NewDeleteOauthClientForbidden() *DeleteOauthClientForbidden

NewDeleteOauthClientForbidden creates a DeleteOauthClientForbidden with default headers values

func (*DeleteOauthClientForbidden) Error

func (*DeleteOauthClientForbidden) GetPayload

func (o *DeleteOauthClientForbidden) GetPayload() *models.ErrorBody

func (*DeleteOauthClientForbidden) IsClientError

func (o *DeleteOauthClientForbidden) IsClientError() bool

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

func (*DeleteOauthClientForbidden) IsCode

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

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

func (*DeleteOauthClientForbidden) IsRedirect

func (o *DeleteOauthClientForbidden) IsRedirect() bool

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

func (*DeleteOauthClientForbidden) IsServerError

func (o *DeleteOauthClientForbidden) IsServerError() bool

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

func (*DeleteOauthClientForbidden) IsSuccess

func (o *DeleteOauthClientForbidden) IsSuccess() bool

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

func (*DeleteOauthClientForbidden) String

func (o *DeleteOauthClientForbidden) String() string

type DeleteOauthClientGatewayTimeout

type DeleteOauthClientGatewayTimeout struct {
	Payload *models.ErrorBody
}

DeleteOauthClientGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewDeleteOauthClientGatewayTimeout

func NewDeleteOauthClientGatewayTimeout() *DeleteOauthClientGatewayTimeout

NewDeleteOauthClientGatewayTimeout creates a DeleteOauthClientGatewayTimeout with default headers values

func (*DeleteOauthClientGatewayTimeout) Error

func (*DeleteOauthClientGatewayTimeout) GetPayload

func (*DeleteOauthClientGatewayTimeout) IsClientError

func (o *DeleteOauthClientGatewayTimeout) IsClientError() bool

IsClientError returns true when this delete oauth client gateway timeout response has a 4xx status code

func (*DeleteOauthClientGatewayTimeout) IsCode

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

IsCode returns true when this delete oauth client gateway timeout response a status code equal to that given

func (*DeleteOauthClientGatewayTimeout) IsRedirect

func (o *DeleteOauthClientGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this delete oauth client gateway timeout response has a 3xx status code

func (*DeleteOauthClientGatewayTimeout) IsServerError

func (o *DeleteOauthClientGatewayTimeout) IsServerError() bool

IsServerError returns true when this delete oauth client gateway timeout response has a 5xx status code

func (*DeleteOauthClientGatewayTimeout) IsSuccess

func (o *DeleteOauthClientGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this delete oauth client gateway timeout response has a 2xx status code

func (*DeleteOauthClientGatewayTimeout) String

type DeleteOauthClientInternalServerError

type DeleteOauthClientInternalServerError struct {
	Payload *models.ErrorBody
}

DeleteOauthClientInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewDeleteOauthClientInternalServerError

func NewDeleteOauthClientInternalServerError() *DeleteOauthClientInternalServerError

NewDeleteOauthClientInternalServerError creates a DeleteOauthClientInternalServerError with default headers values

func (*DeleteOauthClientInternalServerError) Error

func (*DeleteOauthClientInternalServerError) GetPayload

func (*DeleteOauthClientInternalServerError) IsClientError

func (o *DeleteOauthClientInternalServerError) IsClientError() bool

IsClientError returns true when this delete oauth client internal server error response has a 4xx status code

func (*DeleteOauthClientInternalServerError) IsCode

IsCode returns true when this delete oauth client internal server error response a status code equal to that given

func (*DeleteOauthClientInternalServerError) IsRedirect

IsRedirect returns true when this delete oauth client internal server error response has a 3xx status code

func (*DeleteOauthClientInternalServerError) IsServerError

func (o *DeleteOauthClientInternalServerError) IsServerError() bool

IsServerError returns true when this delete oauth client internal server error response has a 5xx status code

func (*DeleteOauthClientInternalServerError) IsSuccess

IsSuccess returns true when this delete oauth client internal server error response has a 2xx status code

func (*DeleteOauthClientInternalServerError) String

type DeleteOauthClientNotFound

type DeleteOauthClientNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteOauthClientNotFound

func NewDeleteOauthClientNotFound() *DeleteOauthClientNotFound

NewDeleteOauthClientNotFound creates a DeleteOauthClientNotFound with default headers values

func (*DeleteOauthClientNotFound) Error

func (o *DeleteOauthClientNotFound) Error() string

func (*DeleteOauthClientNotFound) GetPayload

func (o *DeleteOauthClientNotFound) GetPayload() *models.ErrorBody

func (*DeleteOauthClientNotFound) IsClientError

func (o *DeleteOauthClientNotFound) IsClientError() bool

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

func (*DeleteOauthClientNotFound) IsCode

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

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

func (*DeleteOauthClientNotFound) IsRedirect

func (o *DeleteOauthClientNotFound) IsRedirect() bool

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

func (*DeleteOauthClientNotFound) IsServerError

func (o *DeleteOauthClientNotFound) IsServerError() bool

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

func (*DeleteOauthClientNotFound) IsSuccess

func (o *DeleteOauthClientNotFound) IsSuccess() bool

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

func (*DeleteOauthClientNotFound) String

func (o *DeleteOauthClientNotFound) String() string

type DeleteOauthClientParams

type DeleteOauthClientParams struct {

	/* ClientID.

	   Client ID
	*/
	ClientID string

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

DeleteOauthClientParams contains all the parameters to send to the API endpoint

for the delete oauth client operation.

Typically these are written to a http.Request.

func NewDeleteOauthClientParams

func NewDeleteOauthClientParams() *DeleteOauthClientParams

NewDeleteOauthClientParams creates a new DeleteOauthClientParams 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 NewDeleteOauthClientParamsWithContext

func NewDeleteOauthClientParamsWithContext(ctx context.Context) *DeleteOauthClientParams

NewDeleteOauthClientParamsWithContext creates a new DeleteOauthClientParams object with the ability to set a context for a request.

func NewDeleteOauthClientParamsWithHTTPClient

func NewDeleteOauthClientParamsWithHTTPClient(client *http.Client) *DeleteOauthClientParams

NewDeleteOauthClientParamsWithHTTPClient creates a new DeleteOauthClientParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteOauthClientParamsWithTimeout

func NewDeleteOauthClientParamsWithTimeout(timeout time.Duration) *DeleteOauthClientParams

NewDeleteOauthClientParamsWithTimeout creates a new DeleteOauthClientParams object with the ability to set a timeout on a request.

func (*DeleteOauthClientParams) SetClientID

func (o *DeleteOauthClientParams) SetClientID(clientID string)

SetClientID adds the clientId to the delete oauth client params

func (*DeleteOauthClientParams) SetContext

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

SetContext adds the context to the delete oauth client params

func (*DeleteOauthClientParams) SetDefaults

func (o *DeleteOauthClientParams) SetDefaults()

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

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

func (*DeleteOauthClientParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete oauth client params

func (*DeleteOauthClientParams) SetTimeout

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

SetTimeout adds the timeout to the delete oauth client params

func (*DeleteOauthClientParams) WithClientID

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

WithClientID adds the clientID to the delete oauth client params

func (*DeleteOauthClientParams) WithContext

WithContext adds the context to the delete oauth client params

func (*DeleteOauthClientParams) WithDefaults

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

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

func (*DeleteOauthClientParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete oauth client params

func (*DeleteOauthClientParams) WithTimeout

WithTimeout adds the timeout to the delete oauth client params

func (*DeleteOauthClientParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteOauthClientReader

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

DeleteOauthClientReader is a Reader for the DeleteOauthClient structure.

func (*DeleteOauthClientReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteOauthClientRequestEntityTooLarge

type DeleteOauthClientRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewDeleteOauthClientRequestEntityTooLarge

func NewDeleteOauthClientRequestEntityTooLarge() *DeleteOauthClientRequestEntityTooLarge

NewDeleteOauthClientRequestEntityTooLarge creates a DeleteOauthClientRequestEntityTooLarge with default headers values

func (*DeleteOauthClientRequestEntityTooLarge) Error

func (*DeleteOauthClientRequestEntityTooLarge) GetPayload

func (*DeleteOauthClientRequestEntityTooLarge) IsClientError

func (o *DeleteOauthClientRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this delete oauth client request entity too large response has a 4xx status code

func (*DeleteOauthClientRequestEntityTooLarge) IsCode

IsCode returns true when this delete oauth client request entity too large response a status code equal to that given

func (*DeleteOauthClientRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this delete oauth client request entity too large response has a 3xx status code

func (*DeleteOauthClientRequestEntityTooLarge) IsServerError

func (o *DeleteOauthClientRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this delete oauth client request entity too large response has a 5xx status code

func (*DeleteOauthClientRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this delete oauth client request entity too large response has a 2xx status code

func (*DeleteOauthClientRequestEntityTooLarge) String

type DeleteOauthClientRequestTimeout

type DeleteOauthClientRequestTimeout struct {
	Payload *models.ErrorBody
}

DeleteOauthClientRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewDeleteOauthClientRequestTimeout

func NewDeleteOauthClientRequestTimeout() *DeleteOauthClientRequestTimeout

NewDeleteOauthClientRequestTimeout creates a DeleteOauthClientRequestTimeout with default headers values

func (*DeleteOauthClientRequestTimeout) Error

func (*DeleteOauthClientRequestTimeout) GetPayload

func (*DeleteOauthClientRequestTimeout) IsClientError

func (o *DeleteOauthClientRequestTimeout) IsClientError() bool

IsClientError returns true when this delete oauth client request timeout response has a 4xx status code

func (*DeleteOauthClientRequestTimeout) IsCode

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

IsCode returns true when this delete oauth client request timeout response a status code equal to that given

func (*DeleteOauthClientRequestTimeout) IsRedirect

func (o *DeleteOauthClientRequestTimeout) IsRedirect() bool

IsRedirect returns true when this delete oauth client request timeout response has a 3xx status code

func (*DeleteOauthClientRequestTimeout) IsServerError

func (o *DeleteOauthClientRequestTimeout) IsServerError() bool

IsServerError returns true when this delete oauth client request timeout response has a 5xx status code

func (*DeleteOauthClientRequestTimeout) IsSuccess

func (o *DeleteOauthClientRequestTimeout) IsSuccess() bool

IsSuccess returns true when this delete oauth client request timeout response has a 2xx status code

func (*DeleteOauthClientRequestTimeout) String

type DeleteOauthClientServiceUnavailable

type DeleteOauthClientServiceUnavailable struct {
	Payload *models.ErrorBody
}

DeleteOauthClientServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewDeleteOauthClientServiceUnavailable

func NewDeleteOauthClientServiceUnavailable() *DeleteOauthClientServiceUnavailable

NewDeleteOauthClientServiceUnavailable creates a DeleteOauthClientServiceUnavailable with default headers values

func (*DeleteOauthClientServiceUnavailable) Error

func (*DeleteOauthClientServiceUnavailable) GetPayload

func (*DeleteOauthClientServiceUnavailable) IsClientError

func (o *DeleteOauthClientServiceUnavailable) IsClientError() bool

IsClientError returns true when this delete oauth client service unavailable response has a 4xx status code

func (*DeleteOauthClientServiceUnavailable) IsCode

IsCode returns true when this delete oauth client service unavailable response a status code equal to that given

func (*DeleteOauthClientServiceUnavailable) IsRedirect

func (o *DeleteOauthClientServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this delete oauth client service unavailable response has a 3xx status code

func (*DeleteOauthClientServiceUnavailable) IsServerError

func (o *DeleteOauthClientServiceUnavailable) IsServerError() bool

IsServerError returns true when this delete oauth client service unavailable response has a 5xx status code

func (*DeleteOauthClientServiceUnavailable) IsSuccess

IsSuccess returns true when this delete oauth client service unavailable response has a 2xx status code

func (*DeleteOauthClientServiceUnavailable) String

type DeleteOauthClientTooManyRequests

type DeleteOauthClientTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewDeleteOauthClientTooManyRequests

func NewDeleteOauthClientTooManyRequests() *DeleteOauthClientTooManyRequests

NewDeleteOauthClientTooManyRequests creates a DeleteOauthClientTooManyRequests with default headers values

func (*DeleteOauthClientTooManyRequests) Error

func (*DeleteOauthClientTooManyRequests) GetPayload

func (*DeleteOauthClientTooManyRequests) IsClientError

func (o *DeleteOauthClientTooManyRequests) IsClientError() bool

IsClientError returns true when this delete oauth client too many requests response has a 4xx status code

func (*DeleteOauthClientTooManyRequests) IsCode

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

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

func (*DeleteOauthClientTooManyRequests) IsRedirect

func (o *DeleteOauthClientTooManyRequests) IsRedirect() bool

IsRedirect returns true when this delete oauth client too many requests response has a 3xx status code

func (*DeleteOauthClientTooManyRequests) IsServerError

func (o *DeleteOauthClientTooManyRequests) IsServerError() bool

IsServerError returns true when this delete oauth client too many requests response has a 5xx status code

func (*DeleteOauthClientTooManyRequests) IsSuccess

func (o *DeleteOauthClientTooManyRequests) IsSuccess() bool

IsSuccess returns true when this delete oauth client too many requests response has a 2xx status code

func (*DeleteOauthClientTooManyRequests) String

type DeleteOauthClientUnauthorized

type DeleteOauthClientUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteOauthClientUnauthorized

func NewDeleteOauthClientUnauthorized() *DeleteOauthClientUnauthorized

NewDeleteOauthClientUnauthorized creates a DeleteOauthClientUnauthorized with default headers values

func (*DeleteOauthClientUnauthorized) Error

func (*DeleteOauthClientUnauthorized) GetPayload

func (*DeleteOauthClientUnauthorized) IsClientError

func (o *DeleteOauthClientUnauthorized) IsClientError() bool

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

func (*DeleteOauthClientUnauthorized) IsCode

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

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

func (*DeleteOauthClientUnauthorized) IsRedirect

func (o *DeleteOauthClientUnauthorized) IsRedirect() bool

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

func (*DeleteOauthClientUnauthorized) IsServerError

func (o *DeleteOauthClientUnauthorized) IsServerError() bool

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

func (*DeleteOauthClientUnauthorized) IsSuccess

func (o *DeleteOauthClientUnauthorized) IsSuccess() bool

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

func (*DeleteOauthClientUnauthorized) String

type DeleteOauthClientUnsupportedMediaType

type DeleteOauthClientUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

DeleteOauthClientUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewDeleteOauthClientUnsupportedMediaType

func NewDeleteOauthClientUnsupportedMediaType() *DeleteOauthClientUnsupportedMediaType

NewDeleteOauthClientUnsupportedMediaType creates a DeleteOauthClientUnsupportedMediaType with default headers values

func (*DeleteOauthClientUnsupportedMediaType) Error

func (*DeleteOauthClientUnsupportedMediaType) GetPayload

func (*DeleteOauthClientUnsupportedMediaType) IsClientError

func (o *DeleteOauthClientUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this delete oauth client unsupported media type response has a 4xx status code

func (*DeleteOauthClientUnsupportedMediaType) IsCode

IsCode returns true when this delete oauth client unsupported media type response a status code equal to that given

func (*DeleteOauthClientUnsupportedMediaType) IsRedirect

IsRedirect returns true when this delete oauth client unsupported media type response has a 3xx status code

func (*DeleteOauthClientUnsupportedMediaType) IsServerError

func (o *DeleteOauthClientUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this delete oauth client unsupported media type response has a 5xx status code

func (*DeleteOauthClientUnsupportedMediaType) IsSuccess

IsSuccess returns true when this delete oauth client unsupported media type response has a 2xx status code

func (*DeleteOauthClientUnsupportedMediaType) String

type GetOauthAuthorizationBadRequest

type GetOauthAuthorizationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthAuthorizationBadRequest

func NewGetOauthAuthorizationBadRequest() *GetOauthAuthorizationBadRequest

NewGetOauthAuthorizationBadRequest creates a GetOauthAuthorizationBadRequest with default headers values

func (*GetOauthAuthorizationBadRequest) Error

func (*GetOauthAuthorizationBadRequest) GetPayload

func (*GetOauthAuthorizationBadRequest) IsClientError

func (o *GetOauthAuthorizationBadRequest) IsClientError() bool

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

func (*GetOauthAuthorizationBadRequest) IsCode

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

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

func (*GetOauthAuthorizationBadRequest) IsRedirect

func (o *GetOauthAuthorizationBadRequest) IsRedirect() bool

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

func (*GetOauthAuthorizationBadRequest) IsServerError

func (o *GetOauthAuthorizationBadRequest) IsServerError() bool

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

func (*GetOauthAuthorizationBadRequest) IsSuccess

func (o *GetOauthAuthorizationBadRequest) IsSuccess() bool

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

func (*GetOauthAuthorizationBadRequest) String

type GetOauthAuthorizationForbidden

type GetOauthAuthorizationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthAuthorizationForbidden

func NewGetOauthAuthorizationForbidden() *GetOauthAuthorizationForbidden

NewGetOauthAuthorizationForbidden creates a GetOauthAuthorizationForbidden with default headers values

func (*GetOauthAuthorizationForbidden) Error

func (*GetOauthAuthorizationForbidden) GetPayload

func (*GetOauthAuthorizationForbidden) IsClientError

func (o *GetOauthAuthorizationForbidden) IsClientError() bool

IsClientError returns true when this get oauth authorization forbidden response has a 4xx status code

func (*GetOauthAuthorizationForbidden) IsCode

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

IsCode returns true when this get oauth authorization forbidden response a status code equal to that given

func (*GetOauthAuthorizationForbidden) IsRedirect

func (o *GetOauthAuthorizationForbidden) IsRedirect() bool

IsRedirect returns true when this get oauth authorization forbidden response has a 3xx status code

func (*GetOauthAuthorizationForbidden) IsServerError

func (o *GetOauthAuthorizationForbidden) IsServerError() bool

IsServerError returns true when this get oauth authorization forbidden response has a 5xx status code

func (*GetOauthAuthorizationForbidden) IsSuccess

func (o *GetOauthAuthorizationForbidden) IsSuccess() bool

IsSuccess returns true when this get oauth authorization forbidden response has a 2xx status code

func (*GetOauthAuthorizationForbidden) String

type GetOauthAuthorizationGatewayTimeout

type GetOauthAuthorizationGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthAuthorizationGatewayTimeout

func NewGetOauthAuthorizationGatewayTimeout() *GetOauthAuthorizationGatewayTimeout

NewGetOauthAuthorizationGatewayTimeout creates a GetOauthAuthorizationGatewayTimeout with default headers values

func (*GetOauthAuthorizationGatewayTimeout) Error

func (*GetOauthAuthorizationGatewayTimeout) GetPayload

func (*GetOauthAuthorizationGatewayTimeout) IsClientError

func (o *GetOauthAuthorizationGatewayTimeout) IsClientError() bool

IsClientError returns true when this get oauth authorization gateway timeout response has a 4xx status code

func (*GetOauthAuthorizationGatewayTimeout) IsCode

IsCode returns true when this get oauth authorization gateway timeout response a status code equal to that given

func (*GetOauthAuthorizationGatewayTimeout) IsRedirect

func (o *GetOauthAuthorizationGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth authorization gateway timeout response has a 3xx status code

func (*GetOauthAuthorizationGatewayTimeout) IsServerError

func (o *GetOauthAuthorizationGatewayTimeout) IsServerError() bool

IsServerError returns true when this get oauth authorization gateway timeout response has a 5xx status code

func (*GetOauthAuthorizationGatewayTimeout) IsSuccess

IsSuccess returns true when this get oauth authorization gateway timeout response has a 2xx status code

func (*GetOauthAuthorizationGatewayTimeout) String

type GetOauthAuthorizationInternalServerError

type GetOauthAuthorizationInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthAuthorizationInternalServerError

func NewGetOauthAuthorizationInternalServerError() *GetOauthAuthorizationInternalServerError

NewGetOauthAuthorizationInternalServerError creates a GetOauthAuthorizationInternalServerError with default headers values

func (*GetOauthAuthorizationInternalServerError) Error

func (*GetOauthAuthorizationInternalServerError) GetPayload

func (*GetOauthAuthorizationInternalServerError) IsClientError

IsClientError returns true when this get oauth authorization internal server error response has a 4xx status code

func (*GetOauthAuthorizationInternalServerError) IsCode

IsCode returns true when this get oauth authorization internal server error response a status code equal to that given

func (*GetOauthAuthorizationInternalServerError) IsRedirect

IsRedirect returns true when this get oauth authorization internal server error response has a 3xx status code

func (*GetOauthAuthorizationInternalServerError) IsServerError

IsServerError returns true when this get oauth authorization internal server error response has a 5xx status code

func (*GetOauthAuthorizationInternalServerError) IsSuccess

IsSuccess returns true when this get oauth authorization internal server error response has a 2xx status code

func (*GetOauthAuthorizationInternalServerError) String

type GetOauthAuthorizationNotFound

type GetOauthAuthorizationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthAuthorizationNotFound

func NewGetOauthAuthorizationNotFound() *GetOauthAuthorizationNotFound

NewGetOauthAuthorizationNotFound creates a GetOauthAuthorizationNotFound with default headers values

func (*GetOauthAuthorizationNotFound) Error

func (*GetOauthAuthorizationNotFound) GetPayload

func (*GetOauthAuthorizationNotFound) IsClientError

func (o *GetOauthAuthorizationNotFound) IsClientError() bool

IsClientError returns true when this get oauth authorization not found response has a 4xx status code

func (*GetOauthAuthorizationNotFound) IsCode

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

IsCode returns true when this get oauth authorization not found response a status code equal to that given

func (*GetOauthAuthorizationNotFound) IsRedirect

func (o *GetOauthAuthorizationNotFound) IsRedirect() bool

IsRedirect returns true when this get oauth authorization not found response has a 3xx status code

func (*GetOauthAuthorizationNotFound) IsServerError

func (o *GetOauthAuthorizationNotFound) IsServerError() bool

IsServerError returns true when this get oauth authorization not found response has a 5xx status code

func (*GetOauthAuthorizationNotFound) IsSuccess

func (o *GetOauthAuthorizationNotFound) IsSuccess() bool

IsSuccess returns true when this get oauth authorization not found response has a 2xx status code

func (*GetOauthAuthorizationNotFound) String

type GetOauthAuthorizationOK

type GetOauthAuthorizationOK struct {
	Payload *models.OAuthAuthorization
}

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

successful operation

func NewGetOauthAuthorizationOK

func NewGetOauthAuthorizationOK() *GetOauthAuthorizationOK

NewGetOauthAuthorizationOK creates a GetOauthAuthorizationOK with default headers values

func (*GetOauthAuthorizationOK) Error

func (o *GetOauthAuthorizationOK) Error() string

func (*GetOauthAuthorizationOK) GetPayload

func (*GetOauthAuthorizationOK) IsClientError

func (o *GetOauthAuthorizationOK) IsClientError() bool

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

func (*GetOauthAuthorizationOK) IsCode

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

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

func (*GetOauthAuthorizationOK) IsRedirect

func (o *GetOauthAuthorizationOK) IsRedirect() bool

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

func (*GetOauthAuthorizationOK) IsServerError

func (o *GetOauthAuthorizationOK) IsServerError() bool

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

func (*GetOauthAuthorizationOK) IsSuccess

func (o *GetOauthAuthorizationOK) IsSuccess() bool

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

func (*GetOauthAuthorizationOK) String

func (o *GetOauthAuthorizationOK) String() string

type GetOauthAuthorizationParams

type GetOauthAuthorizationParams struct {

	/* AcceptLanguage.

	   The language in which to display the client descriptions.

	   Default: "en-us"
	*/
	AcceptLanguage *string

	/* ClientID.

	   The ID of client
	*/
	ClientID string

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

GetOauthAuthorizationParams contains all the parameters to send to the API endpoint

for the get oauth authorization operation.

Typically these are written to a http.Request.

func NewGetOauthAuthorizationParams

func NewGetOauthAuthorizationParams() *GetOauthAuthorizationParams

NewGetOauthAuthorizationParams creates a new GetOauthAuthorizationParams 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 NewGetOauthAuthorizationParamsWithContext

func NewGetOauthAuthorizationParamsWithContext(ctx context.Context) *GetOauthAuthorizationParams

NewGetOauthAuthorizationParamsWithContext creates a new GetOauthAuthorizationParams object with the ability to set a context for a request.

func NewGetOauthAuthorizationParamsWithHTTPClient

func NewGetOauthAuthorizationParamsWithHTTPClient(client *http.Client) *GetOauthAuthorizationParams

NewGetOauthAuthorizationParamsWithHTTPClient creates a new GetOauthAuthorizationParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthAuthorizationParamsWithTimeout

func NewGetOauthAuthorizationParamsWithTimeout(timeout time.Duration) *GetOauthAuthorizationParams

NewGetOauthAuthorizationParamsWithTimeout creates a new GetOauthAuthorizationParams object with the ability to set a timeout on a request.

func (*GetOauthAuthorizationParams) SetAcceptLanguage

func (o *GetOauthAuthorizationParams) SetAcceptLanguage(acceptLanguage *string)

SetAcceptLanguage adds the acceptLanguage to the get oauth authorization params

func (*GetOauthAuthorizationParams) SetClientID

func (o *GetOauthAuthorizationParams) SetClientID(clientID string)

SetClientID adds the clientId to the get oauth authorization params

func (*GetOauthAuthorizationParams) SetContext

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

SetContext adds the context to the get oauth authorization params

func (*GetOauthAuthorizationParams) SetDefaults

func (o *GetOauthAuthorizationParams) SetDefaults()

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

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

func (*GetOauthAuthorizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth authorization params

func (*GetOauthAuthorizationParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth authorization params

func (*GetOauthAuthorizationParams) WithAcceptLanguage

func (o *GetOauthAuthorizationParams) WithAcceptLanguage(acceptLanguage *string) *GetOauthAuthorizationParams

WithAcceptLanguage adds the acceptLanguage to the get oauth authorization params

func (*GetOauthAuthorizationParams) WithClientID

WithClientID adds the clientID to the get oauth authorization params

func (*GetOauthAuthorizationParams) WithContext

WithContext adds the context to the get oauth authorization params

func (*GetOauthAuthorizationParams) WithDefaults

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

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

func (*GetOauthAuthorizationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get oauth authorization params

func (*GetOauthAuthorizationParams) WithTimeout

WithTimeout adds the timeout to the get oauth authorization params

func (*GetOauthAuthorizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetOauthAuthorizationReader

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

GetOauthAuthorizationReader is a Reader for the GetOauthAuthorization structure.

func (*GetOauthAuthorizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthAuthorizationRequestEntityTooLarge

type GetOauthAuthorizationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthAuthorizationRequestEntityTooLarge

func NewGetOauthAuthorizationRequestEntityTooLarge() *GetOauthAuthorizationRequestEntityTooLarge

NewGetOauthAuthorizationRequestEntityTooLarge creates a GetOauthAuthorizationRequestEntityTooLarge with default headers values

func (*GetOauthAuthorizationRequestEntityTooLarge) Error

func (*GetOauthAuthorizationRequestEntityTooLarge) GetPayload

func (*GetOauthAuthorizationRequestEntityTooLarge) IsClientError

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

func (*GetOauthAuthorizationRequestEntityTooLarge) IsCode

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

func (*GetOauthAuthorizationRequestEntityTooLarge) IsRedirect

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

func (*GetOauthAuthorizationRequestEntityTooLarge) IsServerError

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

func (*GetOauthAuthorizationRequestEntityTooLarge) IsSuccess

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

func (*GetOauthAuthorizationRequestEntityTooLarge) String

type GetOauthAuthorizationRequestTimeout

type GetOauthAuthorizationRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthAuthorizationRequestTimeout

func NewGetOauthAuthorizationRequestTimeout() *GetOauthAuthorizationRequestTimeout

NewGetOauthAuthorizationRequestTimeout creates a GetOauthAuthorizationRequestTimeout with default headers values

func (*GetOauthAuthorizationRequestTimeout) Error

func (*GetOauthAuthorizationRequestTimeout) GetPayload

func (*GetOauthAuthorizationRequestTimeout) IsClientError

func (o *GetOauthAuthorizationRequestTimeout) IsClientError() bool

IsClientError returns true when this get oauth authorization request timeout response has a 4xx status code

func (*GetOauthAuthorizationRequestTimeout) IsCode

IsCode returns true when this get oauth authorization request timeout response a status code equal to that given

func (*GetOauthAuthorizationRequestTimeout) IsRedirect

func (o *GetOauthAuthorizationRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth authorization request timeout response has a 3xx status code

func (*GetOauthAuthorizationRequestTimeout) IsServerError

func (o *GetOauthAuthorizationRequestTimeout) IsServerError() bool

IsServerError returns true when this get oauth authorization request timeout response has a 5xx status code

func (*GetOauthAuthorizationRequestTimeout) IsSuccess

IsSuccess returns true when this get oauth authorization request timeout response has a 2xx status code

func (*GetOauthAuthorizationRequestTimeout) String

type GetOauthAuthorizationServiceUnavailable

type GetOauthAuthorizationServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthAuthorizationServiceUnavailable

func NewGetOauthAuthorizationServiceUnavailable() *GetOauthAuthorizationServiceUnavailable

NewGetOauthAuthorizationServiceUnavailable creates a GetOauthAuthorizationServiceUnavailable with default headers values

func (*GetOauthAuthorizationServiceUnavailable) Error

func (*GetOauthAuthorizationServiceUnavailable) GetPayload

func (*GetOauthAuthorizationServiceUnavailable) IsClientError

func (o *GetOauthAuthorizationServiceUnavailable) IsClientError() bool

IsClientError returns true when this get oauth authorization service unavailable response has a 4xx status code

func (*GetOauthAuthorizationServiceUnavailable) IsCode

IsCode returns true when this get oauth authorization service unavailable response a status code equal to that given

func (*GetOauthAuthorizationServiceUnavailable) IsRedirect

IsRedirect returns true when this get oauth authorization service unavailable response has a 3xx status code

func (*GetOauthAuthorizationServiceUnavailable) IsServerError

func (o *GetOauthAuthorizationServiceUnavailable) IsServerError() bool

IsServerError returns true when this get oauth authorization service unavailable response has a 5xx status code

func (*GetOauthAuthorizationServiceUnavailable) IsSuccess

IsSuccess returns true when this get oauth authorization service unavailable response has a 2xx status code

func (*GetOauthAuthorizationServiceUnavailable) String

type GetOauthAuthorizationTooManyRequests

type GetOauthAuthorizationTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthAuthorizationTooManyRequests

func NewGetOauthAuthorizationTooManyRequests() *GetOauthAuthorizationTooManyRequests

NewGetOauthAuthorizationTooManyRequests creates a GetOauthAuthorizationTooManyRequests with default headers values

func (*GetOauthAuthorizationTooManyRequests) Error

func (*GetOauthAuthorizationTooManyRequests) GetPayload

func (*GetOauthAuthorizationTooManyRequests) IsClientError

func (o *GetOauthAuthorizationTooManyRequests) IsClientError() bool

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

func (*GetOauthAuthorizationTooManyRequests) IsCode

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

func (*GetOauthAuthorizationTooManyRequests) IsRedirect

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

func (*GetOauthAuthorizationTooManyRequests) IsServerError

func (o *GetOauthAuthorizationTooManyRequests) IsServerError() bool

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

func (*GetOauthAuthorizationTooManyRequests) IsSuccess

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

func (*GetOauthAuthorizationTooManyRequests) String

type GetOauthAuthorizationUnauthorized

type GetOauthAuthorizationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthAuthorizationUnauthorized

func NewGetOauthAuthorizationUnauthorized() *GetOauthAuthorizationUnauthorized

NewGetOauthAuthorizationUnauthorized creates a GetOauthAuthorizationUnauthorized with default headers values

func (*GetOauthAuthorizationUnauthorized) Error

func (*GetOauthAuthorizationUnauthorized) GetPayload

func (*GetOauthAuthorizationUnauthorized) IsClientError

func (o *GetOauthAuthorizationUnauthorized) IsClientError() bool

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

func (*GetOauthAuthorizationUnauthorized) IsCode

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

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

func (*GetOauthAuthorizationUnauthorized) IsRedirect

func (o *GetOauthAuthorizationUnauthorized) IsRedirect() bool

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

func (*GetOauthAuthorizationUnauthorized) IsServerError

func (o *GetOauthAuthorizationUnauthorized) IsServerError() bool

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

func (*GetOauthAuthorizationUnauthorized) IsSuccess

func (o *GetOauthAuthorizationUnauthorized) IsSuccess() bool

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

func (*GetOauthAuthorizationUnauthorized) String

type GetOauthAuthorizationUnsupportedMediaType

type GetOauthAuthorizationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthAuthorizationUnsupportedMediaType

func NewGetOauthAuthorizationUnsupportedMediaType() *GetOauthAuthorizationUnsupportedMediaType

NewGetOauthAuthorizationUnsupportedMediaType creates a GetOauthAuthorizationUnsupportedMediaType with default headers values

func (*GetOauthAuthorizationUnsupportedMediaType) Error

func (*GetOauthAuthorizationUnsupportedMediaType) GetPayload

func (*GetOauthAuthorizationUnsupportedMediaType) IsClientError

IsClientError returns true when this get oauth authorization unsupported media type response has a 4xx status code

func (*GetOauthAuthorizationUnsupportedMediaType) IsCode

IsCode returns true when this get oauth authorization unsupported media type response a status code equal to that given

func (*GetOauthAuthorizationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get oauth authorization unsupported media type response has a 3xx status code

func (*GetOauthAuthorizationUnsupportedMediaType) IsServerError

IsServerError returns true when this get oauth authorization unsupported media type response has a 5xx status code

func (*GetOauthAuthorizationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth authorization unsupported media type response has a 2xx status code

func (*GetOauthAuthorizationUnsupportedMediaType) String

type GetOauthAuthorizationsBadRequest

type GetOauthAuthorizationsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthAuthorizationsBadRequest

func NewGetOauthAuthorizationsBadRequest() *GetOauthAuthorizationsBadRequest

NewGetOauthAuthorizationsBadRequest creates a GetOauthAuthorizationsBadRequest with default headers values

func (*GetOauthAuthorizationsBadRequest) Error

func (*GetOauthAuthorizationsBadRequest) GetPayload

func (*GetOauthAuthorizationsBadRequest) IsClientError

func (o *GetOauthAuthorizationsBadRequest) IsClientError() bool

IsClientError returns true when this get oauth authorizations bad request response has a 4xx status code

func (*GetOauthAuthorizationsBadRequest) IsCode

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

IsCode returns true when this get oauth authorizations bad request response a status code equal to that given

func (*GetOauthAuthorizationsBadRequest) IsRedirect

func (o *GetOauthAuthorizationsBadRequest) IsRedirect() bool

IsRedirect returns true when this get oauth authorizations bad request response has a 3xx status code

func (*GetOauthAuthorizationsBadRequest) IsServerError

func (o *GetOauthAuthorizationsBadRequest) IsServerError() bool

IsServerError returns true when this get oauth authorizations bad request response has a 5xx status code

func (*GetOauthAuthorizationsBadRequest) IsSuccess

func (o *GetOauthAuthorizationsBadRequest) IsSuccess() bool

IsSuccess returns true when this get oauth authorizations bad request response has a 2xx status code

func (*GetOauthAuthorizationsBadRequest) String

type GetOauthAuthorizationsForbidden

type GetOauthAuthorizationsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthAuthorizationsForbidden

func NewGetOauthAuthorizationsForbidden() *GetOauthAuthorizationsForbidden

NewGetOauthAuthorizationsForbidden creates a GetOauthAuthorizationsForbidden with default headers values

func (*GetOauthAuthorizationsForbidden) Error

func (*GetOauthAuthorizationsForbidden) GetPayload

func (*GetOauthAuthorizationsForbidden) IsClientError

func (o *GetOauthAuthorizationsForbidden) IsClientError() bool

IsClientError returns true when this get oauth authorizations forbidden response has a 4xx status code

func (*GetOauthAuthorizationsForbidden) IsCode

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

IsCode returns true when this get oauth authorizations forbidden response a status code equal to that given

func (*GetOauthAuthorizationsForbidden) IsRedirect

func (o *GetOauthAuthorizationsForbidden) IsRedirect() bool

IsRedirect returns true when this get oauth authorizations forbidden response has a 3xx status code

func (*GetOauthAuthorizationsForbidden) IsServerError

func (o *GetOauthAuthorizationsForbidden) IsServerError() bool

IsServerError returns true when this get oauth authorizations forbidden response has a 5xx status code

func (*GetOauthAuthorizationsForbidden) IsSuccess

func (o *GetOauthAuthorizationsForbidden) IsSuccess() bool

IsSuccess returns true when this get oauth authorizations forbidden response has a 2xx status code

func (*GetOauthAuthorizationsForbidden) String

type GetOauthAuthorizationsGatewayTimeout

type GetOauthAuthorizationsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthAuthorizationsGatewayTimeout

func NewGetOauthAuthorizationsGatewayTimeout() *GetOauthAuthorizationsGatewayTimeout

NewGetOauthAuthorizationsGatewayTimeout creates a GetOauthAuthorizationsGatewayTimeout with default headers values

func (*GetOauthAuthorizationsGatewayTimeout) Error

func (*GetOauthAuthorizationsGatewayTimeout) GetPayload

func (*GetOauthAuthorizationsGatewayTimeout) IsClientError

func (o *GetOauthAuthorizationsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get oauth authorizations gateway timeout response has a 4xx status code

func (*GetOauthAuthorizationsGatewayTimeout) IsCode

IsCode returns true when this get oauth authorizations gateway timeout response a status code equal to that given

func (*GetOauthAuthorizationsGatewayTimeout) IsRedirect

IsRedirect returns true when this get oauth authorizations gateway timeout response has a 3xx status code

func (*GetOauthAuthorizationsGatewayTimeout) IsServerError

func (o *GetOauthAuthorizationsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get oauth authorizations gateway timeout response has a 5xx status code

func (*GetOauthAuthorizationsGatewayTimeout) IsSuccess

IsSuccess returns true when this get oauth authorizations gateway timeout response has a 2xx status code

func (*GetOauthAuthorizationsGatewayTimeout) String

type GetOauthAuthorizationsInternalServerError

type GetOauthAuthorizationsInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthAuthorizationsInternalServerError

func NewGetOauthAuthorizationsInternalServerError() *GetOauthAuthorizationsInternalServerError

NewGetOauthAuthorizationsInternalServerError creates a GetOauthAuthorizationsInternalServerError with default headers values

func (*GetOauthAuthorizationsInternalServerError) Error

func (*GetOauthAuthorizationsInternalServerError) GetPayload

func (*GetOauthAuthorizationsInternalServerError) IsClientError

IsClientError returns true when this get oauth authorizations internal server error response has a 4xx status code

func (*GetOauthAuthorizationsInternalServerError) IsCode

IsCode returns true when this get oauth authorizations internal server error response a status code equal to that given

func (*GetOauthAuthorizationsInternalServerError) IsRedirect

IsRedirect returns true when this get oauth authorizations internal server error response has a 3xx status code

func (*GetOauthAuthorizationsInternalServerError) IsServerError

IsServerError returns true when this get oauth authorizations internal server error response has a 5xx status code

func (*GetOauthAuthorizationsInternalServerError) IsSuccess

IsSuccess returns true when this get oauth authorizations internal server error response has a 2xx status code

func (*GetOauthAuthorizationsInternalServerError) String

type GetOauthAuthorizationsNotFound

type GetOauthAuthorizationsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthAuthorizationsNotFound

func NewGetOauthAuthorizationsNotFound() *GetOauthAuthorizationsNotFound

NewGetOauthAuthorizationsNotFound creates a GetOauthAuthorizationsNotFound with default headers values

func (*GetOauthAuthorizationsNotFound) Error

func (*GetOauthAuthorizationsNotFound) GetPayload

func (*GetOauthAuthorizationsNotFound) IsClientError

func (o *GetOauthAuthorizationsNotFound) IsClientError() bool

IsClientError returns true when this get oauth authorizations not found response has a 4xx status code

func (*GetOauthAuthorizationsNotFound) IsCode

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

IsCode returns true when this get oauth authorizations not found response a status code equal to that given

func (*GetOauthAuthorizationsNotFound) IsRedirect

func (o *GetOauthAuthorizationsNotFound) IsRedirect() bool

IsRedirect returns true when this get oauth authorizations not found response has a 3xx status code

func (*GetOauthAuthorizationsNotFound) IsServerError

func (o *GetOauthAuthorizationsNotFound) IsServerError() bool

IsServerError returns true when this get oauth authorizations not found response has a 5xx status code

func (*GetOauthAuthorizationsNotFound) IsSuccess

func (o *GetOauthAuthorizationsNotFound) IsSuccess() bool

IsSuccess returns true when this get oauth authorizations not found response has a 2xx status code

func (*GetOauthAuthorizationsNotFound) String

type GetOauthAuthorizationsOK

type GetOauthAuthorizationsOK struct {
	Payload *models.OAuthAuthorizationListing
}

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

successful operation

func NewGetOauthAuthorizationsOK

func NewGetOauthAuthorizationsOK() *GetOauthAuthorizationsOK

NewGetOauthAuthorizationsOK creates a GetOauthAuthorizationsOK with default headers values

func (*GetOauthAuthorizationsOK) Error

func (o *GetOauthAuthorizationsOK) Error() string

func (*GetOauthAuthorizationsOK) GetPayload

func (*GetOauthAuthorizationsOK) IsClientError

func (o *GetOauthAuthorizationsOK) IsClientError() bool

IsClientError returns true when this get oauth authorizations o k response has a 4xx status code

func (*GetOauthAuthorizationsOK) IsCode

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

IsCode returns true when this get oauth authorizations o k response a status code equal to that given

func (*GetOauthAuthorizationsOK) IsRedirect

func (o *GetOauthAuthorizationsOK) IsRedirect() bool

IsRedirect returns true when this get oauth authorizations o k response has a 3xx status code

func (*GetOauthAuthorizationsOK) IsServerError

func (o *GetOauthAuthorizationsOK) IsServerError() bool

IsServerError returns true when this get oauth authorizations o k response has a 5xx status code

func (*GetOauthAuthorizationsOK) IsSuccess

func (o *GetOauthAuthorizationsOK) IsSuccess() bool

IsSuccess returns true when this get oauth authorizations o k response has a 2xx status code

func (*GetOauthAuthorizationsOK) String

func (o *GetOauthAuthorizationsOK) String() string

type GetOauthAuthorizationsParams

type GetOauthAuthorizationsParams struct {

	/* AcceptLanguage.

	   The language in which to display the client descriptions.

	   Default: "en-us"
	*/
	AcceptLanguage *string

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

GetOauthAuthorizationsParams contains all the parameters to send to the API endpoint

for the get oauth authorizations operation.

Typically these are written to a http.Request.

func NewGetOauthAuthorizationsParams

func NewGetOauthAuthorizationsParams() *GetOauthAuthorizationsParams

NewGetOauthAuthorizationsParams creates a new GetOauthAuthorizationsParams 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 NewGetOauthAuthorizationsParamsWithContext

func NewGetOauthAuthorizationsParamsWithContext(ctx context.Context) *GetOauthAuthorizationsParams

NewGetOauthAuthorizationsParamsWithContext creates a new GetOauthAuthorizationsParams object with the ability to set a context for a request.

func NewGetOauthAuthorizationsParamsWithHTTPClient

func NewGetOauthAuthorizationsParamsWithHTTPClient(client *http.Client) *GetOauthAuthorizationsParams

NewGetOauthAuthorizationsParamsWithHTTPClient creates a new GetOauthAuthorizationsParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthAuthorizationsParamsWithTimeout

func NewGetOauthAuthorizationsParamsWithTimeout(timeout time.Duration) *GetOauthAuthorizationsParams

NewGetOauthAuthorizationsParamsWithTimeout creates a new GetOauthAuthorizationsParams object with the ability to set a timeout on a request.

func (*GetOauthAuthorizationsParams) SetAcceptLanguage

func (o *GetOauthAuthorizationsParams) SetAcceptLanguage(acceptLanguage *string)

SetAcceptLanguage adds the acceptLanguage to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) SetContext

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

SetContext adds the context to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) SetDefaults

func (o *GetOauthAuthorizationsParams) SetDefaults()

SetDefaults hydrates default values in the get oauth authorizations params (not the query body).

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

func (*GetOauthAuthorizationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) WithAcceptLanguage

func (o *GetOauthAuthorizationsParams) WithAcceptLanguage(acceptLanguage *string) *GetOauthAuthorizationsParams

WithAcceptLanguage adds the acceptLanguage to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) WithContext

WithContext adds the context to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) WithDefaults

WithDefaults hydrates default values in the get oauth authorizations params (not the query body).

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

func (*GetOauthAuthorizationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) WithTimeout

WithTimeout adds the timeout to the get oauth authorizations params

func (*GetOauthAuthorizationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetOauthAuthorizationsReader

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

GetOauthAuthorizationsReader is a Reader for the GetOauthAuthorizations structure.

func (*GetOauthAuthorizationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthAuthorizationsRequestEntityTooLarge

type GetOauthAuthorizationsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthAuthorizationsRequestEntityTooLarge

func NewGetOauthAuthorizationsRequestEntityTooLarge() *GetOauthAuthorizationsRequestEntityTooLarge

NewGetOauthAuthorizationsRequestEntityTooLarge creates a GetOauthAuthorizationsRequestEntityTooLarge with default headers values

func (*GetOauthAuthorizationsRequestEntityTooLarge) Error

func (*GetOauthAuthorizationsRequestEntityTooLarge) GetPayload

func (*GetOauthAuthorizationsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get oauth authorizations request entity too large response has a 4xx status code

func (*GetOauthAuthorizationsRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth authorizations request entity too large response a status code equal to that given

func (*GetOauthAuthorizationsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get oauth authorizations request entity too large response has a 3xx status code

func (*GetOauthAuthorizationsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get oauth authorizations request entity too large response has a 5xx status code

func (*GetOauthAuthorizationsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth authorizations request entity too large response has a 2xx status code

func (*GetOauthAuthorizationsRequestEntityTooLarge) String

type GetOauthAuthorizationsRequestTimeout

type GetOauthAuthorizationsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthAuthorizationsRequestTimeout

func NewGetOauthAuthorizationsRequestTimeout() *GetOauthAuthorizationsRequestTimeout

NewGetOauthAuthorizationsRequestTimeout creates a GetOauthAuthorizationsRequestTimeout with default headers values

func (*GetOauthAuthorizationsRequestTimeout) Error

func (*GetOauthAuthorizationsRequestTimeout) GetPayload

func (*GetOauthAuthorizationsRequestTimeout) IsClientError

func (o *GetOauthAuthorizationsRequestTimeout) IsClientError() bool

IsClientError returns true when this get oauth authorizations request timeout response has a 4xx status code

func (*GetOauthAuthorizationsRequestTimeout) IsCode

IsCode returns true when this get oauth authorizations request timeout response a status code equal to that given

func (*GetOauthAuthorizationsRequestTimeout) IsRedirect

IsRedirect returns true when this get oauth authorizations request timeout response has a 3xx status code

func (*GetOauthAuthorizationsRequestTimeout) IsServerError

func (o *GetOauthAuthorizationsRequestTimeout) IsServerError() bool

IsServerError returns true when this get oauth authorizations request timeout response has a 5xx status code

func (*GetOauthAuthorizationsRequestTimeout) IsSuccess

IsSuccess returns true when this get oauth authorizations request timeout response has a 2xx status code

func (*GetOauthAuthorizationsRequestTimeout) String

type GetOauthAuthorizationsServiceUnavailable

type GetOauthAuthorizationsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthAuthorizationsServiceUnavailable

func NewGetOauthAuthorizationsServiceUnavailable() *GetOauthAuthorizationsServiceUnavailable

NewGetOauthAuthorizationsServiceUnavailable creates a GetOauthAuthorizationsServiceUnavailable with default headers values

func (*GetOauthAuthorizationsServiceUnavailable) Error

func (*GetOauthAuthorizationsServiceUnavailable) GetPayload

func (*GetOauthAuthorizationsServiceUnavailable) IsClientError

IsClientError returns true when this get oauth authorizations service unavailable response has a 4xx status code

func (*GetOauthAuthorizationsServiceUnavailable) IsCode

IsCode returns true when this get oauth authorizations service unavailable response a status code equal to that given

func (*GetOauthAuthorizationsServiceUnavailable) IsRedirect

IsRedirect returns true when this get oauth authorizations service unavailable response has a 3xx status code

func (*GetOauthAuthorizationsServiceUnavailable) IsServerError

IsServerError returns true when this get oauth authorizations service unavailable response has a 5xx status code

func (*GetOauthAuthorizationsServiceUnavailable) IsSuccess

IsSuccess returns true when this get oauth authorizations service unavailable response has a 2xx status code

func (*GetOauthAuthorizationsServiceUnavailable) String

type GetOauthAuthorizationsTooManyRequests

type GetOauthAuthorizationsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthAuthorizationsTooManyRequests

func NewGetOauthAuthorizationsTooManyRequests() *GetOauthAuthorizationsTooManyRequests

NewGetOauthAuthorizationsTooManyRequests creates a GetOauthAuthorizationsTooManyRequests with default headers values

func (*GetOauthAuthorizationsTooManyRequests) Error

func (*GetOauthAuthorizationsTooManyRequests) GetPayload

func (*GetOauthAuthorizationsTooManyRequests) IsClientError

func (o *GetOauthAuthorizationsTooManyRequests) IsClientError() bool

IsClientError returns true when this get oauth authorizations too many requests response has a 4xx status code

func (*GetOauthAuthorizationsTooManyRequests) IsCode

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

func (*GetOauthAuthorizationsTooManyRequests) IsRedirect

IsRedirect returns true when this get oauth authorizations too many requests response has a 3xx status code

func (*GetOauthAuthorizationsTooManyRequests) IsServerError

func (o *GetOauthAuthorizationsTooManyRequests) IsServerError() bool

IsServerError returns true when this get oauth authorizations too many requests response has a 5xx status code

func (*GetOauthAuthorizationsTooManyRequests) IsSuccess

IsSuccess returns true when this get oauth authorizations too many requests response has a 2xx status code

func (*GetOauthAuthorizationsTooManyRequests) String

type GetOauthAuthorizationsUnauthorized

type GetOauthAuthorizationsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthAuthorizationsUnauthorized

func NewGetOauthAuthorizationsUnauthorized() *GetOauthAuthorizationsUnauthorized

NewGetOauthAuthorizationsUnauthorized creates a GetOauthAuthorizationsUnauthorized with default headers values

func (*GetOauthAuthorizationsUnauthorized) Error

func (*GetOauthAuthorizationsUnauthorized) GetPayload

func (*GetOauthAuthorizationsUnauthorized) IsClientError

func (o *GetOauthAuthorizationsUnauthorized) IsClientError() bool

IsClientError returns true when this get oauth authorizations unauthorized response has a 4xx status code

func (*GetOauthAuthorizationsUnauthorized) IsCode

IsCode returns true when this get oauth authorizations unauthorized response a status code equal to that given

func (*GetOauthAuthorizationsUnauthorized) IsRedirect

func (o *GetOauthAuthorizationsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get oauth authorizations unauthorized response has a 3xx status code

func (*GetOauthAuthorizationsUnauthorized) IsServerError

func (o *GetOauthAuthorizationsUnauthorized) IsServerError() bool

IsServerError returns true when this get oauth authorizations unauthorized response has a 5xx status code

func (*GetOauthAuthorizationsUnauthorized) IsSuccess

IsSuccess returns true when this get oauth authorizations unauthorized response has a 2xx status code

func (*GetOauthAuthorizationsUnauthorized) String

type GetOauthAuthorizationsUnsupportedMediaType

type GetOauthAuthorizationsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthAuthorizationsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthAuthorizationsUnsupportedMediaType

func NewGetOauthAuthorizationsUnsupportedMediaType() *GetOauthAuthorizationsUnsupportedMediaType

NewGetOauthAuthorizationsUnsupportedMediaType creates a GetOauthAuthorizationsUnsupportedMediaType with default headers values

func (*GetOauthAuthorizationsUnsupportedMediaType) Error

func (*GetOauthAuthorizationsUnsupportedMediaType) GetPayload

func (*GetOauthAuthorizationsUnsupportedMediaType) IsClientError

IsClientError returns true when this get oauth authorizations unsupported media type response has a 4xx status code

func (*GetOauthAuthorizationsUnsupportedMediaType) IsCode

IsCode returns true when this get oauth authorizations unsupported media type response a status code equal to that given

func (*GetOauthAuthorizationsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get oauth authorizations unsupported media type response has a 3xx status code

func (*GetOauthAuthorizationsUnsupportedMediaType) IsServerError

IsServerError returns true when this get oauth authorizations unsupported media type response has a 5xx status code

func (*GetOauthAuthorizationsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth authorizations unsupported media type response has a 2xx status code

func (*GetOauthAuthorizationsUnsupportedMediaType) String

type GetOauthClientBadRequest

type GetOauthClientBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthClientBadRequest

func NewGetOauthClientBadRequest() *GetOauthClientBadRequest

NewGetOauthClientBadRequest creates a GetOauthClientBadRequest with default headers values

func (*GetOauthClientBadRequest) Error

func (o *GetOauthClientBadRequest) Error() string

func (*GetOauthClientBadRequest) GetPayload

func (o *GetOauthClientBadRequest) GetPayload() *models.ErrorBody

func (*GetOauthClientBadRequest) IsClientError

func (o *GetOauthClientBadRequest) IsClientError() bool

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

func (*GetOauthClientBadRequest) IsCode

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

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

func (*GetOauthClientBadRequest) IsRedirect

func (o *GetOauthClientBadRequest) IsRedirect() bool

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

func (*GetOauthClientBadRequest) IsServerError

func (o *GetOauthClientBadRequest) IsServerError() bool

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

func (*GetOauthClientBadRequest) IsSuccess

func (o *GetOauthClientBadRequest) IsSuccess() bool

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

func (*GetOauthClientBadRequest) String

func (o *GetOauthClientBadRequest) String() string

type GetOauthClientForbidden

type GetOauthClientForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthClientForbidden

func NewGetOauthClientForbidden() *GetOauthClientForbidden

NewGetOauthClientForbidden creates a GetOauthClientForbidden with default headers values

func (*GetOauthClientForbidden) Error

func (o *GetOauthClientForbidden) Error() string

func (*GetOauthClientForbidden) GetPayload

func (o *GetOauthClientForbidden) GetPayload() *models.ErrorBody

func (*GetOauthClientForbidden) IsClientError

func (o *GetOauthClientForbidden) IsClientError() bool

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

func (*GetOauthClientForbidden) IsCode

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

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

func (*GetOauthClientForbidden) IsRedirect

func (o *GetOauthClientForbidden) IsRedirect() bool

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

func (*GetOauthClientForbidden) IsServerError

func (o *GetOauthClientForbidden) IsServerError() bool

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

func (*GetOauthClientForbidden) IsSuccess

func (o *GetOauthClientForbidden) IsSuccess() bool

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

func (*GetOauthClientForbidden) String

func (o *GetOauthClientForbidden) String() string

type GetOauthClientGatewayTimeout

type GetOauthClientGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthClientGatewayTimeout

func NewGetOauthClientGatewayTimeout() *GetOauthClientGatewayTimeout

NewGetOauthClientGatewayTimeout creates a GetOauthClientGatewayTimeout with default headers values

func (*GetOauthClientGatewayTimeout) Error

func (*GetOauthClientGatewayTimeout) GetPayload

func (*GetOauthClientGatewayTimeout) IsClientError

func (o *GetOauthClientGatewayTimeout) IsClientError() bool

IsClientError returns true when this get oauth client gateway timeout response has a 4xx status code

func (*GetOauthClientGatewayTimeout) IsCode

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

IsCode returns true when this get oauth client gateway timeout response a status code equal to that given

func (*GetOauthClientGatewayTimeout) IsRedirect

func (o *GetOauthClientGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth client gateway timeout response has a 3xx status code

func (*GetOauthClientGatewayTimeout) IsServerError

func (o *GetOauthClientGatewayTimeout) IsServerError() bool

IsServerError returns true when this get oauth client gateway timeout response has a 5xx status code

func (*GetOauthClientGatewayTimeout) IsSuccess

func (o *GetOauthClientGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth client gateway timeout response has a 2xx status code

func (*GetOauthClientGatewayTimeout) String

type GetOauthClientInternalServerError

type GetOauthClientInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthClientInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthClientInternalServerError

func NewGetOauthClientInternalServerError() *GetOauthClientInternalServerError

NewGetOauthClientInternalServerError creates a GetOauthClientInternalServerError with default headers values

func (*GetOauthClientInternalServerError) Error

func (*GetOauthClientInternalServerError) GetPayload

func (*GetOauthClientInternalServerError) IsClientError

func (o *GetOauthClientInternalServerError) IsClientError() bool

IsClientError returns true when this get oauth client internal server error response has a 4xx status code

func (*GetOauthClientInternalServerError) IsCode

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

IsCode returns true when this get oauth client internal server error response a status code equal to that given

func (*GetOauthClientInternalServerError) IsRedirect

func (o *GetOauthClientInternalServerError) IsRedirect() bool

IsRedirect returns true when this get oauth client internal server error response has a 3xx status code

func (*GetOauthClientInternalServerError) IsServerError

func (o *GetOauthClientInternalServerError) IsServerError() bool

IsServerError returns true when this get oauth client internal server error response has a 5xx status code

func (*GetOauthClientInternalServerError) IsSuccess

func (o *GetOauthClientInternalServerError) IsSuccess() bool

IsSuccess returns true when this get oauth client internal server error response has a 2xx status code

func (*GetOauthClientInternalServerError) String

type GetOauthClientNotFound

type GetOauthClientNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthClientNotFound

func NewGetOauthClientNotFound() *GetOauthClientNotFound

NewGetOauthClientNotFound creates a GetOauthClientNotFound with default headers values

func (*GetOauthClientNotFound) Error

func (o *GetOauthClientNotFound) Error() string

func (*GetOauthClientNotFound) GetPayload

func (o *GetOauthClientNotFound) GetPayload() *models.ErrorBody

func (*GetOauthClientNotFound) IsClientError

func (o *GetOauthClientNotFound) IsClientError() bool

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

func (*GetOauthClientNotFound) IsCode

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

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

func (*GetOauthClientNotFound) IsRedirect

func (o *GetOauthClientNotFound) IsRedirect() bool

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

func (*GetOauthClientNotFound) IsServerError

func (o *GetOauthClientNotFound) IsServerError() bool

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

func (*GetOauthClientNotFound) IsSuccess

func (o *GetOauthClientNotFound) IsSuccess() bool

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

func (*GetOauthClientNotFound) String

func (o *GetOauthClientNotFound) String() string

type GetOauthClientOK

type GetOauthClientOK struct {
	Payload *models.OAuthClient
}

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

successful operation

func NewGetOauthClientOK

func NewGetOauthClientOK() *GetOauthClientOK

NewGetOauthClientOK creates a GetOauthClientOK with default headers values

func (*GetOauthClientOK) Error

func (o *GetOauthClientOK) Error() string

func (*GetOauthClientOK) GetPayload

func (o *GetOauthClientOK) GetPayload() *models.OAuthClient

func (*GetOauthClientOK) IsClientError

func (o *GetOauthClientOK) IsClientError() bool

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

func (*GetOauthClientOK) IsCode

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

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

func (*GetOauthClientOK) IsRedirect

func (o *GetOauthClientOK) IsRedirect() bool

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

func (*GetOauthClientOK) IsServerError

func (o *GetOauthClientOK) IsServerError() bool

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

func (*GetOauthClientOK) IsSuccess

func (o *GetOauthClientOK) IsSuccess() bool

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

func (*GetOauthClientOK) String

func (o *GetOauthClientOK) String() string

type GetOauthClientParams

type GetOauthClientParams struct {

	/* ClientID.

	   Client ID
	*/
	ClientID string

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

GetOauthClientParams contains all the parameters to send to the API endpoint

for the get oauth client operation.

Typically these are written to a http.Request.

func NewGetOauthClientParams

func NewGetOauthClientParams() *GetOauthClientParams

NewGetOauthClientParams creates a new GetOauthClientParams 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 NewGetOauthClientParamsWithContext

func NewGetOauthClientParamsWithContext(ctx context.Context) *GetOauthClientParams

NewGetOauthClientParamsWithContext creates a new GetOauthClientParams object with the ability to set a context for a request.

func NewGetOauthClientParamsWithHTTPClient

func NewGetOauthClientParamsWithHTTPClient(client *http.Client) *GetOauthClientParams

NewGetOauthClientParamsWithHTTPClient creates a new GetOauthClientParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthClientParamsWithTimeout

func NewGetOauthClientParamsWithTimeout(timeout time.Duration) *GetOauthClientParams

NewGetOauthClientParamsWithTimeout creates a new GetOauthClientParams object with the ability to set a timeout on a request.

func (*GetOauthClientParams) SetClientID

func (o *GetOauthClientParams) SetClientID(clientID string)

SetClientID adds the clientId to the get oauth client params

func (*GetOauthClientParams) SetContext

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

SetContext adds the context to the get oauth client params

func (*GetOauthClientParams) SetDefaults

func (o *GetOauthClientParams) SetDefaults()

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

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

func (*GetOauthClientParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth client params

func (*GetOauthClientParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth client params

func (*GetOauthClientParams) WithClientID

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

WithClientID adds the clientID to the get oauth client params

func (*GetOauthClientParams) WithContext

WithContext adds the context to the get oauth client params

func (*GetOauthClientParams) WithDefaults

func (o *GetOauthClientParams) WithDefaults() *GetOauthClientParams

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

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

func (*GetOauthClientParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get oauth client params

func (*GetOauthClientParams) WithTimeout

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

WithTimeout adds the timeout to the get oauth client params

func (*GetOauthClientParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetOauthClientReader

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

GetOauthClientReader is a Reader for the GetOauthClient structure.

func (*GetOauthClientReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthClientRequestEntityTooLarge

type GetOauthClientRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthClientRequestEntityTooLarge

func NewGetOauthClientRequestEntityTooLarge() *GetOauthClientRequestEntityTooLarge

NewGetOauthClientRequestEntityTooLarge creates a GetOauthClientRequestEntityTooLarge with default headers values

func (*GetOauthClientRequestEntityTooLarge) Error

func (*GetOauthClientRequestEntityTooLarge) GetPayload

func (*GetOauthClientRequestEntityTooLarge) IsClientError

func (o *GetOauthClientRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get oauth client request entity too large response has a 4xx status code

func (*GetOauthClientRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth client request entity too large response a status code equal to that given

func (*GetOauthClientRequestEntityTooLarge) IsRedirect

func (o *GetOauthClientRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get oauth client request entity too large response has a 3xx status code

func (*GetOauthClientRequestEntityTooLarge) IsServerError

func (o *GetOauthClientRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get oauth client request entity too large response has a 5xx status code

func (*GetOauthClientRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth client request entity too large response has a 2xx status code

func (*GetOauthClientRequestEntityTooLarge) String

type GetOauthClientRequestTimeout

type GetOauthClientRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthClientRequestTimeout

func NewGetOauthClientRequestTimeout() *GetOauthClientRequestTimeout

NewGetOauthClientRequestTimeout creates a GetOauthClientRequestTimeout with default headers values

func (*GetOauthClientRequestTimeout) Error

func (*GetOauthClientRequestTimeout) GetPayload

func (*GetOauthClientRequestTimeout) IsClientError

func (o *GetOauthClientRequestTimeout) IsClientError() bool

IsClientError returns true when this get oauth client request timeout response has a 4xx status code

func (*GetOauthClientRequestTimeout) IsCode

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

IsCode returns true when this get oauth client request timeout response a status code equal to that given

func (*GetOauthClientRequestTimeout) IsRedirect

func (o *GetOauthClientRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth client request timeout response has a 3xx status code

func (*GetOauthClientRequestTimeout) IsServerError

func (o *GetOauthClientRequestTimeout) IsServerError() bool

IsServerError returns true when this get oauth client request timeout response has a 5xx status code

func (*GetOauthClientRequestTimeout) IsSuccess

func (o *GetOauthClientRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth client request timeout response has a 2xx status code

func (*GetOauthClientRequestTimeout) String

type GetOauthClientServiceUnavailable

type GetOauthClientServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthClientServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthClientServiceUnavailable

func NewGetOauthClientServiceUnavailable() *GetOauthClientServiceUnavailable

NewGetOauthClientServiceUnavailable creates a GetOauthClientServiceUnavailable with default headers values

func (*GetOauthClientServiceUnavailable) Error

func (*GetOauthClientServiceUnavailable) GetPayload

func (*GetOauthClientServiceUnavailable) IsClientError

func (o *GetOauthClientServiceUnavailable) IsClientError() bool

IsClientError returns true when this get oauth client service unavailable response has a 4xx status code

func (*GetOauthClientServiceUnavailable) IsCode

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

IsCode returns true when this get oauth client service unavailable response a status code equal to that given

func (*GetOauthClientServiceUnavailable) IsRedirect

func (o *GetOauthClientServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get oauth client service unavailable response has a 3xx status code

func (*GetOauthClientServiceUnavailable) IsServerError

func (o *GetOauthClientServiceUnavailable) IsServerError() bool

IsServerError returns true when this get oauth client service unavailable response has a 5xx status code

func (*GetOauthClientServiceUnavailable) IsSuccess

func (o *GetOauthClientServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get oauth client service unavailable response has a 2xx status code

func (*GetOauthClientServiceUnavailable) String

type GetOauthClientTooManyRequests

type GetOauthClientTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthClientTooManyRequests

func NewGetOauthClientTooManyRequests() *GetOauthClientTooManyRequests

NewGetOauthClientTooManyRequests creates a GetOauthClientTooManyRequests with default headers values

func (*GetOauthClientTooManyRequests) Error

func (*GetOauthClientTooManyRequests) GetPayload

func (*GetOauthClientTooManyRequests) IsClientError

func (o *GetOauthClientTooManyRequests) IsClientError() bool

IsClientError returns true when this get oauth client too many requests response has a 4xx status code

func (*GetOauthClientTooManyRequests) IsCode

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

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

func (*GetOauthClientTooManyRequests) IsRedirect

func (o *GetOauthClientTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get oauth client too many requests response has a 3xx status code

func (*GetOauthClientTooManyRequests) IsServerError

func (o *GetOauthClientTooManyRequests) IsServerError() bool

IsServerError returns true when this get oauth client too many requests response has a 5xx status code

func (*GetOauthClientTooManyRequests) IsSuccess

func (o *GetOauthClientTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get oauth client too many requests response has a 2xx status code

func (*GetOauthClientTooManyRequests) String

type GetOauthClientUnauthorized

type GetOauthClientUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthClientUnauthorized

func NewGetOauthClientUnauthorized() *GetOauthClientUnauthorized

NewGetOauthClientUnauthorized creates a GetOauthClientUnauthorized with default headers values

func (*GetOauthClientUnauthorized) Error

func (*GetOauthClientUnauthorized) GetPayload

func (o *GetOauthClientUnauthorized) GetPayload() *models.ErrorBody

func (*GetOauthClientUnauthorized) IsClientError

func (o *GetOauthClientUnauthorized) IsClientError() bool

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

func (*GetOauthClientUnauthorized) IsCode

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

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

func (*GetOauthClientUnauthorized) IsRedirect

func (o *GetOauthClientUnauthorized) IsRedirect() bool

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

func (*GetOauthClientUnauthorized) IsServerError

func (o *GetOauthClientUnauthorized) IsServerError() bool

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

func (*GetOauthClientUnauthorized) IsSuccess

func (o *GetOauthClientUnauthorized) IsSuccess() bool

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

func (*GetOauthClientUnauthorized) String

func (o *GetOauthClientUnauthorized) String() string

type GetOauthClientUnsupportedMediaType

type GetOauthClientUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthClientUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthClientUnsupportedMediaType

func NewGetOauthClientUnsupportedMediaType() *GetOauthClientUnsupportedMediaType

NewGetOauthClientUnsupportedMediaType creates a GetOauthClientUnsupportedMediaType with default headers values

func (*GetOauthClientUnsupportedMediaType) Error

func (*GetOauthClientUnsupportedMediaType) GetPayload

func (*GetOauthClientUnsupportedMediaType) IsClientError

func (o *GetOauthClientUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get oauth client unsupported media type response has a 4xx status code

func (*GetOauthClientUnsupportedMediaType) IsCode

IsCode returns true when this get oauth client unsupported media type response a status code equal to that given

func (*GetOauthClientUnsupportedMediaType) IsRedirect

func (o *GetOauthClientUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get oauth client unsupported media type response has a 3xx status code

func (*GetOauthClientUnsupportedMediaType) IsServerError

func (o *GetOauthClientUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get oauth client unsupported media type response has a 5xx status code

func (*GetOauthClientUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth client unsupported media type response has a 2xx status code

func (*GetOauthClientUnsupportedMediaType) String

type GetOauthClientUsageQueryResultBadRequest

type GetOauthClientUsageQueryResultBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthClientUsageQueryResultBadRequest

func NewGetOauthClientUsageQueryResultBadRequest() *GetOauthClientUsageQueryResultBadRequest

NewGetOauthClientUsageQueryResultBadRequest creates a GetOauthClientUsageQueryResultBadRequest with default headers values

func (*GetOauthClientUsageQueryResultBadRequest) Error

func (*GetOauthClientUsageQueryResultBadRequest) GetPayload

func (*GetOauthClientUsageQueryResultBadRequest) IsClientError

IsClientError returns true when this get oauth client usage query result bad request response has a 4xx status code

func (*GetOauthClientUsageQueryResultBadRequest) IsCode

IsCode returns true when this get oauth client usage query result bad request response a status code equal to that given

func (*GetOauthClientUsageQueryResultBadRequest) IsRedirect

IsRedirect returns true when this get oauth client usage query result bad request response has a 3xx status code

func (*GetOauthClientUsageQueryResultBadRequest) IsServerError

IsServerError returns true when this get oauth client usage query result bad request response has a 5xx status code

func (*GetOauthClientUsageQueryResultBadRequest) IsSuccess

IsSuccess returns true when this get oauth client usage query result bad request response has a 2xx status code

func (*GetOauthClientUsageQueryResultBadRequest) String

type GetOauthClientUsageQueryResultForbidden

type GetOauthClientUsageQueryResultForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthClientUsageQueryResultForbidden

func NewGetOauthClientUsageQueryResultForbidden() *GetOauthClientUsageQueryResultForbidden

NewGetOauthClientUsageQueryResultForbidden creates a GetOauthClientUsageQueryResultForbidden with default headers values

func (*GetOauthClientUsageQueryResultForbidden) Error

func (*GetOauthClientUsageQueryResultForbidden) GetPayload

func (*GetOauthClientUsageQueryResultForbidden) IsClientError

func (o *GetOauthClientUsageQueryResultForbidden) IsClientError() bool

IsClientError returns true when this get oauth client usage query result forbidden response has a 4xx status code

func (*GetOauthClientUsageQueryResultForbidden) IsCode

IsCode returns true when this get oauth client usage query result forbidden response a status code equal to that given

func (*GetOauthClientUsageQueryResultForbidden) IsRedirect

IsRedirect returns true when this get oauth client usage query result forbidden response has a 3xx status code

func (*GetOauthClientUsageQueryResultForbidden) IsServerError

func (o *GetOauthClientUsageQueryResultForbidden) IsServerError() bool

IsServerError returns true when this get oauth client usage query result forbidden response has a 5xx status code

func (*GetOauthClientUsageQueryResultForbidden) IsSuccess

IsSuccess returns true when this get oauth client usage query result forbidden response has a 2xx status code

func (*GetOauthClientUsageQueryResultForbidden) String

type GetOauthClientUsageQueryResultGatewayTimeout

type GetOauthClientUsageQueryResultGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageQueryResultGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthClientUsageQueryResultGatewayTimeout

func NewGetOauthClientUsageQueryResultGatewayTimeout() *GetOauthClientUsageQueryResultGatewayTimeout

NewGetOauthClientUsageQueryResultGatewayTimeout creates a GetOauthClientUsageQueryResultGatewayTimeout with default headers values

func (*GetOauthClientUsageQueryResultGatewayTimeout) Error

func (*GetOauthClientUsageQueryResultGatewayTimeout) GetPayload

func (*GetOauthClientUsageQueryResultGatewayTimeout) IsClientError

IsClientError returns true when this get oauth client usage query result gateway timeout response has a 4xx status code

func (*GetOauthClientUsageQueryResultGatewayTimeout) IsCode

IsCode returns true when this get oauth client usage query result gateway timeout response a status code equal to that given

func (*GetOauthClientUsageQueryResultGatewayTimeout) IsRedirect

IsRedirect returns true when this get oauth client usage query result gateway timeout response has a 3xx status code

func (*GetOauthClientUsageQueryResultGatewayTimeout) IsServerError

IsServerError returns true when this get oauth client usage query result gateway timeout response has a 5xx status code

func (*GetOauthClientUsageQueryResultGatewayTimeout) IsSuccess

IsSuccess returns true when this get oauth client usage query result gateway timeout response has a 2xx status code

func (*GetOauthClientUsageQueryResultGatewayTimeout) String

type GetOauthClientUsageQueryResultInternalServerError

type GetOauthClientUsageQueryResultInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageQueryResultInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthClientUsageQueryResultInternalServerError

func NewGetOauthClientUsageQueryResultInternalServerError() *GetOauthClientUsageQueryResultInternalServerError

NewGetOauthClientUsageQueryResultInternalServerError creates a GetOauthClientUsageQueryResultInternalServerError with default headers values

func (*GetOauthClientUsageQueryResultInternalServerError) Error

func (*GetOauthClientUsageQueryResultInternalServerError) GetPayload

func (*GetOauthClientUsageQueryResultInternalServerError) IsClientError

IsClientError returns true when this get oauth client usage query result internal server error response has a 4xx status code

func (*GetOauthClientUsageQueryResultInternalServerError) IsCode

IsCode returns true when this get oauth client usage query result internal server error response a status code equal to that given

func (*GetOauthClientUsageQueryResultInternalServerError) IsRedirect

IsRedirect returns true when this get oauth client usage query result internal server error response has a 3xx status code

func (*GetOauthClientUsageQueryResultInternalServerError) IsServerError

IsServerError returns true when this get oauth client usage query result internal server error response has a 5xx status code

func (*GetOauthClientUsageQueryResultInternalServerError) IsSuccess

IsSuccess returns true when this get oauth client usage query result internal server error response has a 2xx status code

func (*GetOauthClientUsageQueryResultInternalServerError) String

type GetOauthClientUsageQueryResultNotFound

type GetOauthClientUsageQueryResultNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthClientUsageQueryResultNotFound

func NewGetOauthClientUsageQueryResultNotFound() *GetOauthClientUsageQueryResultNotFound

NewGetOauthClientUsageQueryResultNotFound creates a GetOauthClientUsageQueryResultNotFound with default headers values

func (*GetOauthClientUsageQueryResultNotFound) Error

func (*GetOauthClientUsageQueryResultNotFound) GetPayload

func (*GetOauthClientUsageQueryResultNotFound) IsClientError

func (o *GetOauthClientUsageQueryResultNotFound) IsClientError() bool

IsClientError returns true when this get oauth client usage query result not found response has a 4xx status code

func (*GetOauthClientUsageQueryResultNotFound) IsCode

IsCode returns true when this get oauth client usage query result not found response a status code equal to that given

func (*GetOauthClientUsageQueryResultNotFound) IsRedirect

IsRedirect returns true when this get oauth client usage query result not found response has a 3xx status code

func (*GetOauthClientUsageQueryResultNotFound) IsServerError

func (o *GetOauthClientUsageQueryResultNotFound) IsServerError() bool

IsServerError returns true when this get oauth client usage query result not found response has a 5xx status code

func (*GetOauthClientUsageQueryResultNotFound) IsSuccess

IsSuccess returns true when this get oauth client usage query result not found response has a 2xx status code

func (*GetOauthClientUsageQueryResultNotFound) String

type GetOauthClientUsageQueryResultOK

type GetOauthClientUsageQueryResultOK struct {
	Payload *models.APIUsageQueryResult
}

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

successful operation

func NewGetOauthClientUsageQueryResultOK

func NewGetOauthClientUsageQueryResultOK() *GetOauthClientUsageQueryResultOK

NewGetOauthClientUsageQueryResultOK creates a GetOauthClientUsageQueryResultOK with default headers values

func (*GetOauthClientUsageQueryResultOK) Error

func (*GetOauthClientUsageQueryResultOK) GetPayload

func (*GetOauthClientUsageQueryResultOK) IsClientError

func (o *GetOauthClientUsageQueryResultOK) IsClientError() bool

IsClientError returns true when this get oauth client usage query result o k response has a 4xx status code

func (*GetOauthClientUsageQueryResultOK) IsCode

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

IsCode returns true when this get oauth client usage query result o k response a status code equal to that given

func (*GetOauthClientUsageQueryResultOK) IsRedirect

func (o *GetOauthClientUsageQueryResultOK) IsRedirect() bool

IsRedirect returns true when this get oauth client usage query result o k response has a 3xx status code

func (*GetOauthClientUsageQueryResultOK) IsServerError

func (o *GetOauthClientUsageQueryResultOK) IsServerError() bool

IsServerError returns true when this get oauth client usage query result o k response has a 5xx status code

func (*GetOauthClientUsageQueryResultOK) IsSuccess

func (o *GetOauthClientUsageQueryResultOK) IsSuccess() bool

IsSuccess returns true when this get oauth client usage query result o k response has a 2xx status code

func (*GetOauthClientUsageQueryResultOK) String

type GetOauthClientUsageQueryResultParams

type GetOauthClientUsageQueryResultParams struct {

	/* ClientID.

	   Client ID
	*/
	ClientID string

	/* ExecutionID.

	   ID of the query execution
	*/
	ExecutionID string

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

GetOauthClientUsageQueryResultParams contains all the parameters to send to the API endpoint

for the get oauth client usage query result operation.

Typically these are written to a http.Request.

func NewGetOauthClientUsageQueryResultParams

func NewGetOauthClientUsageQueryResultParams() *GetOauthClientUsageQueryResultParams

NewGetOauthClientUsageQueryResultParams creates a new GetOauthClientUsageQueryResultParams 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 NewGetOauthClientUsageQueryResultParamsWithContext

func NewGetOauthClientUsageQueryResultParamsWithContext(ctx context.Context) *GetOauthClientUsageQueryResultParams

NewGetOauthClientUsageQueryResultParamsWithContext creates a new GetOauthClientUsageQueryResultParams object with the ability to set a context for a request.

func NewGetOauthClientUsageQueryResultParamsWithHTTPClient

func NewGetOauthClientUsageQueryResultParamsWithHTTPClient(client *http.Client) *GetOauthClientUsageQueryResultParams

NewGetOauthClientUsageQueryResultParamsWithHTTPClient creates a new GetOauthClientUsageQueryResultParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthClientUsageQueryResultParamsWithTimeout

func NewGetOauthClientUsageQueryResultParamsWithTimeout(timeout time.Duration) *GetOauthClientUsageQueryResultParams

NewGetOauthClientUsageQueryResultParamsWithTimeout creates a new GetOauthClientUsageQueryResultParams object with the ability to set a timeout on a request.

func (*GetOauthClientUsageQueryResultParams) SetClientID

func (o *GetOauthClientUsageQueryResultParams) SetClientID(clientID string)

SetClientID adds the clientId to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) SetContext

SetContext adds the context to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) SetDefaults

func (o *GetOauthClientUsageQueryResultParams) SetDefaults()

SetDefaults hydrates default values in the get oauth client usage query result params (not the query body).

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

func (*GetOauthClientUsageQueryResultParams) SetExecutionID

func (o *GetOauthClientUsageQueryResultParams) SetExecutionID(executionID string)

SetExecutionID adds the executionId to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) WithClientID

WithClientID adds the clientID to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) WithContext

WithContext adds the context to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) WithDefaults

WithDefaults hydrates default values in the get oauth client usage query result params (not the query body).

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

func (*GetOauthClientUsageQueryResultParams) WithExecutionID

WithExecutionID adds the executionID to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) WithTimeout

WithTimeout adds the timeout to the get oauth client usage query result params

func (*GetOauthClientUsageQueryResultParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetOauthClientUsageQueryResultReader

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

GetOauthClientUsageQueryResultReader is a Reader for the GetOauthClientUsageQueryResult structure.

func (*GetOauthClientUsageQueryResultReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthClientUsageQueryResultRequestEntityTooLarge

type GetOauthClientUsageQueryResultRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthClientUsageQueryResultRequestEntityTooLarge

func NewGetOauthClientUsageQueryResultRequestEntityTooLarge() *GetOauthClientUsageQueryResultRequestEntityTooLarge

NewGetOauthClientUsageQueryResultRequestEntityTooLarge creates a GetOauthClientUsageQueryResultRequestEntityTooLarge with default headers values

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) Error

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) GetPayload

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) IsClientError

IsClientError returns true when this get oauth client usage query result request entity too large response has a 4xx status code

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth client usage query result request entity too large response a status code equal to that given

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get oauth client usage query result request entity too large response has a 3xx status code

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) IsServerError

IsServerError returns true when this get oauth client usage query result request entity too large response has a 5xx status code

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth client usage query result request entity too large response has a 2xx status code

func (*GetOauthClientUsageQueryResultRequestEntityTooLarge) String

type GetOauthClientUsageQueryResultRequestTimeout

type GetOauthClientUsageQueryResultRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageQueryResultRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthClientUsageQueryResultRequestTimeout

func NewGetOauthClientUsageQueryResultRequestTimeout() *GetOauthClientUsageQueryResultRequestTimeout

NewGetOauthClientUsageQueryResultRequestTimeout creates a GetOauthClientUsageQueryResultRequestTimeout with default headers values

func (*GetOauthClientUsageQueryResultRequestTimeout) Error

func (*GetOauthClientUsageQueryResultRequestTimeout) GetPayload

func (*GetOauthClientUsageQueryResultRequestTimeout) IsClientError

IsClientError returns true when this get oauth client usage query result request timeout response has a 4xx status code

func (*GetOauthClientUsageQueryResultRequestTimeout) IsCode

IsCode returns true when this get oauth client usage query result request timeout response a status code equal to that given

func (*GetOauthClientUsageQueryResultRequestTimeout) IsRedirect

IsRedirect returns true when this get oauth client usage query result request timeout response has a 3xx status code

func (*GetOauthClientUsageQueryResultRequestTimeout) IsServerError

IsServerError returns true when this get oauth client usage query result request timeout response has a 5xx status code

func (*GetOauthClientUsageQueryResultRequestTimeout) IsSuccess

IsSuccess returns true when this get oauth client usage query result request timeout response has a 2xx status code

func (*GetOauthClientUsageQueryResultRequestTimeout) String

type GetOauthClientUsageQueryResultServiceUnavailable

type GetOauthClientUsageQueryResultServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageQueryResultServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthClientUsageQueryResultServiceUnavailable

func NewGetOauthClientUsageQueryResultServiceUnavailable() *GetOauthClientUsageQueryResultServiceUnavailable

NewGetOauthClientUsageQueryResultServiceUnavailable creates a GetOauthClientUsageQueryResultServiceUnavailable with default headers values

func (*GetOauthClientUsageQueryResultServiceUnavailable) Error

func (*GetOauthClientUsageQueryResultServiceUnavailable) GetPayload

func (*GetOauthClientUsageQueryResultServiceUnavailable) IsClientError

IsClientError returns true when this get oauth client usage query result service unavailable response has a 4xx status code

func (*GetOauthClientUsageQueryResultServiceUnavailable) IsCode

IsCode returns true when this get oauth client usage query result service unavailable response a status code equal to that given

func (*GetOauthClientUsageQueryResultServiceUnavailable) IsRedirect

IsRedirect returns true when this get oauth client usage query result service unavailable response has a 3xx status code

func (*GetOauthClientUsageQueryResultServiceUnavailable) IsServerError

IsServerError returns true when this get oauth client usage query result service unavailable response has a 5xx status code

func (*GetOauthClientUsageQueryResultServiceUnavailable) IsSuccess

IsSuccess returns true when this get oauth client usage query result service unavailable response has a 2xx status code

func (*GetOauthClientUsageQueryResultServiceUnavailable) String

type GetOauthClientUsageQueryResultTooManyRequests

type GetOauthClientUsageQueryResultTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthClientUsageQueryResultTooManyRequests

func NewGetOauthClientUsageQueryResultTooManyRequests() *GetOauthClientUsageQueryResultTooManyRequests

NewGetOauthClientUsageQueryResultTooManyRequests creates a GetOauthClientUsageQueryResultTooManyRequests with default headers values

func (*GetOauthClientUsageQueryResultTooManyRequests) Error

func (*GetOauthClientUsageQueryResultTooManyRequests) GetPayload

func (*GetOauthClientUsageQueryResultTooManyRequests) IsClientError

IsClientError returns true when this get oauth client usage query result too many requests response has a 4xx status code

func (*GetOauthClientUsageQueryResultTooManyRequests) IsCode

IsCode returns true when this get oauth client usage query result too many requests response a status code equal to that given

func (*GetOauthClientUsageQueryResultTooManyRequests) IsRedirect

IsRedirect returns true when this get oauth client usage query result too many requests response has a 3xx status code

func (*GetOauthClientUsageQueryResultTooManyRequests) IsServerError

IsServerError returns true when this get oauth client usage query result too many requests response has a 5xx status code

func (*GetOauthClientUsageQueryResultTooManyRequests) IsSuccess

IsSuccess returns true when this get oauth client usage query result too many requests response has a 2xx status code

func (*GetOauthClientUsageQueryResultTooManyRequests) String

type GetOauthClientUsageQueryResultUnauthorized

type GetOauthClientUsageQueryResultUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthClientUsageQueryResultUnauthorized

func NewGetOauthClientUsageQueryResultUnauthorized() *GetOauthClientUsageQueryResultUnauthorized

NewGetOauthClientUsageQueryResultUnauthorized creates a GetOauthClientUsageQueryResultUnauthorized with default headers values

func (*GetOauthClientUsageQueryResultUnauthorized) Error

func (*GetOauthClientUsageQueryResultUnauthorized) GetPayload

func (*GetOauthClientUsageQueryResultUnauthorized) IsClientError

IsClientError returns true when this get oauth client usage query result unauthorized response has a 4xx status code

func (*GetOauthClientUsageQueryResultUnauthorized) IsCode

IsCode returns true when this get oauth client usage query result unauthorized response a status code equal to that given

func (*GetOauthClientUsageQueryResultUnauthorized) IsRedirect

IsRedirect returns true when this get oauth client usage query result unauthorized response has a 3xx status code

func (*GetOauthClientUsageQueryResultUnauthorized) IsServerError

IsServerError returns true when this get oauth client usage query result unauthorized response has a 5xx status code

func (*GetOauthClientUsageQueryResultUnauthorized) IsSuccess

IsSuccess returns true when this get oauth client usage query result unauthorized response has a 2xx status code

func (*GetOauthClientUsageQueryResultUnauthorized) String

type GetOauthClientUsageQueryResultUnsupportedMediaType

type GetOauthClientUsageQueryResultUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageQueryResultUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthClientUsageQueryResultUnsupportedMediaType

func NewGetOauthClientUsageQueryResultUnsupportedMediaType() *GetOauthClientUsageQueryResultUnsupportedMediaType

NewGetOauthClientUsageQueryResultUnsupportedMediaType creates a GetOauthClientUsageQueryResultUnsupportedMediaType with default headers values

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) Error

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) GetPayload

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) IsClientError

IsClientError returns true when this get oauth client usage query result unsupported media type response has a 4xx status code

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) IsCode

IsCode returns true when this get oauth client usage query result unsupported media type response a status code equal to that given

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get oauth client usage query result unsupported media type response has a 3xx status code

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) IsServerError

IsServerError returns true when this get oauth client usage query result unsupported media type response has a 5xx status code

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth client usage query result unsupported media type response has a 2xx status code

func (*GetOauthClientUsageQueryResultUnsupportedMediaType) String

type GetOauthClientUsageSummaryAccepted

type GetOauthClientUsageSummaryAccepted struct {
	Payload *models.UsageExecutionResult
}

GetOauthClientUsageSummaryAccepted describes a response with status code 202, with default header values.

Execution not completed, check back for results

func NewGetOauthClientUsageSummaryAccepted

func NewGetOauthClientUsageSummaryAccepted() *GetOauthClientUsageSummaryAccepted

NewGetOauthClientUsageSummaryAccepted creates a GetOauthClientUsageSummaryAccepted with default headers values

func (*GetOauthClientUsageSummaryAccepted) Error

func (*GetOauthClientUsageSummaryAccepted) GetPayload

func (*GetOauthClientUsageSummaryAccepted) IsClientError

func (o *GetOauthClientUsageSummaryAccepted) IsClientError() bool

IsClientError returns true when this get oauth client usage summary accepted response has a 4xx status code

func (*GetOauthClientUsageSummaryAccepted) IsCode

IsCode returns true when this get oauth client usage summary accepted response a status code equal to that given

func (*GetOauthClientUsageSummaryAccepted) IsRedirect

func (o *GetOauthClientUsageSummaryAccepted) IsRedirect() bool

IsRedirect returns true when this get oauth client usage summary accepted response has a 3xx status code

func (*GetOauthClientUsageSummaryAccepted) IsServerError

func (o *GetOauthClientUsageSummaryAccepted) IsServerError() bool

IsServerError returns true when this get oauth client usage summary accepted response has a 5xx status code

func (*GetOauthClientUsageSummaryAccepted) IsSuccess

IsSuccess returns true when this get oauth client usage summary accepted response has a 2xx status code

func (*GetOauthClientUsageSummaryAccepted) String

type GetOauthClientUsageSummaryBadRequest

type GetOauthClientUsageSummaryBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthClientUsageSummaryBadRequest

func NewGetOauthClientUsageSummaryBadRequest() *GetOauthClientUsageSummaryBadRequest

NewGetOauthClientUsageSummaryBadRequest creates a GetOauthClientUsageSummaryBadRequest with default headers values

func (*GetOauthClientUsageSummaryBadRequest) Error

func (*GetOauthClientUsageSummaryBadRequest) GetPayload

func (*GetOauthClientUsageSummaryBadRequest) IsClientError

func (o *GetOauthClientUsageSummaryBadRequest) IsClientError() bool

IsClientError returns true when this get oauth client usage summary bad request response has a 4xx status code

func (*GetOauthClientUsageSummaryBadRequest) IsCode

IsCode returns true when this get oauth client usage summary bad request response a status code equal to that given

func (*GetOauthClientUsageSummaryBadRequest) IsRedirect

IsRedirect returns true when this get oauth client usage summary bad request response has a 3xx status code

func (*GetOauthClientUsageSummaryBadRequest) IsServerError

func (o *GetOauthClientUsageSummaryBadRequest) IsServerError() bool

IsServerError returns true when this get oauth client usage summary bad request response has a 5xx status code

func (*GetOauthClientUsageSummaryBadRequest) IsSuccess

IsSuccess returns true when this get oauth client usage summary bad request response has a 2xx status code

func (*GetOauthClientUsageSummaryBadRequest) String

type GetOauthClientUsageSummaryForbidden

type GetOauthClientUsageSummaryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthClientUsageSummaryForbidden

func NewGetOauthClientUsageSummaryForbidden() *GetOauthClientUsageSummaryForbidden

NewGetOauthClientUsageSummaryForbidden creates a GetOauthClientUsageSummaryForbidden with default headers values

func (*GetOauthClientUsageSummaryForbidden) Error

func (*GetOauthClientUsageSummaryForbidden) GetPayload

func (*GetOauthClientUsageSummaryForbidden) IsClientError

func (o *GetOauthClientUsageSummaryForbidden) IsClientError() bool

IsClientError returns true when this get oauth client usage summary forbidden response has a 4xx status code

func (*GetOauthClientUsageSummaryForbidden) IsCode

IsCode returns true when this get oauth client usage summary forbidden response a status code equal to that given

func (*GetOauthClientUsageSummaryForbidden) IsRedirect

func (o *GetOauthClientUsageSummaryForbidden) IsRedirect() bool

IsRedirect returns true when this get oauth client usage summary forbidden response has a 3xx status code

func (*GetOauthClientUsageSummaryForbidden) IsServerError

func (o *GetOauthClientUsageSummaryForbidden) IsServerError() bool

IsServerError returns true when this get oauth client usage summary forbidden response has a 5xx status code

func (*GetOauthClientUsageSummaryForbidden) IsSuccess

IsSuccess returns true when this get oauth client usage summary forbidden response has a 2xx status code

func (*GetOauthClientUsageSummaryForbidden) String

type GetOauthClientUsageSummaryGatewayTimeout

type GetOauthClientUsageSummaryGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageSummaryGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthClientUsageSummaryGatewayTimeout

func NewGetOauthClientUsageSummaryGatewayTimeout() *GetOauthClientUsageSummaryGatewayTimeout

NewGetOauthClientUsageSummaryGatewayTimeout creates a GetOauthClientUsageSummaryGatewayTimeout with default headers values

func (*GetOauthClientUsageSummaryGatewayTimeout) Error

func (*GetOauthClientUsageSummaryGatewayTimeout) GetPayload

func (*GetOauthClientUsageSummaryGatewayTimeout) IsClientError

IsClientError returns true when this get oauth client usage summary gateway timeout response has a 4xx status code

func (*GetOauthClientUsageSummaryGatewayTimeout) IsCode

IsCode returns true when this get oauth client usage summary gateway timeout response a status code equal to that given

func (*GetOauthClientUsageSummaryGatewayTimeout) IsRedirect

IsRedirect returns true when this get oauth client usage summary gateway timeout response has a 3xx status code

func (*GetOauthClientUsageSummaryGatewayTimeout) IsServerError

IsServerError returns true when this get oauth client usage summary gateway timeout response has a 5xx status code

func (*GetOauthClientUsageSummaryGatewayTimeout) IsSuccess

IsSuccess returns true when this get oauth client usage summary gateway timeout response has a 2xx status code

func (*GetOauthClientUsageSummaryGatewayTimeout) String

type GetOauthClientUsageSummaryInternalServerError

type GetOauthClientUsageSummaryInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageSummaryInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthClientUsageSummaryInternalServerError

func NewGetOauthClientUsageSummaryInternalServerError() *GetOauthClientUsageSummaryInternalServerError

NewGetOauthClientUsageSummaryInternalServerError creates a GetOauthClientUsageSummaryInternalServerError with default headers values

func (*GetOauthClientUsageSummaryInternalServerError) Error

func (*GetOauthClientUsageSummaryInternalServerError) GetPayload

func (*GetOauthClientUsageSummaryInternalServerError) IsClientError

IsClientError returns true when this get oauth client usage summary internal server error response has a 4xx status code

func (*GetOauthClientUsageSummaryInternalServerError) IsCode

IsCode returns true when this get oauth client usage summary internal server error response a status code equal to that given

func (*GetOauthClientUsageSummaryInternalServerError) IsRedirect

IsRedirect returns true when this get oauth client usage summary internal server error response has a 3xx status code

func (*GetOauthClientUsageSummaryInternalServerError) IsServerError

IsServerError returns true when this get oauth client usage summary internal server error response has a 5xx status code

func (*GetOauthClientUsageSummaryInternalServerError) IsSuccess

IsSuccess returns true when this get oauth client usage summary internal server error response has a 2xx status code

func (*GetOauthClientUsageSummaryInternalServerError) String

type GetOauthClientUsageSummaryNotFound

type GetOauthClientUsageSummaryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthClientUsageSummaryNotFound

func NewGetOauthClientUsageSummaryNotFound() *GetOauthClientUsageSummaryNotFound

NewGetOauthClientUsageSummaryNotFound creates a GetOauthClientUsageSummaryNotFound with default headers values

func (*GetOauthClientUsageSummaryNotFound) Error

func (*GetOauthClientUsageSummaryNotFound) GetPayload

func (*GetOauthClientUsageSummaryNotFound) IsClientError

func (o *GetOauthClientUsageSummaryNotFound) IsClientError() bool

IsClientError returns true when this get oauth client usage summary not found response has a 4xx status code

func (*GetOauthClientUsageSummaryNotFound) IsCode

IsCode returns true when this get oauth client usage summary not found response a status code equal to that given

func (*GetOauthClientUsageSummaryNotFound) IsRedirect

func (o *GetOauthClientUsageSummaryNotFound) IsRedirect() bool

IsRedirect returns true when this get oauth client usage summary not found response has a 3xx status code

func (*GetOauthClientUsageSummaryNotFound) IsServerError

func (o *GetOauthClientUsageSummaryNotFound) IsServerError() bool

IsServerError returns true when this get oauth client usage summary not found response has a 5xx status code

func (*GetOauthClientUsageSummaryNotFound) IsSuccess

IsSuccess returns true when this get oauth client usage summary not found response has a 2xx status code

func (*GetOauthClientUsageSummaryNotFound) String

type GetOauthClientUsageSummaryOK

type GetOauthClientUsageSummaryOK struct {
	Payload *models.UsageExecutionResult
}

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

successful operation

func NewGetOauthClientUsageSummaryOK

func NewGetOauthClientUsageSummaryOK() *GetOauthClientUsageSummaryOK

NewGetOauthClientUsageSummaryOK creates a GetOauthClientUsageSummaryOK with default headers values

func (*GetOauthClientUsageSummaryOK) Error

func (*GetOauthClientUsageSummaryOK) GetPayload

func (*GetOauthClientUsageSummaryOK) IsClientError

func (o *GetOauthClientUsageSummaryOK) IsClientError() bool

IsClientError returns true when this get oauth client usage summary o k response has a 4xx status code

func (*GetOauthClientUsageSummaryOK) IsCode

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

IsCode returns true when this get oauth client usage summary o k response a status code equal to that given

func (*GetOauthClientUsageSummaryOK) IsRedirect

func (o *GetOauthClientUsageSummaryOK) IsRedirect() bool

IsRedirect returns true when this get oauth client usage summary o k response has a 3xx status code

func (*GetOauthClientUsageSummaryOK) IsServerError

func (o *GetOauthClientUsageSummaryOK) IsServerError() bool

IsServerError returns true when this get oauth client usage summary o k response has a 5xx status code

func (*GetOauthClientUsageSummaryOK) IsSuccess

func (o *GetOauthClientUsageSummaryOK) IsSuccess() bool

IsSuccess returns true when this get oauth client usage summary o k response has a 2xx status code

func (*GetOauthClientUsageSummaryOK) String

type GetOauthClientUsageSummaryParams

type GetOauthClientUsageSummaryParams struct {

	/* ClientID.

	   Client ID
	*/
	ClientID string

	/* Days.

	   Previous number of days to query

	   Default: "7"
	*/
	Days *string

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

GetOauthClientUsageSummaryParams contains all the parameters to send to the API endpoint

for the get oauth client usage summary operation.

Typically these are written to a http.Request.

func NewGetOauthClientUsageSummaryParams

func NewGetOauthClientUsageSummaryParams() *GetOauthClientUsageSummaryParams

NewGetOauthClientUsageSummaryParams creates a new GetOauthClientUsageSummaryParams 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 NewGetOauthClientUsageSummaryParamsWithContext

func NewGetOauthClientUsageSummaryParamsWithContext(ctx context.Context) *GetOauthClientUsageSummaryParams

NewGetOauthClientUsageSummaryParamsWithContext creates a new GetOauthClientUsageSummaryParams object with the ability to set a context for a request.

func NewGetOauthClientUsageSummaryParamsWithHTTPClient

func NewGetOauthClientUsageSummaryParamsWithHTTPClient(client *http.Client) *GetOauthClientUsageSummaryParams

NewGetOauthClientUsageSummaryParamsWithHTTPClient creates a new GetOauthClientUsageSummaryParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthClientUsageSummaryParamsWithTimeout

func NewGetOauthClientUsageSummaryParamsWithTimeout(timeout time.Duration) *GetOauthClientUsageSummaryParams

NewGetOauthClientUsageSummaryParamsWithTimeout creates a new GetOauthClientUsageSummaryParams object with the ability to set a timeout on a request.

func (*GetOauthClientUsageSummaryParams) SetClientID

func (o *GetOauthClientUsageSummaryParams) SetClientID(clientID string)

SetClientID adds the clientId to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) SetContext

SetContext adds the context to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) SetDays

func (o *GetOauthClientUsageSummaryParams) SetDays(days *string)

SetDays adds the days to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) SetDefaults

func (o *GetOauthClientUsageSummaryParams) SetDefaults()

SetDefaults hydrates default values in the get oauth client usage summary params (not the query body).

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

func (*GetOauthClientUsageSummaryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) WithClientID

WithClientID adds the clientID to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) WithContext

WithContext adds the context to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) WithDays

WithDays adds the days to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) WithDefaults

WithDefaults hydrates default values in the get oauth client usage summary params (not the query body).

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

func (*GetOauthClientUsageSummaryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) WithTimeout

WithTimeout adds the timeout to the get oauth client usage summary params

func (*GetOauthClientUsageSummaryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetOauthClientUsageSummaryReader

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

GetOauthClientUsageSummaryReader is a Reader for the GetOauthClientUsageSummary structure.

func (*GetOauthClientUsageSummaryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthClientUsageSummaryRequestEntityTooLarge

type GetOauthClientUsageSummaryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthClientUsageSummaryRequestEntityTooLarge

func NewGetOauthClientUsageSummaryRequestEntityTooLarge() *GetOauthClientUsageSummaryRequestEntityTooLarge

NewGetOauthClientUsageSummaryRequestEntityTooLarge creates a GetOauthClientUsageSummaryRequestEntityTooLarge with default headers values

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) Error

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) GetPayload

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) IsClientError

IsClientError returns true when this get oauth client usage summary request entity too large response has a 4xx status code

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth client usage summary request entity too large response a status code equal to that given

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get oauth client usage summary request entity too large response has a 3xx status code

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) IsServerError

IsServerError returns true when this get oauth client usage summary request entity too large response has a 5xx status code

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth client usage summary request entity too large response has a 2xx status code

func (*GetOauthClientUsageSummaryRequestEntityTooLarge) String

type GetOauthClientUsageSummaryRequestTimeout

type GetOauthClientUsageSummaryRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageSummaryRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthClientUsageSummaryRequestTimeout

func NewGetOauthClientUsageSummaryRequestTimeout() *GetOauthClientUsageSummaryRequestTimeout

NewGetOauthClientUsageSummaryRequestTimeout creates a GetOauthClientUsageSummaryRequestTimeout with default headers values

func (*GetOauthClientUsageSummaryRequestTimeout) Error

func (*GetOauthClientUsageSummaryRequestTimeout) GetPayload

func (*GetOauthClientUsageSummaryRequestTimeout) IsClientError

IsClientError returns true when this get oauth client usage summary request timeout response has a 4xx status code

func (*GetOauthClientUsageSummaryRequestTimeout) IsCode

IsCode returns true when this get oauth client usage summary request timeout response a status code equal to that given

func (*GetOauthClientUsageSummaryRequestTimeout) IsRedirect

IsRedirect returns true when this get oauth client usage summary request timeout response has a 3xx status code

func (*GetOauthClientUsageSummaryRequestTimeout) IsServerError

IsServerError returns true when this get oauth client usage summary request timeout response has a 5xx status code

func (*GetOauthClientUsageSummaryRequestTimeout) IsSuccess

IsSuccess returns true when this get oauth client usage summary request timeout response has a 2xx status code

func (*GetOauthClientUsageSummaryRequestTimeout) String

type GetOauthClientUsageSummaryServiceUnavailable

type GetOauthClientUsageSummaryServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageSummaryServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthClientUsageSummaryServiceUnavailable

func NewGetOauthClientUsageSummaryServiceUnavailable() *GetOauthClientUsageSummaryServiceUnavailable

NewGetOauthClientUsageSummaryServiceUnavailable creates a GetOauthClientUsageSummaryServiceUnavailable with default headers values

func (*GetOauthClientUsageSummaryServiceUnavailable) Error

func (*GetOauthClientUsageSummaryServiceUnavailable) GetPayload

func (*GetOauthClientUsageSummaryServiceUnavailable) IsClientError

IsClientError returns true when this get oauth client usage summary service unavailable response has a 4xx status code

func (*GetOauthClientUsageSummaryServiceUnavailable) IsCode

IsCode returns true when this get oauth client usage summary service unavailable response a status code equal to that given

func (*GetOauthClientUsageSummaryServiceUnavailable) IsRedirect

IsRedirect returns true when this get oauth client usage summary service unavailable response has a 3xx status code

func (*GetOauthClientUsageSummaryServiceUnavailable) IsServerError

IsServerError returns true when this get oauth client usage summary service unavailable response has a 5xx status code

func (*GetOauthClientUsageSummaryServiceUnavailable) IsSuccess

IsSuccess returns true when this get oauth client usage summary service unavailable response has a 2xx status code

func (*GetOauthClientUsageSummaryServiceUnavailable) String

type GetOauthClientUsageSummaryTooManyRequests

type GetOauthClientUsageSummaryTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthClientUsageSummaryTooManyRequests

func NewGetOauthClientUsageSummaryTooManyRequests() *GetOauthClientUsageSummaryTooManyRequests

NewGetOauthClientUsageSummaryTooManyRequests creates a GetOauthClientUsageSummaryTooManyRequests with default headers values

func (*GetOauthClientUsageSummaryTooManyRequests) Error

func (*GetOauthClientUsageSummaryTooManyRequests) GetPayload

func (*GetOauthClientUsageSummaryTooManyRequests) IsClientError

IsClientError returns true when this get oauth client usage summary too many requests response has a 4xx status code

func (*GetOauthClientUsageSummaryTooManyRequests) IsCode

IsCode returns true when this get oauth client usage summary too many requests response a status code equal to that given

func (*GetOauthClientUsageSummaryTooManyRequests) IsRedirect

IsRedirect returns true when this get oauth client usage summary too many requests response has a 3xx status code

func (*GetOauthClientUsageSummaryTooManyRequests) IsServerError

IsServerError returns true when this get oauth client usage summary too many requests response has a 5xx status code

func (*GetOauthClientUsageSummaryTooManyRequests) IsSuccess

IsSuccess returns true when this get oauth client usage summary too many requests response has a 2xx status code

func (*GetOauthClientUsageSummaryTooManyRequests) String

type GetOauthClientUsageSummaryUnauthorized

type GetOauthClientUsageSummaryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthClientUsageSummaryUnauthorized

func NewGetOauthClientUsageSummaryUnauthorized() *GetOauthClientUsageSummaryUnauthorized

NewGetOauthClientUsageSummaryUnauthorized creates a GetOauthClientUsageSummaryUnauthorized with default headers values

func (*GetOauthClientUsageSummaryUnauthorized) Error

func (*GetOauthClientUsageSummaryUnauthorized) GetPayload

func (*GetOauthClientUsageSummaryUnauthorized) IsClientError

func (o *GetOauthClientUsageSummaryUnauthorized) IsClientError() bool

IsClientError returns true when this get oauth client usage summary unauthorized response has a 4xx status code

func (*GetOauthClientUsageSummaryUnauthorized) IsCode

IsCode returns true when this get oauth client usage summary unauthorized response a status code equal to that given

func (*GetOauthClientUsageSummaryUnauthorized) IsRedirect

IsRedirect returns true when this get oauth client usage summary unauthorized response has a 3xx status code

func (*GetOauthClientUsageSummaryUnauthorized) IsServerError

func (o *GetOauthClientUsageSummaryUnauthorized) IsServerError() bool

IsServerError returns true when this get oauth client usage summary unauthorized response has a 5xx status code

func (*GetOauthClientUsageSummaryUnauthorized) IsSuccess

IsSuccess returns true when this get oauth client usage summary unauthorized response has a 2xx status code

func (*GetOauthClientUsageSummaryUnauthorized) String

type GetOauthClientUsageSummaryUnsupportedMediaType

type GetOauthClientUsageSummaryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthClientUsageSummaryUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthClientUsageSummaryUnsupportedMediaType

func NewGetOauthClientUsageSummaryUnsupportedMediaType() *GetOauthClientUsageSummaryUnsupportedMediaType

NewGetOauthClientUsageSummaryUnsupportedMediaType creates a GetOauthClientUsageSummaryUnsupportedMediaType with default headers values

func (*GetOauthClientUsageSummaryUnsupportedMediaType) Error

func (*GetOauthClientUsageSummaryUnsupportedMediaType) GetPayload

func (*GetOauthClientUsageSummaryUnsupportedMediaType) IsClientError

IsClientError returns true when this get oauth client usage summary unsupported media type response has a 4xx status code

func (*GetOauthClientUsageSummaryUnsupportedMediaType) IsCode

IsCode returns true when this get oauth client usage summary unsupported media type response a status code equal to that given

func (*GetOauthClientUsageSummaryUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get oauth client usage summary unsupported media type response has a 3xx status code

func (*GetOauthClientUsageSummaryUnsupportedMediaType) IsServerError

IsServerError returns true when this get oauth client usage summary unsupported media type response has a 5xx status code

func (*GetOauthClientUsageSummaryUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth client usage summary unsupported media type response has a 2xx status code

func (*GetOauthClientUsageSummaryUnsupportedMediaType) String

type GetOauthClientsBadRequest

type GetOauthClientsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthClientsBadRequest

func NewGetOauthClientsBadRequest() *GetOauthClientsBadRequest

NewGetOauthClientsBadRequest creates a GetOauthClientsBadRequest with default headers values

func (*GetOauthClientsBadRequest) Error

func (o *GetOauthClientsBadRequest) Error() string

func (*GetOauthClientsBadRequest) GetPayload

func (o *GetOauthClientsBadRequest) GetPayload() *models.ErrorBody

func (*GetOauthClientsBadRequest) IsClientError

func (o *GetOauthClientsBadRequest) IsClientError() bool

IsClientError returns true when this get oauth clients bad request response has a 4xx status code

func (*GetOauthClientsBadRequest) IsCode

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

IsCode returns true when this get oauth clients bad request response a status code equal to that given

func (*GetOauthClientsBadRequest) IsRedirect

func (o *GetOauthClientsBadRequest) IsRedirect() bool

IsRedirect returns true when this get oauth clients bad request response has a 3xx status code

func (*GetOauthClientsBadRequest) IsServerError

func (o *GetOauthClientsBadRequest) IsServerError() bool

IsServerError returns true when this get oauth clients bad request response has a 5xx status code

func (*GetOauthClientsBadRequest) IsSuccess

func (o *GetOauthClientsBadRequest) IsSuccess() bool

IsSuccess returns true when this get oauth clients bad request response has a 2xx status code

func (*GetOauthClientsBadRequest) String

func (o *GetOauthClientsBadRequest) String() string

type GetOauthClientsForbidden

type GetOauthClientsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthClientsForbidden

func NewGetOauthClientsForbidden() *GetOauthClientsForbidden

NewGetOauthClientsForbidden creates a GetOauthClientsForbidden with default headers values

func (*GetOauthClientsForbidden) Error

func (o *GetOauthClientsForbidden) Error() string

func (*GetOauthClientsForbidden) GetPayload

func (o *GetOauthClientsForbidden) GetPayload() *models.ErrorBody

func (*GetOauthClientsForbidden) IsClientError

func (o *GetOauthClientsForbidden) IsClientError() bool

IsClientError returns true when this get oauth clients forbidden response has a 4xx status code

func (*GetOauthClientsForbidden) IsCode

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

IsCode returns true when this get oauth clients forbidden response a status code equal to that given

func (*GetOauthClientsForbidden) IsRedirect

func (o *GetOauthClientsForbidden) IsRedirect() bool

IsRedirect returns true when this get oauth clients forbidden response has a 3xx status code

func (*GetOauthClientsForbidden) IsServerError

func (o *GetOauthClientsForbidden) IsServerError() bool

IsServerError returns true when this get oauth clients forbidden response has a 5xx status code

func (*GetOauthClientsForbidden) IsSuccess

func (o *GetOauthClientsForbidden) IsSuccess() bool

IsSuccess returns true when this get oauth clients forbidden response has a 2xx status code

func (*GetOauthClientsForbidden) String

func (o *GetOauthClientsForbidden) String() string

type GetOauthClientsGatewayTimeout

type GetOauthClientsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthClientsGatewayTimeout

func NewGetOauthClientsGatewayTimeout() *GetOauthClientsGatewayTimeout

NewGetOauthClientsGatewayTimeout creates a GetOauthClientsGatewayTimeout with default headers values

func (*GetOauthClientsGatewayTimeout) Error

func (*GetOauthClientsGatewayTimeout) GetPayload

func (*GetOauthClientsGatewayTimeout) IsClientError

func (o *GetOauthClientsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get oauth clients gateway timeout response has a 4xx status code

func (*GetOauthClientsGatewayTimeout) IsCode

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

IsCode returns true when this get oauth clients gateway timeout response a status code equal to that given

func (*GetOauthClientsGatewayTimeout) IsRedirect

func (o *GetOauthClientsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth clients gateway timeout response has a 3xx status code

func (*GetOauthClientsGatewayTimeout) IsServerError

func (o *GetOauthClientsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get oauth clients gateway timeout response has a 5xx status code

func (*GetOauthClientsGatewayTimeout) IsSuccess

func (o *GetOauthClientsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth clients gateway timeout response has a 2xx status code

func (*GetOauthClientsGatewayTimeout) String

type GetOauthClientsInternalServerError

type GetOauthClientsInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthClientsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthClientsInternalServerError

func NewGetOauthClientsInternalServerError() *GetOauthClientsInternalServerError

NewGetOauthClientsInternalServerError creates a GetOauthClientsInternalServerError with default headers values

func (*GetOauthClientsInternalServerError) Error

func (*GetOauthClientsInternalServerError) GetPayload

func (*GetOauthClientsInternalServerError) IsClientError

func (o *GetOauthClientsInternalServerError) IsClientError() bool

IsClientError returns true when this get oauth clients internal server error response has a 4xx status code

func (*GetOauthClientsInternalServerError) IsCode

IsCode returns true when this get oauth clients internal server error response a status code equal to that given

func (*GetOauthClientsInternalServerError) IsRedirect

func (o *GetOauthClientsInternalServerError) IsRedirect() bool

IsRedirect returns true when this get oauth clients internal server error response has a 3xx status code

func (*GetOauthClientsInternalServerError) IsServerError

func (o *GetOauthClientsInternalServerError) IsServerError() bool

IsServerError returns true when this get oauth clients internal server error response has a 5xx status code

func (*GetOauthClientsInternalServerError) IsSuccess

IsSuccess returns true when this get oauth clients internal server error response has a 2xx status code

func (*GetOauthClientsInternalServerError) String

type GetOauthClientsNotFound

type GetOauthClientsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthClientsNotFound

func NewGetOauthClientsNotFound() *GetOauthClientsNotFound

NewGetOauthClientsNotFound creates a GetOauthClientsNotFound with default headers values

func (*GetOauthClientsNotFound) Error

func (o *GetOauthClientsNotFound) Error() string

func (*GetOauthClientsNotFound) GetPayload

func (o *GetOauthClientsNotFound) GetPayload() *models.ErrorBody

func (*GetOauthClientsNotFound) IsClientError

func (o *GetOauthClientsNotFound) IsClientError() bool

IsClientError returns true when this get oauth clients not found response has a 4xx status code

func (*GetOauthClientsNotFound) IsCode

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

IsCode returns true when this get oauth clients not found response a status code equal to that given

func (*GetOauthClientsNotFound) IsRedirect

func (o *GetOauthClientsNotFound) IsRedirect() bool

IsRedirect returns true when this get oauth clients not found response has a 3xx status code

func (*GetOauthClientsNotFound) IsServerError

func (o *GetOauthClientsNotFound) IsServerError() bool

IsServerError returns true when this get oauth clients not found response has a 5xx status code

func (*GetOauthClientsNotFound) IsSuccess

func (o *GetOauthClientsNotFound) IsSuccess() bool

IsSuccess returns true when this get oauth clients not found response has a 2xx status code

func (*GetOauthClientsNotFound) String

func (o *GetOauthClientsNotFound) String() string

type GetOauthClientsOK

type GetOauthClientsOK struct {
	Payload *models.OAuthClientEntityListing
}

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

successful operation

func NewGetOauthClientsOK

func NewGetOauthClientsOK() *GetOauthClientsOK

NewGetOauthClientsOK creates a GetOauthClientsOK with default headers values

func (*GetOauthClientsOK) Error

func (o *GetOauthClientsOK) Error() string

func (*GetOauthClientsOK) GetPayload

func (*GetOauthClientsOK) IsClientError

func (o *GetOauthClientsOK) IsClientError() bool

IsClientError returns true when this get oauth clients o k response has a 4xx status code

func (*GetOauthClientsOK) IsCode

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

IsCode returns true when this get oauth clients o k response a status code equal to that given

func (*GetOauthClientsOK) IsRedirect

func (o *GetOauthClientsOK) IsRedirect() bool

IsRedirect returns true when this get oauth clients o k response has a 3xx status code

func (*GetOauthClientsOK) IsServerError

func (o *GetOauthClientsOK) IsServerError() bool

IsServerError returns true when this get oauth clients o k response has a 5xx status code

func (*GetOauthClientsOK) IsSuccess

func (o *GetOauthClientsOK) IsSuccess() bool

IsSuccess returns true when this get oauth clients o k response has a 2xx status code

func (*GetOauthClientsOK) String

func (o *GetOauthClientsOK) String() string

type GetOauthClientsParams

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

GetOauthClientsParams contains all the parameters to send to the API endpoint

for the get oauth clients operation.

Typically these are written to a http.Request.

func NewGetOauthClientsParams

func NewGetOauthClientsParams() *GetOauthClientsParams

NewGetOauthClientsParams creates a new GetOauthClientsParams 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 NewGetOauthClientsParamsWithContext

func NewGetOauthClientsParamsWithContext(ctx context.Context) *GetOauthClientsParams

NewGetOauthClientsParamsWithContext creates a new GetOauthClientsParams object with the ability to set a context for a request.

func NewGetOauthClientsParamsWithHTTPClient

func NewGetOauthClientsParamsWithHTTPClient(client *http.Client) *GetOauthClientsParams

NewGetOauthClientsParamsWithHTTPClient creates a new GetOauthClientsParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthClientsParamsWithTimeout

func NewGetOauthClientsParamsWithTimeout(timeout time.Duration) *GetOauthClientsParams

NewGetOauthClientsParamsWithTimeout creates a new GetOauthClientsParams object with the ability to set a timeout on a request.

func (*GetOauthClientsParams) SetContext

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

SetContext adds the context to the get oauth clients params

func (*GetOauthClientsParams) SetDefaults

func (o *GetOauthClientsParams) SetDefaults()

SetDefaults hydrates default values in the get oauth clients params (not the query body).

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

func (*GetOauthClientsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth clients params

func (*GetOauthClientsParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth clients params

func (*GetOauthClientsParams) WithContext

WithContext adds the context to the get oauth clients params

func (*GetOauthClientsParams) WithDefaults

func (o *GetOauthClientsParams) WithDefaults() *GetOauthClientsParams

WithDefaults hydrates default values in the get oauth clients params (not the query body).

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

func (*GetOauthClientsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get oauth clients params

func (*GetOauthClientsParams) WithTimeout

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

WithTimeout adds the timeout to the get oauth clients params

func (*GetOauthClientsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetOauthClientsReader

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

GetOauthClientsReader is a Reader for the GetOauthClients structure.

func (*GetOauthClientsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthClientsRequestEntityTooLarge

type GetOauthClientsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthClientsRequestEntityTooLarge

func NewGetOauthClientsRequestEntityTooLarge() *GetOauthClientsRequestEntityTooLarge

NewGetOauthClientsRequestEntityTooLarge creates a GetOauthClientsRequestEntityTooLarge with default headers values

func (*GetOauthClientsRequestEntityTooLarge) Error

func (*GetOauthClientsRequestEntityTooLarge) GetPayload

func (*GetOauthClientsRequestEntityTooLarge) IsClientError

func (o *GetOauthClientsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get oauth clients request entity too large response has a 4xx status code

func (*GetOauthClientsRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth clients request entity too large response a status code equal to that given

func (*GetOauthClientsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get oauth clients request entity too large response has a 3xx status code

func (*GetOauthClientsRequestEntityTooLarge) IsServerError

func (o *GetOauthClientsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get oauth clients request entity too large response has a 5xx status code

func (*GetOauthClientsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth clients request entity too large response has a 2xx status code

func (*GetOauthClientsRequestEntityTooLarge) String

type GetOauthClientsRequestTimeout

type GetOauthClientsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthClientsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthClientsRequestTimeout

func NewGetOauthClientsRequestTimeout() *GetOauthClientsRequestTimeout

NewGetOauthClientsRequestTimeout creates a GetOauthClientsRequestTimeout with default headers values

func (*GetOauthClientsRequestTimeout) Error

func (*GetOauthClientsRequestTimeout) GetPayload

func (*GetOauthClientsRequestTimeout) IsClientError

func (o *GetOauthClientsRequestTimeout) IsClientError() bool

IsClientError returns true when this get oauth clients request timeout response has a 4xx status code

func (*GetOauthClientsRequestTimeout) IsCode

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

IsCode returns true when this get oauth clients request timeout response a status code equal to that given

func (*GetOauthClientsRequestTimeout) IsRedirect

func (o *GetOauthClientsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth clients request timeout response has a 3xx status code

func (*GetOauthClientsRequestTimeout) IsServerError

func (o *GetOauthClientsRequestTimeout) IsServerError() bool

IsServerError returns true when this get oauth clients request timeout response has a 5xx status code

func (*GetOauthClientsRequestTimeout) IsSuccess

func (o *GetOauthClientsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth clients request timeout response has a 2xx status code

func (*GetOauthClientsRequestTimeout) String

type GetOauthClientsServiceUnavailable

type GetOauthClientsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthClientsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthClientsServiceUnavailable

func NewGetOauthClientsServiceUnavailable() *GetOauthClientsServiceUnavailable

NewGetOauthClientsServiceUnavailable creates a GetOauthClientsServiceUnavailable with default headers values

func (*GetOauthClientsServiceUnavailable) Error

func (*GetOauthClientsServiceUnavailable) GetPayload

func (*GetOauthClientsServiceUnavailable) IsClientError

func (o *GetOauthClientsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get oauth clients service unavailable response has a 4xx status code

func (*GetOauthClientsServiceUnavailable) IsCode

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

IsCode returns true when this get oauth clients service unavailable response a status code equal to that given

func (*GetOauthClientsServiceUnavailable) IsRedirect

func (o *GetOauthClientsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get oauth clients service unavailable response has a 3xx status code

func (*GetOauthClientsServiceUnavailable) IsServerError

func (o *GetOauthClientsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get oauth clients service unavailable response has a 5xx status code

func (*GetOauthClientsServiceUnavailable) IsSuccess

func (o *GetOauthClientsServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get oauth clients service unavailable response has a 2xx status code

func (*GetOauthClientsServiceUnavailable) String

type GetOauthClientsTooManyRequests

type GetOauthClientsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthClientsTooManyRequests

func NewGetOauthClientsTooManyRequests() *GetOauthClientsTooManyRequests

NewGetOauthClientsTooManyRequests creates a GetOauthClientsTooManyRequests with default headers values

func (*GetOauthClientsTooManyRequests) Error

func (*GetOauthClientsTooManyRequests) GetPayload

func (*GetOauthClientsTooManyRequests) IsClientError

func (o *GetOauthClientsTooManyRequests) IsClientError() bool

IsClientError returns true when this get oauth clients too many requests response has a 4xx status code

func (*GetOauthClientsTooManyRequests) IsCode

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

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

func (*GetOauthClientsTooManyRequests) IsRedirect

func (o *GetOauthClientsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get oauth clients too many requests response has a 3xx status code

func (*GetOauthClientsTooManyRequests) IsServerError

func (o *GetOauthClientsTooManyRequests) IsServerError() bool

IsServerError returns true when this get oauth clients too many requests response has a 5xx status code

func (*GetOauthClientsTooManyRequests) IsSuccess

func (o *GetOauthClientsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get oauth clients too many requests response has a 2xx status code

func (*GetOauthClientsTooManyRequests) String

type GetOauthClientsUnauthorized

type GetOauthClientsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthClientsUnauthorized

func NewGetOauthClientsUnauthorized() *GetOauthClientsUnauthorized

NewGetOauthClientsUnauthorized creates a GetOauthClientsUnauthorized with default headers values

func (*GetOauthClientsUnauthorized) Error

func (*GetOauthClientsUnauthorized) GetPayload

func (o *GetOauthClientsUnauthorized) GetPayload() *models.ErrorBody

func (*GetOauthClientsUnauthorized) IsClientError

func (o *GetOauthClientsUnauthorized) IsClientError() bool

IsClientError returns true when this get oauth clients unauthorized response has a 4xx status code

func (*GetOauthClientsUnauthorized) IsCode

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

IsCode returns true when this get oauth clients unauthorized response a status code equal to that given

func (*GetOauthClientsUnauthorized) IsRedirect

func (o *GetOauthClientsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get oauth clients unauthorized response has a 3xx status code

func (*GetOauthClientsUnauthorized) IsServerError

func (o *GetOauthClientsUnauthorized) IsServerError() bool

IsServerError returns true when this get oauth clients unauthorized response has a 5xx status code

func (*GetOauthClientsUnauthorized) IsSuccess

func (o *GetOauthClientsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get oauth clients unauthorized response has a 2xx status code

func (*GetOauthClientsUnauthorized) String

func (o *GetOauthClientsUnauthorized) String() string

type GetOauthClientsUnsupportedMediaType

type GetOauthClientsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthClientsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthClientsUnsupportedMediaType

func NewGetOauthClientsUnsupportedMediaType() *GetOauthClientsUnsupportedMediaType

NewGetOauthClientsUnsupportedMediaType creates a GetOauthClientsUnsupportedMediaType with default headers values

func (*GetOauthClientsUnsupportedMediaType) Error

func (*GetOauthClientsUnsupportedMediaType) GetPayload

func (*GetOauthClientsUnsupportedMediaType) IsClientError

func (o *GetOauthClientsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get oauth clients unsupported media type response has a 4xx status code

func (*GetOauthClientsUnsupportedMediaType) IsCode

IsCode returns true when this get oauth clients unsupported media type response a status code equal to that given

func (*GetOauthClientsUnsupportedMediaType) IsRedirect

func (o *GetOauthClientsUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get oauth clients unsupported media type response has a 3xx status code

func (*GetOauthClientsUnsupportedMediaType) IsServerError

func (o *GetOauthClientsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get oauth clients unsupported media type response has a 5xx status code

func (*GetOauthClientsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth clients unsupported media type response has a 2xx status code

func (*GetOauthClientsUnsupportedMediaType) String

type GetOauthScopeBadRequest

type GetOauthScopeBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthScopeBadRequest

func NewGetOauthScopeBadRequest() *GetOauthScopeBadRequest

NewGetOauthScopeBadRequest creates a GetOauthScopeBadRequest with default headers values

func (*GetOauthScopeBadRequest) Error

func (o *GetOauthScopeBadRequest) Error() string

func (*GetOauthScopeBadRequest) GetPayload

func (o *GetOauthScopeBadRequest) GetPayload() *models.ErrorBody

func (*GetOauthScopeBadRequest) IsClientError

func (o *GetOauthScopeBadRequest) IsClientError() bool

IsClientError returns true when this get oauth scope bad request response has a 4xx status code

func (*GetOauthScopeBadRequest) IsCode

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

IsCode returns true when this get oauth scope bad request response a status code equal to that given

func (*GetOauthScopeBadRequest) IsRedirect

func (o *GetOauthScopeBadRequest) IsRedirect() bool

IsRedirect returns true when this get oauth scope bad request response has a 3xx status code

func (*GetOauthScopeBadRequest) IsServerError

func (o *GetOauthScopeBadRequest) IsServerError() bool

IsServerError returns true when this get oauth scope bad request response has a 5xx status code

func (*GetOauthScopeBadRequest) IsSuccess

func (o *GetOauthScopeBadRequest) IsSuccess() bool

IsSuccess returns true when this get oauth scope bad request response has a 2xx status code

func (*GetOauthScopeBadRequest) String

func (o *GetOauthScopeBadRequest) String() string

type GetOauthScopeForbidden

type GetOauthScopeForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthScopeForbidden

func NewGetOauthScopeForbidden() *GetOauthScopeForbidden

NewGetOauthScopeForbidden creates a GetOauthScopeForbidden with default headers values

func (*GetOauthScopeForbidden) Error

func (o *GetOauthScopeForbidden) Error() string

func (*GetOauthScopeForbidden) GetPayload

func (o *GetOauthScopeForbidden) GetPayload() *models.ErrorBody

func (*GetOauthScopeForbidden) IsClientError

func (o *GetOauthScopeForbidden) IsClientError() bool

IsClientError returns true when this get oauth scope forbidden response has a 4xx status code

func (*GetOauthScopeForbidden) IsCode

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

IsCode returns true when this get oauth scope forbidden response a status code equal to that given

func (*GetOauthScopeForbidden) IsRedirect

func (o *GetOauthScopeForbidden) IsRedirect() bool

IsRedirect returns true when this get oauth scope forbidden response has a 3xx status code

func (*GetOauthScopeForbidden) IsServerError

func (o *GetOauthScopeForbidden) IsServerError() bool

IsServerError returns true when this get oauth scope forbidden response has a 5xx status code

func (*GetOauthScopeForbidden) IsSuccess

func (o *GetOauthScopeForbidden) IsSuccess() bool

IsSuccess returns true when this get oauth scope forbidden response has a 2xx status code

func (*GetOauthScopeForbidden) String

func (o *GetOauthScopeForbidden) String() string

type GetOauthScopeGatewayTimeout

type GetOauthScopeGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthScopeGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthScopeGatewayTimeout

func NewGetOauthScopeGatewayTimeout() *GetOauthScopeGatewayTimeout

NewGetOauthScopeGatewayTimeout creates a GetOauthScopeGatewayTimeout with default headers values

func (*GetOauthScopeGatewayTimeout) Error

func (*GetOauthScopeGatewayTimeout) GetPayload

func (o *GetOauthScopeGatewayTimeout) GetPayload() *models.ErrorBody

func (*GetOauthScopeGatewayTimeout) IsClientError

func (o *GetOauthScopeGatewayTimeout) IsClientError() bool

IsClientError returns true when this get oauth scope gateway timeout response has a 4xx status code

func (*GetOauthScopeGatewayTimeout) IsCode

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

IsCode returns true when this get oauth scope gateway timeout response a status code equal to that given

func (*GetOauthScopeGatewayTimeout) IsRedirect

func (o *GetOauthScopeGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth scope gateway timeout response has a 3xx status code

func (*GetOauthScopeGatewayTimeout) IsServerError

func (o *GetOauthScopeGatewayTimeout) IsServerError() bool

IsServerError returns true when this get oauth scope gateway timeout response has a 5xx status code

func (*GetOauthScopeGatewayTimeout) IsSuccess

func (o *GetOauthScopeGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth scope gateway timeout response has a 2xx status code

func (*GetOauthScopeGatewayTimeout) String

func (o *GetOauthScopeGatewayTimeout) String() string

type GetOauthScopeInternalServerError

type GetOauthScopeInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthScopeInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthScopeInternalServerError

func NewGetOauthScopeInternalServerError() *GetOauthScopeInternalServerError

NewGetOauthScopeInternalServerError creates a GetOauthScopeInternalServerError with default headers values

func (*GetOauthScopeInternalServerError) Error

func (*GetOauthScopeInternalServerError) GetPayload

func (*GetOauthScopeInternalServerError) IsClientError

func (o *GetOauthScopeInternalServerError) IsClientError() bool

IsClientError returns true when this get oauth scope internal server error response has a 4xx status code

func (*GetOauthScopeInternalServerError) IsCode

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

IsCode returns true when this get oauth scope internal server error response a status code equal to that given

func (*GetOauthScopeInternalServerError) IsRedirect

func (o *GetOauthScopeInternalServerError) IsRedirect() bool

IsRedirect returns true when this get oauth scope internal server error response has a 3xx status code

func (*GetOauthScopeInternalServerError) IsServerError

func (o *GetOauthScopeInternalServerError) IsServerError() bool

IsServerError returns true when this get oauth scope internal server error response has a 5xx status code

func (*GetOauthScopeInternalServerError) IsSuccess

func (o *GetOauthScopeInternalServerError) IsSuccess() bool

IsSuccess returns true when this get oauth scope internal server error response has a 2xx status code

func (*GetOauthScopeInternalServerError) String

type GetOauthScopeNotFound

type GetOauthScopeNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthScopeNotFound

func NewGetOauthScopeNotFound() *GetOauthScopeNotFound

NewGetOauthScopeNotFound creates a GetOauthScopeNotFound with default headers values

func (*GetOauthScopeNotFound) Error

func (o *GetOauthScopeNotFound) Error() string

func (*GetOauthScopeNotFound) GetPayload

func (o *GetOauthScopeNotFound) GetPayload() *models.ErrorBody

func (*GetOauthScopeNotFound) IsClientError

func (o *GetOauthScopeNotFound) IsClientError() bool

IsClientError returns true when this get oauth scope not found response has a 4xx status code

func (*GetOauthScopeNotFound) IsCode

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

IsCode returns true when this get oauth scope not found response a status code equal to that given

func (*GetOauthScopeNotFound) IsRedirect

func (o *GetOauthScopeNotFound) IsRedirect() bool

IsRedirect returns true when this get oauth scope not found response has a 3xx status code

func (*GetOauthScopeNotFound) IsServerError

func (o *GetOauthScopeNotFound) IsServerError() bool

IsServerError returns true when this get oauth scope not found response has a 5xx status code

func (*GetOauthScopeNotFound) IsSuccess

func (o *GetOauthScopeNotFound) IsSuccess() bool

IsSuccess returns true when this get oauth scope not found response has a 2xx status code

func (*GetOauthScopeNotFound) String

func (o *GetOauthScopeNotFound) String() string

type GetOauthScopeOK

type GetOauthScopeOK struct {
	Payload *models.OAuthScope
}

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

successful operation

func NewGetOauthScopeOK

func NewGetOauthScopeOK() *GetOauthScopeOK

NewGetOauthScopeOK creates a GetOauthScopeOK with default headers values

func (*GetOauthScopeOK) Error

func (o *GetOauthScopeOK) Error() string

func (*GetOauthScopeOK) GetPayload

func (o *GetOauthScopeOK) GetPayload() *models.OAuthScope

func (*GetOauthScopeOK) IsClientError

func (o *GetOauthScopeOK) IsClientError() bool

IsClientError returns true when this get oauth scope o k response has a 4xx status code

func (*GetOauthScopeOK) IsCode

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

IsCode returns true when this get oauth scope o k response a status code equal to that given

func (*GetOauthScopeOK) IsRedirect

func (o *GetOauthScopeOK) IsRedirect() bool

IsRedirect returns true when this get oauth scope o k response has a 3xx status code

func (*GetOauthScopeOK) IsServerError

func (o *GetOauthScopeOK) IsServerError() bool

IsServerError returns true when this get oauth scope o k response has a 5xx status code

func (*GetOauthScopeOK) IsSuccess

func (o *GetOauthScopeOK) IsSuccess() bool

IsSuccess returns true when this get oauth scope o k response has a 2xx status code

func (*GetOauthScopeOK) String

func (o *GetOauthScopeOK) String() string

type GetOauthScopeParams

type GetOauthScopeParams struct {

	/* AcceptLanguage.

	   The language with which to display the scope description.

	   Default: "en-us"
	*/
	AcceptLanguage *string

	/* ScopeID.

	   Scope ID
	*/
	ScopeID string

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

GetOauthScopeParams contains all the parameters to send to the API endpoint

for the get oauth scope operation.

Typically these are written to a http.Request.

func NewGetOauthScopeParams

func NewGetOauthScopeParams() *GetOauthScopeParams

NewGetOauthScopeParams creates a new GetOauthScopeParams 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 NewGetOauthScopeParamsWithContext

func NewGetOauthScopeParamsWithContext(ctx context.Context) *GetOauthScopeParams

NewGetOauthScopeParamsWithContext creates a new GetOauthScopeParams object with the ability to set a context for a request.

func NewGetOauthScopeParamsWithHTTPClient

func NewGetOauthScopeParamsWithHTTPClient(client *http.Client) *GetOauthScopeParams

NewGetOauthScopeParamsWithHTTPClient creates a new GetOauthScopeParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthScopeParamsWithTimeout

func NewGetOauthScopeParamsWithTimeout(timeout time.Duration) *GetOauthScopeParams

NewGetOauthScopeParamsWithTimeout creates a new GetOauthScopeParams object with the ability to set a timeout on a request.

func (*GetOauthScopeParams) SetAcceptLanguage

func (o *GetOauthScopeParams) SetAcceptLanguage(acceptLanguage *string)

SetAcceptLanguage adds the acceptLanguage to the get oauth scope params

func (*GetOauthScopeParams) SetContext

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

SetContext adds the context to the get oauth scope params

func (*GetOauthScopeParams) SetDefaults

func (o *GetOauthScopeParams) SetDefaults()

SetDefaults hydrates default values in the get oauth scope params (not the query body).

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

func (*GetOauthScopeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth scope params

func (*GetOauthScopeParams) SetScopeID

func (o *GetOauthScopeParams) SetScopeID(scopeID string)

SetScopeID adds the scopeId to the get oauth scope params

func (*GetOauthScopeParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth scope params

func (*GetOauthScopeParams) WithAcceptLanguage

func (o *GetOauthScopeParams) WithAcceptLanguage(acceptLanguage *string) *GetOauthScopeParams

WithAcceptLanguage adds the acceptLanguage to the get oauth scope params

func (*GetOauthScopeParams) WithContext

WithContext adds the context to the get oauth scope params

func (*GetOauthScopeParams) WithDefaults

func (o *GetOauthScopeParams) WithDefaults() *GetOauthScopeParams

WithDefaults hydrates default values in the get oauth scope params (not the query body).

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

func (*GetOauthScopeParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get oauth scope params

func (*GetOauthScopeParams) WithScopeID

func (o *GetOauthScopeParams) WithScopeID(scopeID string) *GetOauthScopeParams

WithScopeID adds the scopeID to the get oauth scope params

func (*GetOauthScopeParams) WithTimeout

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

WithTimeout adds the timeout to the get oauth scope params

func (*GetOauthScopeParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetOauthScopeReader

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

GetOauthScopeReader is a Reader for the GetOauthScope structure.

func (*GetOauthScopeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthScopeRequestEntityTooLarge

type GetOauthScopeRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthScopeRequestEntityTooLarge

func NewGetOauthScopeRequestEntityTooLarge() *GetOauthScopeRequestEntityTooLarge

NewGetOauthScopeRequestEntityTooLarge creates a GetOauthScopeRequestEntityTooLarge with default headers values

func (*GetOauthScopeRequestEntityTooLarge) Error

func (*GetOauthScopeRequestEntityTooLarge) GetPayload

func (*GetOauthScopeRequestEntityTooLarge) IsClientError

func (o *GetOauthScopeRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get oauth scope request entity too large response has a 4xx status code

func (*GetOauthScopeRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth scope request entity too large response a status code equal to that given

func (*GetOauthScopeRequestEntityTooLarge) IsRedirect

func (o *GetOauthScopeRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get oauth scope request entity too large response has a 3xx status code

func (*GetOauthScopeRequestEntityTooLarge) IsServerError

func (o *GetOauthScopeRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get oauth scope request entity too large response has a 5xx status code

func (*GetOauthScopeRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth scope request entity too large response has a 2xx status code

func (*GetOauthScopeRequestEntityTooLarge) String

type GetOauthScopeRequestTimeout

type GetOauthScopeRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthScopeRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthScopeRequestTimeout

func NewGetOauthScopeRequestTimeout() *GetOauthScopeRequestTimeout

NewGetOauthScopeRequestTimeout creates a GetOauthScopeRequestTimeout with default headers values

func (*GetOauthScopeRequestTimeout) Error

func (*GetOauthScopeRequestTimeout) GetPayload

func (o *GetOauthScopeRequestTimeout) GetPayload() *models.ErrorBody

func (*GetOauthScopeRequestTimeout) IsClientError

func (o *GetOauthScopeRequestTimeout) IsClientError() bool

IsClientError returns true when this get oauth scope request timeout response has a 4xx status code

func (*GetOauthScopeRequestTimeout) IsCode

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

IsCode returns true when this get oauth scope request timeout response a status code equal to that given

func (*GetOauthScopeRequestTimeout) IsRedirect

func (o *GetOauthScopeRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth scope request timeout response has a 3xx status code

func (*GetOauthScopeRequestTimeout) IsServerError

func (o *GetOauthScopeRequestTimeout) IsServerError() bool

IsServerError returns true when this get oauth scope request timeout response has a 5xx status code

func (*GetOauthScopeRequestTimeout) IsSuccess

func (o *GetOauthScopeRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth scope request timeout response has a 2xx status code

func (*GetOauthScopeRequestTimeout) String

func (o *GetOauthScopeRequestTimeout) String() string

type GetOauthScopeServiceUnavailable

type GetOauthScopeServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthScopeServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthScopeServiceUnavailable

func NewGetOauthScopeServiceUnavailable() *GetOauthScopeServiceUnavailable

NewGetOauthScopeServiceUnavailable creates a GetOauthScopeServiceUnavailable with default headers values

func (*GetOauthScopeServiceUnavailable) Error

func (*GetOauthScopeServiceUnavailable) GetPayload

func (*GetOauthScopeServiceUnavailable) IsClientError

func (o *GetOauthScopeServiceUnavailable) IsClientError() bool

IsClientError returns true when this get oauth scope service unavailable response has a 4xx status code

func (*GetOauthScopeServiceUnavailable) IsCode

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

IsCode returns true when this get oauth scope service unavailable response a status code equal to that given

func (*GetOauthScopeServiceUnavailable) IsRedirect

func (o *GetOauthScopeServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get oauth scope service unavailable response has a 3xx status code

func (*GetOauthScopeServiceUnavailable) IsServerError

func (o *GetOauthScopeServiceUnavailable) IsServerError() bool

IsServerError returns true when this get oauth scope service unavailable response has a 5xx status code

func (*GetOauthScopeServiceUnavailable) IsSuccess

func (o *GetOauthScopeServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get oauth scope service unavailable response has a 2xx status code

func (*GetOauthScopeServiceUnavailable) String

type GetOauthScopeTooManyRequests

type GetOauthScopeTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthScopeTooManyRequests

func NewGetOauthScopeTooManyRequests() *GetOauthScopeTooManyRequests

NewGetOauthScopeTooManyRequests creates a GetOauthScopeTooManyRequests with default headers values

func (*GetOauthScopeTooManyRequests) Error

func (*GetOauthScopeTooManyRequests) GetPayload

func (*GetOauthScopeTooManyRequests) IsClientError

func (o *GetOauthScopeTooManyRequests) IsClientError() bool

IsClientError returns true when this get oauth scope too many requests response has a 4xx status code

func (*GetOauthScopeTooManyRequests) IsCode

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

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

func (*GetOauthScopeTooManyRequests) IsRedirect

func (o *GetOauthScopeTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get oauth scope too many requests response has a 3xx status code

func (*GetOauthScopeTooManyRequests) IsServerError

func (o *GetOauthScopeTooManyRequests) IsServerError() bool

IsServerError returns true when this get oauth scope too many requests response has a 5xx status code

func (*GetOauthScopeTooManyRequests) IsSuccess

func (o *GetOauthScopeTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get oauth scope too many requests response has a 2xx status code

func (*GetOauthScopeTooManyRequests) String

type GetOauthScopeUnauthorized

type GetOauthScopeUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthScopeUnauthorized

func NewGetOauthScopeUnauthorized() *GetOauthScopeUnauthorized

NewGetOauthScopeUnauthorized creates a GetOauthScopeUnauthorized with default headers values

func (*GetOauthScopeUnauthorized) Error

func (o *GetOauthScopeUnauthorized) Error() string

func (*GetOauthScopeUnauthorized) GetPayload

func (o *GetOauthScopeUnauthorized) GetPayload() *models.ErrorBody

func (*GetOauthScopeUnauthorized) IsClientError

func (o *GetOauthScopeUnauthorized) IsClientError() bool

IsClientError returns true when this get oauth scope unauthorized response has a 4xx status code

func (*GetOauthScopeUnauthorized) IsCode

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

IsCode returns true when this get oauth scope unauthorized response a status code equal to that given

func (*GetOauthScopeUnauthorized) IsRedirect

func (o *GetOauthScopeUnauthorized) IsRedirect() bool

IsRedirect returns true when this get oauth scope unauthorized response has a 3xx status code

func (*GetOauthScopeUnauthorized) IsServerError

func (o *GetOauthScopeUnauthorized) IsServerError() bool

IsServerError returns true when this get oauth scope unauthorized response has a 5xx status code

func (*GetOauthScopeUnauthorized) IsSuccess

func (o *GetOauthScopeUnauthorized) IsSuccess() bool

IsSuccess returns true when this get oauth scope unauthorized response has a 2xx status code

func (*GetOauthScopeUnauthorized) String

func (o *GetOauthScopeUnauthorized) String() string

type GetOauthScopeUnsupportedMediaType

type GetOauthScopeUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthScopeUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthScopeUnsupportedMediaType

func NewGetOauthScopeUnsupportedMediaType() *GetOauthScopeUnsupportedMediaType

NewGetOauthScopeUnsupportedMediaType creates a GetOauthScopeUnsupportedMediaType with default headers values

func (*GetOauthScopeUnsupportedMediaType) Error

func (*GetOauthScopeUnsupportedMediaType) GetPayload

func (*GetOauthScopeUnsupportedMediaType) IsClientError

func (o *GetOauthScopeUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get oauth scope unsupported media type response has a 4xx status code

func (*GetOauthScopeUnsupportedMediaType) IsCode

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

IsCode returns true when this get oauth scope unsupported media type response a status code equal to that given

func (*GetOauthScopeUnsupportedMediaType) IsRedirect

func (o *GetOauthScopeUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get oauth scope unsupported media type response has a 3xx status code

func (*GetOauthScopeUnsupportedMediaType) IsServerError

func (o *GetOauthScopeUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get oauth scope unsupported media type response has a 5xx status code

func (*GetOauthScopeUnsupportedMediaType) IsSuccess

func (o *GetOauthScopeUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this get oauth scope unsupported media type response has a 2xx status code

func (*GetOauthScopeUnsupportedMediaType) String

type GetOauthScopesBadRequest

type GetOauthScopesBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetOauthScopesBadRequest

func NewGetOauthScopesBadRequest() *GetOauthScopesBadRequest

NewGetOauthScopesBadRequest creates a GetOauthScopesBadRequest with default headers values

func (*GetOauthScopesBadRequest) Error

func (o *GetOauthScopesBadRequest) Error() string

func (*GetOauthScopesBadRequest) GetPayload

func (o *GetOauthScopesBadRequest) GetPayload() *models.ErrorBody

func (*GetOauthScopesBadRequest) IsClientError

func (o *GetOauthScopesBadRequest) IsClientError() bool

IsClientError returns true when this get oauth scopes bad request response has a 4xx status code

func (*GetOauthScopesBadRequest) IsCode

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

IsCode returns true when this get oauth scopes bad request response a status code equal to that given

func (*GetOauthScopesBadRequest) IsRedirect

func (o *GetOauthScopesBadRequest) IsRedirect() bool

IsRedirect returns true when this get oauth scopes bad request response has a 3xx status code

func (*GetOauthScopesBadRequest) IsServerError

func (o *GetOauthScopesBadRequest) IsServerError() bool

IsServerError returns true when this get oauth scopes bad request response has a 5xx status code

func (*GetOauthScopesBadRequest) IsSuccess

func (o *GetOauthScopesBadRequest) IsSuccess() bool

IsSuccess returns true when this get oauth scopes bad request response has a 2xx status code

func (*GetOauthScopesBadRequest) String

func (o *GetOauthScopesBadRequest) String() string

type GetOauthScopesForbidden

type GetOauthScopesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetOauthScopesForbidden

func NewGetOauthScopesForbidden() *GetOauthScopesForbidden

NewGetOauthScopesForbidden creates a GetOauthScopesForbidden with default headers values

func (*GetOauthScopesForbidden) Error

func (o *GetOauthScopesForbidden) Error() string

func (*GetOauthScopesForbidden) GetPayload

func (o *GetOauthScopesForbidden) GetPayload() *models.ErrorBody

func (*GetOauthScopesForbidden) IsClientError

func (o *GetOauthScopesForbidden) IsClientError() bool

IsClientError returns true when this get oauth scopes forbidden response has a 4xx status code

func (*GetOauthScopesForbidden) IsCode

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

IsCode returns true when this get oauth scopes forbidden response a status code equal to that given

func (*GetOauthScopesForbidden) IsRedirect

func (o *GetOauthScopesForbidden) IsRedirect() bool

IsRedirect returns true when this get oauth scopes forbidden response has a 3xx status code

func (*GetOauthScopesForbidden) IsServerError

func (o *GetOauthScopesForbidden) IsServerError() bool

IsServerError returns true when this get oauth scopes forbidden response has a 5xx status code

func (*GetOauthScopesForbidden) IsSuccess

func (o *GetOauthScopesForbidden) IsSuccess() bool

IsSuccess returns true when this get oauth scopes forbidden response has a 2xx status code

func (*GetOauthScopesForbidden) String

func (o *GetOauthScopesForbidden) String() string

type GetOauthScopesGatewayTimeout

type GetOauthScopesGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetOauthScopesGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetOauthScopesGatewayTimeout

func NewGetOauthScopesGatewayTimeout() *GetOauthScopesGatewayTimeout

NewGetOauthScopesGatewayTimeout creates a GetOauthScopesGatewayTimeout with default headers values

func (*GetOauthScopesGatewayTimeout) Error

func (*GetOauthScopesGatewayTimeout) GetPayload

func (*GetOauthScopesGatewayTimeout) IsClientError

func (o *GetOauthScopesGatewayTimeout) IsClientError() bool

IsClientError returns true when this get oauth scopes gateway timeout response has a 4xx status code

func (*GetOauthScopesGatewayTimeout) IsCode

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

IsCode returns true when this get oauth scopes gateway timeout response a status code equal to that given

func (*GetOauthScopesGatewayTimeout) IsRedirect

func (o *GetOauthScopesGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth scopes gateway timeout response has a 3xx status code

func (*GetOauthScopesGatewayTimeout) IsServerError

func (o *GetOauthScopesGatewayTimeout) IsServerError() bool

IsServerError returns true when this get oauth scopes gateway timeout response has a 5xx status code

func (*GetOauthScopesGatewayTimeout) IsSuccess

func (o *GetOauthScopesGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth scopes gateway timeout response has a 2xx status code

func (*GetOauthScopesGatewayTimeout) String

type GetOauthScopesInternalServerError

type GetOauthScopesInternalServerError struct {
	Payload *models.ErrorBody
}

GetOauthScopesInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetOauthScopesInternalServerError

func NewGetOauthScopesInternalServerError() *GetOauthScopesInternalServerError

NewGetOauthScopesInternalServerError creates a GetOauthScopesInternalServerError with default headers values

func (*GetOauthScopesInternalServerError) Error

func (*GetOauthScopesInternalServerError) GetPayload

func (*GetOauthScopesInternalServerError) IsClientError

func (o *GetOauthScopesInternalServerError) IsClientError() bool

IsClientError returns true when this get oauth scopes internal server error response has a 4xx status code

func (*GetOauthScopesInternalServerError) IsCode

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

IsCode returns true when this get oauth scopes internal server error response a status code equal to that given

func (*GetOauthScopesInternalServerError) IsRedirect

func (o *GetOauthScopesInternalServerError) IsRedirect() bool

IsRedirect returns true when this get oauth scopes internal server error response has a 3xx status code

func (*GetOauthScopesInternalServerError) IsServerError

func (o *GetOauthScopesInternalServerError) IsServerError() bool

IsServerError returns true when this get oauth scopes internal server error response has a 5xx status code

func (*GetOauthScopesInternalServerError) IsSuccess

func (o *GetOauthScopesInternalServerError) IsSuccess() bool

IsSuccess returns true when this get oauth scopes internal server error response has a 2xx status code

func (*GetOauthScopesInternalServerError) String

type GetOauthScopesNotFound

type GetOauthScopesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetOauthScopesNotFound

func NewGetOauthScopesNotFound() *GetOauthScopesNotFound

NewGetOauthScopesNotFound creates a GetOauthScopesNotFound with default headers values

func (*GetOauthScopesNotFound) Error

func (o *GetOauthScopesNotFound) Error() string

func (*GetOauthScopesNotFound) GetPayload

func (o *GetOauthScopesNotFound) GetPayload() *models.ErrorBody

func (*GetOauthScopesNotFound) IsClientError

func (o *GetOauthScopesNotFound) IsClientError() bool

IsClientError returns true when this get oauth scopes not found response has a 4xx status code

func (*GetOauthScopesNotFound) IsCode

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

IsCode returns true when this get oauth scopes not found response a status code equal to that given

func (*GetOauthScopesNotFound) IsRedirect

func (o *GetOauthScopesNotFound) IsRedirect() bool

IsRedirect returns true when this get oauth scopes not found response has a 3xx status code

func (*GetOauthScopesNotFound) IsServerError

func (o *GetOauthScopesNotFound) IsServerError() bool

IsServerError returns true when this get oauth scopes not found response has a 5xx status code

func (*GetOauthScopesNotFound) IsSuccess

func (o *GetOauthScopesNotFound) IsSuccess() bool

IsSuccess returns true when this get oauth scopes not found response has a 2xx status code

func (*GetOauthScopesNotFound) String

func (o *GetOauthScopesNotFound) String() string

type GetOauthScopesOK

type GetOauthScopesOK struct {
	Payload *models.OAuthScopeListing
}

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

successful operation

func NewGetOauthScopesOK

func NewGetOauthScopesOK() *GetOauthScopesOK

NewGetOauthScopesOK creates a GetOauthScopesOK with default headers values

func (*GetOauthScopesOK) Error

func (o *GetOauthScopesOK) Error() string

func (*GetOauthScopesOK) GetPayload

func (o *GetOauthScopesOK) GetPayload() *models.OAuthScopeListing

func (*GetOauthScopesOK) IsClientError

func (o *GetOauthScopesOK) IsClientError() bool

IsClientError returns true when this get oauth scopes o k response has a 4xx status code

func (*GetOauthScopesOK) IsCode

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

IsCode returns true when this get oauth scopes o k response a status code equal to that given

func (*GetOauthScopesOK) IsRedirect

func (o *GetOauthScopesOK) IsRedirect() bool

IsRedirect returns true when this get oauth scopes o k response has a 3xx status code

func (*GetOauthScopesOK) IsServerError

func (o *GetOauthScopesOK) IsServerError() bool

IsServerError returns true when this get oauth scopes o k response has a 5xx status code

func (*GetOauthScopesOK) IsSuccess

func (o *GetOauthScopesOK) IsSuccess() bool

IsSuccess returns true when this get oauth scopes o k response has a 2xx status code

func (*GetOauthScopesOK) String

func (o *GetOauthScopesOK) String() string

type GetOauthScopesParams

type GetOauthScopesParams struct {

	/* AcceptLanguage.

	   The language with which to display the scope descriptions.

	   Default: "en-us"
	*/
	AcceptLanguage *string

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

GetOauthScopesParams contains all the parameters to send to the API endpoint

for the get oauth scopes operation.

Typically these are written to a http.Request.

func NewGetOauthScopesParams

func NewGetOauthScopesParams() *GetOauthScopesParams

NewGetOauthScopesParams creates a new GetOauthScopesParams 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 NewGetOauthScopesParamsWithContext

func NewGetOauthScopesParamsWithContext(ctx context.Context) *GetOauthScopesParams

NewGetOauthScopesParamsWithContext creates a new GetOauthScopesParams object with the ability to set a context for a request.

func NewGetOauthScopesParamsWithHTTPClient

func NewGetOauthScopesParamsWithHTTPClient(client *http.Client) *GetOauthScopesParams

NewGetOauthScopesParamsWithHTTPClient creates a new GetOauthScopesParams object with the ability to set a custom HTTPClient for a request.

func NewGetOauthScopesParamsWithTimeout

func NewGetOauthScopesParamsWithTimeout(timeout time.Duration) *GetOauthScopesParams

NewGetOauthScopesParamsWithTimeout creates a new GetOauthScopesParams object with the ability to set a timeout on a request.

func (*GetOauthScopesParams) SetAcceptLanguage

func (o *GetOauthScopesParams) SetAcceptLanguage(acceptLanguage *string)

SetAcceptLanguage adds the acceptLanguage to the get oauth scopes params

func (*GetOauthScopesParams) SetContext

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

SetContext adds the context to the get oauth scopes params

func (*GetOauthScopesParams) SetDefaults

func (o *GetOauthScopesParams) SetDefaults()

SetDefaults hydrates default values in the get oauth scopes params (not the query body).

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

func (*GetOauthScopesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get oauth scopes params

func (*GetOauthScopesParams) SetTimeout

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

SetTimeout adds the timeout to the get oauth scopes params

func (*GetOauthScopesParams) WithAcceptLanguage

func (o *GetOauthScopesParams) WithAcceptLanguage(acceptLanguage *string) *GetOauthScopesParams

WithAcceptLanguage adds the acceptLanguage to the get oauth scopes params

func (*GetOauthScopesParams) WithContext

WithContext adds the context to the get oauth scopes params

func (*GetOauthScopesParams) WithDefaults

func (o *GetOauthScopesParams) WithDefaults() *GetOauthScopesParams

WithDefaults hydrates default values in the get oauth scopes params (not the query body).

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

func (*GetOauthScopesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get oauth scopes params

func (*GetOauthScopesParams) WithTimeout

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

WithTimeout adds the timeout to the get oauth scopes params

func (*GetOauthScopesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetOauthScopesReader

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

GetOauthScopesReader is a Reader for the GetOauthScopes structure.

func (*GetOauthScopesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOauthScopesRequestEntityTooLarge

type GetOauthScopesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewGetOauthScopesRequestEntityTooLarge

func NewGetOauthScopesRequestEntityTooLarge() *GetOauthScopesRequestEntityTooLarge

NewGetOauthScopesRequestEntityTooLarge creates a GetOauthScopesRequestEntityTooLarge with default headers values

func (*GetOauthScopesRequestEntityTooLarge) Error

func (*GetOauthScopesRequestEntityTooLarge) GetPayload

func (*GetOauthScopesRequestEntityTooLarge) IsClientError

func (o *GetOauthScopesRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get oauth scopes request entity too large response has a 4xx status code

func (*GetOauthScopesRequestEntityTooLarge) IsCode

IsCode returns true when this get oauth scopes request entity too large response a status code equal to that given

func (*GetOauthScopesRequestEntityTooLarge) IsRedirect

func (o *GetOauthScopesRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get oauth scopes request entity too large response has a 3xx status code

func (*GetOauthScopesRequestEntityTooLarge) IsServerError

func (o *GetOauthScopesRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get oauth scopes request entity too large response has a 5xx status code

func (*GetOauthScopesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get oauth scopes request entity too large response has a 2xx status code

func (*GetOauthScopesRequestEntityTooLarge) String

type GetOauthScopesRequestTimeout

type GetOauthScopesRequestTimeout struct {
	Payload *models.ErrorBody
}

GetOauthScopesRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetOauthScopesRequestTimeout

func NewGetOauthScopesRequestTimeout() *GetOauthScopesRequestTimeout

NewGetOauthScopesRequestTimeout creates a GetOauthScopesRequestTimeout with default headers values

func (*GetOauthScopesRequestTimeout) Error

func (*GetOauthScopesRequestTimeout) GetPayload

func (*GetOauthScopesRequestTimeout) IsClientError

func (o *GetOauthScopesRequestTimeout) IsClientError() bool

IsClientError returns true when this get oauth scopes request timeout response has a 4xx status code

func (*GetOauthScopesRequestTimeout) IsCode

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

IsCode returns true when this get oauth scopes request timeout response a status code equal to that given

func (*GetOauthScopesRequestTimeout) IsRedirect

func (o *GetOauthScopesRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get oauth scopes request timeout response has a 3xx status code

func (*GetOauthScopesRequestTimeout) IsServerError

func (o *GetOauthScopesRequestTimeout) IsServerError() bool

IsServerError returns true when this get oauth scopes request timeout response has a 5xx status code

func (*GetOauthScopesRequestTimeout) IsSuccess

func (o *GetOauthScopesRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get oauth scopes request timeout response has a 2xx status code

func (*GetOauthScopesRequestTimeout) String

type GetOauthScopesServiceUnavailable

type GetOauthScopesServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetOauthScopesServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetOauthScopesServiceUnavailable

func NewGetOauthScopesServiceUnavailable() *GetOauthScopesServiceUnavailable

NewGetOauthScopesServiceUnavailable creates a GetOauthScopesServiceUnavailable with default headers values

func (*GetOauthScopesServiceUnavailable) Error

func (*GetOauthScopesServiceUnavailable) GetPayload

func (*GetOauthScopesServiceUnavailable) IsClientError

func (o *GetOauthScopesServiceUnavailable) IsClientError() bool

IsClientError returns true when this get oauth scopes service unavailable response has a 4xx status code

func (*GetOauthScopesServiceUnavailable) IsCode

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

IsCode returns true when this get oauth scopes service unavailable response a status code equal to that given

func (*GetOauthScopesServiceUnavailable) IsRedirect

func (o *GetOauthScopesServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get oauth scopes service unavailable response has a 3xx status code

func (*GetOauthScopesServiceUnavailable) IsServerError

func (o *GetOauthScopesServiceUnavailable) IsServerError() bool

IsServerError returns true when this get oauth scopes service unavailable response has a 5xx status code

func (*GetOauthScopesServiceUnavailable) IsSuccess

func (o *GetOauthScopesServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get oauth scopes service unavailable response has a 2xx status code

func (*GetOauthScopesServiceUnavailable) String

type GetOauthScopesTooManyRequests

type GetOauthScopesTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetOauthScopesTooManyRequests

func NewGetOauthScopesTooManyRequests() *GetOauthScopesTooManyRequests

NewGetOauthScopesTooManyRequests creates a GetOauthScopesTooManyRequests with default headers values

func (*GetOauthScopesTooManyRequests) Error

func (*GetOauthScopesTooManyRequests) GetPayload

func (*GetOauthScopesTooManyRequests) IsClientError

func (o *GetOauthScopesTooManyRequests) IsClientError() bool

IsClientError returns true when this get oauth scopes too many requests response has a 4xx status code

func (*GetOauthScopesTooManyRequests) IsCode

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

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

func (*GetOauthScopesTooManyRequests) IsRedirect

func (o *GetOauthScopesTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get oauth scopes too many requests response has a 3xx status code

func (*GetOauthScopesTooManyRequests) IsServerError

func (o *GetOauthScopesTooManyRequests) IsServerError() bool

IsServerError returns true when this get oauth scopes too many requests response has a 5xx status code

func (*GetOauthScopesTooManyRequests) IsSuccess

func (o *GetOauthScopesTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get oauth scopes too many requests response has a 2xx status code

func (*GetOauthScopesTooManyRequests) String

type GetOauthScopesUnauthorized

type GetOauthScopesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetOauthScopesUnauthorized

func NewGetOauthScopesUnauthorized() *GetOauthScopesUnauthorized

NewGetOauthScopesUnauthorized creates a GetOauthScopesUnauthorized with default headers values

func (*GetOauthScopesUnauthorized) Error

func (*GetOauthScopesUnauthorized) GetPayload

func (o *GetOauthScopesUnauthorized) GetPayload() *models.ErrorBody

func (*GetOauthScopesUnauthorized) IsClientError

func (o *GetOauthScopesUnauthorized) IsClientError() bool

IsClientError returns true when this get oauth scopes unauthorized response has a 4xx status code

func (*GetOauthScopesUnauthorized) IsCode

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

IsCode returns true when this get oauth scopes unauthorized response a status code equal to that given

func (*GetOauthScopesUnauthorized) IsRedirect

func (o *GetOauthScopesUnauthorized) IsRedirect() bool

IsRedirect returns true when this get oauth scopes unauthorized response has a 3xx status code

func (*GetOauthScopesUnauthorized) IsServerError

func (o *GetOauthScopesUnauthorized) IsServerError() bool

IsServerError returns true when this get oauth scopes unauthorized response has a 5xx status code

func (*GetOauthScopesUnauthorized) IsSuccess

func (o *GetOauthScopesUnauthorized) IsSuccess() bool

IsSuccess returns true when this get oauth scopes unauthorized response has a 2xx status code

func (*GetOauthScopesUnauthorized) String

func (o *GetOauthScopesUnauthorized) String() string

type GetOauthScopesUnsupportedMediaType

type GetOauthScopesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetOauthScopesUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetOauthScopesUnsupportedMediaType

func NewGetOauthScopesUnsupportedMediaType() *GetOauthScopesUnsupportedMediaType

NewGetOauthScopesUnsupportedMediaType creates a GetOauthScopesUnsupportedMediaType with default headers values

func (*GetOauthScopesUnsupportedMediaType) Error

func (*GetOauthScopesUnsupportedMediaType) GetPayload

func (*GetOauthScopesUnsupportedMediaType) IsClientError

func (o *GetOauthScopesUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get oauth scopes unsupported media type response has a 4xx status code

func (*GetOauthScopesUnsupportedMediaType) IsCode

IsCode returns true when this get oauth scopes unsupported media type response a status code equal to that given

func (*GetOauthScopesUnsupportedMediaType) IsRedirect

func (o *GetOauthScopesUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get oauth scopes unsupported media type response has a 3xx status code

func (*GetOauthScopesUnsupportedMediaType) IsServerError

func (o *GetOauthScopesUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get oauth scopes unsupported media type response has a 5xx status code

func (*GetOauthScopesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get oauth scopes unsupported media type response has a 2xx status code

func (*GetOauthScopesUnsupportedMediaType) String

type PostOauthClientSecretBadRequest

type PostOauthClientSecretBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostOauthClientSecretBadRequest

func NewPostOauthClientSecretBadRequest() *PostOauthClientSecretBadRequest

NewPostOauthClientSecretBadRequest creates a PostOauthClientSecretBadRequest with default headers values

func (*PostOauthClientSecretBadRequest) Error

func (*PostOauthClientSecretBadRequest) GetPayload

func (*PostOauthClientSecretBadRequest) IsClientError

func (o *PostOauthClientSecretBadRequest) IsClientError() bool

IsClientError returns true when this post oauth client secret bad request response has a 4xx status code

func (*PostOauthClientSecretBadRequest) IsCode

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

IsCode returns true when this post oauth client secret bad request response a status code equal to that given

func (*PostOauthClientSecretBadRequest) IsRedirect

func (o *PostOauthClientSecretBadRequest) IsRedirect() bool

IsRedirect returns true when this post oauth client secret bad request response has a 3xx status code

func (*PostOauthClientSecretBadRequest) IsServerError

func (o *PostOauthClientSecretBadRequest) IsServerError() bool

IsServerError returns true when this post oauth client secret bad request response has a 5xx status code

func (*PostOauthClientSecretBadRequest) IsSuccess

func (o *PostOauthClientSecretBadRequest) IsSuccess() bool

IsSuccess returns true when this post oauth client secret bad request response has a 2xx status code

func (*PostOauthClientSecretBadRequest) String

type PostOauthClientSecretForbidden

type PostOauthClientSecretForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostOauthClientSecretForbidden

func NewPostOauthClientSecretForbidden() *PostOauthClientSecretForbidden

NewPostOauthClientSecretForbidden creates a PostOauthClientSecretForbidden with default headers values

func (*PostOauthClientSecretForbidden) Error

func (*PostOauthClientSecretForbidden) GetPayload

func (*PostOauthClientSecretForbidden) IsClientError

func (o *PostOauthClientSecretForbidden) IsClientError() bool

IsClientError returns true when this post oauth client secret forbidden response has a 4xx status code

func (*PostOauthClientSecretForbidden) IsCode

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

IsCode returns true when this post oauth client secret forbidden response a status code equal to that given

func (*PostOauthClientSecretForbidden) IsRedirect

func (o *PostOauthClientSecretForbidden) IsRedirect() bool

IsRedirect returns true when this post oauth client secret forbidden response has a 3xx status code

func (*PostOauthClientSecretForbidden) IsServerError

func (o *PostOauthClientSecretForbidden) IsServerError() bool

IsServerError returns true when this post oauth client secret forbidden response has a 5xx status code

func (*PostOauthClientSecretForbidden) IsSuccess

func (o *PostOauthClientSecretForbidden) IsSuccess() bool

IsSuccess returns true when this post oauth client secret forbidden response has a 2xx status code

func (*PostOauthClientSecretForbidden) String

type PostOauthClientSecretGatewayTimeout

type PostOauthClientSecretGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostOauthClientSecretGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostOauthClientSecretGatewayTimeout

func NewPostOauthClientSecretGatewayTimeout() *PostOauthClientSecretGatewayTimeout

NewPostOauthClientSecretGatewayTimeout creates a PostOauthClientSecretGatewayTimeout with default headers values

func (*PostOauthClientSecretGatewayTimeout) Error

func (*PostOauthClientSecretGatewayTimeout) GetPayload

func (*PostOauthClientSecretGatewayTimeout) IsClientError

func (o *PostOauthClientSecretGatewayTimeout) IsClientError() bool

IsClientError returns true when this post oauth client secret gateway timeout response has a 4xx status code

func (*PostOauthClientSecretGatewayTimeout) IsCode

IsCode returns true when this post oauth client secret gateway timeout response a status code equal to that given

func (*PostOauthClientSecretGatewayTimeout) IsRedirect

func (o *PostOauthClientSecretGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post oauth client secret gateway timeout response has a 3xx status code

func (*PostOauthClientSecretGatewayTimeout) IsServerError

func (o *PostOauthClientSecretGatewayTimeout) IsServerError() bool

IsServerError returns true when this post oauth client secret gateway timeout response has a 5xx status code

func (*PostOauthClientSecretGatewayTimeout) IsSuccess

IsSuccess returns true when this post oauth client secret gateway timeout response has a 2xx status code

func (*PostOauthClientSecretGatewayTimeout) String

type PostOauthClientSecretInternalServerError

type PostOauthClientSecretInternalServerError struct {
	Payload *models.ErrorBody
}

PostOauthClientSecretInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostOauthClientSecretInternalServerError

func NewPostOauthClientSecretInternalServerError() *PostOauthClientSecretInternalServerError

NewPostOauthClientSecretInternalServerError creates a PostOauthClientSecretInternalServerError with default headers values

func (*PostOauthClientSecretInternalServerError) Error

func (*PostOauthClientSecretInternalServerError) GetPayload

func (*PostOauthClientSecretInternalServerError) IsClientError

IsClientError returns true when this post oauth client secret internal server error response has a 4xx status code

func (*PostOauthClientSecretInternalServerError) IsCode

IsCode returns true when this post oauth client secret internal server error response a status code equal to that given

func (*PostOauthClientSecretInternalServerError) IsRedirect

IsRedirect returns true when this post oauth client secret internal server error response has a 3xx status code

func (*PostOauthClientSecretInternalServerError) IsServerError

IsServerError returns true when this post oauth client secret internal server error response has a 5xx status code

func (*PostOauthClientSecretInternalServerError) IsSuccess

IsSuccess returns true when this post oauth client secret internal server error response has a 2xx status code

func (*PostOauthClientSecretInternalServerError) String

type PostOauthClientSecretNotFound

type PostOauthClientSecretNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostOauthClientSecretNotFound

func NewPostOauthClientSecretNotFound() *PostOauthClientSecretNotFound

NewPostOauthClientSecretNotFound creates a PostOauthClientSecretNotFound with default headers values

func (*PostOauthClientSecretNotFound) Error

func (*PostOauthClientSecretNotFound) GetPayload

func (*PostOauthClientSecretNotFound) IsClientError

func (o *PostOauthClientSecretNotFound) IsClientError() bool

IsClientError returns true when this post oauth client secret not found response has a 4xx status code

func (*PostOauthClientSecretNotFound) IsCode

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

IsCode returns true when this post oauth client secret not found response a status code equal to that given

func (*PostOauthClientSecretNotFound) IsRedirect

func (o *PostOauthClientSecretNotFound) IsRedirect() bool

IsRedirect returns true when this post oauth client secret not found response has a 3xx status code

func (*PostOauthClientSecretNotFound) IsServerError

func (o *PostOauthClientSecretNotFound) IsServerError() bool

IsServerError returns true when this post oauth client secret not found response has a 5xx status code

func (*PostOauthClientSecretNotFound) IsSuccess

func (o *PostOauthClientSecretNotFound) IsSuccess() bool

IsSuccess returns true when this post oauth client secret not found response has a 2xx status code

func (*PostOauthClientSecretNotFound) String

type PostOauthClientSecretOK

type PostOauthClientSecretOK struct {
	Payload *models.OAuthClient
}

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

successful operation

func NewPostOauthClientSecretOK

func NewPostOauthClientSecretOK() *PostOauthClientSecretOK

NewPostOauthClientSecretOK creates a PostOauthClientSecretOK with default headers values

func (*PostOauthClientSecretOK) Error

func (o *PostOauthClientSecretOK) Error() string

func (*PostOauthClientSecretOK) GetPayload

func (o *PostOauthClientSecretOK) GetPayload() *models.OAuthClient

func (*PostOauthClientSecretOK) IsClientError

func (o *PostOauthClientSecretOK) IsClientError() bool

IsClientError returns true when this post oauth client secret o k response has a 4xx status code

func (*PostOauthClientSecretOK) IsCode

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

IsCode returns true when this post oauth client secret o k response a status code equal to that given

func (*PostOauthClientSecretOK) IsRedirect

func (o *PostOauthClientSecretOK) IsRedirect() bool

IsRedirect returns true when this post oauth client secret o k response has a 3xx status code

func (*PostOauthClientSecretOK) IsServerError

func (o *PostOauthClientSecretOK) IsServerError() bool

IsServerError returns true when this post oauth client secret o k response has a 5xx status code

func (*PostOauthClientSecretOK) IsSuccess

func (o *PostOauthClientSecretOK) IsSuccess() bool

IsSuccess returns true when this post oauth client secret o k response has a 2xx status code

func (*PostOauthClientSecretOK) String

func (o *PostOauthClientSecretOK) String() string

type PostOauthClientSecretParams

type PostOauthClientSecretParams struct {

	/* ClientID.

	   Client ID
	*/
	ClientID string

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

PostOauthClientSecretParams contains all the parameters to send to the API endpoint

for the post oauth client secret operation.

Typically these are written to a http.Request.

func NewPostOauthClientSecretParams

func NewPostOauthClientSecretParams() *PostOauthClientSecretParams

NewPostOauthClientSecretParams creates a new PostOauthClientSecretParams 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 NewPostOauthClientSecretParamsWithContext

func NewPostOauthClientSecretParamsWithContext(ctx context.Context) *PostOauthClientSecretParams

NewPostOauthClientSecretParamsWithContext creates a new PostOauthClientSecretParams object with the ability to set a context for a request.

func NewPostOauthClientSecretParamsWithHTTPClient

func NewPostOauthClientSecretParamsWithHTTPClient(client *http.Client) *PostOauthClientSecretParams

NewPostOauthClientSecretParamsWithHTTPClient creates a new PostOauthClientSecretParams object with the ability to set a custom HTTPClient for a request.

func NewPostOauthClientSecretParamsWithTimeout

func NewPostOauthClientSecretParamsWithTimeout(timeout time.Duration) *PostOauthClientSecretParams

NewPostOauthClientSecretParamsWithTimeout creates a new PostOauthClientSecretParams object with the ability to set a timeout on a request.

func (*PostOauthClientSecretParams) SetClientID

func (o *PostOauthClientSecretParams) SetClientID(clientID string)

SetClientID adds the clientId to the post oauth client secret params

func (*PostOauthClientSecretParams) SetContext

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

SetContext adds the context to the post oauth client secret params

func (*PostOauthClientSecretParams) SetDefaults

func (o *PostOauthClientSecretParams) SetDefaults()

SetDefaults hydrates default values in the post oauth client secret params (not the query body).

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

func (*PostOauthClientSecretParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post oauth client secret params

func (*PostOauthClientSecretParams) SetTimeout

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

SetTimeout adds the timeout to the post oauth client secret params

func (*PostOauthClientSecretParams) WithClientID

WithClientID adds the clientID to the post oauth client secret params

func (*PostOauthClientSecretParams) WithContext

WithContext adds the context to the post oauth client secret params

func (*PostOauthClientSecretParams) WithDefaults

WithDefaults hydrates default values in the post oauth client secret params (not the query body).

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

func (*PostOauthClientSecretParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post oauth client secret params

func (*PostOauthClientSecretParams) WithTimeout

WithTimeout adds the timeout to the post oauth client secret params

func (*PostOauthClientSecretParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostOauthClientSecretReader

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

PostOauthClientSecretReader is a Reader for the PostOauthClientSecret structure.

func (*PostOauthClientSecretReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostOauthClientSecretRequestEntityTooLarge

type PostOauthClientSecretRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewPostOauthClientSecretRequestEntityTooLarge

func NewPostOauthClientSecretRequestEntityTooLarge() *PostOauthClientSecretRequestEntityTooLarge

NewPostOauthClientSecretRequestEntityTooLarge creates a PostOauthClientSecretRequestEntityTooLarge with default headers values

func (*PostOauthClientSecretRequestEntityTooLarge) Error

func (*PostOauthClientSecretRequestEntityTooLarge) GetPayload

func (*PostOauthClientSecretRequestEntityTooLarge) IsClientError

IsClientError returns true when this post oauth client secret request entity too large response has a 4xx status code

func (*PostOauthClientSecretRequestEntityTooLarge) IsCode

IsCode returns true when this post oauth client secret request entity too large response a status code equal to that given

func (*PostOauthClientSecretRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post oauth client secret request entity too large response has a 3xx status code

func (*PostOauthClientSecretRequestEntityTooLarge) IsServerError

IsServerError returns true when this post oauth client secret request entity too large response has a 5xx status code

func (*PostOauthClientSecretRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post oauth client secret request entity too large response has a 2xx status code

func (*PostOauthClientSecretRequestEntityTooLarge) String

type PostOauthClientSecretRequestTimeout

type PostOauthClientSecretRequestTimeout struct {
	Payload *models.ErrorBody
}

PostOauthClientSecretRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostOauthClientSecretRequestTimeout

func NewPostOauthClientSecretRequestTimeout() *PostOauthClientSecretRequestTimeout

NewPostOauthClientSecretRequestTimeout creates a PostOauthClientSecretRequestTimeout with default headers values

func (*PostOauthClientSecretRequestTimeout) Error

func (*PostOauthClientSecretRequestTimeout) GetPayload

func (*PostOauthClientSecretRequestTimeout) IsClientError

func (o *PostOauthClientSecretRequestTimeout) IsClientError() bool

IsClientError returns true when this post oauth client secret request timeout response has a 4xx status code

func (*PostOauthClientSecretRequestTimeout) IsCode

IsCode returns true when this post oauth client secret request timeout response a status code equal to that given

func (*PostOauthClientSecretRequestTimeout) IsRedirect

func (o *PostOauthClientSecretRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post oauth client secret request timeout response has a 3xx status code

func (*PostOauthClientSecretRequestTimeout) IsServerError

func (o *PostOauthClientSecretRequestTimeout) IsServerError() bool

IsServerError returns true when this post oauth client secret request timeout response has a 5xx status code

func (*PostOauthClientSecretRequestTimeout) IsSuccess

IsSuccess returns true when this post oauth client secret request timeout response has a 2xx status code

func (*PostOauthClientSecretRequestTimeout) String

type PostOauthClientSecretServiceUnavailable

type PostOauthClientSecretServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostOauthClientSecretServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostOauthClientSecretServiceUnavailable

func NewPostOauthClientSecretServiceUnavailable() *PostOauthClientSecretServiceUnavailable

NewPostOauthClientSecretServiceUnavailable creates a PostOauthClientSecretServiceUnavailable with default headers values

func (*PostOauthClientSecretServiceUnavailable) Error

func (*PostOauthClientSecretServiceUnavailable) GetPayload

func (*PostOauthClientSecretServiceUnavailable) IsClientError

func (o *PostOauthClientSecretServiceUnavailable) IsClientError() bool

IsClientError returns true when this post oauth client secret service unavailable response has a 4xx status code

func (*PostOauthClientSecretServiceUnavailable) IsCode

IsCode returns true when this post oauth client secret service unavailable response a status code equal to that given

func (*PostOauthClientSecretServiceUnavailable) IsRedirect

IsRedirect returns true when this post oauth client secret service unavailable response has a 3xx status code

func (*PostOauthClientSecretServiceUnavailable) IsServerError

func (o *PostOauthClientSecretServiceUnavailable) IsServerError() bool

IsServerError returns true when this post oauth client secret service unavailable response has a 5xx status code

func (*PostOauthClientSecretServiceUnavailable) IsSuccess

IsSuccess returns true when this post oauth client secret service unavailable response has a 2xx status code

func (*PostOauthClientSecretServiceUnavailable) String

type PostOauthClientSecretTooManyRequests

type PostOauthClientSecretTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostOauthClientSecretTooManyRequests

func NewPostOauthClientSecretTooManyRequests() *PostOauthClientSecretTooManyRequests

NewPostOauthClientSecretTooManyRequests creates a PostOauthClientSecretTooManyRequests with default headers values

func (*PostOauthClientSecretTooManyRequests) Error

func (*PostOauthClientSecretTooManyRequests) GetPayload

func (*PostOauthClientSecretTooManyRequests) IsClientError

func (o *PostOauthClientSecretTooManyRequests) IsClientError() bool

IsClientError returns true when this post oauth client secret too many requests response has a 4xx status code

func (*PostOauthClientSecretTooManyRequests) IsCode

IsCode returns true when this post oauth client secret too many requests response a status code equal to that given

func (*PostOauthClientSecretTooManyRequests) IsRedirect

IsRedirect returns true when this post oauth client secret too many requests response has a 3xx status code

func (*PostOauthClientSecretTooManyRequests) IsServerError

func (o *PostOauthClientSecretTooManyRequests) IsServerError() bool

IsServerError returns true when this post oauth client secret too many requests response has a 5xx status code

func (*PostOauthClientSecretTooManyRequests) IsSuccess

IsSuccess returns true when this post oauth client secret too many requests response has a 2xx status code

func (*PostOauthClientSecretTooManyRequests) String

type PostOauthClientSecretUnauthorized

type PostOauthClientSecretUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostOauthClientSecretUnauthorized

func NewPostOauthClientSecretUnauthorized() *PostOauthClientSecretUnauthorized

NewPostOauthClientSecretUnauthorized creates a PostOauthClientSecretUnauthorized with default headers values

func (*PostOauthClientSecretUnauthorized) Error

func (*PostOauthClientSecretUnauthorized) GetPayload

func (*PostOauthClientSecretUnauthorized) IsClientError

func (o *PostOauthClientSecretUnauthorized) IsClientError() bool

IsClientError returns true when this post oauth client secret unauthorized response has a 4xx status code

func (*PostOauthClientSecretUnauthorized) IsCode

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

IsCode returns true when this post oauth client secret unauthorized response a status code equal to that given

func (*PostOauthClientSecretUnauthorized) IsRedirect

func (o *PostOauthClientSecretUnauthorized) IsRedirect() bool

IsRedirect returns true when this post oauth client secret unauthorized response has a 3xx status code

func (*PostOauthClientSecretUnauthorized) IsServerError

func (o *PostOauthClientSecretUnauthorized) IsServerError() bool

IsServerError returns true when this post oauth client secret unauthorized response has a 5xx status code

func (*PostOauthClientSecretUnauthorized) IsSuccess

func (o *PostOauthClientSecretUnauthorized) IsSuccess() bool

IsSuccess returns true when this post oauth client secret unauthorized response has a 2xx status code

func (*PostOauthClientSecretUnauthorized) String

type PostOauthClientSecretUnsupportedMediaType

type PostOauthClientSecretUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostOauthClientSecretUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostOauthClientSecretUnsupportedMediaType

func NewPostOauthClientSecretUnsupportedMediaType() *PostOauthClientSecretUnsupportedMediaType

NewPostOauthClientSecretUnsupportedMediaType creates a PostOauthClientSecretUnsupportedMediaType with default headers values

func (*PostOauthClientSecretUnsupportedMediaType) Error

func (*PostOauthClientSecretUnsupportedMediaType) GetPayload

func (*PostOauthClientSecretUnsupportedMediaType) IsClientError

IsClientError returns true when this post oauth client secret unsupported media type response has a 4xx status code

func (*PostOauthClientSecretUnsupportedMediaType) IsCode

IsCode returns true when this post oauth client secret unsupported media type response a status code equal to that given

func (*PostOauthClientSecretUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post oauth client secret unsupported media type response has a 3xx status code

func (*PostOauthClientSecretUnsupportedMediaType) IsServerError

IsServerError returns true when this post oauth client secret unsupported media type response has a 5xx status code

func (*PostOauthClientSecretUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post oauth client secret unsupported media type response has a 2xx status code

func (*PostOauthClientSecretUnsupportedMediaType) String

type PostOauthClientUsageQueryAccepted

type PostOauthClientUsageQueryAccepted struct {
	Payload *models.UsageExecutionResult
}

PostOauthClientUsageQueryAccepted describes a response with status code 202, with default header values.

Execution not completed, check back for results

func NewPostOauthClientUsageQueryAccepted

func NewPostOauthClientUsageQueryAccepted() *PostOauthClientUsageQueryAccepted

NewPostOauthClientUsageQueryAccepted creates a PostOauthClientUsageQueryAccepted with default headers values

func (*PostOauthClientUsageQueryAccepted) Error

func (*PostOauthClientUsageQueryAccepted) GetPayload

func (*PostOauthClientUsageQueryAccepted) IsClientError

func (o *PostOauthClientUsageQueryAccepted) IsClientError() bool

IsClientError returns true when this post oauth client usage query accepted response has a 4xx status code

func (*PostOauthClientUsageQueryAccepted) IsCode

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

IsCode returns true when this post oauth client usage query accepted response a status code equal to that given

func (*PostOauthClientUsageQueryAccepted) IsRedirect

func (o *PostOauthClientUsageQueryAccepted) IsRedirect() bool

IsRedirect returns true when this post oauth client usage query accepted response has a 3xx status code

func (*PostOauthClientUsageQueryAccepted) IsServerError

func (o *PostOauthClientUsageQueryAccepted) IsServerError() bool

IsServerError returns true when this post oauth client usage query accepted response has a 5xx status code

func (*PostOauthClientUsageQueryAccepted) IsSuccess

func (o *PostOauthClientUsageQueryAccepted) IsSuccess() bool

IsSuccess returns true when this post oauth client usage query accepted response has a 2xx status code

func (*PostOauthClientUsageQueryAccepted) String

type PostOauthClientUsageQueryBadRequest

type PostOauthClientUsageQueryBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostOauthClientUsageQueryBadRequest

func NewPostOauthClientUsageQueryBadRequest() *PostOauthClientUsageQueryBadRequest

NewPostOauthClientUsageQueryBadRequest creates a PostOauthClientUsageQueryBadRequest with default headers values

func (*PostOauthClientUsageQueryBadRequest) Error

func (*PostOauthClientUsageQueryBadRequest) GetPayload

func (*PostOauthClientUsageQueryBadRequest) IsClientError

func (o *PostOauthClientUsageQueryBadRequest) IsClientError() bool

IsClientError returns true when this post oauth client usage query bad request response has a 4xx status code

func (*PostOauthClientUsageQueryBadRequest) IsCode

IsCode returns true when this post oauth client usage query bad request response a status code equal to that given

func (*PostOauthClientUsageQueryBadRequest) IsRedirect

func (o *PostOauthClientUsageQueryBadRequest) IsRedirect() bool

IsRedirect returns true when this post oauth client usage query bad request response has a 3xx status code

func (*PostOauthClientUsageQueryBadRequest) IsServerError

func (o *PostOauthClientUsageQueryBadRequest) IsServerError() bool

IsServerError returns true when this post oauth client usage query bad request response has a 5xx status code

func (*PostOauthClientUsageQueryBadRequest) IsSuccess

IsSuccess returns true when this post oauth client usage query bad request response has a 2xx status code

func (*PostOauthClientUsageQueryBadRequest) String

type PostOauthClientUsageQueryForbidden

type PostOauthClientUsageQueryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostOauthClientUsageQueryForbidden

func NewPostOauthClientUsageQueryForbidden() *PostOauthClientUsageQueryForbidden

NewPostOauthClientUsageQueryForbidden creates a PostOauthClientUsageQueryForbidden with default headers values

func (*PostOauthClientUsageQueryForbidden) Error

func (*PostOauthClientUsageQueryForbidden) GetPayload

func (*PostOauthClientUsageQueryForbidden) IsClientError

func (o *PostOauthClientUsageQueryForbidden) IsClientError() bool

IsClientError returns true when this post oauth client usage query forbidden response has a 4xx status code

func (*PostOauthClientUsageQueryForbidden) IsCode

IsCode returns true when this post oauth client usage query forbidden response a status code equal to that given

func (*PostOauthClientUsageQueryForbidden) IsRedirect

func (o *PostOauthClientUsageQueryForbidden) IsRedirect() bool

IsRedirect returns true when this post oauth client usage query forbidden response has a 3xx status code

func (*PostOauthClientUsageQueryForbidden) IsServerError

func (o *PostOauthClientUsageQueryForbidden) IsServerError() bool

IsServerError returns true when this post oauth client usage query forbidden response has a 5xx status code

func (*PostOauthClientUsageQueryForbidden) IsSuccess

IsSuccess returns true when this post oauth client usage query forbidden response has a 2xx status code

func (*PostOauthClientUsageQueryForbidden) String

type PostOauthClientUsageQueryGatewayTimeout

type PostOauthClientUsageQueryGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostOauthClientUsageQueryGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostOauthClientUsageQueryGatewayTimeout

func NewPostOauthClientUsageQueryGatewayTimeout() *PostOauthClientUsageQueryGatewayTimeout

NewPostOauthClientUsageQueryGatewayTimeout creates a PostOauthClientUsageQueryGatewayTimeout with default headers values

func (*PostOauthClientUsageQueryGatewayTimeout) Error

func (*PostOauthClientUsageQueryGatewayTimeout) GetPayload

func (*PostOauthClientUsageQueryGatewayTimeout) IsClientError

func (o *PostOauthClientUsageQueryGatewayTimeout) IsClientError() bool

IsClientError returns true when this post oauth client usage query gateway timeout response has a 4xx status code

func (*PostOauthClientUsageQueryGatewayTimeout) IsCode

IsCode returns true when this post oauth client usage query gateway timeout response a status code equal to that given

func (*PostOauthClientUsageQueryGatewayTimeout) IsRedirect

IsRedirect returns true when this post oauth client usage query gateway timeout response has a 3xx status code

func (*PostOauthClientUsageQueryGatewayTimeout) IsServerError

func (o *PostOauthClientUsageQueryGatewayTimeout) IsServerError() bool

IsServerError returns true when this post oauth client usage query gateway timeout response has a 5xx status code

func (*PostOauthClientUsageQueryGatewayTimeout) IsSuccess

IsSuccess returns true when this post oauth client usage query gateway timeout response has a 2xx status code

func (*PostOauthClientUsageQueryGatewayTimeout) String

type PostOauthClientUsageQueryInternalServerError

type PostOauthClientUsageQueryInternalServerError struct {
	Payload *models.ErrorBody
}

PostOauthClientUsageQueryInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostOauthClientUsageQueryInternalServerError

func NewPostOauthClientUsageQueryInternalServerError() *PostOauthClientUsageQueryInternalServerError

NewPostOauthClientUsageQueryInternalServerError creates a PostOauthClientUsageQueryInternalServerError with default headers values

func (*PostOauthClientUsageQueryInternalServerError) Error

func (*PostOauthClientUsageQueryInternalServerError) GetPayload

func (*PostOauthClientUsageQueryInternalServerError) IsClientError

IsClientError returns true when this post oauth client usage query internal server error response has a 4xx status code

func (*PostOauthClientUsageQueryInternalServerError) IsCode

IsCode returns true when this post oauth client usage query internal server error response a status code equal to that given

func (*PostOauthClientUsageQueryInternalServerError) IsRedirect

IsRedirect returns true when this post oauth client usage query internal server error response has a 3xx status code

func (*PostOauthClientUsageQueryInternalServerError) IsServerError

IsServerError returns true when this post oauth client usage query internal server error response has a 5xx status code

func (*PostOauthClientUsageQueryInternalServerError) IsSuccess

IsSuccess returns true when this post oauth client usage query internal server error response has a 2xx status code

func (*PostOauthClientUsageQueryInternalServerError) String

type PostOauthClientUsageQueryNotFound

type PostOauthClientUsageQueryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostOauthClientUsageQueryNotFound

func NewPostOauthClientUsageQueryNotFound() *PostOauthClientUsageQueryNotFound

NewPostOauthClientUsageQueryNotFound creates a PostOauthClientUsageQueryNotFound with default headers values

func (*PostOauthClientUsageQueryNotFound) Error

func (*PostOauthClientUsageQueryNotFound) GetPayload

func (*PostOauthClientUsageQueryNotFound) IsClientError

func (o *PostOauthClientUsageQueryNotFound) IsClientError() bool

IsClientError returns true when this post oauth client usage query not found response has a 4xx status code

func (*PostOauthClientUsageQueryNotFound) IsCode

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

IsCode returns true when this post oauth client usage query not found response a status code equal to that given

func (*PostOauthClientUsageQueryNotFound) IsRedirect

func (o *PostOauthClientUsageQueryNotFound) IsRedirect() bool

IsRedirect returns true when this post oauth client usage query not found response has a 3xx status code

func (*PostOauthClientUsageQueryNotFound) IsServerError

func (o *PostOauthClientUsageQueryNotFound) IsServerError() bool

IsServerError returns true when this post oauth client usage query not found response has a 5xx status code

func (*PostOauthClientUsageQueryNotFound) IsSuccess

func (o *PostOauthClientUsageQueryNotFound) IsSuccess() bool

IsSuccess returns true when this post oauth client usage query not found response has a 2xx status code

func (*PostOauthClientUsageQueryNotFound) String

type PostOauthClientUsageQueryOK

type PostOauthClientUsageQueryOK struct {
	Payload *models.UsageExecutionResult
}

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

successful operation

func NewPostOauthClientUsageQueryOK

func NewPostOauthClientUsageQueryOK() *PostOauthClientUsageQueryOK

NewPostOauthClientUsageQueryOK creates a PostOauthClientUsageQueryOK with default headers values

func (*PostOauthClientUsageQueryOK) Error

func (*PostOauthClientUsageQueryOK) GetPayload

func (*PostOauthClientUsageQueryOK) IsClientError

func (o *PostOauthClientUsageQueryOK) IsClientError() bool

IsClientError returns true when this post oauth client usage query o k response has a 4xx status code

func (*PostOauthClientUsageQueryOK) IsCode

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

IsCode returns true when this post oauth client usage query o k response a status code equal to that given

func (*PostOauthClientUsageQueryOK) IsRedirect

func (o *PostOauthClientUsageQueryOK) IsRedirect() bool

IsRedirect returns true when this post oauth client usage query o k response has a 3xx status code

func (*PostOauthClientUsageQueryOK) IsServerError

func (o *PostOauthClientUsageQueryOK) IsServerError() bool

IsServerError returns true when this post oauth client usage query o k response has a 5xx status code

func (*PostOauthClientUsageQueryOK) IsSuccess

func (o *PostOauthClientUsageQueryOK) IsSuccess() bool

IsSuccess returns true when this post oauth client usage query o k response has a 2xx status code

func (*PostOauthClientUsageQueryOK) String

func (o *PostOauthClientUsageQueryOK) String() string

type PostOauthClientUsageQueryParams

type PostOauthClientUsageQueryParams struct {

	/* Body.

	   Query
	*/
	Body *models.APIUsageQuery

	/* ClientID.

	   Client ID
	*/
	ClientID string

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

PostOauthClientUsageQueryParams contains all the parameters to send to the API endpoint

for the post oauth client usage query operation.

Typically these are written to a http.Request.

func NewPostOauthClientUsageQueryParams

func NewPostOauthClientUsageQueryParams() *PostOauthClientUsageQueryParams

NewPostOauthClientUsageQueryParams creates a new PostOauthClientUsageQueryParams 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 NewPostOauthClientUsageQueryParamsWithContext

func NewPostOauthClientUsageQueryParamsWithContext(ctx context.Context) *PostOauthClientUsageQueryParams

NewPostOauthClientUsageQueryParamsWithContext creates a new PostOauthClientUsageQueryParams object with the ability to set a context for a request.

func NewPostOauthClientUsageQueryParamsWithHTTPClient

func NewPostOauthClientUsageQueryParamsWithHTTPClient(client *http.Client) *PostOauthClientUsageQueryParams

NewPostOauthClientUsageQueryParamsWithHTTPClient creates a new PostOauthClientUsageQueryParams object with the ability to set a custom HTTPClient for a request.

func NewPostOauthClientUsageQueryParamsWithTimeout

func NewPostOauthClientUsageQueryParamsWithTimeout(timeout time.Duration) *PostOauthClientUsageQueryParams

NewPostOauthClientUsageQueryParamsWithTimeout creates a new PostOauthClientUsageQueryParams object with the ability to set a timeout on a request.

func (*PostOauthClientUsageQueryParams) SetBody

SetBody adds the body to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) SetClientID

func (o *PostOauthClientUsageQueryParams) SetClientID(clientID string)

SetClientID adds the clientId to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) SetContext

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

SetContext adds the context to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) SetDefaults

func (o *PostOauthClientUsageQueryParams) SetDefaults()

SetDefaults hydrates default values in the post oauth client usage query params (not the query body).

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

func (*PostOauthClientUsageQueryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) SetTimeout

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

SetTimeout adds the timeout to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) WithBody

WithBody adds the body to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) WithClientID

WithClientID adds the clientID to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) WithContext

WithContext adds the context to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) WithDefaults

WithDefaults hydrates default values in the post oauth client usage query params (not the query body).

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

func (*PostOauthClientUsageQueryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) WithTimeout

WithTimeout adds the timeout to the post oauth client usage query params

func (*PostOauthClientUsageQueryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostOauthClientUsageQueryReader

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

PostOauthClientUsageQueryReader is a Reader for the PostOauthClientUsageQuery structure.

func (*PostOauthClientUsageQueryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostOauthClientUsageQueryRequestEntityTooLarge

type PostOauthClientUsageQueryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewPostOauthClientUsageQueryRequestEntityTooLarge

func NewPostOauthClientUsageQueryRequestEntityTooLarge() *PostOauthClientUsageQueryRequestEntityTooLarge

NewPostOauthClientUsageQueryRequestEntityTooLarge creates a PostOauthClientUsageQueryRequestEntityTooLarge with default headers values

func (*PostOauthClientUsageQueryRequestEntityTooLarge) Error

func (*PostOauthClientUsageQueryRequestEntityTooLarge) GetPayload

func (*PostOauthClientUsageQueryRequestEntityTooLarge) IsClientError

IsClientError returns true when this post oauth client usage query request entity too large response has a 4xx status code

func (*PostOauthClientUsageQueryRequestEntityTooLarge) IsCode

IsCode returns true when this post oauth client usage query request entity too large response a status code equal to that given

func (*PostOauthClientUsageQueryRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post oauth client usage query request entity too large response has a 3xx status code

func (*PostOauthClientUsageQueryRequestEntityTooLarge) IsServerError

IsServerError returns true when this post oauth client usage query request entity too large response has a 5xx status code

func (*PostOauthClientUsageQueryRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post oauth client usage query request entity too large response has a 2xx status code

func (*PostOauthClientUsageQueryRequestEntityTooLarge) String

type PostOauthClientUsageQueryRequestTimeout

type PostOauthClientUsageQueryRequestTimeout struct {
	Payload *models.ErrorBody
}

PostOauthClientUsageQueryRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostOauthClientUsageQueryRequestTimeout

func NewPostOauthClientUsageQueryRequestTimeout() *PostOauthClientUsageQueryRequestTimeout

NewPostOauthClientUsageQueryRequestTimeout creates a PostOauthClientUsageQueryRequestTimeout with default headers values

func (*PostOauthClientUsageQueryRequestTimeout) Error

func (*PostOauthClientUsageQueryRequestTimeout) GetPayload

func (*PostOauthClientUsageQueryRequestTimeout) IsClientError

func (o *PostOauthClientUsageQueryRequestTimeout) IsClientError() bool

IsClientError returns true when this post oauth client usage query request timeout response has a 4xx status code

func (*PostOauthClientUsageQueryRequestTimeout) IsCode

IsCode returns true when this post oauth client usage query request timeout response a status code equal to that given

func (*PostOauthClientUsageQueryRequestTimeout) IsRedirect

IsRedirect returns true when this post oauth client usage query request timeout response has a 3xx status code

func (*PostOauthClientUsageQueryRequestTimeout) IsServerError

func (o *PostOauthClientUsageQueryRequestTimeout) IsServerError() bool

IsServerError returns true when this post oauth client usage query request timeout response has a 5xx status code

func (*PostOauthClientUsageQueryRequestTimeout) IsSuccess

IsSuccess returns true when this post oauth client usage query request timeout response has a 2xx status code

func (*PostOauthClientUsageQueryRequestTimeout) String

type PostOauthClientUsageQueryServiceUnavailable

type PostOauthClientUsageQueryServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostOauthClientUsageQueryServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostOauthClientUsageQueryServiceUnavailable

func NewPostOauthClientUsageQueryServiceUnavailable() *PostOauthClientUsageQueryServiceUnavailable

NewPostOauthClientUsageQueryServiceUnavailable creates a PostOauthClientUsageQueryServiceUnavailable with default headers values

func (*PostOauthClientUsageQueryServiceUnavailable) Error

func (*PostOauthClientUsageQueryServiceUnavailable) GetPayload

func (*PostOauthClientUsageQueryServiceUnavailable) IsClientError

IsClientError returns true when this post oauth client usage query service unavailable response has a 4xx status code

func (*PostOauthClientUsageQueryServiceUnavailable) IsCode

IsCode returns true when this post oauth client usage query service unavailable response a status code equal to that given

func (*PostOauthClientUsageQueryServiceUnavailable) IsRedirect

IsRedirect returns true when this post oauth client usage query service unavailable response has a 3xx status code

func (*PostOauthClientUsageQueryServiceUnavailable) IsServerError

IsServerError returns true when this post oauth client usage query service unavailable response has a 5xx status code

func (*PostOauthClientUsageQueryServiceUnavailable) IsSuccess

IsSuccess returns true when this post oauth client usage query service unavailable response has a 2xx status code

func (*PostOauthClientUsageQueryServiceUnavailable) String

type PostOauthClientUsageQueryTooManyRequests

type PostOauthClientUsageQueryTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostOauthClientUsageQueryTooManyRequests

func NewPostOauthClientUsageQueryTooManyRequests() *PostOauthClientUsageQueryTooManyRequests

NewPostOauthClientUsageQueryTooManyRequests creates a PostOauthClientUsageQueryTooManyRequests with default headers values

func (*PostOauthClientUsageQueryTooManyRequests) Error

func (*PostOauthClientUsageQueryTooManyRequests) GetPayload

func (*PostOauthClientUsageQueryTooManyRequests) IsClientError

IsClientError returns true when this post oauth client usage query too many requests response has a 4xx status code

func (*PostOauthClientUsageQueryTooManyRequests) IsCode

IsCode returns true when this post oauth client usage query too many requests response a status code equal to that given

func (*PostOauthClientUsageQueryTooManyRequests) IsRedirect

IsRedirect returns true when this post oauth client usage query too many requests response has a 3xx status code

func (*PostOauthClientUsageQueryTooManyRequests) IsServerError

IsServerError returns true when this post oauth client usage query too many requests response has a 5xx status code

func (*PostOauthClientUsageQueryTooManyRequests) IsSuccess

IsSuccess returns true when this post oauth client usage query too many requests response has a 2xx status code

func (*PostOauthClientUsageQueryTooManyRequests) String

type PostOauthClientUsageQueryUnauthorized

type PostOauthClientUsageQueryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostOauthClientUsageQueryUnauthorized

func NewPostOauthClientUsageQueryUnauthorized() *PostOauthClientUsageQueryUnauthorized

NewPostOauthClientUsageQueryUnauthorized creates a PostOauthClientUsageQueryUnauthorized with default headers values

func (*PostOauthClientUsageQueryUnauthorized) Error

func (*PostOauthClientUsageQueryUnauthorized) GetPayload

func (*PostOauthClientUsageQueryUnauthorized) IsClientError

func (o *PostOauthClientUsageQueryUnauthorized) IsClientError() bool

IsClientError returns true when this post oauth client usage query unauthorized response has a 4xx status code

func (*PostOauthClientUsageQueryUnauthorized) IsCode

IsCode returns true when this post oauth client usage query unauthorized response a status code equal to that given

func (*PostOauthClientUsageQueryUnauthorized) IsRedirect

IsRedirect returns true when this post oauth client usage query unauthorized response has a 3xx status code

func (*PostOauthClientUsageQueryUnauthorized) IsServerError

func (o *PostOauthClientUsageQueryUnauthorized) IsServerError() bool

IsServerError returns true when this post oauth client usage query unauthorized response has a 5xx status code

func (*PostOauthClientUsageQueryUnauthorized) IsSuccess

IsSuccess returns true when this post oauth client usage query unauthorized response has a 2xx status code

func (*PostOauthClientUsageQueryUnauthorized) String

type PostOauthClientUsageQueryUnsupportedMediaType

type PostOauthClientUsageQueryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostOauthClientUsageQueryUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostOauthClientUsageQueryUnsupportedMediaType

func NewPostOauthClientUsageQueryUnsupportedMediaType() *PostOauthClientUsageQueryUnsupportedMediaType

NewPostOauthClientUsageQueryUnsupportedMediaType creates a PostOauthClientUsageQueryUnsupportedMediaType with default headers values

func (*PostOauthClientUsageQueryUnsupportedMediaType) Error

func (*PostOauthClientUsageQueryUnsupportedMediaType) GetPayload

func (*PostOauthClientUsageQueryUnsupportedMediaType) IsClientError

IsClientError returns true when this post oauth client usage query unsupported media type response has a 4xx status code

func (*PostOauthClientUsageQueryUnsupportedMediaType) IsCode

IsCode returns true when this post oauth client usage query unsupported media type response a status code equal to that given

func (*PostOauthClientUsageQueryUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post oauth client usage query unsupported media type response has a 3xx status code

func (*PostOauthClientUsageQueryUnsupportedMediaType) IsServerError

IsServerError returns true when this post oauth client usage query unsupported media type response has a 5xx status code

func (*PostOauthClientUsageQueryUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post oauth client usage query unsupported media type response has a 2xx status code

func (*PostOauthClientUsageQueryUnsupportedMediaType) String

type PostOauthClientsBadRequest

type PostOauthClientsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostOauthClientsBadRequest

func NewPostOauthClientsBadRequest() *PostOauthClientsBadRequest

NewPostOauthClientsBadRequest creates a PostOauthClientsBadRequest with default headers values

func (*PostOauthClientsBadRequest) Error

func (*PostOauthClientsBadRequest) GetPayload

func (o *PostOauthClientsBadRequest) GetPayload() *models.ErrorBody

func (*PostOauthClientsBadRequest) IsClientError

func (o *PostOauthClientsBadRequest) IsClientError() bool

IsClientError returns true when this post oauth clients bad request response has a 4xx status code

func (*PostOauthClientsBadRequest) IsCode

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

IsCode returns true when this post oauth clients bad request response a status code equal to that given

func (*PostOauthClientsBadRequest) IsRedirect

func (o *PostOauthClientsBadRequest) IsRedirect() bool

IsRedirect returns true when this post oauth clients bad request response has a 3xx status code

func (*PostOauthClientsBadRequest) IsServerError

func (o *PostOauthClientsBadRequest) IsServerError() bool

IsServerError returns true when this post oauth clients bad request response has a 5xx status code

func (*PostOauthClientsBadRequest) IsSuccess

func (o *PostOauthClientsBadRequest) IsSuccess() bool

IsSuccess returns true when this post oauth clients bad request response has a 2xx status code

func (*PostOauthClientsBadRequest) String

func (o *PostOauthClientsBadRequest) String() string

type PostOauthClientsForbidden

type PostOauthClientsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostOauthClientsForbidden

func NewPostOauthClientsForbidden() *PostOauthClientsForbidden

NewPostOauthClientsForbidden creates a PostOauthClientsForbidden with default headers values

func (*PostOauthClientsForbidden) Error

func (o *PostOauthClientsForbidden) Error() string

func (*PostOauthClientsForbidden) GetPayload

func (o *PostOauthClientsForbidden) GetPayload() *models.ErrorBody

func (*PostOauthClientsForbidden) IsClientError

func (o *PostOauthClientsForbidden) IsClientError() bool

IsClientError returns true when this post oauth clients forbidden response has a 4xx status code

func (*PostOauthClientsForbidden) IsCode

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

IsCode returns true when this post oauth clients forbidden response a status code equal to that given

func (*PostOauthClientsForbidden) IsRedirect

func (o *PostOauthClientsForbidden) IsRedirect() bool

IsRedirect returns true when this post oauth clients forbidden response has a 3xx status code

func (*PostOauthClientsForbidden) IsServerError

func (o *PostOauthClientsForbidden) IsServerError() bool

IsServerError returns true when this post oauth clients forbidden response has a 5xx status code

func (*PostOauthClientsForbidden) IsSuccess

func (o *PostOauthClientsForbidden) IsSuccess() bool

IsSuccess returns true when this post oauth clients forbidden response has a 2xx status code

func (*PostOauthClientsForbidden) String

func (o *PostOauthClientsForbidden) String() string

type PostOauthClientsGatewayTimeout

type PostOauthClientsGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostOauthClientsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostOauthClientsGatewayTimeout

func NewPostOauthClientsGatewayTimeout() *PostOauthClientsGatewayTimeout

NewPostOauthClientsGatewayTimeout creates a PostOauthClientsGatewayTimeout with default headers values

func (*PostOauthClientsGatewayTimeout) Error

func (*PostOauthClientsGatewayTimeout) GetPayload

func (*PostOauthClientsGatewayTimeout) IsClientError

func (o *PostOauthClientsGatewayTimeout) IsClientError() bool

IsClientError returns true when this post oauth clients gateway timeout response has a 4xx status code

func (*PostOauthClientsGatewayTimeout) IsCode

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

IsCode returns true when this post oauth clients gateway timeout response a status code equal to that given

func (*PostOauthClientsGatewayTimeout) IsRedirect

func (o *PostOauthClientsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post oauth clients gateway timeout response has a 3xx status code

func (*PostOauthClientsGatewayTimeout) IsServerError

func (o *PostOauthClientsGatewayTimeout) IsServerError() bool

IsServerError returns true when this post oauth clients gateway timeout response has a 5xx status code

func (*PostOauthClientsGatewayTimeout) IsSuccess

func (o *PostOauthClientsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post oauth clients gateway timeout response has a 2xx status code

func (*PostOauthClientsGatewayTimeout) String

type PostOauthClientsInternalServerError

type PostOauthClientsInternalServerError struct {
	Payload *models.ErrorBody
}

PostOauthClientsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostOauthClientsInternalServerError

func NewPostOauthClientsInternalServerError() *PostOauthClientsInternalServerError

NewPostOauthClientsInternalServerError creates a PostOauthClientsInternalServerError with default headers values

func (*PostOauthClientsInternalServerError) Error

func (*PostOauthClientsInternalServerError) GetPayload

func (*PostOauthClientsInternalServerError) IsClientError

func (o *PostOauthClientsInternalServerError) IsClientError() bool

IsClientError returns true when this post oauth clients internal server error response has a 4xx status code

func (*PostOauthClientsInternalServerError) IsCode

IsCode returns true when this post oauth clients internal server error response a status code equal to that given

func (*PostOauthClientsInternalServerError) IsRedirect

func (o *PostOauthClientsInternalServerError) IsRedirect() bool

IsRedirect returns true when this post oauth clients internal server error response has a 3xx status code

func (*PostOauthClientsInternalServerError) IsServerError

func (o *PostOauthClientsInternalServerError) IsServerError() bool

IsServerError returns true when this post oauth clients internal server error response has a 5xx status code

func (*PostOauthClientsInternalServerError) IsSuccess

IsSuccess returns true when this post oauth clients internal server error response has a 2xx status code

func (*PostOauthClientsInternalServerError) String

type PostOauthClientsNotFound

type PostOauthClientsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostOauthClientsNotFound

func NewPostOauthClientsNotFound() *PostOauthClientsNotFound

NewPostOauthClientsNotFound creates a PostOauthClientsNotFound with default headers values

func (*PostOauthClientsNotFound) Error

func (o *PostOauthClientsNotFound) Error() string

func (*PostOauthClientsNotFound) GetPayload

func (o *PostOauthClientsNotFound) GetPayload() *models.ErrorBody

func (*PostOauthClientsNotFound) IsClientError

func (o *PostOauthClientsNotFound) IsClientError() bool

IsClientError returns true when this post oauth clients not found response has a 4xx status code

func (*PostOauthClientsNotFound) IsCode

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

IsCode returns true when this post oauth clients not found response a status code equal to that given

func (*PostOauthClientsNotFound) IsRedirect

func (o *PostOauthClientsNotFound) IsRedirect() bool

IsRedirect returns true when this post oauth clients not found response has a 3xx status code

func (*PostOauthClientsNotFound) IsServerError

func (o *PostOauthClientsNotFound) IsServerError() bool

IsServerError returns true when this post oauth clients not found response has a 5xx status code

func (*PostOauthClientsNotFound) IsSuccess

func (o *PostOauthClientsNotFound) IsSuccess() bool

IsSuccess returns true when this post oauth clients not found response has a 2xx status code

func (*PostOauthClientsNotFound) String

func (o *PostOauthClientsNotFound) String() string

type PostOauthClientsOK

type PostOauthClientsOK struct {
	Payload *models.OAuthClient
}

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

successful operation

func NewPostOauthClientsOK

func NewPostOauthClientsOK() *PostOauthClientsOK

NewPostOauthClientsOK creates a PostOauthClientsOK with default headers values

func (*PostOauthClientsOK) Error

func (o *PostOauthClientsOK) Error() string

func (*PostOauthClientsOK) GetPayload

func (o *PostOauthClientsOK) GetPayload() *models.OAuthClient

func (*PostOauthClientsOK) IsClientError

func (o *PostOauthClientsOK) IsClientError() bool

IsClientError returns true when this post oauth clients o k response has a 4xx status code

func (*PostOauthClientsOK) IsCode

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

IsCode returns true when this post oauth clients o k response a status code equal to that given

func (*PostOauthClientsOK) IsRedirect

func (o *PostOauthClientsOK) IsRedirect() bool

IsRedirect returns true when this post oauth clients o k response has a 3xx status code

func (*PostOauthClientsOK) IsServerError

func (o *PostOauthClientsOK) IsServerError() bool

IsServerError returns true when this post oauth clients o k response has a 5xx status code

func (*PostOauthClientsOK) IsSuccess

func (o *PostOauthClientsOK) IsSuccess() bool

IsSuccess returns true when this post oauth clients o k response has a 2xx status code

func (*PostOauthClientsOK) String

func (o *PostOauthClientsOK) String() string

type PostOauthClientsParams

type PostOauthClientsParams struct {

	/* Body.

	   Client
	*/
	Body *models.OAuthClientRequest

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

PostOauthClientsParams contains all the parameters to send to the API endpoint

for the post oauth clients operation.

Typically these are written to a http.Request.

func NewPostOauthClientsParams

func NewPostOauthClientsParams() *PostOauthClientsParams

NewPostOauthClientsParams creates a new PostOauthClientsParams 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 NewPostOauthClientsParamsWithContext

func NewPostOauthClientsParamsWithContext(ctx context.Context) *PostOauthClientsParams

NewPostOauthClientsParamsWithContext creates a new PostOauthClientsParams object with the ability to set a context for a request.

func NewPostOauthClientsParamsWithHTTPClient

func NewPostOauthClientsParamsWithHTTPClient(client *http.Client) *PostOauthClientsParams

NewPostOauthClientsParamsWithHTTPClient creates a new PostOauthClientsParams object with the ability to set a custom HTTPClient for a request.

func NewPostOauthClientsParamsWithTimeout

func NewPostOauthClientsParamsWithTimeout(timeout time.Duration) *PostOauthClientsParams

NewPostOauthClientsParamsWithTimeout creates a new PostOauthClientsParams object with the ability to set a timeout on a request.

func (*PostOauthClientsParams) SetBody

SetBody adds the body to the post oauth clients params

func (*PostOauthClientsParams) SetContext

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

SetContext adds the context to the post oauth clients params

func (*PostOauthClientsParams) SetDefaults

func (o *PostOauthClientsParams) SetDefaults()

SetDefaults hydrates default values in the post oauth clients params (not the query body).

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

func (*PostOauthClientsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post oauth clients params

func (*PostOauthClientsParams) SetTimeout

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

SetTimeout adds the timeout to the post oauth clients params

func (*PostOauthClientsParams) WithBody

WithBody adds the body to the post oauth clients params

func (*PostOauthClientsParams) WithContext

WithContext adds the context to the post oauth clients params

func (*PostOauthClientsParams) WithDefaults

WithDefaults hydrates default values in the post oauth clients params (not the query body).

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

func (*PostOauthClientsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post oauth clients params

func (*PostOauthClientsParams) WithTimeout

WithTimeout adds the timeout to the post oauth clients params

func (*PostOauthClientsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostOauthClientsReader

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

PostOauthClientsReader is a Reader for the PostOauthClients structure.

func (*PostOauthClientsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostOauthClientsRequestEntityTooLarge

type PostOauthClientsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewPostOauthClientsRequestEntityTooLarge

func NewPostOauthClientsRequestEntityTooLarge() *PostOauthClientsRequestEntityTooLarge

NewPostOauthClientsRequestEntityTooLarge creates a PostOauthClientsRequestEntityTooLarge with default headers values

func (*PostOauthClientsRequestEntityTooLarge) Error

func (*PostOauthClientsRequestEntityTooLarge) GetPayload

func (*PostOauthClientsRequestEntityTooLarge) IsClientError

func (o *PostOauthClientsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post oauth clients request entity too large response has a 4xx status code

func (*PostOauthClientsRequestEntityTooLarge) IsCode

IsCode returns true when this post oauth clients request entity too large response a status code equal to that given

func (*PostOauthClientsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post oauth clients request entity too large response has a 3xx status code

func (*PostOauthClientsRequestEntityTooLarge) IsServerError

func (o *PostOauthClientsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post oauth clients request entity too large response has a 5xx status code

func (*PostOauthClientsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post oauth clients request entity too large response has a 2xx status code

func (*PostOauthClientsRequestEntityTooLarge) String

type PostOauthClientsRequestTimeout

type PostOauthClientsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostOauthClientsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostOauthClientsRequestTimeout

func NewPostOauthClientsRequestTimeout() *PostOauthClientsRequestTimeout

NewPostOauthClientsRequestTimeout creates a PostOauthClientsRequestTimeout with default headers values

func (*PostOauthClientsRequestTimeout) Error

func (*PostOauthClientsRequestTimeout) GetPayload

func (*PostOauthClientsRequestTimeout) IsClientError

func (o *PostOauthClientsRequestTimeout) IsClientError() bool

IsClientError returns true when this post oauth clients request timeout response has a 4xx status code

func (*PostOauthClientsRequestTimeout) IsCode

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

IsCode returns true when this post oauth clients request timeout response a status code equal to that given

func (*PostOauthClientsRequestTimeout) IsRedirect

func (o *PostOauthClientsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post oauth clients request timeout response has a 3xx status code

func (*PostOauthClientsRequestTimeout) IsServerError

func (o *PostOauthClientsRequestTimeout) IsServerError() bool

IsServerError returns true when this post oauth clients request timeout response has a 5xx status code

func (*PostOauthClientsRequestTimeout) IsSuccess

func (o *PostOauthClientsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post oauth clients request timeout response has a 2xx status code

func (*PostOauthClientsRequestTimeout) String

type PostOauthClientsServiceUnavailable

type PostOauthClientsServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostOauthClientsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostOauthClientsServiceUnavailable

func NewPostOauthClientsServiceUnavailable() *PostOauthClientsServiceUnavailable

NewPostOauthClientsServiceUnavailable creates a PostOauthClientsServiceUnavailable with default headers values

func (*PostOauthClientsServiceUnavailable) Error

func (*PostOauthClientsServiceUnavailable) GetPayload

func (*PostOauthClientsServiceUnavailable) IsClientError

func (o *PostOauthClientsServiceUnavailable) IsClientError() bool

IsClientError returns true when this post oauth clients service unavailable response has a 4xx status code

func (*PostOauthClientsServiceUnavailable) IsCode

IsCode returns true when this post oauth clients service unavailable response a status code equal to that given

func (*PostOauthClientsServiceUnavailable) IsRedirect

func (o *PostOauthClientsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post oauth clients service unavailable response has a 3xx status code

func (*PostOauthClientsServiceUnavailable) IsServerError

func (o *PostOauthClientsServiceUnavailable) IsServerError() bool

IsServerError returns true when this post oauth clients service unavailable response has a 5xx status code

func (*PostOauthClientsServiceUnavailable) IsSuccess

IsSuccess returns true when this post oauth clients service unavailable response has a 2xx status code

func (*PostOauthClientsServiceUnavailable) String

type PostOauthClientsTooManyRequests

type PostOauthClientsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostOauthClientsTooManyRequests

func NewPostOauthClientsTooManyRequests() *PostOauthClientsTooManyRequests

NewPostOauthClientsTooManyRequests creates a PostOauthClientsTooManyRequests with default headers values

func (*PostOauthClientsTooManyRequests) Error

func (*PostOauthClientsTooManyRequests) GetPayload

func (*PostOauthClientsTooManyRequests) IsClientError

func (o *PostOauthClientsTooManyRequests) IsClientError() bool

IsClientError returns true when this post oauth clients too many requests response has a 4xx status code

func (*PostOauthClientsTooManyRequests) IsCode

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

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

func (*PostOauthClientsTooManyRequests) IsRedirect

func (o *PostOauthClientsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post oauth clients too many requests response has a 3xx status code

func (*PostOauthClientsTooManyRequests) IsServerError

func (o *PostOauthClientsTooManyRequests) IsServerError() bool

IsServerError returns true when this post oauth clients too many requests response has a 5xx status code

func (*PostOauthClientsTooManyRequests) IsSuccess

func (o *PostOauthClientsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post oauth clients too many requests response has a 2xx status code

func (*PostOauthClientsTooManyRequests) String

type PostOauthClientsUnauthorized

type PostOauthClientsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostOauthClientsUnauthorized

func NewPostOauthClientsUnauthorized() *PostOauthClientsUnauthorized

NewPostOauthClientsUnauthorized creates a PostOauthClientsUnauthorized with default headers values

func (*PostOauthClientsUnauthorized) Error

func (*PostOauthClientsUnauthorized) GetPayload

func (*PostOauthClientsUnauthorized) IsClientError

func (o *PostOauthClientsUnauthorized) IsClientError() bool

IsClientError returns true when this post oauth clients unauthorized response has a 4xx status code

func (*PostOauthClientsUnauthorized) IsCode

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

IsCode returns true when this post oauth clients unauthorized response a status code equal to that given

func (*PostOauthClientsUnauthorized) IsRedirect

func (o *PostOauthClientsUnauthorized) IsRedirect() bool

IsRedirect returns true when this post oauth clients unauthorized response has a 3xx status code

func (*PostOauthClientsUnauthorized) IsServerError

func (o *PostOauthClientsUnauthorized) IsServerError() bool

IsServerError returns true when this post oauth clients unauthorized response has a 5xx status code

func (*PostOauthClientsUnauthorized) IsSuccess

func (o *PostOauthClientsUnauthorized) IsSuccess() bool

IsSuccess returns true when this post oauth clients unauthorized response has a 2xx status code

func (*PostOauthClientsUnauthorized) String

type PostOauthClientsUnsupportedMediaType

type PostOauthClientsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostOauthClientsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostOauthClientsUnsupportedMediaType

func NewPostOauthClientsUnsupportedMediaType() *PostOauthClientsUnsupportedMediaType

NewPostOauthClientsUnsupportedMediaType creates a PostOauthClientsUnsupportedMediaType with default headers values

func (*PostOauthClientsUnsupportedMediaType) Error

func (*PostOauthClientsUnsupportedMediaType) GetPayload

func (*PostOauthClientsUnsupportedMediaType) IsClientError

func (o *PostOauthClientsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post oauth clients unsupported media type response has a 4xx status code

func (*PostOauthClientsUnsupportedMediaType) IsCode

IsCode returns true when this post oauth clients unsupported media type response a status code equal to that given

func (*PostOauthClientsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post oauth clients unsupported media type response has a 3xx status code

func (*PostOauthClientsUnsupportedMediaType) IsServerError

func (o *PostOauthClientsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post oauth clients unsupported media type response has a 5xx status code

func (*PostOauthClientsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post oauth clients unsupported media type response has a 2xx status code

func (*PostOauthClientsUnsupportedMediaType) String

type PutOauthClientBadRequest

type PutOauthClientBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPutOauthClientBadRequest

func NewPutOauthClientBadRequest() *PutOauthClientBadRequest

NewPutOauthClientBadRequest creates a PutOauthClientBadRequest with default headers values

func (*PutOauthClientBadRequest) Error

func (o *PutOauthClientBadRequest) Error() string

func (*PutOauthClientBadRequest) GetPayload

func (o *PutOauthClientBadRequest) GetPayload() *models.ErrorBody

func (*PutOauthClientBadRequest) IsClientError

func (o *PutOauthClientBadRequest) IsClientError() bool

IsClientError returns true when this put oauth client bad request response has a 4xx status code

func (*PutOauthClientBadRequest) IsCode

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

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

func (*PutOauthClientBadRequest) IsRedirect

func (o *PutOauthClientBadRequest) IsRedirect() bool

IsRedirect returns true when this put oauth client bad request response has a 3xx status code

func (*PutOauthClientBadRequest) IsServerError

func (o *PutOauthClientBadRequest) IsServerError() bool

IsServerError returns true when this put oauth client bad request response has a 5xx status code

func (*PutOauthClientBadRequest) IsSuccess

func (o *PutOauthClientBadRequest) IsSuccess() bool

IsSuccess returns true when this put oauth client bad request response has a 2xx status code

func (*PutOauthClientBadRequest) String

func (o *PutOauthClientBadRequest) String() string

type PutOauthClientForbidden

type PutOauthClientForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPutOauthClientForbidden

func NewPutOauthClientForbidden() *PutOauthClientForbidden

NewPutOauthClientForbidden creates a PutOauthClientForbidden with default headers values

func (*PutOauthClientForbidden) Error

func (o *PutOauthClientForbidden) Error() string

func (*PutOauthClientForbidden) GetPayload

func (o *PutOauthClientForbidden) GetPayload() *models.ErrorBody

func (*PutOauthClientForbidden) IsClientError

func (o *PutOauthClientForbidden) IsClientError() bool

IsClientError returns true when this put oauth client forbidden response has a 4xx status code

func (*PutOauthClientForbidden) IsCode

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

IsCode returns true when this put oauth client forbidden response a status code equal to that given

func (*PutOauthClientForbidden) IsRedirect

func (o *PutOauthClientForbidden) IsRedirect() bool

IsRedirect returns true when this put oauth client forbidden response has a 3xx status code

func (*PutOauthClientForbidden) IsServerError

func (o *PutOauthClientForbidden) IsServerError() bool

IsServerError returns true when this put oauth client forbidden response has a 5xx status code

func (*PutOauthClientForbidden) IsSuccess

func (o *PutOauthClientForbidden) IsSuccess() bool

IsSuccess returns true when this put oauth client forbidden response has a 2xx status code

func (*PutOauthClientForbidden) String

func (o *PutOauthClientForbidden) String() string

type PutOauthClientGatewayTimeout

type PutOauthClientGatewayTimeout struct {
	Payload *models.ErrorBody
}

PutOauthClientGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPutOauthClientGatewayTimeout

func NewPutOauthClientGatewayTimeout() *PutOauthClientGatewayTimeout

NewPutOauthClientGatewayTimeout creates a PutOauthClientGatewayTimeout with default headers values

func (*PutOauthClientGatewayTimeout) Error

func (*PutOauthClientGatewayTimeout) GetPayload

func (*PutOauthClientGatewayTimeout) IsClientError

func (o *PutOauthClientGatewayTimeout) IsClientError() bool

IsClientError returns true when this put oauth client gateway timeout response has a 4xx status code

func (*PutOauthClientGatewayTimeout) IsCode

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

IsCode returns true when this put oauth client gateway timeout response a status code equal to that given

func (*PutOauthClientGatewayTimeout) IsRedirect

func (o *PutOauthClientGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this put oauth client gateway timeout response has a 3xx status code

func (*PutOauthClientGatewayTimeout) IsServerError

func (o *PutOauthClientGatewayTimeout) IsServerError() bool

IsServerError returns true when this put oauth client gateway timeout response has a 5xx status code

func (*PutOauthClientGatewayTimeout) IsSuccess

func (o *PutOauthClientGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this put oauth client gateway timeout response has a 2xx status code

func (*PutOauthClientGatewayTimeout) String

type PutOauthClientInternalServerError

type PutOauthClientInternalServerError struct {
	Payload *models.ErrorBody
}

PutOauthClientInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPutOauthClientInternalServerError

func NewPutOauthClientInternalServerError() *PutOauthClientInternalServerError

NewPutOauthClientInternalServerError creates a PutOauthClientInternalServerError with default headers values

func (*PutOauthClientInternalServerError) Error

func (*PutOauthClientInternalServerError) GetPayload

func (*PutOauthClientInternalServerError) IsClientError

func (o *PutOauthClientInternalServerError) IsClientError() bool

IsClientError returns true when this put oauth client internal server error response has a 4xx status code

func (*PutOauthClientInternalServerError) IsCode

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

IsCode returns true when this put oauth client internal server error response a status code equal to that given

func (*PutOauthClientInternalServerError) IsRedirect

func (o *PutOauthClientInternalServerError) IsRedirect() bool

IsRedirect returns true when this put oauth client internal server error response has a 3xx status code

func (*PutOauthClientInternalServerError) IsServerError

func (o *PutOauthClientInternalServerError) IsServerError() bool

IsServerError returns true when this put oauth client internal server error response has a 5xx status code

func (*PutOauthClientInternalServerError) IsSuccess

func (o *PutOauthClientInternalServerError) IsSuccess() bool

IsSuccess returns true when this put oauth client internal server error response has a 2xx status code

func (*PutOauthClientInternalServerError) String

type PutOauthClientNotFound

type PutOauthClientNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPutOauthClientNotFound

func NewPutOauthClientNotFound() *PutOauthClientNotFound

NewPutOauthClientNotFound creates a PutOauthClientNotFound with default headers values

func (*PutOauthClientNotFound) Error

func (o *PutOauthClientNotFound) Error() string

func (*PutOauthClientNotFound) GetPayload

func (o *PutOauthClientNotFound) GetPayload() *models.ErrorBody

func (*PutOauthClientNotFound) IsClientError

func (o *PutOauthClientNotFound) IsClientError() bool

IsClientError returns true when this put oauth client not found response has a 4xx status code

func (*PutOauthClientNotFound) IsCode

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

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

func (*PutOauthClientNotFound) IsRedirect

func (o *PutOauthClientNotFound) IsRedirect() bool

IsRedirect returns true when this put oauth client not found response has a 3xx status code

func (*PutOauthClientNotFound) IsServerError

func (o *PutOauthClientNotFound) IsServerError() bool

IsServerError returns true when this put oauth client not found response has a 5xx status code

func (*PutOauthClientNotFound) IsSuccess

func (o *PutOauthClientNotFound) IsSuccess() bool

IsSuccess returns true when this put oauth client not found response has a 2xx status code

func (*PutOauthClientNotFound) String

func (o *PutOauthClientNotFound) String() string

type PutOauthClientOK

type PutOauthClientOK struct {
	Payload *models.OAuthClient
}

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

successful operation

func NewPutOauthClientOK

func NewPutOauthClientOK() *PutOauthClientOK

NewPutOauthClientOK creates a PutOauthClientOK with default headers values

func (*PutOauthClientOK) Error

func (o *PutOauthClientOK) Error() string

func (*PutOauthClientOK) GetPayload

func (o *PutOauthClientOK) GetPayload() *models.OAuthClient

func (*PutOauthClientOK) IsClientError

func (o *PutOauthClientOK) IsClientError() bool

IsClientError returns true when this put oauth client o k response has a 4xx status code

func (*PutOauthClientOK) IsCode

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

IsCode returns true when this put oauth client o k response a status code equal to that given

func (*PutOauthClientOK) IsRedirect

func (o *PutOauthClientOK) IsRedirect() bool

IsRedirect returns true when this put oauth client o k response has a 3xx status code

func (*PutOauthClientOK) IsServerError

func (o *PutOauthClientOK) IsServerError() bool

IsServerError returns true when this put oauth client o k response has a 5xx status code

func (*PutOauthClientOK) IsSuccess

func (o *PutOauthClientOK) IsSuccess() bool

IsSuccess returns true when this put oauth client o k response has a 2xx status code

func (*PutOauthClientOK) String

func (o *PutOauthClientOK) String() string

type PutOauthClientParams

type PutOauthClientParams struct {

	/* Body.

	   Client
	*/
	Body *models.OAuthClientRequest

	/* ClientID.

	   Client ID
	*/
	ClientID string

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

PutOauthClientParams contains all the parameters to send to the API endpoint

for the put oauth client operation.

Typically these are written to a http.Request.

func NewPutOauthClientParams

func NewPutOauthClientParams() *PutOauthClientParams

NewPutOauthClientParams creates a new PutOauthClientParams 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 NewPutOauthClientParamsWithContext

func NewPutOauthClientParamsWithContext(ctx context.Context) *PutOauthClientParams

NewPutOauthClientParamsWithContext creates a new PutOauthClientParams object with the ability to set a context for a request.

func NewPutOauthClientParamsWithHTTPClient

func NewPutOauthClientParamsWithHTTPClient(client *http.Client) *PutOauthClientParams

NewPutOauthClientParamsWithHTTPClient creates a new PutOauthClientParams object with the ability to set a custom HTTPClient for a request.

func NewPutOauthClientParamsWithTimeout

func NewPutOauthClientParamsWithTimeout(timeout time.Duration) *PutOauthClientParams

NewPutOauthClientParamsWithTimeout creates a new PutOauthClientParams object with the ability to set a timeout on a request.

func (*PutOauthClientParams) SetBody

SetBody adds the body to the put oauth client params

func (*PutOauthClientParams) SetClientID

func (o *PutOauthClientParams) SetClientID(clientID string)

SetClientID adds the clientId to the put oauth client params

func (*PutOauthClientParams) SetContext

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

SetContext adds the context to the put oauth client params

func (*PutOauthClientParams) SetDefaults

func (o *PutOauthClientParams) SetDefaults()

SetDefaults hydrates default values in the put oauth client params (not the query body).

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

func (*PutOauthClientParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put oauth client params

func (*PutOauthClientParams) SetTimeout

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

SetTimeout adds the timeout to the put oauth client params

func (*PutOauthClientParams) WithBody

WithBody adds the body to the put oauth client params

func (*PutOauthClientParams) WithClientID

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

WithClientID adds the clientID to the put oauth client params

func (*PutOauthClientParams) WithContext

WithContext adds the context to the put oauth client params

func (*PutOauthClientParams) WithDefaults

func (o *PutOauthClientParams) WithDefaults() *PutOauthClientParams

WithDefaults hydrates default values in the put oauth client params (not the query body).

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

func (*PutOauthClientParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the put oauth client params

func (*PutOauthClientParams) WithTimeout

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

WithTimeout adds the timeout to the put oauth client params

func (*PutOauthClientParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PutOauthClientReader

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

PutOauthClientReader is a Reader for the PutOauthClient structure.

func (*PutOauthClientReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutOauthClientRequestEntityTooLarge

type PutOauthClientRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

The request is over the size limit. Maximum bytes: %s

func NewPutOauthClientRequestEntityTooLarge

func NewPutOauthClientRequestEntityTooLarge() *PutOauthClientRequestEntityTooLarge

NewPutOauthClientRequestEntityTooLarge creates a PutOauthClientRequestEntityTooLarge with default headers values

func (*PutOauthClientRequestEntityTooLarge) Error

func (*PutOauthClientRequestEntityTooLarge) GetPayload

func (*PutOauthClientRequestEntityTooLarge) IsClientError

func (o *PutOauthClientRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this put oauth client request entity too large response has a 4xx status code

func (*PutOauthClientRequestEntityTooLarge) IsCode

IsCode returns true when this put oauth client request entity too large response a status code equal to that given

func (*PutOauthClientRequestEntityTooLarge) IsRedirect

func (o *PutOauthClientRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this put oauth client request entity too large response has a 3xx status code

func (*PutOauthClientRequestEntityTooLarge) IsServerError

func (o *PutOauthClientRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this put oauth client request entity too large response has a 5xx status code

func (*PutOauthClientRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put oauth client request entity too large response has a 2xx status code

func (*PutOauthClientRequestEntityTooLarge) String

type PutOauthClientRequestTimeout

type PutOauthClientRequestTimeout struct {
	Payload *models.ErrorBody
}

PutOauthClientRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPutOauthClientRequestTimeout

func NewPutOauthClientRequestTimeout() *PutOauthClientRequestTimeout

NewPutOauthClientRequestTimeout creates a PutOauthClientRequestTimeout with default headers values

func (*PutOauthClientRequestTimeout) Error

func (*PutOauthClientRequestTimeout) GetPayload

func (*PutOauthClientRequestTimeout) IsClientError

func (o *PutOauthClientRequestTimeout) IsClientError() bool

IsClientError returns true when this put oauth client request timeout response has a 4xx status code

func (*PutOauthClientRequestTimeout) IsCode

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

IsCode returns true when this put oauth client request timeout response a status code equal to that given

func (*PutOauthClientRequestTimeout) IsRedirect

func (o *PutOauthClientRequestTimeout) IsRedirect() bool

IsRedirect returns true when this put oauth client request timeout response has a 3xx status code

func (*PutOauthClientRequestTimeout) IsServerError

func (o *PutOauthClientRequestTimeout) IsServerError() bool

IsServerError returns true when this put oauth client request timeout response has a 5xx status code

func (*PutOauthClientRequestTimeout) IsSuccess

func (o *PutOauthClientRequestTimeout) IsSuccess() bool

IsSuccess returns true when this put oauth client request timeout response has a 2xx status code

func (*PutOauthClientRequestTimeout) String

type PutOauthClientServiceUnavailable

type PutOauthClientServiceUnavailable struct {
	Payload *models.ErrorBody
}

PutOauthClientServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPutOauthClientServiceUnavailable

func NewPutOauthClientServiceUnavailable() *PutOauthClientServiceUnavailable

NewPutOauthClientServiceUnavailable creates a PutOauthClientServiceUnavailable with default headers values

func (*PutOauthClientServiceUnavailable) Error

func (*PutOauthClientServiceUnavailable) GetPayload

func (*PutOauthClientServiceUnavailable) IsClientError

func (o *PutOauthClientServiceUnavailable) IsClientError() bool

IsClientError returns true when this put oauth client service unavailable response has a 4xx status code

func (*PutOauthClientServiceUnavailable) IsCode

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

IsCode returns true when this put oauth client service unavailable response a status code equal to that given

func (*PutOauthClientServiceUnavailable) IsRedirect

func (o *PutOauthClientServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this put oauth client service unavailable response has a 3xx status code

func (*PutOauthClientServiceUnavailable) IsServerError

func (o *PutOauthClientServiceUnavailable) IsServerError() bool

IsServerError returns true when this put oauth client service unavailable response has a 5xx status code

func (*PutOauthClientServiceUnavailable) IsSuccess

func (o *PutOauthClientServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this put oauth client service unavailable response has a 2xx status code

func (*PutOauthClientServiceUnavailable) String

type PutOauthClientTooManyRequests

type PutOauthClientTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPutOauthClientTooManyRequests

func NewPutOauthClientTooManyRequests() *PutOauthClientTooManyRequests

NewPutOauthClientTooManyRequests creates a PutOauthClientTooManyRequests with default headers values

func (*PutOauthClientTooManyRequests) Error

func (*PutOauthClientTooManyRequests) GetPayload

func (*PutOauthClientTooManyRequests) IsClientError

func (o *PutOauthClientTooManyRequests) IsClientError() bool

IsClientError returns true when this put oauth client too many requests response has a 4xx status code

func (*PutOauthClientTooManyRequests) IsCode

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

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

func (*PutOauthClientTooManyRequests) IsRedirect

func (o *PutOauthClientTooManyRequests) IsRedirect() bool

IsRedirect returns true when this put oauth client too many requests response has a 3xx status code

func (*PutOauthClientTooManyRequests) IsServerError

func (o *PutOauthClientTooManyRequests) IsServerError() bool

IsServerError returns true when this put oauth client too many requests response has a 5xx status code

func (*PutOauthClientTooManyRequests) IsSuccess

func (o *PutOauthClientTooManyRequests) IsSuccess() bool

IsSuccess returns true when this put oauth client too many requests response has a 2xx status code

func (*PutOauthClientTooManyRequests) String

type PutOauthClientUnauthorized

type PutOauthClientUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPutOauthClientUnauthorized

func NewPutOauthClientUnauthorized() *PutOauthClientUnauthorized

NewPutOauthClientUnauthorized creates a PutOauthClientUnauthorized with default headers values

func (*PutOauthClientUnauthorized) Error

func (*PutOauthClientUnauthorized) GetPayload

func (o *PutOauthClientUnauthorized) GetPayload() *models.ErrorBody

func (*PutOauthClientUnauthorized) IsClientError

func (o *PutOauthClientUnauthorized) IsClientError() bool

IsClientError returns true when this put oauth client unauthorized response has a 4xx status code

func (*PutOauthClientUnauthorized) IsCode

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

IsCode returns true when this put oauth client unauthorized response a status code equal to that given

func (*PutOauthClientUnauthorized) IsRedirect

func (o *PutOauthClientUnauthorized) IsRedirect() bool

IsRedirect returns true when this put oauth client unauthorized response has a 3xx status code

func (*PutOauthClientUnauthorized) IsServerError

func (o *PutOauthClientUnauthorized) IsServerError() bool

IsServerError returns true when this put oauth client unauthorized response has a 5xx status code

func (*PutOauthClientUnauthorized) IsSuccess

func (o *PutOauthClientUnauthorized) IsSuccess() bool

IsSuccess returns true when this put oauth client unauthorized response has a 2xx status code

func (*PutOauthClientUnauthorized) String

func (o *PutOauthClientUnauthorized) String() string

type PutOauthClientUnsupportedMediaType

type PutOauthClientUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PutOauthClientUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPutOauthClientUnsupportedMediaType

func NewPutOauthClientUnsupportedMediaType() *PutOauthClientUnsupportedMediaType

NewPutOauthClientUnsupportedMediaType creates a PutOauthClientUnsupportedMediaType with default headers values

func (*PutOauthClientUnsupportedMediaType) Error

func (*PutOauthClientUnsupportedMediaType) GetPayload

func (*PutOauthClientUnsupportedMediaType) IsClientError

func (o *PutOauthClientUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this put oauth client unsupported media type response has a 4xx status code

func (*PutOauthClientUnsupportedMediaType) IsCode

IsCode returns true when this put oauth client unsupported media type response a status code equal to that given

func (*PutOauthClientUnsupportedMediaType) IsRedirect

func (o *PutOauthClientUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this put oauth client unsupported media type response has a 3xx status code

func (*PutOauthClientUnsupportedMediaType) IsServerError

func (o *PutOauthClientUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this put oauth client unsupported media type response has a 5xx status code

func (*PutOauthClientUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put oauth client unsupported media type response has a 2xx status code

func (*PutOauthClientUnsupportedMediaType) String

Jump to

Keyboard shortcuts

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