clients

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

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for clients API

func (*Client) CreateClientForDeveloper

func (a *Client) CreateClientForDeveloper(params *CreateClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateClientForDeveloperCreated, error)
CreateClientForDeveloper creates new o auth client

Client must be created under existing tenant and authorization server.

Authorization server id where client should be assigned must be provided in the request body.

Client can't be created in a system authorization server.

Client id and secret are generated upon creation.

If grant type is not set, client will get authorization code grant type assigned with code as response type.

Default token authentication method is client_secret_basic.

It might happen that it won't be possible to create a client with specified scopes. Scopes assignment can be protected by policies defined by administrator.

func (*Client) DeleteClientForDeveloper

DeleteClientForDeveloper deletes client

Delete client owned by developer.

func (*Client) GetClientForDeveloper

func (a *Client) GetClientForDeveloper(params *GetClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetClientForDeveloperOK, error)

GetClientForDeveloper gets client

Get client owned by developer.

func (*Client) ListClientsForDeveloper

func (a *Client) ListClientsForDeveloper(params *ListClientsForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListClientsForDeveloperOK, error)

ListClientsForDeveloper lists clients

List clients owner by developer.

func (*Client) RevokeRotatedClientSecretsAsDeveloper

RevokeRotatedClientSecretsAsDeveloper revokes rotated secrets

Revoke all rotated client's secrets.

func (*Client) RotateClientSecretAsDeveloper

func (a *Client) RotateClientSecretAsDeveloper(params *RotateClientSecretAsDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RotateClientSecretAsDeveloperOK, error)
RotateClientSecretAsDeveloper rotates client s secret

Generate a new client secret, move old secret to rotated secrets list and return

new client secret as a response. The max number of client rotated secrets is 2. The rotated secrets over the limit are dropped.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateClientForDeveloper

func (a *Client) UpdateClientForDeveloper(params *UpdateClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateClientForDeveloperOK, error)

UpdateClientForDeveloper updates client

The entire client object must be send for update.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateClientForDeveloper(params *CreateClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateClientForDeveloperCreated, error)

	DeleteClientForDeveloper(params *DeleteClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteClientForDeveloperNoContent, error)

	GetClientForDeveloper(params *GetClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetClientForDeveloperOK, error)

	ListClientsForDeveloper(params *ListClientsForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListClientsForDeveloperOK, error)

	RevokeRotatedClientSecretsAsDeveloper(params *RevokeRotatedClientSecretsAsDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RevokeRotatedClientSecretsAsDeveloperNoContent, error)

	RotateClientSecretAsDeveloper(params *RotateClientSecretAsDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RotateClientSecretAsDeveloperOK, error)

	UpdateClientForDeveloper(params *UpdateClientForDeveloperParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateClientForDeveloperOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new clients API client.

type CreateClientForDeveloperConflict

type CreateClientForDeveloperConflict struct {
	Payload *models.Error
}

CreateClientForDeveloperConflict describes a response with status code 409, with default header values.

Conflict

func NewCreateClientForDeveloperConflict

func NewCreateClientForDeveloperConflict() *CreateClientForDeveloperConflict

NewCreateClientForDeveloperConflict creates a CreateClientForDeveloperConflict with default headers values

func (*CreateClientForDeveloperConflict) Code

Code gets the status code for the create client for developer conflict response

func (*CreateClientForDeveloperConflict) Error

func (*CreateClientForDeveloperConflict) GetPayload

func (*CreateClientForDeveloperConflict) IsClientError

func (o *CreateClientForDeveloperConflict) IsClientError() bool

IsClientError returns true when this create client for developer conflict response has a 4xx status code

func (*CreateClientForDeveloperConflict) IsCode

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

IsCode returns true when this create client for developer conflict response a status code equal to that given

func (*CreateClientForDeveloperConflict) IsRedirect

func (o *CreateClientForDeveloperConflict) IsRedirect() bool

IsRedirect returns true when this create client for developer conflict response has a 3xx status code

func (*CreateClientForDeveloperConflict) IsServerError

func (o *CreateClientForDeveloperConflict) IsServerError() bool

IsServerError returns true when this create client for developer conflict response has a 5xx status code

func (*CreateClientForDeveloperConflict) IsSuccess

func (o *CreateClientForDeveloperConflict) IsSuccess() bool

IsSuccess returns true when this create client for developer conflict response has a 2xx status code

func (*CreateClientForDeveloperConflict) String

type CreateClientForDeveloperCreated

type CreateClientForDeveloperCreated struct {
	Payload *models.ClientDeveloperResponse
}

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

Create client

func NewCreateClientForDeveloperCreated

func NewCreateClientForDeveloperCreated() *CreateClientForDeveloperCreated

NewCreateClientForDeveloperCreated creates a CreateClientForDeveloperCreated with default headers values

func (*CreateClientForDeveloperCreated) Code

Code gets the status code for the create client for developer created response

func (*CreateClientForDeveloperCreated) Error

func (*CreateClientForDeveloperCreated) GetPayload

func (*CreateClientForDeveloperCreated) IsClientError

func (o *CreateClientForDeveloperCreated) IsClientError() bool

IsClientError returns true when this create client for developer created response has a 4xx status code

func (*CreateClientForDeveloperCreated) IsCode

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

IsCode returns true when this create client for developer created response a status code equal to that given

func (*CreateClientForDeveloperCreated) IsRedirect

func (o *CreateClientForDeveloperCreated) IsRedirect() bool

IsRedirect returns true when this create client for developer created response has a 3xx status code

func (*CreateClientForDeveloperCreated) IsServerError

func (o *CreateClientForDeveloperCreated) IsServerError() bool

IsServerError returns true when this create client for developer created response has a 5xx status code

func (*CreateClientForDeveloperCreated) IsSuccess

func (o *CreateClientForDeveloperCreated) IsSuccess() bool

IsSuccess returns true when this create client for developer created response has a 2xx status code

func (*CreateClientForDeveloperCreated) String

type CreateClientForDeveloperForbidden

type CreateClientForDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewCreateClientForDeveloperForbidden

func NewCreateClientForDeveloperForbidden() *CreateClientForDeveloperForbidden

NewCreateClientForDeveloperForbidden creates a CreateClientForDeveloperForbidden with default headers values

func (*CreateClientForDeveloperForbidden) Code

Code gets the status code for the create client for developer forbidden response

func (*CreateClientForDeveloperForbidden) Error

func (*CreateClientForDeveloperForbidden) GetPayload

func (*CreateClientForDeveloperForbidden) IsClientError

func (o *CreateClientForDeveloperForbidden) IsClientError() bool

IsClientError returns true when this create client for developer forbidden response has a 4xx status code

func (*CreateClientForDeveloperForbidden) IsCode

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

IsCode returns true when this create client for developer forbidden response a status code equal to that given

func (*CreateClientForDeveloperForbidden) IsRedirect

func (o *CreateClientForDeveloperForbidden) IsRedirect() bool

IsRedirect returns true when this create client for developer forbidden response has a 3xx status code

func (*CreateClientForDeveloperForbidden) IsServerError

func (o *CreateClientForDeveloperForbidden) IsServerError() bool

IsServerError returns true when this create client for developer forbidden response has a 5xx status code

func (*CreateClientForDeveloperForbidden) IsSuccess

func (o *CreateClientForDeveloperForbidden) IsSuccess() bool

IsSuccess returns true when this create client for developer forbidden response has a 2xx status code

func (*CreateClientForDeveloperForbidden) String

type CreateClientForDeveloperNotFound

type CreateClientForDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewCreateClientForDeveloperNotFound

func NewCreateClientForDeveloperNotFound() *CreateClientForDeveloperNotFound

NewCreateClientForDeveloperNotFound creates a CreateClientForDeveloperNotFound with default headers values

func (*CreateClientForDeveloperNotFound) Code

Code gets the status code for the create client for developer not found response

func (*CreateClientForDeveloperNotFound) Error

func (*CreateClientForDeveloperNotFound) GetPayload

func (*CreateClientForDeveloperNotFound) IsClientError

func (o *CreateClientForDeveloperNotFound) IsClientError() bool

IsClientError returns true when this create client for developer not found response has a 4xx status code

func (*CreateClientForDeveloperNotFound) IsCode

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

IsCode returns true when this create client for developer not found response a status code equal to that given

func (*CreateClientForDeveloperNotFound) IsRedirect

func (o *CreateClientForDeveloperNotFound) IsRedirect() bool

IsRedirect returns true when this create client for developer not found response has a 3xx status code

func (*CreateClientForDeveloperNotFound) IsServerError

func (o *CreateClientForDeveloperNotFound) IsServerError() bool

IsServerError returns true when this create client for developer not found response has a 5xx status code

func (*CreateClientForDeveloperNotFound) IsSuccess

func (o *CreateClientForDeveloperNotFound) IsSuccess() bool

IsSuccess returns true when this create client for developer not found response has a 2xx status code

func (*CreateClientForDeveloperNotFound) String

type CreateClientForDeveloperParams

type CreateClientForDeveloperParams struct {

	// Client.
	Client *models.CreateClientDeveloperRequest

	// ApplicationPurpose.
	ApplicationPurpose *string

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

CreateClientForDeveloperParams contains all the parameters to send to the API endpoint

for the create client for developer operation.

Typically these are written to a http.Request.

func NewCreateClientForDeveloperParams

func NewCreateClientForDeveloperParams() *CreateClientForDeveloperParams

NewCreateClientForDeveloperParams creates a new CreateClientForDeveloperParams 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 NewCreateClientForDeveloperParamsWithContext

func NewCreateClientForDeveloperParamsWithContext(ctx context.Context) *CreateClientForDeveloperParams

NewCreateClientForDeveloperParamsWithContext creates a new CreateClientForDeveloperParams object with the ability to set a context for a request.

func NewCreateClientForDeveloperParamsWithHTTPClient

func NewCreateClientForDeveloperParamsWithHTTPClient(client *http.Client) *CreateClientForDeveloperParams

NewCreateClientForDeveloperParamsWithHTTPClient creates a new CreateClientForDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewCreateClientForDeveloperParamsWithTimeout

func NewCreateClientForDeveloperParamsWithTimeout(timeout time.Duration) *CreateClientForDeveloperParams

NewCreateClientForDeveloperParamsWithTimeout creates a new CreateClientForDeveloperParams object with the ability to set a timeout on a request.

func (*CreateClientForDeveloperParams) SetApplicationPurpose

func (o *CreateClientForDeveloperParams) SetApplicationPurpose(applicationPurpose *string)

SetApplicationPurpose adds the applicationPurpose to the create client for developer params

func (*CreateClientForDeveloperParams) SetClient

SetClient adds the client to the create client for developer params

func (*CreateClientForDeveloperParams) SetContext

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

SetContext adds the context to the create client for developer params

func (*CreateClientForDeveloperParams) SetDefaults

func (o *CreateClientForDeveloperParams) SetDefaults()

SetDefaults hydrates default values in the create client for developer params (not the query body).

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

func (*CreateClientForDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create client for developer params

func (*CreateClientForDeveloperParams) SetTimeout

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

SetTimeout adds the timeout to the create client for developer params

func (*CreateClientForDeveloperParams) WithApplicationPurpose

func (o *CreateClientForDeveloperParams) WithApplicationPurpose(applicationPurpose *string) *CreateClientForDeveloperParams

WithApplicationPurpose adds the applicationPurpose to the create client for developer params

func (*CreateClientForDeveloperParams) WithClient

WithClient adds the client to the create client for developer params

func (*CreateClientForDeveloperParams) WithContext

WithContext adds the context to the create client for developer params

func (*CreateClientForDeveloperParams) WithDefaults

WithDefaults hydrates default values in the create client for developer params (not the query body).

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

func (*CreateClientForDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create client for developer params

func (*CreateClientForDeveloperParams) WithTimeout

WithTimeout adds the timeout to the create client for developer params

func (*CreateClientForDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateClientForDeveloperReader

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

CreateClientForDeveloperReader is a Reader for the CreateClientForDeveloper structure.

func (*CreateClientForDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateClientForDeveloperTooManyRequests

type CreateClientForDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewCreateClientForDeveloperTooManyRequests

func NewCreateClientForDeveloperTooManyRequests() *CreateClientForDeveloperTooManyRequests

NewCreateClientForDeveloperTooManyRequests creates a CreateClientForDeveloperTooManyRequests with default headers values

func (*CreateClientForDeveloperTooManyRequests) Code

Code gets the status code for the create client for developer too many requests response

func (*CreateClientForDeveloperTooManyRequests) Error

func (*CreateClientForDeveloperTooManyRequests) GetPayload

func (*CreateClientForDeveloperTooManyRequests) IsClientError

func (o *CreateClientForDeveloperTooManyRequests) IsClientError() bool

IsClientError returns true when this create client for developer too many requests response has a 4xx status code

func (*CreateClientForDeveloperTooManyRequests) IsCode

IsCode returns true when this create client for developer too many requests response a status code equal to that given

func (*CreateClientForDeveloperTooManyRequests) IsRedirect

IsRedirect returns true when this create client for developer too many requests response has a 3xx status code

func (*CreateClientForDeveloperTooManyRequests) IsServerError

func (o *CreateClientForDeveloperTooManyRequests) IsServerError() bool

IsServerError returns true when this create client for developer too many requests response has a 5xx status code

func (*CreateClientForDeveloperTooManyRequests) IsSuccess

IsSuccess returns true when this create client for developer too many requests response has a 2xx status code

func (*CreateClientForDeveloperTooManyRequests) String

type CreateClientForDeveloperUnauthorized

type CreateClientForDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewCreateClientForDeveloperUnauthorized

func NewCreateClientForDeveloperUnauthorized() *CreateClientForDeveloperUnauthorized

NewCreateClientForDeveloperUnauthorized creates a CreateClientForDeveloperUnauthorized with default headers values

func (*CreateClientForDeveloperUnauthorized) Code

Code gets the status code for the create client for developer unauthorized response

func (*CreateClientForDeveloperUnauthorized) Error

func (*CreateClientForDeveloperUnauthorized) GetPayload

func (*CreateClientForDeveloperUnauthorized) IsClientError

func (o *CreateClientForDeveloperUnauthorized) IsClientError() bool

IsClientError returns true when this create client for developer unauthorized response has a 4xx status code

func (*CreateClientForDeveloperUnauthorized) IsCode

IsCode returns true when this create client for developer unauthorized response a status code equal to that given

func (*CreateClientForDeveloperUnauthorized) IsRedirect

IsRedirect returns true when this create client for developer unauthorized response has a 3xx status code

func (*CreateClientForDeveloperUnauthorized) IsServerError

func (o *CreateClientForDeveloperUnauthorized) IsServerError() bool

IsServerError returns true when this create client for developer unauthorized response has a 5xx status code

func (*CreateClientForDeveloperUnauthorized) IsSuccess

IsSuccess returns true when this create client for developer unauthorized response has a 2xx status code

func (*CreateClientForDeveloperUnauthorized) String

type CreateClientForDeveloperUnprocessableEntity

type CreateClientForDeveloperUnprocessableEntity struct {
	Payload *models.Error
}

CreateClientForDeveloperUnprocessableEntity describes a response with status code 422, with default header values.

Unprocessable entity

func NewCreateClientForDeveloperUnprocessableEntity

func NewCreateClientForDeveloperUnprocessableEntity() *CreateClientForDeveloperUnprocessableEntity

NewCreateClientForDeveloperUnprocessableEntity creates a CreateClientForDeveloperUnprocessableEntity with default headers values

func (*CreateClientForDeveloperUnprocessableEntity) Code

Code gets the status code for the create client for developer unprocessable entity response

func (*CreateClientForDeveloperUnprocessableEntity) Error

func (*CreateClientForDeveloperUnprocessableEntity) GetPayload

func (*CreateClientForDeveloperUnprocessableEntity) IsClientError

IsClientError returns true when this create client for developer unprocessable entity response has a 4xx status code

func (*CreateClientForDeveloperUnprocessableEntity) IsCode

IsCode returns true when this create client for developer unprocessable entity response a status code equal to that given

func (*CreateClientForDeveloperUnprocessableEntity) IsRedirect

IsRedirect returns true when this create client for developer unprocessable entity response has a 3xx status code

func (*CreateClientForDeveloperUnprocessableEntity) IsServerError

IsServerError returns true when this create client for developer unprocessable entity response has a 5xx status code

func (*CreateClientForDeveloperUnprocessableEntity) IsSuccess

IsSuccess returns true when this create client for developer unprocessable entity response has a 2xx status code

func (*CreateClientForDeveloperUnprocessableEntity) String

type DeleteClientForDeveloperBadRequest

type DeleteClientForDeveloperBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewDeleteClientForDeveloperBadRequest

func NewDeleteClientForDeveloperBadRequest() *DeleteClientForDeveloperBadRequest

NewDeleteClientForDeveloperBadRequest creates a DeleteClientForDeveloperBadRequest with default headers values

func (*DeleteClientForDeveloperBadRequest) Code

Code gets the status code for the delete client for developer bad request response

func (*DeleteClientForDeveloperBadRequest) Error

func (*DeleteClientForDeveloperBadRequest) GetPayload

func (*DeleteClientForDeveloperBadRequest) IsClientError

func (o *DeleteClientForDeveloperBadRequest) IsClientError() bool

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

func (*DeleteClientForDeveloperBadRequest) IsCode

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

func (*DeleteClientForDeveloperBadRequest) IsRedirect

func (o *DeleteClientForDeveloperBadRequest) IsRedirect() bool

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

func (*DeleteClientForDeveloperBadRequest) IsServerError

func (o *DeleteClientForDeveloperBadRequest) IsServerError() bool

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

func (*DeleteClientForDeveloperBadRequest) IsSuccess

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

func (*DeleteClientForDeveloperBadRequest) String

type DeleteClientForDeveloperForbidden

type DeleteClientForDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewDeleteClientForDeveloperForbidden

func NewDeleteClientForDeveloperForbidden() *DeleteClientForDeveloperForbidden

NewDeleteClientForDeveloperForbidden creates a DeleteClientForDeveloperForbidden with default headers values

func (*DeleteClientForDeveloperForbidden) Code

Code gets the status code for the delete client for developer forbidden response

func (*DeleteClientForDeveloperForbidden) Error

func (*DeleteClientForDeveloperForbidden) GetPayload

func (*DeleteClientForDeveloperForbidden) IsClientError

func (o *DeleteClientForDeveloperForbidden) IsClientError() bool

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

func (*DeleteClientForDeveloperForbidden) IsCode

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

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

func (*DeleteClientForDeveloperForbidden) IsRedirect

func (o *DeleteClientForDeveloperForbidden) IsRedirect() bool

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

func (*DeleteClientForDeveloperForbidden) IsServerError

func (o *DeleteClientForDeveloperForbidden) IsServerError() bool

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

func (*DeleteClientForDeveloperForbidden) IsSuccess

func (o *DeleteClientForDeveloperForbidden) IsSuccess() bool

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

func (*DeleteClientForDeveloperForbidden) String

type DeleteClientForDeveloperNoContent

type DeleteClientForDeveloperNoContent struct {
}

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

Client has been deleted

func NewDeleteClientForDeveloperNoContent

func NewDeleteClientForDeveloperNoContent() *DeleteClientForDeveloperNoContent

NewDeleteClientForDeveloperNoContent creates a DeleteClientForDeveloperNoContent with default headers values

func (*DeleteClientForDeveloperNoContent) Code

Code gets the status code for the delete client for developer no content response

func (*DeleteClientForDeveloperNoContent) Error

func (*DeleteClientForDeveloperNoContent) IsClientError

func (o *DeleteClientForDeveloperNoContent) IsClientError() bool

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

func (*DeleteClientForDeveloperNoContent) IsCode

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

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

func (*DeleteClientForDeveloperNoContent) IsRedirect

func (o *DeleteClientForDeveloperNoContent) IsRedirect() bool

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

func (*DeleteClientForDeveloperNoContent) IsServerError

func (o *DeleteClientForDeveloperNoContent) IsServerError() bool

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

func (*DeleteClientForDeveloperNoContent) IsSuccess

func (o *DeleteClientForDeveloperNoContent) IsSuccess() bool

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

func (*DeleteClientForDeveloperNoContent) String

type DeleteClientForDeveloperNotFound

type DeleteClientForDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewDeleteClientForDeveloperNotFound

func NewDeleteClientForDeveloperNotFound() *DeleteClientForDeveloperNotFound

NewDeleteClientForDeveloperNotFound creates a DeleteClientForDeveloperNotFound with default headers values

func (*DeleteClientForDeveloperNotFound) Code

Code gets the status code for the delete client for developer not found response

func (*DeleteClientForDeveloperNotFound) Error

func (*DeleteClientForDeveloperNotFound) GetPayload

func (*DeleteClientForDeveloperNotFound) IsClientError

func (o *DeleteClientForDeveloperNotFound) IsClientError() bool

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

func (*DeleteClientForDeveloperNotFound) IsCode

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

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

func (*DeleteClientForDeveloperNotFound) IsRedirect

func (o *DeleteClientForDeveloperNotFound) IsRedirect() bool

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

func (*DeleteClientForDeveloperNotFound) IsServerError

func (o *DeleteClientForDeveloperNotFound) IsServerError() bool

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

func (*DeleteClientForDeveloperNotFound) IsSuccess

func (o *DeleteClientForDeveloperNotFound) IsSuccess() bool

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

func (*DeleteClientForDeveloperNotFound) String

type DeleteClientForDeveloperParams

type DeleteClientForDeveloperParams struct {

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

DeleteClientForDeveloperParams contains all the parameters to send to the API endpoint

for the delete client for developer operation.

Typically these are written to a http.Request.

func NewDeleteClientForDeveloperParams

func NewDeleteClientForDeveloperParams() *DeleteClientForDeveloperParams

NewDeleteClientForDeveloperParams creates a new DeleteClientForDeveloperParams 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 NewDeleteClientForDeveloperParamsWithContext

func NewDeleteClientForDeveloperParamsWithContext(ctx context.Context) *DeleteClientForDeveloperParams

NewDeleteClientForDeveloperParamsWithContext creates a new DeleteClientForDeveloperParams object with the ability to set a context for a request.

func NewDeleteClientForDeveloperParamsWithHTTPClient

func NewDeleteClientForDeveloperParamsWithHTTPClient(client *http.Client) *DeleteClientForDeveloperParams

NewDeleteClientForDeveloperParamsWithHTTPClient creates a new DeleteClientForDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteClientForDeveloperParamsWithTimeout

func NewDeleteClientForDeveloperParamsWithTimeout(timeout time.Duration) *DeleteClientForDeveloperParams

NewDeleteClientForDeveloperParamsWithTimeout creates a new DeleteClientForDeveloperParams object with the ability to set a timeout on a request.

func (*DeleteClientForDeveloperParams) SetCid

func (o *DeleteClientForDeveloperParams) SetCid(cid string)

SetCid adds the cid to the delete client for developer params

func (*DeleteClientForDeveloperParams) SetContext

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

SetContext adds the context to the delete client for developer params

func (*DeleteClientForDeveloperParams) SetDefaults

func (o *DeleteClientForDeveloperParams) SetDefaults()

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

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

func (*DeleteClientForDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete client for developer params

func (*DeleteClientForDeveloperParams) SetTimeout

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

SetTimeout adds the timeout to the delete client for developer params

func (*DeleteClientForDeveloperParams) WithCid

WithCid adds the cid to the delete client for developer params

func (*DeleteClientForDeveloperParams) WithContext

WithContext adds the context to the delete client for developer params

func (*DeleteClientForDeveloperParams) WithDefaults

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

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

func (*DeleteClientForDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete client for developer params

func (*DeleteClientForDeveloperParams) WithTimeout

WithTimeout adds the timeout to the delete client for developer params

func (*DeleteClientForDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteClientForDeveloperReader

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

DeleteClientForDeveloperReader is a Reader for the DeleteClientForDeveloper structure.

func (*DeleteClientForDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteClientForDeveloperTooManyRequests

type DeleteClientForDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewDeleteClientForDeveloperTooManyRequests

func NewDeleteClientForDeveloperTooManyRequests() *DeleteClientForDeveloperTooManyRequests

NewDeleteClientForDeveloperTooManyRequests creates a DeleteClientForDeveloperTooManyRequests with default headers values

func (*DeleteClientForDeveloperTooManyRequests) Code

Code gets the status code for the delete client for developer too many requests response

func (*DeleteClientForDeveloperTooManyRequests) Error

func (*DeleteClientForDeveloperTooManyRequests) GetPayload

func (*DeleteClientForDeveloperTooManyRequests) IsClientError

func (o *DeleteClientForDeveloperTooManyRequests) IsClientError() bool

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

func (*DeleteClientForDeveloperTooManyRequests) IsCode

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

func (*DeleteClientForDeveloperTooManyRequests) IsRedirect

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

func (*DeleteClientForDeveloperTooManyRequests) IsServerError

func (o *DeleteClientForDeveloperTooManyRequests) IsServerError() bool

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

func (*DeleteClientForDeveloperTooManyRequests) IsSuccess

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

func (*DeleteClientForDeveloperTooManyRequests) String

type DeleteClientForDeveloperUnauthorized

type DeleteClientForDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewDeleteClientForDeveloperUnauthorized

func NewDeleteClientForDeveloperUnauthorized() *DeleteClientForDeveloperUnauthorized

NewDeleteClientForDeveloperUnauthorized creates a DeleteClientForDeveloperUnauthorized with default headers values

func (*DeleteClientForDeveloperUnauthorized) Code

Code gets the status code for the delete client for developer unauthorized response

func (*DeleteClientForDeveloperUnauthorized) Error

func (*DeleteClientForDeveloperUnauthorized) GetPayload

func (*DeleteClientForDeveloperUnauthorized) IsClientError

func (o *DeleteClientForDeveloperUnauthorized) IsClientError() bool

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

func (*DeleteClientForDeveloperUnauthorized) IsCode

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

func (*DeleteClientForDeveloperUnauthorized) IsRedirect

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

func (*DeleteClientForDeveloperUnauthorized) IsServerError

func (o *DeleteClientForDeveloperUnauthorized) IsServerError() bool

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

func (*DeleteClientForDeveloperUnauthorized) IsSuccess

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

func (*DeleteClientForDeveloperUnauthorized) String

type GetClientForDeveloperForbidden

type GetClientForDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewGetClientForDeveloperForbidden

func NewGetClientForDeveloperForbidden() *GetClientForDeveloperForbidden

NewGetClientForDeveloperForbidden creates a GetClientForDeveloperForbidden with default headers values

func (*GetClientForDeveloperForbidden) Code

Code gets the status code for the get client for developer forbidden response

func (*GetClientForDeveloperForbidden) Error

func (*GetClientForDeveloperForbidden) GetPayload

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

func (*GetClientForDeveloperForbidden) IsClientError

func (o *GetClientForDeveloperForbidden) IsClientError() bool

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

func (*GetClientForDeveloperForbidden) IsCode

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

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

func (*GetClientForDeveloperForbidden) IsRedirect

func (o *GetClientForDeveloperForbidden) IsRedirect() bool

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

func (*GetClientForDeveloperForbidden) IsServerError

func (o *GetClientForDeveloperForbidden) IsServerError() bool

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

func (*GetClientForDeveloperForbidden) IsSuccess

func (o *GetClientForDeveloperForbidden) IsSuccess() bool

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

func (*GetClientForDeveloperForbidden) String

type GetClientForDeveloperNotFound

type GetClientForDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewGetClientForDeveloperNotFound

func NewGetClientForDeveloperNotFound() *GetClientForDeveloperNotFound

NewGetClientForDeveloperNotFound creates a GetClientForDeveloperNotFound with default headers values

func (*GetClientForDeveloperNotFound) Code

Code gets the status code for the get client for developer not found response

func (*GetClientForDeveloperNotFound) Error

func (*GetClientForDeveloperNotFound) GetPayload

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

func (*GetClientForDeveloperNotFound) IsClientError

func (o *GetClientForDeveloperNotFound) IsClientError() bool

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

func (*GetClientForDeveloperNotFound) IsCode

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

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

func (*GetClientForDeveloperNotFound) IsRedirect

func (o *GetClientForDeveloperNotFound) IsRedirect() bool

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

func (*GetClientForDeveloperNotFound) IsServerError

func (o *GetClientForDeveloperNotFound) IsServerError() bool

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

func (*GetClientForDeveloperNotFound) IsSuccess

func (o *GetClientForDeveloperNotFound) IsSuccess() bool

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

func (*GetClientForDeveloperNotFound) String

type GetClientForDeveloperOK

type GetClientForDeveloperOK struct {
	Payload *models.ClientDeveloperResponse
}

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

Get client

func NewGetClientForDeveloperOK

func NewGetClientForDeveloperOK() *GetClientForDeveloperOK

NewGetClientForDeveloperOK creates a GetClientForDeveloperOK with default headers values

func (*GetClientForDeveloperOK) Code

func (o *GetClientForDeveloperOK) Code() int

Code gets the status code for the get client for developer o k response

func (*GetClientForDeveloperOK) Error

func (o *GetClientForDeveloperOK) Error() string

func (*GetClientForDeveloperOK) GetPayload

func (*GetClientForDeveloperOK) IsClientError

func (o *GetClientForDeveloperOK) IsClientError() bool

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

func (*GetClientForDeveloperOK) IsCode

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

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

func (*GetClientForDeveloperOK) IsRedirect

func (o *GetClientForDeveloperOK) IsRedirect() bool

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

func (*GetClientForDeveloperOK) IsServerError

func (o *GetClientForDeveloperOK) IsServerError() bool

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

func (*GetClientForDeveloperOK) IsSuccess

func (o *GetClientForDeveloperOK) IsSuccess() bool

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

func (*GetClientForDeveloperOK) String

func (o *GetClientForDeveloperOK) String() string

type GetClientForDeveloperParams

type GetClientForDeveloperParams struct {

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

GetClientForDeveloperParams contains all the parameters to send to the API endpoint

for the get client for developer operation.

Typically these are written to a http.Request.

func NewGetClientForDeveloperParams

func NewGetClientForDeveloperParams() *GetClientForDeveloperParams

NewGetClientForDeveloperParams creates a new GetClientForDeveloperParams 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 NewGetClientForDeveloperParamsWithContext

func NewGetClientForDeveloperParamsWithContext(ctx context.Context) *GetClientForDeveloperParams

NewGetClientForDeveloperParamsWithContext creates a new GetClientForDeveloperParams object with the ability to set a context for a request.

func NewGetClientForDeveloperParamsWithHTTPClient

func NewGetClientForDeveloperParamsWithHTTPClient(client *http.Client) *GetClientForDeveloperParams

NewGetClientForDeveloperParamsWithHTTPClient creates a new GetClientForDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewGetClientForDeveloperParamsWithTimeout

func NewGetClientForDeveloperParamsWithTimeout(timeout time.Duration) *GetClientForDeveloperParams

NewGetClientForDeveloperParamsWithTimeout creates a new GetClientForDeveloperParams object with the ability to set a timeout on a request.

func (*GetClientForDeveloperParams) SetCid

func (o *GetClientForDeveloperParams) SetCid(cid string)

SetCid adds the cid to the get client for developer params

func (*GetClientForDeveloperParams) SetContext

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

SetContext adds the context to the get client for developer params

func (*GetClientForDeveloperParams) SetDefaults

func (o *GetClientForDeveloperParams) SetDefaults()

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

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

func (*GetClientForDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get client for developer params

func (*GetClientForDeveloperParams) SetTimeout

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

SetTimeout adds the timeout to the get client for developer params

func (*GetClientForDeveloperParams) WithCid

WithCid adds the cid to the get client for developer params

func (*GetClientForDeveloperParams) WithContext

WithContext adds the context to the get client for developer params

func (*GetClientForDeveloperParams) WithDefaults

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

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

func (*GetClientForDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get client for developer params

func (*GetClientForDeveloperParams) WithTimeout

WithTimeout adds the timeout to the get client for developer params

func (*GetClientForDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetClientForDeveloperReader

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

GetClientForDeveloperReader is a Reader for the GetClientForDeveloper structure.

func (*GetClientForDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetClientForDeveloperTooManyRequests

type GetClientForDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewGetClientForDeveloperTooManyRequests

func NewGetClientForDeveloperTooManyRequests() *GetClientForDeveloperTooManyRequests

NewGetClientForDeveloperTooManyRequests creates a GetClientForDeveloperTooManyRequests with default headers values

func (*GetClientForDeveloperTooManyRequests) Code

Code gets the status code for the get client for developer too many requests response

func (*GetClientForDeveloperTooManyRequests) Error

func (*GetClientForDeveloperTooManyRequests) GetPayload

func (*GetClientForDeveloperTooManyRequests) IsClientError

func (o *GetClientForDeveloperTooManyRequests) IsClientError() bool

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

func (*GetClientForDeveloperTooManyRequests) IsCode

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

func (*GetClientForDeveloperTooManyRequests) IsRedirect

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

func (*GetClientForDeveloperTooManyRequests) IsServerError

func (o *GetClientForDeveloperTooManyRequests) IsServerError() bool

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

func (*GetClientForDeveloperTooManyRequests) IsSuccess

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

func (*GetClientForDeveloperTooManyRequests) String

type GetClientForDeveloperUnauthorized

type GetClientForDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewGetClientForDeveloperUnauthorized

func NewGetClientForDeveloperUnauthorized() *GetClientForDeveloperUnauthorized

NewGetClientForDeveloperUnauthorized creates a GetClientForDeveloperUnauthorized with default headers values

func (*GetClientForDeveloperUnauthorized) Code

Code gets the status code for the get client for developer unauthorized response

func (*GetClientForDeveloperUnauthorized) Error

func (*GetClientForDeveloperUnauthorized) GetPayload

func (*GetClientForDeveloperUnauthorized) IsClientError

func (o *GetClientForDeveloperUnauthorized) IsClientError() bool

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

func (*GetClientForDeveloperUnauthorized) IsCode

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

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

func (*GetClientForDeveloperUnauthorized) IsRedirect

func (o *GetClientForDeveloperUnauthorized) IsRedirect() bool

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

func (*GetClientForDeveloperUnauthorized) IsServerError

func (o *GetClientForDeveloperUnauthorized) IsServerError() bool

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

func (*GetClientForDeveloperUnauthorized) IsSuccess

func (o *GetClientForDeveloperUnauthorized) IsSuccess() bool

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

func (*GetClientForDeveloperUnauthorized) String

type ListClientsForDeveloperForbidden

type ListClientsForDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewListClientsForDeveloperForbidden

func NewListClientsForDeveloperForbidden() *ListClientsForDeveloperForbidden

NewListClientsForDeveloperForbidden creates a ListClientsForDeveloperForbidden with default headers values

func (*ListClientsForDeveloperForbidden) Code

Code gets the status code for the list clients for developer forbidden response

func (*ListClientsForDeveloperForbidden) Error

func (*ListClientsForDeveloperForbidden) GetPayload

func (*ListClientsForDeveloperForbidden) IsClientError

func (o *ListClientsForDeveloperForbidden) IsClientError() bool

IsClientError returns true when this list clients for developer forbidden response has a 4xx status code

func (*ListClientsForDeveloperForbidden) IsCode

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

IsCode returns true when this list clients for developer forbidden response a status code equal to that given

func (*ListClientsForDeveloperForbidden) IsRedirect

func (o *ListClientsForDeveloperForbidden) IsRedirect() bool

IsRedirect returns true when this list clients for developer forbidden response has a 3xx status code

func (*ListClientsForDeveloperForbidden) IsServerError

func (o *ListClientsForDeveloperForbidden) IsServerError() bool

IsServerError returns true when this list clients for developer forbidden response has a 5xx status code

func (*ListClientsForDeveloperForbidden) IsSuccess

func (o *ListClientsForDeveloperForbidden) IsSuccess() bool

IsSuccess returns true when this list clients for developer forbidden response has a 2xx status code

func (*ListClientsForDeveloperForbidden) String

type ListClientsForDeveloperNotFound

type ListClientsForDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewListClientsForDeveloperNotFound

func NewListClientsForDeveloperNotFound() *ListClientsForDeveloperNotFound

NewListClientsForDeveloperNotFound creates a ListClientsForDeveloperNotFound with default headers values

func (*ListClientsForDeveloperNotFound) Code

Code gets the status code for the list clients for developer not found response

func (*ListClientsForDeveloperNotFound) Error

func (*ListClientsForDeveloperNotFound) GetPayload

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

func (*ListClientsForDeveloperNotFound) IsClientError

func (o *ListClientsForDeveloperNotFound) IsClientError() bool

IsClientError returns true when this list clients for developer not found response has a 4xx status code

func (*ListClientsForDeveloperNotFound) IsCode

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

IsCode returns true when this list clients for developer not found response a status code equal to that given

func (*ListClientsForDeveloperNotFound) IsRedirect

func (o *ListClientsForDeveloperNotFound) IsRedirect() bool

IsRedirect returns true when this list clients for developer not found response has a 3xx status code

func (*ListClientsForDeveloperNotFound) IsServerError

func (o *ListClientsForDeveloperNotFound) IsServerError() bool

IsServerError returns true when this list clients for developer not found response has a 5xx status code

func (*ListClientsForDeveloperNotFound) IsSuccess

func (o *ListClientsForDeveloperNotFound) IsSuccess() bool

IsSuccess returns true when this list clients for developer not found response has a 2xx status code

func (*ListClientsForDeveloperNotFound) String

type ListClientsForDeveloperOK

type ListClientsForDeveloperOK struct {
	Payload *models.ClientsForDeveloper
}

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

List clients

func NewListClientsForDeveloperOK

func NewListClientsForDeveloperOK() *ListClientsForDeveloperOK

NewListClientsForDeveloperOK creates a ListClientsForDeveloperOK with default headers values

func (*ListClientsForDeveloperOK) Code

func (o *ListClientsForDeveloperOK) Code() int

Code gets the status code for the list clients for developer o k response

func (*ListClientsForDeveloperOK) Error

func (o *ListClientsForDeveloperOK) Error() string

func (*ListClientsForDeveloperOK) GetPayload

func (*ListClientsForDeveloperOK) IsClientError

func (o *ListClientsForDeveloperOK) IsClientError() bool

IsClientError returns true when this list clients for developer o k response has a 4xx status code

func (*ListClientsForDeveloperOK) IsCode

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

IsCode returns true when this list clients for developer o k response a status code equal to that given

func (*ListClientsForDeveloperOK) IsRedirect

func (o *ListClientsForDeveloperOK) IsRedirect() bool

IsRedirect returns true when this list clients for developer o k response has a 3xx status code

func (*ListClientsForDeveloperOK) IsServerError

func (o *ListClientsForDeveloperOK) IsServerError() bool

IsServerError returns true when this list clients for developer o k response has a 5xx status code

func (*ListClientsForDeveloperOK) IsSuccess

func (o *ListClientsForDeveloperOK) IsSuccess() bool

IsSuccess returns true when this list clients for developer o k response has a 2xx status code

func (*ListClientsForDeveloperOK) String

func (o *ListClientsForDeveloperOK) String() string

type ListClientsForDeveloperParams

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

ListClientsForDeveloperParams contains all the parameters to send to the API endpoint

for the list clients for developer operation.

Typically these are written to a http.Request.

func NewListClientsForDeveloperParams

func NewListClientsForDeveloperParams() *ListClientsForDeveloperParams

NewListClientsForDeveloperParams creates a new ListClientsForDeveloperParams 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 NewListClientsForDeveloperParamsWithContext

func NewListClientsForDeveloperParamsWithContext(ctx context.Context) *ListClientsForDeveloperParams

NewListClientsForDeveloperParamsWithContext creates a new ListClientsForDeveloperParams object with the ability to set a context for a request.

func NewListClientsForDeveloperParamsWithHTTPClient

func NewListClientsForDeveloperParamsWithHTTPClient(client *http.Client) *ListClientsForDeveloperParams

NewListClientsForDeveloperParamsWithHTTPClient creates a new ListClientsForDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewListClientsForDeveloperParamsWithTimeout

func NewListClientsForDeveloperParamsWithTimeout(timeout time.Duration) *ListClientsForDeveloperParams

NewListClientsForDeveloperParamsWithTimeout creates a new ListClientsForDeveloperParams object with the ability to set a timeout on a request.

func (*ListClientsForDeveloperParams) SetContext

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

SetContext adds the context to the list clients for developer params

func (*ListClientsForDeveloperParams) SetDefaults

func (o *ListClientsForDeveloperParams) SetDefaults()

SetDefaults hydrates default values in the list clients for developer params (not the query body).

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

func (*ListClientsForDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list clients for developer params

func (*ListClientsForDeveloperParams) SetTimeout

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

SetTimeout adds the timeout to the list clients for developer params

func (*ListClientsForDeveloperParams) WithContext

WithContext adds the context to the list clients for developer params

func (*ListClientsForDeveloperParams) WithDefaults

WithDefaults hydrates default values in the list clients for developer params (not the query body).

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

func (*ListClientsForDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list clients for developer params

func (*ListClientsForDeveloperParams) WithTimeout

WithTimeout adds the timeout to the list clients for developer params

func (*ListClientsForDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListClientsForDeveloperReader

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

ListClientsForDeveloperReader is a Reader for the ListClientsForDeveloper structure.

func (*ListClientsForDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListClientsForDeveloperTooManyRequests

type ListClientsForDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewListClientsForDeveloperTooManyRequests

func NewListClientsForDeveloperTooManyRequests() *ListClientsForDeveloperTooManyRequests

NewListClientsForDeveloperTooManyRequests creates a ListClientsForDeveloperTooManyRequests with default headers values

func (*ListClientsForDeveloperTooManyRequests) Code

Code gets the status code for the list clients for developer too many requests response

func (*ListClientsForDeveloperTooManyRequests) Error

func (*ListClientsForDeveloperTooManyRequests) GetPayload

func (*ListClientsForDeveloperTooManyRequests) IsClientError

func (o *ListClientsForDeveloperTooManyRequests) IsClientError() bool

IsClientError returns true when this list clients for developer too many requests response has a 4xx status code

func (*ListClientsForDeveloperTooManyRequests) IsCode

IsCode returns true when this list clients for developer too many requests response a status code equal to that given

func (*ListClientsForDeveloperTooManyRequests) IsRedirect

IsRedirect returns true when this list clients for developer too many requests response has a 3xx status code

func (*ListClientsForDeveloperTooManyRequests) IsServerError

func (o *ListClientsForDeveloperTooManyRequests) IsServerError() bool

IsServerError returns true when this list clients for developer too many requests response has a 5xx status code

func (*ListClientsForDeveloperTooManyRequests) IsSuccess

IsSuccess returns true when this list clients for developer too many requests response has a 2xx status code

func (*ListClientsForDeveloperTooManyRequests) String

type ListClientsForDeveloperUnauthorized

type ListClientsForDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewListClientsForDeveloperUnauthorized

func NewListClientsForDeveloperUnauthorized() *ListClientsForDeveloperUnauthorized

NewListClientsForDeveloperUnauthorized creates a ListClientsForDeveloperUnauthorized with default headers values

func (*ListClientsForDeveloperUnauthorized) Code

Code gets the status code for the list clients for developer unauthorized response

func (*ListClientsForDeveloperUnauthorized) Error

func (*ListClientsForDeveloperUnauthorized) GetPayload

func (*ListClientsForDeveloperUnauthorized) IsClientError

func (o *ListClientsForDeveloperUnauthorized) IsClientError() bool

IsClientError returns true when this list clients for developer unauthorized response has a 4xx status code

func (*ListClientsForDeveloperUnauthorized) IsCode

IsCode returns true when this list clients for developer unauthorized response a status code equal to that given

func (*ListClientsForDeveloperUnauthorized) IsRedirect

func (o *ListClientsForDeveloperUnauthorized) IsRedirect() bool

IsRedirect returns true when this list clients for developer unauthorized response has a 3xx status code

func (*ListClientsForDeveloperUnauthorized) IsServerError

func (o *ListClientsForDeveloperUnauthorized) IsServerError() bool

IsServerError returns true when this list clients for developer unauthorized response has a 5xx status code

func (*ListClientsForDeveloperUnauthorized) IsSuccess

IsSuccess returns true when this list clients for developer unauthorized response has a 2xx status code

func (*ListClientsForDeveloperUnauthorized) String

type RevokeRotatedClientSecretsAsDeveloperForbidden

type RevokeRotatedClientSecretsAsDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewRevokeRotatedClientSecretsAsDeveloperForbidden

func NewRevokeRotatedClientSecretsAsDeveloperForbidden() *RevokeRotatedClientSecretsAsDeveloperForbidden

NewRevokeRotatedClientSecretsAsDeveloperForbidden creates a RevokeRotatedClientSecretsAsDeveloperForbidden with default headers values

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) Code

Code gets the status code for the revoke rotated client secrets as developer forbidden response

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) Error

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) GetPayload

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) IsClientError

IsClientError returns true when this revoke rotated client secrets as developer forbidden response has a 4xx status code

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) IsCode

IsCode returns true when this revoke rotated client secrets as developer forbidden response a status code equal to that given

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) IsRedirect

IsRedirect returns true when this revoke rotated client secrets as developer forbidden response has a 3xx status code

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) IsServerError

IsServerError returns true when this revoke rotated client secrets as developer forbidden response has a 5xx status code

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) IsSuccess

IsSuccess returns true when this revoke rotated client secrets as developer forbidden response has a 2xx status code

func (*RevokeRotatedClientSecretsAsDeveloperForbidden) String

type RevokeRotatedClientSecretsAsDeveloperNoContent

type RevokeRotatedClientSecretsAsDeveloperNoContent struct {
}

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

all client's rotated secrets has been revoked

func NewRevokeRotatedClientSecretsAsDeveloperNoContent

func NewRevokeRotatedClientSecretsAsDeveloperNoContent() *RevokeRotatedClientSecretsAsDeveloperNoContent

NewRevokeRotatedClientSecretsAsDeveloperNoContent creates a RevokeRotatedClientSecretsAsDeveloperNoContent with default headers values

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) Code

Code gets the status code for the revoke rotated client secrets as developer no content response

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) Error

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) IsClientError

IsClientError returns true when this revoke rotated client secrets as developer no content response has a 4xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) IsCode

IsCode returns true when this revoke rotated client secrets as developer no content response a status code equal to that given

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) IsRedirect

IsRedirect returns true when this revoke rotated client secrets as developer no content response has a 3xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) IsServerError

IsServerError returns true when this revoke rotated client secrets as developer no content response has a 5xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) IsSuccess

IsSuccess returns true when this revoke rotated client secrets as developer no content response has a 2xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNoContent) String

type RevokeRotatedClientSecretsAsDeveloperNotFound

type RevokeRotatedClientSecretsAsDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewRevokeRotatedClientSecretsAsDeveloperNotFound

func NewRevokeRotatedClientSecretsAsDeveloperNotFound() *RevokeRotatedClientSecretsAsDeveloperNotFound

NewRevokeRotatedClientSecretsAsDeveloperNotFound creates a RevokeRotatedClientSecretsAsDeveloperNotFound with default headers values

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) Code

Code gets the status code for the revoke rotated client secrets as developer not found response

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) Error

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) GetPayload

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) IsClientError

IsClientError returns true when this revoke rotated client secrets as developer not found response has a 4xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) IsCode

IsCode returns true when this revoke rotated client secrets as developer not found response a status code equal to that given

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) IsRedirect

IsRedirect returns true when this revoke rotated client secrets as developer not found response has a 3xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) IsServerError

IsServerError returns true when this revoke rotated client secrets as developer not found response has a 5xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) IsSuccess

IsSuccess returns true when this revoke rotated client secrets as developer not found response has a 2xx status code

func (*RevokeRotatedClientSecretsAsDeveloperNotFound) String

type RevokeRotatedClientSecretsAsDeveloperParams

type RevokeRotatedClientSecretsAsDeveloperParams struct {

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

RevokeRotatedClientSecretsAsDeveloperParams contains all the parameters to send to the API endpoint

for the revoke rotated client secrets as developer operation.

Typically these are written to a http.Request.

func NewRevokeRotatedClientSecretsAsDeveloperParams

func NewRevokeRotatedClientSecretsAsDeveloperParams() *RevokeRotatedClientSecretsAsDeveloperParams

NewRevokeRotatedClientSecretsAsDeveloperParams creates a new RevokeRotatedClientSecretsAsDeveloperParams 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 NewRevokeRotatedClientSecretsAsDeveloperParamsWithContext

func NewRevokeRotatedClientSecretsAsDeveloperParamsWithContext(ctx context.Context) *RevokeRotatedClientSecretsAsDeveloperParams

NewRevokeRotatedClientSecretsAsDeveloperParamsWithContext creates a new RevokeRotatedClientSecretsAsDeveloperParams object with the ability to set a context for a request.

func NewRevokeRotatedClientSecretsAsDeveloperParamsWithHTTPClient

func NewRevokeRotatedClientSecretsAsDeveloperParamsWithHTTPClient(client *http.Client) *RevokeRotatedClientSecretsAsDeveloperParams

NewRevokeRotatedClientSecretsAsDeveloperParamsWithHTTPClient creates a new RevokeRotatedClientSecretsAsDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewRevokeRotatedClientSecretsAsDeveloperParamsWithTimeout

func NewRevokeRotatedClientSecretsAsDeveloperParamsWithTimeout(timeout time.Duration) *RevokeRotatedClientSecretsAsDeveloperParams

NewRevokeRotatedClientSecretsAsDeveloperParamsWithTimeout creates a new RevokeRotatedClientSecretsAsDeveloperParams object with the ability to set a timeout on a request.

func (*RevokeRotatedClientSecretsAsDeveloperParams) SetCid

SetCid adds the cid to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) SetContext

SetContext adds the context to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) SetDefaults

SetDefaults hydrates default values in the revoke rotated client secrets as developer params (not the query body).

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

func (*RevokeRotatedClientSecretsAsDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) SetTimeout

SetTimeout adds the timeout to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) WithCid

WithCid adds the cid to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) WithContext

WithContext adds the context to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) WithDefaults

WithDefaults hydrates default values in the revoke rotated client secrets as developer params (not the query body).

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

func (*RevokeRotatedClientSecretsAsDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) WithTimeout

WithTimeout adds the timeout to the revoke rotated client secrets as developer params

func (*RevokeRotatedClientSecretsAsDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RevokeRotatedClientSecretsAsDeveloperReader

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

RevokeRotatedClientSecretsAsDeveloperReader is a Reader for the RevokeRotatedClientSecretsAsDeveloper structure.

func (*RevokeRotatedClientSecretsAsDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RevokeRotatedClientSecretsAsDeveloperTooManyRequests

type RevokeRotatedClientSecretsAsDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewRevokeRotatedClientSecretsAsDeveloperTooManyRequests

func NewRevokeRotatedClientSecretsAsDeveloperTooManyRequests() *RevokeRotatedClientSecretsAsDeveloperTooManyRequests

NewRevokeRotatedClientSecretsAsDeveloperTooManyRequests creates a RevokeRotatedClientSecretsAsDeveloperTooManyRequests with default headers values

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) Code

Code gets the status code for the revoke rotated client secrets as developer too many requests response

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) Error

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) GetPayload

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) IsClientError

IsClientError returns true when this revoke rotated client secrets as developer too many requests response has a 4xx status code

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) IsCode

IsCode returns true when this revoke rotated client secrets as developer too many requests response a status code equal to that given

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) IsRedirect

IsRedirect returns true when this revoke rotated client secrets as developer too many requests response has a 3xx status code

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) IsServerError

IsServerError returns true when this revoke rotated client secrets as developer too many requests response has a 5xx status code

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) IsSuccess

IsSuccess returns true when this revoke rotated client secrets as developer too many requests response has a 2xx status code

func (*RevokeRotatedClientSecretsAsDeveloperTooManyRequests) String

type RevokeRotatedClientSecretsAsDeveloperUnauthorized

type RevokeRotatedClientSecretsAsDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewRevokeRotatedClientSecretsAsDeveloperUnauthorized

func NewRevokeRotatedClientSecretsAsDeveloperUnauthorized() *RevokeRotatedClientSecretsAsDeveloperUnauthorized

NewRevokeRotatedClientSecretsAsDeveloperUnauthorized creates a RevokeRotatedClientSecretsAsDeveloperUnauthorized with default headers values

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) Code

Code gets the status code for the revoke rotated client secrets as developer unauthorized response

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) Error

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) GetPayload

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) IsClientError

IsClientError returns true when this revoke rotated client secrets as developer unauthorized response has a 4xx status code

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) IsCode

IsCode returns true when this revoke rotated client secrets as developer unauthorized response a status code equal to that given

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) IsRedirect

IsRedirect returns true when this revoke rotated client secrets as developer unauthorized response has a 3xx status code

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) IsServerError

IsServerError returns true when this revoke rotated client secrets as developer unauthorized response has a 5xx status code

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) IsSuccess

IsSuccess returns true when this revoke rotated client secrets as developer unauthorized response has a 2xx status code

func (*RevokeRotatedClientSecretsAsDeveloperUnauthorized) String

type RotateClientSecretAsDeveloperForbidden

type RotateClientSecretAsDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewRotateClientSecretAsDeveloperForbidden

func NewRotateClientSecretAsDeveloperForbidden() *RotateClientSecretAsDeveloperForbidden

NewRotateClientSecretAsDeveloperForbidden creates a RotateClientSecretAsDeveloperForbidden with default headers values

func (*RotateClientSecretAsDeveloperForbidden) Code

Code gets the status code for the rotate client secret as developer forbidden response

func (*RotateClientSecretAsDeveloperForbidden) Error

func (*RotateClientSecretAsDeveloperForbidden) GetPayload

func (*RotateClientSecretAsDeveloperForbidden) IsClientError

func (o *RotateClientSecretAsDeveloperForbidden) IsClientError() bool

IsClientError returns true when this rotate client secret as developer forbidden response has a 4xx status code

func (*RotateClientSecretAsDeveloperForbidden) IsCode

IsCode returns true when this rotate client secret as developer forbidden response a status code equal to that given

func (*RotateClientSecretAsDeveloperForbidden) IsRedirect

IsRedirect returns true when this rotate client secret as developer forbidden response has a 3xx status code

func (*RotateClientSecretAsDeveloperForbidden) IsServerError

func (o *RotateClientSecretAsDeveloperForbidden) IsServerError() bool

IsServerError returns true when this rotate client secret as developer forbidden response has a 5xx status code

func (*RotateClientSecretAsDeveloperForbidden) IsSuccess

IsSuccess returns true when this rotate client secret as developer forbidden response has a 2xx status code

func (*RotateClientSecretAsDeveloperForbidden) String

type RotateClientSecretAsDeveloperNotFound

type RotateClientSecretAsDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewRotateClientSecretAsDeveloperNotFound

func NewRotateClientSecretAsDeveloperNotFound() *RotateClientSecretAsDeveloperNotFound

NewRotateClientSecretAsDeveloperNotFound creates a RotateClientSecretAsDeveloperNotFound with default headers values

func (*RotateClientSecretAsDeveloperNotFound) Code

Code gets the status code for the rotate client secret as developer not found response

func (*RotateClientSecretAsDeveloperNotFound) Error

func (*RotateClientSecretAsDeveloperNotFound) GetPayload

func (*RotateClientSecretAsDeveloperNotFound) IsClientError

func (o *RotateClientSecretAsDeveloperNotFound) IsClientError() bool

IsClientError returns true when this rotate client secret as developer not found response has a 4xx status code

func (*RotateClientSecretAsDeveloperNotFound) IsCode

IsCode returns true when this rotate client secret as developer not found response a status code equal to that given

func (*RotateClientSecretAsDeveloperNotFound) IsRedirect

IsRedirect returns true when this rotate client secret as developer not found response has a 3xx status code

func (*RotateClientSecretAsDeveloperNotFound) IsServerError

func (o *RotateClientSecretAsDeveloperNotFound) IsServerError() bool

IsServerError returns true when this rotate client secret as developer not found response has a 5xx status code

func (*RotateClientSecretAsDeveloperNotFound) IsSuccess

IsSuccess returns true when this rotate client secret as developer not found response has a 2xx status code

func (*RotateClientSecretAsDeveloperNotFound) String

type RotateClientSecretAsDeveloperOK

type RotateClientSecretAsDeveloperOK struct {
	Payload *models.RotateClientSecretDeveloperResponse
}

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

Rotate client secret

func NewRotateClientSecretAsDeveloperOK

func NewRotateClientSecretAsDeveloperOK() *RotateClientSecretAsDeveloperOK

NewRotateClientSecretAsDeveloperOK creates a RotateClientSecretAsDeveloperOK with default headers values

func (*RotateClientSecretAsDeveloperOK) Code

Code gets the status code for the rotate client secret as developer o k response

func (*RotateClientSecretAsDeveloperOK) Error

func (*RotateClientSecretAsDeveloperOK) GetPayload

func (*RotateClientSecretAsDeveloperOK) IsClientError

func (o *RotateClientSecretAsDeveloperOK) IsClientError() bool

IsClientError returns true when this rotate client secret as developer o k response has a 4xx status code

func (*RotateClientSecretAsDeveloperOK) IsCode

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

IsCode returns true when this rotate client secret as developer o k response a status code equal to that given

func (*RotateClientSecretAsDeveloperOK) IsRedirect

func (o *RotateClientSecretAsDeveloperOK) IsRedirect() bool

IsRedirect returns true when this rotate client secret as developer o k response has a 3xx status code

func (*RotateClientSecretAsDeveloperOK) IsServerError

func (o *RotateClientSecretAsDeveloperOK) IsServerError() bool

IsServerError returns true when this rotate client secret as developer o k response has a 5xx status code

func (*RotateClientSecretAsDeveloperOK) IsSuccess

func (o *RotateClientSecretAsDeveloperOK) IsSuccess() bool

IsSuccess returns true when this rotate client secret as developer o k response has a 2xx status code

func (*RotateClientSecretAsDeveloperOK) String

type RotateClientSecretAsDeveloperParams

type RotateClientSecretAsDeveloperParams struct {

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

RotateClientSecretAsDeveloperParams contains all the parameters to send to the API endpoint

for the rotate client secret as developer operation.

Typically these are written to a http.Request.

func NewRotateClientSecretAsDeveloperParams

func NewRotateClientSecretAsDeveloperParams() *RotateClientSecretAsDeveloperParams

NewRotateClientSecretAsDeveloperParams creates a new RotateClientSecretAsDeveloperParams 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 NewRotateClientSecretAsDeveloperParamsWithContext

func NewRotateClientSecretAsDeveloperParamsWithContext(ctx context.Context) *RotateClientSecretAsDeveloperParams

NewRotateClientSecretAsDeveloperParamsWithContext creates a new RotateClientSecretAsDeveloperParams object with the ability to set a context for a request.

func NewRotateClientSecretAsDeveloperParamsWithHTTPClient

func NewRotateClientSecretAsDeveloperParamsWithHTTPClient(client *http.Client) *RotateClientSecretAsDeveloperParams

NewRotateClientSecretAsDeveloperParamsWithHTTPClient creates a new RotateClientSecretAsDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewRotateClientSecretAsDeveloperParamsWithTimeout

func NewRotateClientSecretAsDeveloperParamsWithTimeout(timeout time.Duration) *RotateClientSecretAsDeveloperParams

NewRotateClientSecretAsDeveloperParamsWithTimeout creates a new RotateClientSecretAsDeveloperParams object with the ability to set a timeout on a request.

func (*RotateClientSecretAsDeveloperParams) SetCid

SetCid adds the cid to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) SetContext

SetContext adds the context to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) SetDefaults

func (o *RotateClientSecretAsDeveloperParams) SetDefaults()

SetDefaults hydrates default values in the rotate client secret as developer params (not the query body).

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

func (*RotateClientSecretAsDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) SetTimeout

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

SetTimeout adds the timeout to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) WithCid

WithCid adds the cid to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) WithContext

WithContext adds the context to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) WithDefaults

WithDefaults hydrates default values in the rotate client secret as developer params (not the query body).

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

func (*RotateClientSecretAsDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) WithTimeout

WithTimeout adds the timeout to the rotate client secret as developer params

func (*RotateClientSecretAsDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RotateClientSecretAsDeveloperReader

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

RotateClientSecretAsDeveloperReader is a Reader for the RotateClientSecretAsDeveloper structure.

func (*RotateClientSecretAsDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RotateClientSecretAsDeveloperTooManyRequests

type RotateClientSecretAsDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewRotateClientSecretAsDeveloperTooManyRequests

func NewRotateClientSecretAsDeveloperTooManyRequests() *RotateClientSecretAsDeveloperTooManyRequests

NewRotateClientSecretAsDeveloperTooManyRequests creates a RotateClientSecretAsDeveloperTooManyRequests with default headers values

func (*RotateClientSecretAsDeveloperTooManyRequests) Code

Code gets the status code for the rotate client secret as developer too many requests response

func (*RotateClientSecretAsDeveloperTooManyRequests) Error

func (*RotateClientSecretAsDeveloperTooManyRequests) GetPayload

func (*RotateClientSecretAsDeveloperTooManyRequests) IsClientError

IsClientError returns true when this rotate client secret as developer too many requests response has a 4xx status code

func (*RotateClientSecretAsDeveloperTooManyRequests) IsCode

IsCode returns true when this rotate client secret as developer too many requests response a status code equal to that given

func (*RotateClientSecretAsDeveloperTooManyRequests) IsRedirect

IsRedirect returns true when this rotate client secret as developer too many requests response has a 3xx status code

func (*RotateClientSecretAsDeveloperTooManyRequests) IsServerError

IsServerError returns true when this rotate client secret as developer too many requests response has a 5xx status code

func (*RotateClientSecretAsDeveloperTooManyRequests) IsSuccess

IsSuccess returns true when this rotate client secret as developer too many requests response has a 2xx status code

func (*RotateClientSecretAsDeveloperTooManyRequests) String

type RotateClientSecretAsDeveloperUnauthorized

type RotateClientSecretAsDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewRotateClientSecretAsDeveloperUnauthorized

func NewRotateClientSecretAsDeveloperUnauthorized() *RotateClientSecretAsDeveloperUnauthorized

NewRotateClientSecretAsDeveloperUnauthorized creates a RotateClientSecretAsDeveloperUnauthorized with default headers values

func (*RotateClientSecretAsDeveloperUnauthorized) Code

Code gets the status code for the rotate client secret as developer unauthorized response

func (*RotateClientSecretAsDeveloperUnauthorized) Error

func (*RotateClientSecretAsDeveloperUnauthorized) GetPayload

func (*RotateClientSecretAsDeveloperUnauthorized) IsClientError

IsClientError returns true when this rotate client secret as developer unauthorized response has a 4xx status code

func (*RotateClientSecretAsDeveloperUnauthorized) IsCode

IsCode returns true when this rotate client secret as developer unauthorized response a status code equal to that given

func (*RotateClientSecretAsDeveloperUnauthorized) IsRedirect

IsRedirect returns true when this rotate client secret as developer unauthorized response has a 3xx status code

func (*RotateClientSecretAsDeveloperUnauthorized) IsServerError

IsServerError returns true when this rotate client secret as developer unauthorized response has a 5xx status code

func (*RotateClientSecretAsDeveloperUnauthorized) IsSuccess

IsSuccess returns true when this rotate client secret as developer unauthorized response has a 2xx status code

func (*RotateClientSecretAsDeveloperUnauthorized) String

type UpdateClientForDeveloperBadRequest

type UpdateClientForDeveloperBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewUpdateClientForDeveloperBadRequest

func NewUpdateClientForDeveloperBadRequest() *UpdateClientForDeveloperBadRequest

NewUpdateClientForDeveloperBadRequest creates a UpdateClientForDeveloperBadRequest with default headers values

func (*UpdateClientForDeveloperBadRequest) Code

Code gets the status code for the update client for developer bad request response

func (*UpdateClientForDeveloperBadRequest) Error

func (*UpdateClientForDeveloperBadRequest) GetPayload

func (*UpdateClientForDeveloperBadRequest) IsClientError

func (o *UpdateClientForDeveloperBadRequest) IsClientError() bool

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

func (*UpdateClientForDeveloperBadRequest) IsCode

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

func (*UpdateClientForDeveloperBadRequest) IsRedirect

func (o *UpdateClientForDeveloperBadRequest) IsRedirect() bool

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

func (*UpdateClientForDeveloperBadRequest) IsServerError

func (o *UpdateClientForDeveloperBadRequest) IsServerError() bool

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

func (*UpdateClientForDeveloperBadRequest) IsSuccess

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

func (*UpdateClientForDeveloperBadRequest) String

type UpdateClientForDeveloperForbidden

type UpdateClientForDeveloperForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewUpdateClientForDeveloperForbidden

func NewUpdateClientForDeveloperForbidden() *UpdateClientForDeveloperForbidden

NewUpdateClientForDeveloperForbidden creates a UpdateClientForDeveloperForbidden with default headers values

func (*UpdateClientForDeveloperForbidden) Code

Code gets the status code for the update client for developer forbidden response

func (*UpdateClientForDeveloperForbidden) Error

func (*UpdateClientForDeveloperForbidden) GetPayload

func (*UpdateClientForDeveloperForbidden) IsClientError

func (o *UpdateClientForDeveloperForbidden) IsClientError() bool

IsClientError returns true when this update client for developer forbidden response has a 4xx status code

func (*UpdateClientForDeveloperForbidden) IsCode

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

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

func (*UpdateClientForDeveloperForbidden) IsRedirect

func (o *UpdateClientForDeveloperForbidden) IsRedirect() bool

IsRedirect returns true when this update client for developer forbidden response has a 3xx status code

func (*UpdateClientForDeveloperForbidden) IsServerError

func (o *UpdateClientForDeveloperForbidden) IsServerError() bool

IsServerError returns true when this update client for developer forbidden response has a 5xx status code

func (*UpdateClientForDeveloperForbidden) IsSuccess

func (o *UpdateClientForDeveloperForbidden) IsSuccess() bool

IsSuccess returns true when this update client for developer forbidden response has a 2xx status code

func (*UpdateClientForDeveloperForbidden) String

type UpdateClientForDeveloperNotFound

type UpdateClientForDeveloperNotFound struct {
	Payload *models.Error
}

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

Not found

func NewUpdateClientForDeveloperNotFound

func NewUpdateClientForDeveloperNotFound() *UpdateClientForDeveloperNotFound

NewUpdateClientForDeveloperNotFound creates a UpdateClientForDeveloperNotFound with default headers values

func (*UpdateClientForDeveloperNotFound) Code

Code gets the status code for the update client for developer not found response

func (*UpdateClientForDeveloperNotFound) Error

func (*UpdateClientForDeveloperNotFound) GetPayload

func (*UpdateClientForDeveloperNotFound) IsClientError

func (o *UpdateClientForDeveloperNotFound) IsClientError() bool

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

func (*UpdateClientForDeveloperNotFound) IsCode

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

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

func (*UpdateClientForDeveloperNotFound) IsRedirect

func (o *UpdateClientForDeveloperNotFound) IsRedirect() bool

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

func (*UpdateClientForDeveloperNotFound) IsServerError

func (o *UpdateClientForDeveloperNotFound) IsServerError() bool

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

func (*UpdateClientForDeveloperNotFound) IsSuccess

func (o *UpdateClientForDeveloperNotFound) IsSuccess() bool

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

func (*UpdateClientForDeveloperNotFound) String

type UpdateClientForDeveloperOK

type UpdateClientForDeveloperOK struct {
	Payload *models.ClientDeveloperResponse
}

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

Update client

func NewUpdateClientForDeveloperOK

func NewUpdateClientForDeveloperOK() *UpdateClientForDeveloperOK

NewUpdateClientForDeveloperOK creates a UpdateClientForDeveloperOK with default headers values

func (*UpdateClientForDeveloperOK) Code

func (o *UpdateClientForDeveloperOK) Code() int

Code gets the status code for the update client for developer o k response

func (*UpdateClientForDeveloperOK) Error

func (*UpdateClientForDeveloperOK) GetPayload

func (*UpdateClientForDeveloperOK) IsClientError

func (o *UpdateClientForDeveloperOK) IsClientError() bool

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

func (*UpdateClientForDeveloperOK) IsCode

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

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

func (*UpdateClientForDeveloperOK) IsRedirect

func (o *UpdateClientForDeveloperOK) IsRedirect() bool

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

func (*UpdateClientForDeveloperOK) IsServerError

func (o *UpdateClientForDeveloperOK) IsServerError() bool

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

func (*UpdateClientForDeveloperOK) IsSuccess

func (o *UpdateClientForDeveloperOK) IsSuccess() bool

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

func (*UpdateClientForDeveloperOK) String

func (o *UpdateClientForDeveloperOK) String() string

type UpdateClientForDeveloperParams

type UpdateClientForDeveloperParams struct {

	// Client.
	Client *models.UpdateClientDeveloperRequest

	/* Cid.

	   Client id

	   Default: "default"
	*/
	Cid string

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

UpdateClientForDeveloperParams contains all the parameters to send to the API endpoint

for the update client for developer operation.

Typically these are written to a http.Request.

func NewUpdateClientForDeveloperParams

func NewUpdateClientForDeveloperParams() *UpdateClientForDeveloperParams

NewUpdateClientForDeveloperParams creates a new UpdateClientForDeveloperParams 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 NewUpdateClientForDeveloperParamsWithContext

func NewUpdateClientForDeveloperParamsWithContext(ctx context.Context) *UpdateClientForDeveloperParams

NewUpdateClientForDeveloperParamsWithContext creates a new UpdateClientForDeveloperParams object with the ability to set a context for a request.

func NewUpdateClientForDeveloperParamsWithHTTPClient

func NewUpdateClientForDeveloperParamsWithHTTPClient(client *http.Client) *UpdateClientForDeveloperParams

NewUpdateClientForDeveloperParamsWithHTTPClient creates a new UpdateClientForDeveloperParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateClientForDeveloperParamsWithTimeout

func NewUpdateClientForDeveloperParamsWithTimeout(timeout time.Duration) *UpdateClientForDeveloperParams

NewUpdateClientForDeveloperParamsWithTimeout creates a new UpdateClientForDeveloperParams object with the ability to set a timeout on a request.

func (*UpdateClientForDeveloperParams) SetCid

func (o *UpdateClientForDeveloperParams) SetCid(cid string)

SetCid adds the cid to the update client for developer params

func (*UpdateClientForDeveloperParams) SetClient

SetClient adds the client to the update client for developer params

func (*UpdateClientForDeveloperParams) SetContext

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

SetContext adds the context to the update client for developer params

func (*UpdateClientForDeveloperParams) SetDefaults

func (o *UpdateClientForDeveloperParams) SetDefaults()

SetDefaults hydrates default values in the update client for developer params (not the query body).

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

func (*UpdateClientForDeveloperParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update client for developer params

func (*UpdateClientForDeveloperParams) SetTimeout

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

SetTimeout adds the timeout to the update client for developer params

func (*UpdateClientForDeveloperParams) WithCid

WithCid adds the cid to the update client for developer params

func (*UpdateClientForDeveloperParams) WithClient

WithClient adds the client to the update client for developer params

func (*UpdateClientForDeveloperParams) WithContext

WithContext adds the context to the update client for developer params

func (*UpdateClientForDeveloperParams) WithDefaults

WithDefaults hydrates default values in the update client for developer params (not the query body).

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

func (*UpdateClientForDeveloperParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update client for developer params

func (*UpdateClientForDeveloperParams) WithTimeout

WithTimeout adds the timeout to the update client for developer params

func (*UpdateClientForDeveloperParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateClientForDeveloperReader

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

UpdateClientForDeveloperReader is a Reader for the UpdateClientForDeveloper structure.

func (*UpdateClientForDeveloperReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateClientForDeveloperTooManyRequests

type UpdateClientForDeveloperTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewUpdateClientForDeveloperTooManyRequests

func NewUpdateClientForDeveloperTooManyRequests() *UpdateClientForDeveloperTooManyRequests

NewUpdateClientForDeveloperTooManyRequests creates a UpdateClientForDeveloperTooManyRequests with default headers values

func (*UpdateClientForDeveloperTooManyRequests) Code

Code gets the status code for the update client for developer too many requests response

func (*UpdateClientForDeveloperTooManyRequests) Error

func (*UpdateClientForDeveloperTooManyRequests) GetPayload

func (*UpdateClientForDeveloperTooManyRequests) IsClientError

func (o *UpdateClientForDeveloperTooManyRequests) IsClientError() bool

IsClientError returns true when this update client for developer too many requests response has a 4xx status code

func (*UpdateClientForDeveloperTooManyRequests) IsCode

IsCode returns true when this update client for developer too many requests response a status code equal to that given

func (*UpdateClientForDeveloperTooManyRequests) IsRedirect

IsRedirect returns true when this update client for developer too many requests response has a 3xx status code

func (*UpdateClientForDeveloperTooManyRequests) IsServerError

func (o *UpdateClientForDeveloperTooManyRequests) IsServerError() bool

IsServerError returns true when this update client for developer too many requests response has a 5xx status code

func (*UpdateClientForDeveloperTooManyRequests) IsSuccess

IsSuccess returns true when this update client for developer too many requests response has a 2xx status code

func (*UpdateClientForDeveloperTooManyRequests) String

type UpdateClientForDeveloperUnauthorized

type UpdateClientForDeveloperUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewUpdateClientForDeveloperUnauthorized

func NewUpdateClientForDeveloperUnauthorized() *UpdateClientForDeveloperUnauthorized

NewUpdateClientForDeveloperUnauthorized creates a UpdateClientForDeveloperUnauthorized with default headers values

func (*UpdateClientForDeveloperUnauthorized) Code

Code gets the status code for the update client for developer unauthorized response

func (*UpdateClientForDeveloperUnauthorized) Error

func (*UpdateClientForDeveloperUnauthorized) GetPayload

func (*UpdateClientForDeveloperUnauthorized) IsClientError

func (o *UpdateClientForDeveloperUnauthorized) IsClientError() bool

IsClientError returns true when this update client for developer unauthorized response has a 4xx status code

func (*UpdateClientForDeveloperUnauthorized) IsCode

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

func (*UpdateClientForDeveloperUnauthorized) IsRedirect

IsRedirect returns true when this update client for developer unauthorized response has a 3xx status code

func (*UpdateClientForDeveloperUnauthorized) IsServerError

func (o *UpdateClientForDeveloperUnauthorized) IsServerError() bool

IsServerError returns true when this update client for developer unauthorized response has a 5xx status code

func (*UpdateClientForDeveloperUnauthorized) IsSuccess

IsSuccess returns true when this update client for developer unauthorized response has a 2xx status code

func (*UpdateClientForDeveloperUnauthorized) String

type UpdateClientForDeveloperUnprocessableEntity

type UpdateClientForDeveloperUnprocessableEntity struct {
	Payload *models.Error
}

UpdateClientForDeveloperUnprocessableEntity describes a response with status code 422, with default header values.

Unprocessable entity

func NewUpdateClientForDeveloperUnprocessableEntity

func NewUpdateClientForDeveloperUnprocessableEntity() *UpdateClientForDeveloperUnprocessableEntity

NewUpdateClientForDeveloperUnprocessableEntity creates a UpdateClientForDeveloperUnprocessableEntity with default headers values

func (*UpdateClientForDeveloperUnprocessableEntity) Code

Code gets the status code for the update client for developer unprocessable entity response

func (*UpdateClientForDeveloperUnprocessableEntity) Error

func (*UpdateClientForDeveloperUnprocessableEntity) GetPayload

func (*UpdateClientForDeveloperUnprocessableEntity) IsClientError

IsClientError returns true when this update client for developer unprocessable entity response has a 4xx status code

func (*UpdateClientForDeveloperUnprocessableEntity) IsCode

IsCode returns true when this update client for developer unprocessable entity response a status code equal to that given

func (*UpdateClientForDeveloperUnprocessableEntity) IsRedirect

IsRedirect returns true when this update client for developer unprocessable entity response has a 3xx status code

func (*UpdateClientForDeveloperUnprocessableEntity) IsServerError

IsServerError returns true when this update client for developer unprocessable entity response has a 5xx status code

func (*UpdateClientForDeveloperUnprocessableEntity) IsSuccess

IsSuccess returns true when this update client for developer unprocessable entity response has a 2xx status code

func (*UpdateClientForDeveloperUnprocessableEntity) String

Jump to

Keyboard shortcuts

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