custom_apps

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 custom apps API

func (*Client) CreateCustomApp

func (a *Client) CreateCustomApp(params *CreateCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateCustomAppCreated, error)

CreateCustomApp creates a custom app

Creates a customApp

func (*Client) DeleteCustomApp

func (a *Client) DeleteCustomApp(params *DeleteCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCustomAppNoContent, error)

DeleteCustomApp deletes custom app

Deletes the CustomApp.

func (*Client) GetCustomApp

func (a *Client) GetCustomApp(params *GetCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCustomAppOK, error)

GetCustomApp gets custom app

Returns a CustomApp and its content.

func (*Client) ListServerCustomApps

func (a *Client) ListServerCustomApps(params *ListServerCustomAppsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServerCustomAppsOK, error)

ListServerCustomApps lists custom apps

Returns list of customApps for server

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateCustomApp

func (a *Client) UpdateCustomApp(params *UpdateCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCustomAppOK, error)

UpdateCustomApp updates a custom app

Updates an existing CustomApp

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateCustomApp(params *CreateCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateCustomAppCreated, error)

	DeleteCustomApp(params *DeleteCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCustomAppNoContent, error)

	GetCustomApp(params *GetCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCustomAppOK, error)

	ListServerCustomApps(params *ListServerCustomAppsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServerCustomAppsOK, error)

	UpdateCustomApp(params *UpdateCustomAppParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateCustomAppOK, 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 custom apps API client.

type CreateCustomAppBadRequest

type CreateCustomAppBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewCreateCustomAppBadRequest

func NewCreateCustomAppBadRequest() *CreateCustomAppBadRequest

NewCreateCustomAppBadRequest creates a CreateCustomAppBadRequest with default headers values

func (*CreateCustomAppBadRequest) Code

func (o *CreateCustomAppBadRequest) Code() int

Code gets the status code for the create custom app bad request response

func (*CreateCustomAppBadRequest) Error

func (o *CreateCustomAppBadRequest) Error() string

func (*CreateCustomAppBadRequest) GetPayload

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

func (*CreateCustomAppBadRequest) IsClientError

func (o *CreateCustomAppBadRequest) IsClientError() bool

IsClientError returns true when this create custom app bad request response has a 4xx status code

func (*CreateCustomAppBadRequest) IsCode

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

IsCode returns true when this create custom app bad request response a status code equal to that given

func (*CreateCustomAppBadRequest) IsRedirect

func (o *CreateCustomAppBadRequest) IsRedirect() bool

IsRedirect returns true when this create custom app bad request response has a 3xx status code

func (*CreateCustomAppBadRequest) IsServerError

func (o *CreateCustomAppBadRequest) IsServerError() bool

IsServerError returns true when this create custom app bad request response has a 5xx status code

func (*CreateCustomAppBadRequest) IsSuccess

func (o *CreateCustomAppBadRequest) IsSuccess() bool

IsSuccess returns true when this create custom app bad request response has a 2xx status code

func (*CreateCustomAppBadRequest) String

func (o *CreateCustomAppBadRequest) String() string

type CreateCustomAppConflict

type CreateCustomAppConflict struct {
	Payload *models.Error
}

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

Conflict

func NewCreateCustomAppConflict

func NewCreateCustomAppConflict() *CreateCustomAppConflict

NewCreateCustomAppConflict creates a CreateCustomAppConflict with default headers values

func (*CreateCustomAppConflict) Code

func (o *CreateCustomAppConflict) Code() int

Code gets the status code for the create custom app conflict response

func (*CreateCustomAppConflict) Error

func (o *CreateCustomAppConflict) Error() string

func (*CreateCustomAppConflict) GetPayload

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

func (*CreateCustomAppConflict) IsClientError

func (o *CreateCustomAppConflict) IsClientError() bool

IsClientError returns true when this create custom app conflict response has a 4xx status code

func (*CreateCustomAppConflict) IsCode

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

IsCode returns true when this create custom app conflict response a status code equal to that given

func (*CreateCustomAppConflict) IsRedirect

func (o *CreateCustomAppConflict) IsRedirect() bool

IsRedirect returns true when this create custom app conflict response has a 3xx status code

func (*CreateCustomAppConflict) IsServerError

func (o *CreateCustomAppConflict) IsServerError() bool

IsServerError returns true when this create custom app conflict response has a 5xx status code

func (*CreateCustomAppConflict) IsSuccess

func (o *CreateCustomAppConflict) IsSuccess() bool

IsSuccess returns true when this create custom app conflict response has a 2xx status code

func (*CreateCustomAppConflict) String

func (o *CreateCustomAppConflict) String() string

type CreateCustomAppCreated

type CreateCustomAppCreated struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.CustomAppResponse
}

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

CustomApp response

func NewCreateCustomAppCreated

func NewCreateCustomAppCreated() *CreateCustomAppCreated

NewCreateCustomAppCreated creates a CreateCustomAppCreated with default headers values

func (*CreateCustomAppCreated) Code

func (o *CreateCustomAppCreated) Code() int

Code gets the status code for the create custom app created response

func (*CreateCustomAppCreated) Error

func (o *CreateCustomAppCreated) Error() string

func (*CreateCustomAppCreated) GetPayload

func (*CreateCustomAppCreated) IsClientError

func (o *CreateCustomAppCreated) IsClientError() bool

IsClientError returns true when this create custom app created response has a 4xx status code

func (*CreateCustomAppCreated) IsCode

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

IsCode returns true when this create custom app created response a status code equal to that given

func (*CreateCustomAppCreated) IsRedirect

func (o *CreateCustomAppCreated) IsRedirect() bool

IsRedirect returns true when this create custom app created response has a 3xx status code

func (*CreateCustomAppCreated) IsServerError

func (o *CreateCustomAppCreated) IsServerError() bool

IsServerError returns true when this create custom app created response has a 5xx status code

func (*CreateCustomAppCreated) IsSuccess

func (o *CreateCustomAppCreated) IsSuccess() bool

IsSuccess returns true when this create custom app created response has a 2xx status code

func (*CreateCustomAppCreated) String

func (o *CreateCustomAppCreated) String() string

type CreateCustomAppForbidden

type CreateCustomAppForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewCreateCustomAppForbidden

func NewCreateCustomAppForbidden() *CreateCustomAppForbidden

NewCreateCustomAppForbidden creates a CreateCustomAppForbidden with default headers values

func (*CreateCustomAppForbidden) Code

func (o *CreateCustomAppForbidden) Code() int

Code gets the status code for the create custom app forbidden response

func (*CreateCustomAppForbidden) Error

func (o *CreateCustomAppForbidden) Error() string

func (*CreateCustomAppForbidden) GetPayload

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

func (*CreateCustomAppForbidden) IsClientError

func (o *CreateCustomAppForbidden) IsClientError() bool

IsClientError returns true when this create custom app forbidden response has a 4xx status code

func (*CreateCustomAppForbidden) IsCode

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

IsCode returns true when this create custom app forbidden response a status code equal to that given

func (*CreateCustomAppForbidden) IsRedirect

func (o *CreateCustomAppForbidden) IsRedirect() bool

IsRedirect returns true when this create custom app forbidden response has a 3xx status code

func (*CreateCustomAppForbidden) IsServerError

func (o *CreateCustomAppForbidden) IsServerError() bool

IsServerError returns true when this create custom app forbidden response has a 5xx status code

func (*CreateCustomAppForbidden) IsSuccess

func (o *CreateCustomAppForbidden) IsSuccess() bool

IsSuccess returns true when this create custom app forbidden response has a 2xx status code

func (*CreateCustomAppForbidden) String

func (o *CreateCustomAppForbidden) String() string

type CreateCustomAppNotFound

type CreateCustomAppNotFound struct {
	Payload *models.Error
}

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

Not found

func NewCreateCustomAppNotFound

func NewCreateCustomAppNotFound() *CreateCustomAppNotFound

NewCreateCustomAppNotFound creates a CreateCustomAppNotFound with default headers values

func (*CreateCustomAppNotFound) Code

func (o *CreateCustomAppNotFound) Code() int

Code gets the status code for the create custom app not found response

func (*CreateCustomAppNotFound) Error

func (o *CreateCustomAppNotFound) Error() string

func (*CreateCustomAppNotFound) GetPayload

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

func (*CreateCustomAppNotFound) IsClientError

func (o *CreateCustomAppNotFound) IsClientError() bool

IsClientError returns true when this create custom app not found response has a 4xx status code

func (*CreateCustomAppNotFound) IsCode

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

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

func (*CreateCustomAppNotFound) IsRedirect

func (o *CreateCustomAppNotFound) IsRedirect() bool

IsRedirect returns true when this create custom app not found response has a 3xx status code

func (*CreateCustomAppNotFound) IsServerError

func (o *CreateCustomAppNotFound) IsServerError() bool

IsServerError returns true when this create custom app not found response has a 5xx status code

func (*CreateCustomAppNotFound) IsSuccess

func (o *CreateCustomAppNotFound) IsSuccess() bool

IsSuccess returns true when this create custom app not found response has a 2xx status code

func (*CreateCustomAppNotFound) String

func (o *CreateCustomAppNotFound) String() string

type CreateCustomAppParams

type CreateCustomAppParams struct {

	// CustomApp.
	CustomApp *models.CustomApp

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id
	*/
	Wid string

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

CreateCustomAppParams contains all the parameters to send to the API endpoint

for the create custom app operation.

Typically these are written to a http.Request.

func NewCreateCustomAppParams

func NewCreateCustomAppParams() *CreateCustomAppParams

NewCreateCustomAppParams creates a new CreateCustomAppParams 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 NewCreateCustomAppParamsWithContext

func NewCreateCustomAppParamsWithContext(ctx context.Context) *CreateCustomAppParams

NewCreateCustomAppParamsWithContext creates a new CreateCustomAppParams object with the ability to set a context for a request.

func NewCreateCustomAppParamsWithHTTPClient

func NewCreateCustomAppParamsWithHTTPClient(client *http.Client) *CreateCustomAppParams

NewCreateCustomAppParamsWithHTTPClient creates a new CreateCustomAppParams object with the ability to set a custom HTTPClient for a request.

func NewCreateCustomAppParamsWithTimeout

func NewCreateCustomAppParamsWithTimeout(timeout time.Duration) *CreateCustomAppParams

NewCreateCustomAppParamsWithTimeout creates a new CreateCustomAppParams object with the ability to set a timeout on a request.

func (*CreateCustomAppParams) SetContext

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

SetContext adds the context to the create custom app params

func (*CreateCustomAppParams) SetCustomApp

func (o *CreateCustomAppParams) SetCustomApp(customApp *models.CustomApp)

SetCustomApp adds the customApp to the create custom app params

func (*CreateCustomAppParams) SetDefaults

func (o *CreateCustomAppParams) SetDefaults()

SetDefaults hydrates default values in the create custom app params (not the query body).

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

func (*CreateCustomAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create custom app params

func (*CreateCustomAppParams) SetIfMatch

func (o *CreateCustomAppParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the create custom app params

func (*CreateCustomAppParams) SetTimeout

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

SetTimeout adds the timeout to the create custom app params

func (*CreateCustomAppParams) SetWid

func (o *CreateCustomAppParams) SetWid(wid string)

SetWid adds the wid to the create custom app params

func (*CreateCustomAppParams) WithContext

WithContext adds the context to the create custom app params

func (*CreateCustomAppParams) WithCustomApp

func (o *CreateCustomAppParams) WithCustomApp(customApp *models.CustomApp) *CreateCustomAppParams

WithCustomApp adds the customApp to the create custom app params

func (*CreateCustomAppParams) WithDefaults

func (o *CreateCustomAppParams) WithDefaults() *CreateCustomAppParams

WithDefaults hydrates default values in the create custom app params (not the query body).

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

func (*CreateCustomAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create custom app params

func (*CreateCustomAppParams) WithIfMatch

func (o *CreateCustomAppParams) WithIfMatch(ifMatch *string) *CreateCustomAppParams

WithIfMatch adds the ifMatch to the create custom app params

func (*CreateCustomAppParams) WithTimeout

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

WithTimeout adds the timeout to the create custom app params

func (*CreateCustomAppParams) WithWid

WithWid adds the wid to the create custom app params

func (*CreateCustomAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateCustomAppReader

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

CreateCustomAppReader is a Reader for the CreateCustomApp structure.

func (*CreateCustomAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateCustomAppTooManyRequests

type CreateCustomAppTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewCreateCustomAppTooManyRequests

func NewCreateCustomAppTooManyRequests() *CreateCustomAppTooManyRequests

NewCreateCustomAppTooManyRequests creates a CreateCustomAppTooManyRequests with default headers values

func (*CreateCustomAppTooManyRequests) Code

Code gets the status code for the create custom app too many requests response

func (*CreateCustomAppTooManyRequests) Error

func (*CreateCustomAppTooManyRequests) GetPayload

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

func (*CreateCustomAppTooManyRequests) IsClientError

func (o *CreateCustomAppTooManyRequests) IsClientError() bool

IsClientError returns true when this create custom app too many requests response has a 4xx status code

func (*CreateCustomAppTooManyRequests) IsCode

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

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

func (*CreateCustomAppTooManyRequests) IsRedirect

func (o *CreateCustomAppTooManyRequests) IsRedirect() bool

IsRedirect returns true when this create custom app too many requests response has a 3xx status code

func (*CreateCustomAppTooManyRequests) IsServerError

func (o *CreateCustomAppTooManyRequests) IsServerError() bool

IsServerError returns true when this create custom app too many requests response has a 5xx status code

func (*CreateCustomAppTooManyRequests) IsSuccess

func (o *CreateCustomAppTooManyRequests) IsSuccess() bool

IsSuccess returns true when this create custom app too many requests response has a 2xx status code

func (*CreateCustomAppTooManyRequests) String

type CreateCustomAppUnauthorized

type CreateCustomAppUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewCreateCustomAppUnauthorized

func NewCreateCustomAppUnauthorized() *CreateCustomAppUnauthorized

NewCreateCustomAppUnauthorized creates a CreateCustomAppUnauthorized with default headers values

func (*CreateCustomAppUnauthorized) Code

func (o *CreateCustomAppUnauthorized) Code() int

Code gets the status code for the create custom app unauthorized response

func (*CreateCustomAppUnauthorized) Error

func (*CreateCustomAppUnauthorized) GetPayload

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

func (*CreateCustomAppUnauthorized) IsClientError

func (o *CreateCustomAppUnauthorized) IsClientError() bool

IsClientError returns true when this create custom app unauthorized response has a 4xx status code

func (*CreateCustomAppUnauthorized) IsCode

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

IsCode returns true when this create custom app unauthorized response a status code equal to that given

func (*CreateCustomAppUnauthorized) IsRedirect

func (o *CreateCustomAppUnauthorized) IsRedirect() bool

IsRedirect returns true when this create custom app unauthorized response has a 3xx status code

func (*CreateCustomAppUnauthorized) IsServerError

func (o *CreateCustomAppUnauthorized) IsServerError() bool

IsServerError returns true when this create custom app unauthorized response has a 5xx status code

func (*CreateCustomAppUnauthorized) IsSuccess

func (o *CreateCustomAppUnauthorized) IsSuccess() bool

IsSuccess returns true when this create custom app unauthorized response has a 2xx status code

func (*CreateCustomAppUnauthorized) String

func (o *CreateCustomAppUnauthorized) String() string

type CreateCustomAppUnprocessableEntity

type CreateCustomAppUnprocessableEntity struct {
	Payload *models.Error
}

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

Unprocessable entity

func NewCreateCustomAppUnprocessableEntity

func NewCreateCustomAppUnprocessableEntity() *CreateCustomAppUnprocessableEntity

NewCreateCustomAppUnprocessableEntity creates a CreateCustomAppUnprocessableEntity with default headers values

func (*CreateCustomAppUnprocessableEntity) Code

Code gets the status code for the create custom app unprocessable entity response

func (*CreateCustomAppUnprocessableEntity) Error

func (*CreateCustomAppUnprocessableEntity) GetPayload

func (*CreateCustomAppUnprocessableEntity) IsClientError

func (o *CreateCustomAppUnprocessableEntity) IsClientError() bool

IsClientError returns true when this create custom app unprocessable entity response has a 4xx status code

func (*CreateCustomAppUnprocessableEntity) IsCode

IsCode returns true when this create custom app unprocessable entity response a status code equal to that given

func (*CreateCustomAppUnprocessableEntity) IsRedirect

func (o *CreateCustomAppUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this create custom app unprocessable entity response has a 3xx status code

func (*CreateCustomAppUnprocessableEntity) IsServerError

func (o *CreateCustomAppUnprocessableEntity) IsServerError() bool

IsServerError returns true when this create custom app unprocessable entity response has a 5xx status code

func (*CreateCustomAppUnprocessableEntity) IsSuccess

IsSuccess returns true when this create custom app unprocessable entity response has a 2xx status code

func (*CreateCustomAppUnprocessableEntity) String

type DeleteCustomAppBadRequest

type DeleteCustomAppBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewDeleteCustomAppBadRequest

func NewDeleteCustomAppBadRequest() *DeleteCustomAppBadRequest

NewDeleteCustomAppBadRequest creates a DeleteCustomAppBadRequest with default headers values

func (*DeleteCustomAppBadRequest) Code

func (o *DeleteCustomAppBadRequest) Code() int

Code gets the status code for the delete custom app bad request response

func (*DeleteCustomAppBadRequest) Error

func (o *DeleteCustomAppBadRequest) Error() string

func (*DeleteCustomAppBadRequest) GetPayload

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

func (*DeleteCustomAppBadRequest) IsClientError

func (o *DeleteCustomAppBadRequest) IsClientError() bool

IsClientError returns true when this delete custom app bad request response has a 4xx status code

func (*DeleteCustomAppBadRequest) IsCode

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

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

func (*DeleteCustomAppBadRequest) IsRedirect

func (o *DeleteCustomAppBadRequest) IsRedirect() bool

IsRedirect returns true when this delete custom app bad request response has a 3xx status code

func (*DeleteCustomAppBadRequest) IsServerError

func (o *DeleteCustomAppBadRequest) IsServerError() bool

IsServerError returns true when this delete custom app bad request response has a 5xx status code

func (*DeleteCustomAppBadRequest) IsSuccess

func (o *DeleteCustomAppBadRequest) IsSuccess() bool

IsSuccess returns true when this delete custom app bad request response has a 2xx status code

func (*DeleteCustomAppBadRequest) String

func (o *DeleteCustomAppBadRequest) String() string

type DeleteCustomAppForbidden

type DeleteCustomAppForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewDeleteCustomAppForbidden

func NewDeleteCustomAppForbidden() *DeleteCustomAppForbidden

NewDeleteCustomAppForbidden creates a DeleteCustomAppForbidden with default headers values

func (*DeleteCustomAppForbidden) Code

func (o *DeleteCustomAppForbidden) Code() int

Code gets the status code for the delete custom app forbidden response

func (*DeleteCustomAppForbidden) Error

func (o *DeleteCustomAppForbidden) Error() string

func (*DeleteCustomAppForbidden) GetPayload

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

func (*DeleteCustomAppForbidden) IsClientError

func (o *DeleteCustomAppForbidden) IsClientError() bool

IsClientError returns true when this delete custom app forbidden response has a 4xx status code

func (*DeleteCustomAppForbidden) IsCode

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

IsCode returns true when this delete custom app forbidden response a status code equal to that given

func (*DeleteCustomAppForbidden) IsRedirect

func (o *DeleteCustomAppForbidden) IsRedirect() bool

IsRedirect returns true when this delete custom app forbidden response has a 3xx status code

func (*DeleteCustomAppForbidden) IsServerError

func (o *DeleteCustomAppForbidden) IsServerError() bool

IsServerError returns true when this delete custom app forbidden response has a 5xx status code

func (*DeleteCustomAppForbidden) IsSuccess

func (o *DeleteCustomAppForbidden) IsSuccess() bool

IsSuccess returns true when this delete custom app forbidden response has a 2xx status code

func (*DeleteCustomAppForbidden) String

func (o *DeleteCustomAppForbidden) String() string

type DeleteCustomAppNoContent

type DeleteCustomAppNoContent struct {
}

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

CustomApp has been deleted

func NewDeleteCustomAppNoContent

func NewDeleteCustomAppNoContent() *DeleteCustomAppNoContent

NewDeleteCustomAppNoContent creates a DeleteCustomAppNoContent with default headers values

func (*DeleteCustomAppNoContent) Code

func (o *DeleteCustomAppNoContent) Code() int

Code gets the status code for the delete custom app no content response

func (*DeleteCustomAppNoContent) Error

func (o *DeleteCustomAppNoContent) Error() string

func (*DeleteCustomAppNoContent) IsClientError

func (o *DeleteCustomAppNoContent) IsClientError() bool

IsClientError returns true when this delete custom app no content response has a 4xx status code

func (*DeleteCustomAppNoContent) IsCode

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

IsCode returns true when this delete custom app no content response a status code equal to that given

func (*DeleteCustomAppNoContent) IsRedirect

func (o *DeleteCustomAppNoContent) IsRedirect() bool

IsRedirect returns true when this delete custom app no content response has a 3xx status code

func (*DeleteCustomAppNoContent) IsServerError

func (o *DeleteCustomAppNoContent) IsServerError() bool

IsServerError returns true when this delete custom app no content response has a 5xx status code

func (*DeleteCustomAppNoContent) IsSuccess

func (o *DeleteCustomAppNoContent) IsSuccess() bool

IsSuccess returns true when this delete custom app no content response has a 2xx status code

func (*DeleteCustomAppNoContent) String

func (o *DeleteCustomAppNoContent) String() string

type DeleteCustomAppNotFound

type DeleteCustomAppNotFound struct {
	Payload *models.Error
}

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

Not found

func NewDeleteCustomAppNotFound

func NewDeleteCustomAppNotFound() *DeleteCustomAppNotFound

NewDeleteCustomAppNotFound creates a DeleteCustomAppNotFound with default headers values

func (*DeleteCustomAppNotFound) Code

func (o *DeleteCustomAppNotFound) Code() int

Code gets the status code for the delete custom app not found response

func (*DeleteCustomAppNotFound) Error

func (o *DeleteCustomAppNotFound) Error() string

func (*DeleteCustomAppNotFound) GetPayload

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

func (*DeleteCustomAppNotFound) IsClientError

func (o *DeleteCustomAppNotFound) IsClientError() bool

IsClientError returns true when this delete custom app not found response has a 4xx status code

func (*DeleteCustomAppNotFound) IsCode

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

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

func (*DeleteCustomAppNotFound) IsRedirect

func (o *DeleteCustomAppNotFound) IsRedirect() bool

IsRedirect returns true when this delete custom app not found response has a 3xx status code

func (*DeleteCustomAppNotFound) IsServerError

func (o *DeleteCustomAppNotFound) IsServerError() bool

IsServerError returns true when this delete custom app not found response has a 5xx status code

func (*DeleteCustomAppNotFound) IsSuccess

func (o *DeleteCustomAppNotFound) IsSuccess() bool

IsSuccess returns true when this delete custom app not found response has a 2xx status code

func (*DeleteCustomAppNotFound) String

func (o *DeleteCustomAppNotFound) String() string

type DeleteCustomAppParams

type DeleteCustomAppParams struct {

	/* CustomAppID.

	   CustomApp ID
	*/
	CustomAppID string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id
	*/
	Wid string

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

DeleteCustomAppParams contains all the parameters to send to the API endpoint

for the delete custom app operation.

Typically these are written to a http.Request.

func NewDeleteCustomAppParams

func NewDeleteCustomAppParams() *DeleteCustomAppParams

NewDeleteCustomAppParams creates a new DeleteCustomAppParams 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 NewDeleteCustomAppParamsWithContext

func NewDeleteCustomAppParamsWithContext(ctx context.Context) *DeleteCustomAppParams

NewDeleteCustomAppParamsWithContext creates a new DeleteCustomAppParams object with the ability to set a context for a request.

func NewDeleteCustomAppParamsWithHTTPClient

func NewDeleteCustomAppParamsWithHTTPClient(client *http.Client) *DeleteCustomAppParams

NewDeleteCustomAppParamsWithHTTPClient creates a new DeleteCustomAppParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteCustomAppParamsWithTimeout

func NewDeleteCustomAppParamsWithTimeout(timeout time.Duration) *DeleteCustomAppParams

NewDeleteCustomAppParamsWithTimeout creates a new DeleteCustomAppParams object with the ability to set a timeout on a request.

func (*DeleteCustomAppParams) SetContext

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

SetContext adds the context to the delete custom app params

func (*DeleteCustomAppParams) SetCustomAppID

func (o *DeleteCustomAppParams) SetCustomAppID(customAppID string)

SetCustomAppID adds the customAppId to the delete custom app params

func (*DeleteCustomAppParams) SetDefaults

func (o *DeleteCustomAppParams) SetDefaults()

SetDefaults hydrates default values in the delete custom app params (not the query body).

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

func (*DeleteCustomAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete custom app params

func (*DeleteCustomAppParams) SetIfMatch

func (o *DeleteCustomAppParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the delete custom app params

func (*DeleteCustomAppParams) SetTimeout

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

SetTimeout adds the timeout to the delete custom app params

func (*DeleteCustomAppParams) SetWid

func (o *DeleteCustomAppParams) SetWid(wid string)

SetWid adds the wid to the delete custom app params

func (*DeleteCustomAppParams) WithContext

WithContext adds the context to the delete custom app params

func (*DeleteCustomAppParams) WithCustomAppID

func (o *DeleteCustomAppParams) WithCustomAppID(customAppID string) *DeleteCustomAppParams

WithCustomAppID adds the customAppID to the delete custom app params

func (*DeleteCustomAppParams) WithDefaults

func (o *DeleteCustomAppParams) WithDefaults() *DeleteCustomAppParams

WithDefaults hydrates default values in the delete custom app params (not the query body).

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

func (*DeleteCustomAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete custom app params

func (*DeleteCustomAppParams) WithIfMatch

func (o *DeleteCustomAppParams) WithIfMatch(ifMatch *string) *DeleteCustomAppParams

WithIfMatch adds the ifMatch to the delete custom app params

func (*DeleteCustomAppParams) WithTimeout

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

WithTimeout adds the timeout to the delete custom app params

func (*DeleteCustomAppParams) WithWid

WithWid adds the wid to the delete custom app params

func (*DeleteCustomAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteCustomAppReader

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

DeleteCustomAppReader is a Reader for the DeleteCustomApp structure.

func (*DeleteCustomAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteCustomAppTooManyRequests

type DeleteCustomAppTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewDeleteCustomAppTooManyRequests

func NewDeleteCustomAppTooManyRequests() *DeleteCustomAppTooManyRequests

NewDeleteCustomAppTooManyRequests creates a DeleteCustomAppTooManyRequests with default headers values

func (*DeleteCustomAppTooManyRequests) Code

Code gets the status code for the delete custom app too many requests response

func (*DeleteCustomAppTooManyRequests) Error

func (*DeleteCustomAppTooManyRequests) GetPayload

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

func (*DeleteCustomAppTooManyRequests) IsClientError

func (o *DeleteCustomAppTooManyRequests) IsClientError() bool

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

func (*DeleteCustomAppTooManyRequests) IsCode

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

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

func (*DeleteCustomAppTooManyRequests) IsRedirect

func (o *DeleteCustomAppTooManyRequests) IsRedirect() bool

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

func (*DeleteCustomAppTooManyRequests) IsServerError

func (o *DeleteCustomAppTooManyRequests) IsServerError() bool

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

func (*DeleteCustomAppTooManyRequests) IsSuccess

func (o *DeleteCustomAppTooManyRequests) IsSuccess() bool

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

func (*DeleteCustomAppTooManyRequests) String

type DeleteCustomAppUnauthorized

type DeleteCustomAppUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewDeleteCustomAppUnauthorized

func NewDeleteCustomAppUnauthorized() *DeleteCustomAppUnauthorized

NewDeleteCustomAppUnauthorized creates a DeleteCustomAppUnauthorized with default headers values

func (*DeleteCustomAppUnauthorized) Code

func (o *DeleteCustomAppUnauthorized) Code() int

Code gets the status code for the delete custom app unauthorized response

func (*DeleteCustomAppUnauthorized) Error

func (*DeleteCustomAppUnauthorized) GetPayload

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

func (*DeleteCustomAppUnauthorized) IsClientError

func (o *DeleteCustomAppUnauthorized) IsClientError() bool

IsClientError returns true when this delete custom app unauthorized response has a 4xx status code

func (*DeleteCustomAppUnauthorized) IsCode

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

IsCode returns true when this delete custom app unauthorized response a status code equal to that given

func (*DeleteCustomAppUnauthorized) IsRedirect

func (o *DeleteCustomAppUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete custom app unauthorized response has a 3xx status code

func (*DeleteCustomAppUnauthorized) IsServerError

func (o *DeleteCustomAppUnauthorized) IsServerError() bool

IsServerError returns true when this delete custom app unauthorized response has a 5xx status code

func (*DeleteCustomAppUnauthorized) IsSuccess

func (o *DeleteCustomAppUnauthorized) IsSuccess() bool

IsSuccess returns true when this delete custom app unauthorized response has a 2xx status code

func (*DeleteCustomAppUnauthorized) String

func (o *DeleteCustomAppUnauthorized) String() string

type GetCustomAppForbidden

type GetCustomAppForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewGetCustomAppForbidden

func NewGetCustomAppForbidden() *GetCustomAppForbidden

NewGetCustomAppForbidden creates a GetCustomAppForbidden with default headers values

func (*GetCustomAppForbidden) Code

func (o *GetCustomAppForbidden) Code() int

Code gets the status code for the get custom app forbidden response

func (*GetCustomAppForbidden) Error

func (o *GetCustomAppForbidden) Error() string

func (*GetCustomAppForbidden) GetPayload

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

func (*GetCustomAppForbidden) IsClientError

func (o *GetCustomAppForbidden) IsClientError() bool

IsClientError returns true when this get custom app forbidden response has a 4xx status code

func (*GetCustomAppForbidden) IsCode

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

IsCode returns true when this get custom app forbidden response a status code equal to that given

func (*GetCustomAppForbidden) IsRedirect

func (o *GetCustomAppForbidden) IsRedirect() bool

IsRedirect returns true when this get custom app forbidden response has a 3xx status code

func (*GetCustomAppForbidden) IsServerError

func (o *GetCustomAppForbidden) IsServerError() bool

IsServerError returns true when this get custom app forbidden response has a 5xx status code

func (*GetCustomAppForbidden) IsSuccess

func (o *GetCustomAppForbidden) IsSuccess() bool

IsSuccess returns true when this get custom app forbidden response has a 2xx status code

func (*GetCustomAppForbidden) String

func (o *GetCustomAppForbidden) String() string

type GetCustomAppNotFound

type GetCustomAppNotFound struct {
	Payload *models.Error
}

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

Not found

func NewGetCustomAppNotFound

func NewGetCustomAppNotFound() *GetCustomAppNotFound

NewGetCustomAppNotFound creates a GetCustomAppNotFound with default headers values

func (*GetCustomAppNotFound) Code

func (o *GetCustomAppNotFound) Code() int

Code gets the status code for the get custom app not found response

func (*GetCustomAppNotFound) Error

func (o *GetCustomAppNotFound) Error() string

func (*GetCustomAppNotFound) GetPayload

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

func (*GetCustomAppNotFound) IsClientError

func (o *GetCustomAppNotFound) IsClientError() bool

IsClientError returns true when this get custom app not found response has a 4xx status code

func (*GetCustomAppNotFound) IsCode

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

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

func (*GetCustomAppNotFound) IsRedirect

func (o *GetCustomAppNotFound) IsRedirect() bool

IsRedirect returns true when this get custom app not found response has a 3xx status code

func (*GetCustomAppNotFound) IsServerError

func (o *GetCustomAppNotFound) IsServerError() bool

IsServerError returns true when this get custom app not found response has a 5xx status code

func (*GetCustomAppNotFound) IsSuccess

func (o *GetCustomAppNotFound) IsSuccess() bool

IsSuccess returns true when this get custom app not found response has a 2xx status code

func (*GetCustomAppNotFound) String

func (o *GetCustomAppNotFound) String() string

type GetCustomAppOK

type GetCustomAppOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.CustomAppResponse
}

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

CustomApp response

func NewGetCustomAppOK

func NewGetCustomAppOK() *GetCustomAppOK

NewGetCustomAppOK creates a GetCustomAppOK with default headers values

func (*GetCustomAppOK) Code

func (o *GetCustomAppOK) Code() int

Code gets the status code for the get custom app o k response

func (*GetCustomAppOK) Error

func (o *GetCustomAppOK) Error() string

func (*GetCustomAppOK) GetPayload

func (o *GetCustomAppOK) GetPayload() *models.CustomAppResponse

func (*GetCustomAppOK) IsClientError

func (o *GetCustomAppOK) IsClientError() bool

IsClientError returns true when this get custom app o k response has a 4xx status code

func (*GetCustomAppOK) IsCode

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

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

func (*GetCustomAppOK) IsRedirect

func (o *GetCustomAppOK) IsRedirect() bool

IsRedirect returns true when this get custom app o k response has a 3xx status code

func (*GetCustomAppOK) IsServerError

func (o *GetCustomAppOK) IsServerError() bool

IsServerError returns true when this get custom app o k response has a 5xx status code

func (*GetCustomAppOK) IsSuccess

func (o *GetCustomAppOK) IsSuccess() bool

IsSuccess returns true when this get custom app o k response has a 2xx status code

func (*GetCustomAppOK) String

func (o *GetCustomAppOK) String() string

type GetCustomAppParams

type GetCustomAppParams struct {

	/* CustomAppID.

	   CustomApp ID
	*/
	CustomAppID string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id
	*/
	Wid string

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

GetCustomAppParams contains all the parameters to send to the API endpoint

for the get custom app operation.

Typically these are written to a http.Request.

func NewGetCustomAppParams

func NewGetCustomAppParams() *GetCustomAppParams

NewGetCustomAppParams creates a new GetCustomAppParams 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 NewGetCustomAppParamsWithContext

func NewGetCustomAppParamsWithContext(ctx context.Context) *GetCustomAppParams

NewGetCustomAppParamsWithContext creates a new GetCustomAppParams object with the ability to set a context for a request.

func NewGetCustomAppParamsWithHTTPClient

func NewGetCustomAppParamsWithHTTPClient(client *http.Client) *GetCustomAppParams

NewGetCustomAppParamsWithHTTPClient creates a new GetCustomAppParams object with the ability to set a custom HTTPClient for a request.

func NewGetCustomAppParamsWithTimeout

func NewGetCustomAppParamsWithTimeout(timeout time.Duration) *GetCustomAppParams

NewGetCustomAppParamsWithTimeout creates a new GetCustomAppParams object with the ability to set a timeout on a request.

func (*GetCustomAppParams) SetContext

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

SetContext adds the context to the get custom app params

func (*GetCustomAppParams) SetCustomAppID

func (o *GetCustomAppParams) SetCustomAppID(customAppID string)

SetCustomAppID adds the customAppId to the get custom app params

func (*GetCustomAppParams) SetDefaults

func (o *GetCustomAppParams) SetDefaults()

SetDefaults hydrates default values in the get custom app params (not the query body).

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

func (*GetCustomAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get custom app params

func (*GetCustomAppParams) SetIfMatch

func (o *GetCustomAppParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the get custom app params

func (*GetCustomAppParams) SetTimeout

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

SetTimeout adds the timeout to the get custom app params

func (*GetCustomAppParams) SetWid

func (o *GetCustomAppParams) SetWid(wid string)

SetWid adds the wid to the get custom app params

func (*GetCustomAppParams) WithContext

WithContext adds the context to the get custom app params

func (*GetCustomAppParams) WithCustomAppID

func (o *GetCustomAppParams) WithCustomAppID(customAppID string) *GetCustomAppParams

WithCustomAppID adds the customAppID to the get custom app params

func (*GetCustomAppParams) WithDefaults

func (o *GetCustomAppParams) WithDefaults() *GetCustomAppParams

WithDefaults hydrates default values in the get custom app params (not the query body).

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

func (*GetCustomAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get custom app params

func (*GetCustomAppParams) WithIfMatch

func (o *GetCustomAppParams) WithIfMatch(ifMatch *string) *GetCustomAppParams

WithIfMatch adds the ifMatch to the get custom app params

func (*GetCustomAppParams) WithTimeout

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

WithTimeout adds the timeout to the get custom app params

func (*GetCustomAppParams) WithWid

func (o *GetCustomAppParams) WithWid(wid string) *GetCustomAppParams

WithWid adds the wid to the get custom app params

func (*GetCustomAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetCustomAppReader

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

GetCustomAppReader is a Reader for the GetCustomApp structure.

func (*GetCustomAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCustomAppTooManyRequests

type GetCustomAppTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewGetCustomAppTooManyRequests

func NewGetCustomAppTooManyRequests() *GetCustomAppTooManyRequests

NewGetCustomAppTooManyRequests creates a GetCustomAppTooManyRequests with default headers values

func (*GetCustomAppTooManyRequests) Code

func (o *GetCustomAppTooManyRequests) Code() int

Code gets the status code for the get custom app too many requests response

func (*GetCustomAppTooManyRequests) Error

func (*GetCustomAppTooManyRequests) GetPayload

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

func (*GetCustomAppTooManyRequests) IsClientError

func (o *GetCustomAppTooManyRequests) IsClientError() bool

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

func (*GetCustomAppTooManyRequests) IsCode

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

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

func (*GetCustomAppTooManyRequests) IsRedirect

func (o *GetCustomAppTooManyRequests) IsRedirect() bool

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

func (*GetCustomAppTooManyRequests) IsServerError

func (o *GetCustomAppTooManyRequests) IsServerError() bool

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

func (*GetCustomAppTooManyRequests) IsSuccess

func (o *GetCustomAppTooManyRequests) IsSuccess() bool

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

func (*GetCustomAppTooManyRequests) String

func (o *GetCustomAppTooManyRequests) String() string

type GetCustomAppUnauthorized

type GetCustomAppUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewGetCustomAppUnauthorized

func NewGetCustomAppUnauthorized() *GetCustomAppUnauthorized

NewGetCustomAppUnauthorized creates a GetCustomAppUnauthorized with default headers values

func (*GetCustomAppUnauthorized) Code

func (o *GetCustomAppUnauthorized) Code() int

Code gets the status code for the get custom app unauthorized response

func (*GetCustomAppUnauthorized) Error

func (o *GetCustomAppUnauthorized) Error() string

func (*GetCustomAppUnauthorized) GetPayload

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

func (*GetCustomAppUnauthorized) IsClientError

func (o *GetCustomAppUnauthorized) IsClientError() bool

IsClientError returns true when this get custom app unauthorized response has a 4xx status code

func (*GetCustomAppUnauthorized) IsCode

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

IsCode returns true when this get custom app unauthorized response a status code equal to that given

func (*GetCustomAppUnauthorized) IsRedirect

func (o *GetCustomAppUnauthorized) IsRedirect() bool

IsRedirect returns true when this get custom app unauthorized response has a 3xx status code

func (*GetCustomAppUnauthorized) IsServerError

func (o *GetCustomAppUnauthorized) IsServerError() bool

IsServerError returns true when this get custom app unauthorized response has a 5xx status code

func (*GetCustomAppUnauthorized) IsSuccess

func (o *GetCustomAppUnauthorized) IsSuccess() bool

IsSuccess returns true when this get custom app unauthorized response has a 2xx status code

func (*GetCustomAppUnauthorized) String

func (o *GetCustomAppUnauthorized) String() string

type ListServerCustomAppsForbidden

type ListServerCustomAppsForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewListServerCustomAppsForbidden

func NewListServerCustomAppsForbidden() *ListServerCustomAppsForbidden

NewListServerCustomAppsForbidden creates a ListServerCustomAppsForbidden with default headers values

func (*ListServerCustomAppsForbidden) Code

Code gets the status code for the list server custom apps forbidden response

func (*ListServerCustomAppsForbidden) Error

func (*ListServerCustomAppsForbidden) GetPayload

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

func (*ListServerCustomAppsForbidden) IsClientError

func (o *ListServerCustomAppsForbidden) IsClientError() bool

IsClientError returns true when this list server custom apps forbidden response has a 4xx status code

func (*ListServerCustomAppsForbidden) IsCode

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

IsCode returns true when this list server custom apps forbidden response a status code equal to that given

func (*ListServerCustomAppsForbidden) IsRedirect

func (o *ListServerCustomAppsForbidden) IsRedirect() bool

IsRedirect returns true when this list server custom apps forbidden response has a 3xx status code

func (*ListServerCustomAppsForbidden) IsServerError

func (o *ListServerCustomAppsForbidden) IsServerError() bool

IsServerError returns true when this list server custom apps forbidden response has a 5xx status code

func (*ListServerCustomAppsForbidden) IsSuccess

func (o *ListServerCustomAppsForbidden) IsSuccess() bool

IsSuccess returns true when this list server custom apps forbidden response has a 2xx status code

func (*ListServerCustomAppsForbidden) String

type ListServerCustomAppsOK

type ListServerCustomAppsOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.CustomAppsResponse
}

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

CustomApps response

func NewListServerCustomAppsOK

func NewListServerCustomAppsOK() *ListServerCustomAppsOK

NewListServerCustomAppsOK creates a ListServerCustomAppsOK with default headers values

func (*ListServerCustomAppsOK) Code

func (o *ListServerCustomAppsOK) Code() int

Code gets the status code for the list server custom apps o k response

func (*ListServerCustomAppsOK) Error

func (o *ListServerCustomAppsOK) Error() string

func (*ListServerCustomAppsOK) GetPayload

func (*ListServerCustomAppsOK) IsClientError

func (o *ListServerCustomAppsOK) IsClientError() bool

IsClientError returns true when this list server custom apps o k response has a 4xx status code

func (*ListServerCustomAppsOK) IsCode

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

IsCode returns true when this list server custom apps o k response a status code equal to that given

func (*ListServerCustomAppsOK) IsRedirect

func (o *ListServerCustomAppsOK) IsRedirect() bool

IsRedirect returns true when this list server custom apps o k response has a 3xx status code

func (*ListServerCustomAppsOK) IsServerError

func (o *ListServerCustomAppsOK) IsServerError() bool

IsServerError returns true when this list server custom apps o k response has a 5xx status code

func (*ListServerCustomAppsOK) IsSuccess

func (o *ListServerCustomAppsOK) IsSuccess() bool

IsSuccess returns true when this list server custom apps o k response has a 2xx status code

func (*ListServerCustomAppsOK) String

func (o *ListServerCustomAppsOK) String() string

type ListServerCustomAppsParams

type ListServerCustomAppsParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id
	*/
	Wid string

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

ListServerCustomAppsParams contains all the parameters to send to the API endpoint

for the list server custom apps operation.

Typically these are written to a http.Request.

func NewListServerCustomAppsParams

func NewListServerCustomAppsParams() *ListServerCustomAppsParams

NewListServerCustomAppsParams creates a new ListServerCustomAppsParams 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 NewListServerCustomAppsParamsWithContext

func NewListServerCustomAppsParamsWithContext(ctx context.Context) *ListServerCustomAppsParams

NewListServerCustomAppsParamsWithContext creates a new ListServerCustomAppsParams object with the ability to set a context for a request.

func NewListServerCustomAppsParamsWithHTTPClient

func NewListServerCustomAppsParamsWithHTTPClient(client *http.Client) *ListServerCustomAppsParams

NewListServerCustomAppsParamsWithHTTPClient creates a new ListServerCustomAppsParams object with the ability to set a custom HTTPClient for a request.

func NewListServerCustomAppsParamsWithTimeout

func NewListServerCustomAppsParamsWithTimeout(timeout time.Duration) *ListServerCustomAppsParams

NewListServerCustomAppsParamsWithTimeout creates a new ListServerCustomAppsParams object with the ability to set a timeout on a request.

func (*ListServerCustomAppsParams) SetContext

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

SetContext adds the context to the list server custom apps params

func (*ListServerCustomAppsParams) SetDefaults

func (o *ListServerCustomAppsParams) SetDefaults()

SetDefaults hydrates default values in the list server custom apps params (not the query body).

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

func (*ListServerCustomAppsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list server custom apps params

func (*ListServerCustomAppsParams) SetIfMatch

func (o *ListServerCustomAppsParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the list server custom apps params

func (*ListServerCustomAppsParams) SetTimeout

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

SetTimeout adds the timeout to the list server custom apps params

func (*ListServerCustomAppsParams) SetWid

func (o *ListServerCustomAppsParams) SetWid(wid string)

SetWid adds the wid to the list server custom apps params

func (*ListServerCustomAppsParams) WithContext

WithContext adds the context to the list server custom apps params

func (*ListServerCustomAppsParams) WithDefaults

WithDefaults hydrates default values in the list server custom apps params (not the query body).

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

func (*ListServerCustomAppsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list server custom apps params

func (*ListServerCustomAppsParams) WithIfMatch

WithIfMatch adds the ifMatch to the list server custom apps params

func (*ListServerCustomAppsParams) WithTimeout

WithTimeout adds the timeout to the list server custom apps params

func (*ListServerCustomAppsParams) WithWid

WithWid adds the wid to the list server custom apps params

func (*ListServerCustomAppsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListServerCustomAppsReader

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

ListServerCustomAppsReader is a Reader for the ListServerCustomApps structure.

func (*ListServerCustomAppsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListServerCustomAppsTooManyRequests

type ListServerCustomAppsTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewListServerCustomAppsTooManyRequests

func NewListServerCustomAppsTooManyRequests() *ListServerCustomAppsTooManyRequests

NewListServerCustomAppsTooManyRequests creates a ListServerCustomAppsTooManyRequests with default headers values

func (*ListServerCustomAppsTooManyRequests) Code

Code gets the status code for the list server custom apps too many requests response

func (*ListServerCustomAppsTooManyRequests) Error

func (*ListServerCustomAppsTooManyRequests) GetPayload

func (*ListServerCustomAppsTooManyRequests) IsClientError

func (o *ListServerCustomAppsTooManyRequests) IsClientError() bool

IsClientError returns true when this list server custom apps too many requests response has a 4xx status code

func (*ListServerCustomAppsTooManyRequests) IsCode

IsCode returns true when this list server custom apps too many requests response a status code equal to that given

func (*ListServerCustomAppsTooManyRequests) IsRedirect

func (o *ListServerCustomAppsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this list server custom apps too many requests response has a 3xx status code

func (*ListServerCustomAppsTooManyRequests) IsServerError

func (o *ListServerCustomAppsTooManyRequests) IsServerError() bool

IsServerError returns true when this list server custom apps too many requests response has a 5xx status code

func (*ListServerCustomAppsTooManyRequests) IsSuccess

IsSuccess returns true when this list server custom apps too many requests response has a 2xx status code

func (*ListServerCustomAppsTooManyRequests) String

type ListServerCustomAppsUnauthorized

type ListServerCustomAppsUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewListServerCustomAppsUnauthorized

func NewListServerCustomAppsUnauthorized() *ListServerCustomAppsUnauthorized

NewListServerCustomAppsUnauthorized creates a ListServerCustomAppsUnauthorized with default headers values

func (*ListServerCustomAppsUnauthorized) Code

Code gets the status code for the list server custom apps unauthorized response

func (*ListServerCustomAppsUnauthorized) Error

func (*ListServerCustomAppsUnauthorized) GetPayload

func (*ListServerCustomAppsUnauthorized) IsClientError

func (o *ListServerCustomAppsUnauthorized) IsClientError() bool

IsClientError returns true when this list server custom apps unauthorized response has a 4xx status code

func (*ListServerCustomAppsUnauthorized) IsCode

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

IsCode returns true when this list server custom apps unauthorized response a status code equal to that given

func (*ListServerCustomAppsUnauthorized) IsRedirect

func (o *ListServerCustomAppsUnauthorized) IsRedirect() bool

IsRedirect returns true when this list server custom apps unauthorized response has a 3xx status code

func (*ListServerCustomAppsUnauthorized) IsServerError

func (o *ListServerCustomAppsUnauthorized) IsServerError() bool

IsServerError returns true when this list server custom apps unauthorized response has a 5xx status code

func (*ListServerCustomAppsUnauthorized) IsSuccess

func (o *ListServerCustomAppsUnauthorized) IsSuccess() bool

IsSuccess returns true when this list server custom apps unauthorized response has a 2xx status code

func (*ListServerCustomAppsUnauthorized) String

type UpdateCustomAppBadRequest

type UpdateCustomAppBadRequest struct {
	Payload *models.Error
}

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

Bad request

func NewUpdateCustomAppBadRequest

func NewUpdateCustomAppBadRequest() *UpdateCustomAppBadRequest

NewUpdateCustomAppBadRequest creates a UpdateCustomAppBadRequest with default headers values

func (*UpdateCustomAppBadRequest) Code

func (o *UpdateCustomAppBadRequest) Code() int

Code gets the status code for the update custom app bad request response

func (*UpdateCustomAppBadRequest) Error

func (o *UpdateCustomAppBadRequest) Error() string

func (*UpdateCustomAppBadRequest) GetPayload

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

func (*UpdateCustomAppBadRequest) IsClientError

func (o *UpdateCustomAppBadRequest) IsClientError() bool

IsClientError returns true when this update custom app bad request response has a 4xx status code

func (*UpdateCustomAppBadRequest) IsCode

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

IsCode returns true when this update custom app bad request response a status code equal to that given

func (*UpdateCustomAppBadRequest) IsRedirect

func (o *UpdateCustomAppBadRequest) IsRedirect() bool

IsRedirect returns true when this update custom app bad request response has a 3xx status code

func (*UpdateCustomAppBadRequest) IsServerError

func (o *UpdateCustomAppBadRequest) IsServerError() bool

IsServerError returns true when this update custom app bad request response has a 5xx status code

func (*UpdateCustomAppBadRequest) IsSuccess

func (o *UpdateCustomAppBadRequest) IsSuccess() bool

IsSuccess returns true when this update custom app bad request response has a 2xx status code

func (*UpdateCustomAppBadRequest) String

func (o *UpdateCustomAppBadRequest) String() string

type UpdateCustomAppForbidden

type UpdateCustomAppForbidden struct {
	Payload *models.Error
}

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

Forbidden

func NewUpdateCustomAppForbidden

func NewUpdateCustomAppForbidden() *UpdateCustomAppForbidden

NewUpdateCustomAppForbidden creates a UpdateCustomAppForbidden with default headers values

func (*UpdateCustomAppForbidden) Code

func (o *UpdateCustomAppForbidden) Code() int

Code gets the status code for the update custom app forbidden response

func (*UpdateCustomAppForbidden) Error

func (o *UpdateCustomAppForbidden) Error() string

func (*UpdateCustomAppForbidden) GetPayload

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

func (*UpdateCustomAppForbidden) IsClientError

func (o *UpdateCustomAppForbidden) IsClientError() bool

IsClientError returns true when this update custom app forbidden response has a 4xx status code

func (*UpdateCustomAppForbidden) IsCode

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

IsCode returns true when this update custom app forbidden response a status code equal to that given

func (*UpdateCustomAppForbidden) IsRedirect

func (o *UpdateCustomAppForbidden) IsRedirect() bool

IsRedirect returns true when this update custom app forbidden response has a 3xx status code

func (*UpdateCustomAppForbidden) IsServerError

func (o *UpdateCustomAppForbidden) IsServerError() bool

IsServerError returns true when this update custom app forbidden response has a 5xx status code

func (*UpdateCustomAppForbidden) IsSuccess

func (o *UpdateCustomAppForbidden) IsSuccess() bool

IsSuccess returns true when this update custom app forbidden response has a 2xx status code

func (*UpdateCustomAppForbidden) String

func (o *UpdateCustomAppForbidden) String() string

type UpdateCustomAppNotFound

type UpdateCustomAppNotFound struct {
	Payload *models.Error
}

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

Not found

func NewUpdateCustomAppNotFound

func NewUpdateCustomAppNotFound() *UpdateCustomAppNotFound

NewUpdateCustomAppNotFound creates a UpdateCustomAppNotFound with default headers values

func (*UpdateCustomAppNotFound) Code

func (o *UpdateCustomAppNotFound) Code() int

Code gets the status code for the update custom app not found response

func (*UpdateCustomAppNotFound) Error

func (o *UpdateCustomAppNotFound) Error() string

func (*UpdateCustomAppNotFound) GetPayload

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

func (*UpdateCustomAppNotFound) IsClientError

func (o *UpdateCustomAppNotFound) IsClientError() bool

IsClientError returns true when this update custom app not found response has a 4xx status code

func (*UpdateCustomAppNotFound) IsCode

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

IsCode returns true when this update custom app not found response a status code equal to that given

func (*UpdateCustomAppNotFound) IsRedirect

func (o *UpdateCustomAppNotFound) IsRedirect() bool

IsRedirect returns true when this update custom app not found response has a 3xx status code

func (*UpdateCustomAppNotFound) IsServerError

func (o *UpdateCustomAppNotFound) IsServerError() bool

IsServerError returns true when this update custom app not found response has a 5xx status code

func (*UpdateCustomAppNotFound) IsSuccess

func (o *UpdateCustomAppNotFound) IsSuccess() bool

IsSuccess returns true when this update custom app not found response has a 2xx status code

func (*UpdateCustomAppNotFound) String

func (o *UpdateCustomAppNotFound) String() string

type UpdateCustomAppOK

type UpdateCustomAppOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.CustomAppResponse
}

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

CustomApp response

func NewUpdateCustomAppOK

func NewUpdateCustomAppOK() *UpdateCustomAppOK

NewUpdateCustomAppOK creates a UpdateCustomAppOK with default headers values

func (*UpdateCustomAppOK) Code

func (o *UpdateCustomAppOK) Code() int

Code gets the status code for the update custom app o k response

func (*UpdateCustomAppOK) Error

func (o *UpdateCustomAppOK) Error() string

func (*UpdateCustomAppOK) GetPayload

func (o *UpdateCustomAppOK) GetPayload() *models.CustomAppResponse

func (*UpdateCustomAppOK) IsClientError

func (o *UpdateCustomAppOK) IsClientError() bool

IsClientError returns true when this update custom app o k response has a 4xx status code

func (*UpdateCustomAppOK) IsCode

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

IsCode returns true when this update custom app o k response a status code equal to that given

func (*UpdateCustomAppOK) IsRedirect

func (o *UpdateCustomAppOK) IsRedirect() bool

IsRedirect returns true when this update custom app o k response has a 3xx status code

func (*UpdateCustomAppOK) IsServerError

func (o *UpdateCustomAppOK) IsServerError() bool

IsServerError returns true when this update custom app o k response has a 5xx status code

func (*UpdateCustomAppOK) IsSuccess

func (o *UpdateCustomAppOK) IsSuccess() bool

IsSuccess returns true when this update custom app o k response has a 2xx status code

func (*UpdateCustomAppOK) String

func (o *UpdateCustomAppOK) String() string

type UpdateCustomAppParams

type UpdateCustomAppParams struct {

	// CustomApp.
	CustomApp *models.CustomApp

	/* CustomAppID.

	   CustomApp ID
	*/
	CustomAppID string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id
	*/
	Wid string

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

UpdateCustomAppParams contains all the parameters to send to the API endpoint

for the update custom app operation.

Typically these are written to a http.Request.

func NewUpdateCustomAppParams

func NewUpdateCustomAppParams() *UpdateCustomAppParams

NewUpdateCustomAppParams creates a new UpdateCustomAppParams 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 NewUpdateCustomAppParamsWithContext

func NewUpdateCustomAppParamsWithContext(ctx context.Context) *UpdateCustomAppParams

NewUpdateCustomAppParamsWithContext creates a new UpdateCustomAppParams object with the ability to set a context for a request.

func NewUpdateCustomAppParamsWithHTTPClient

func NewUpdateCustomAppParamsWithHTTPClient(client *http.Client) *UpdateCustomAppParams

NewUpdateCustomAppParamsWithHTTPClient creates a new UpdateCustomAppParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateCustomAppParamsWithTimeout

func NewUpdateCustomAppParamsWithTimeout(timeout time.Duration) *UpdateCustomAppParams

NewUpdateCustomAppParamsWithTimeout creates a new UpdateCustomAppParams object with the ability to set a timeout on a request.

func (*UpdateCustomAppParams) SetContext

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

SetContext adds the context to the update custom app params

func (*UpdateCustomAppParams) SetCustomApp

func (o *UpdateCustomAppParams) SetCustomApp(customApp *models.CustomApp)

SetCustomApp adds the customApp to the update custom app params

func (*UpdateCustomAppParams) SetCustomAppID

func (o *UpdateCustomAppParams) SetCustomAppID(customAppID string)

SetCustomAppID adds the customAppId to the update custom app params

func (*UpdateCustomAppParams) SetDefaults

func (o *UpdateCustomAppParams) SetDefaults()

SetDefaults hydrates default values in the update custom app params (not the query body).

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

func (*UpdateCustomAppParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update custom app params

func (*UpdateCustomAppParams) SetIfMatch

func (o *UpdateCustomAppParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the update custom app params

func (*UpdateCustomAppParams) SetTimeout

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

SetTimeout adds the timeout to the update custom app params

func (*UpdateCustomAppParams) SetWid

func (o *UpdateCustomAppParams) SetWid(wid string)

SetWid adds the wid to the update custom app params

func (*UpdateCustomAppParams) WithContext

WithContext adds the context to the update custom app params

func (*UpdateCustomAppParams) WithCustomApp

func (o *UpdateCustomAppParams) WithCustomApp(customApp *models.CustomApp) *UpdateCustomAppParams

WithCustomApp adds the customApp to the update custom app params

func (*UpdateCustomAppParams) WithCustomAppID

func (o *UpdateCustomAppParams) WithCustomAppID(customAppID string) *UpdateCustomAppParams

WithCustomAppID adds the customAppID to the update custom app params

func (*UpdateCustomAppParams) WithDefaults

func (o *UpdateCustomAppParams) WithDefaults() *UpdateCustomAppParams

WithDefaults hydrates default values in the update custom app params (not the query body).

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

func (*UpdateCustomAppParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update custom app params

func (*UpdateCustomAppParams) WithIfMatch

func (o *UpdateCustomAppParams) WithIfMatch(ifMatch *string) *UpdateCustomAppParams

WithIfMatch adds the ifMatch to the update custom app params

func (*UpdateCustomAppParams) WithTimeout

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

WithTimeout adds the timeout to the update custom app params

func (*UpdateCustomAppParams) WithWid

WithWid adds the wid to the update custom app params

func (*UpdateCustomAppParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateCustomAppReader

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

UpdateCustomAppReader is a Reader for the UpdateCustomApp structure.

func (*UpdateCustomAppReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateCustomAppTooManyRequests

type UpdateCustomAppTooManyRequests struct {
	Payload *models.Error
}

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

Too many requests

func NewUpdateCustomAppTooManyRequests

func NewUpdateCustomAppTooManyRequests() *UpdateCustomAppTooManyRequests

NewUpdateCustomAppTooManyRequests creates a UpdateCustomAppTooManyRequests with default headers values

func (*UpdateCustomAppTooManyRequests) Code

Code gets the status code for the update custom app too many requests response

func (*UpdateCustomAppTooManyRequests) Error

func (*UpdateCustomAppTooManyRequests) GetPayload

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

func (*UpdateCustomAppTooManyRequests) IsClientError

func (o *UpdateCustomAppTooManyRequests) IsClientError() bool

IsClientError returns true when this update custom app too many requests response has a 4xx status code

func (*UpdateCustomAppTooManyRequests) IsCode

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

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

func (*UpdateCustomAppTooManyRequests) IsRedirect

func (o *UpdateCustomAppTooManyRequests) IsRedirect() bool

IsRedirect returns true when this update custom app too many requests response has a 3xx status code

func (*UpdateCustomAppTooManyRequests) IsServerError

func (o *UpdateCustomAppTooManyRequests) IsServerError() bool

IsServerError returns true when this update custom app too many requests response has a 5xx status code

func (*UpdateCustomAppTooManyRequests) IsSuccess

func (o *UpdateCustomAppTooManyRequests) IsSuccess() bool

IsSuccess returns true when this update custom app too many requests response has a 2xx status code

func (*UpdateCustomAppTooManyRequests) String

type UpdateCustomAppUnauthorized

type UpdateCustomAppUnauthorized struct {
	Payload *models.Error
}

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

Unauthorized

func NewUpdateCustomAppUnauthorized

func NewUpdateCustomAppUnauthorized() *UpdateCustomAppUnauthorized

NewUpdateCustomAppUnauthorized creates a UpdateCustomAppUnauthorized with default headers values

func (*UpdateCustomAppUnauthorized) Code

func (o *UpdateCustomAppUnauthorized) Code() int

Code gets the status code for the update custom app unauthorized response

func (*UpdateCustomAppUnauthorized) Error

func (*UpdateCustomAppUnauthorized) GetPayload

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

func (*UpdateCustomAppUnauthorized) IsClientError

func (o *UpdateCustomAppUnauthorized) IsClientError() bool

IsClientError returns true when this update custom app unauthorized response has a 4xx status code

func (*UpdateCustomAppUnauthorized) IsCode

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

IsCode returns true when this update custom app unauthorized response a status code equal to that given

func (*UpdateCustomAppUnauthorized) IsRedirect

func (o *UpdateCustomAppUnauthorized) IsRedirect() bool

IsRedirect returns true when this update custom app unauthorized response has a 3xx status code

func (*UpdateCustomAppUnauthorized) IsServerError

func (o *UpdateCustomAppUnauthorized) IsServerError() bool

IsServerError returns true when this update custom app unauthorized response has a 5xx status code

func (*UpdateCustomAppUnauthorized) IsSuccess

func (o *UpdateCustomAppUnauthorized) IsSuccess() bool

IsSuccess returns true when this update custom app unauthorized response has a 2xx status code

func (*UpdateCustomAppUnauthorized) String

func (o *UpdateCustomAppUnauthorized) String() string

type UpdateCustomAppUnprocessableEntity

type UpdateCustomAppUnprocessableEntity struct {
	Payload *models.Error
}

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

Unprocessable entity

func NewUpdateCustomAppUnprocessableEntity

func NewUpdateCustomAppUnprocessableEntity() *UpdateCustomAppUnprocessableEntity

NewUpdateCustomAppUnprocessableEntity creates a UpdateCustomAppUnprocessableEntity with default headers values

func (*UpdateCustomAppUnprocessableEntity) Code

Code gets the status code for the update custom app unprocessable entity response

func (*UpdateCustomAppUnprocessableEntity) Error

func (*UpdateCustomAppUnprocessableEntity) GetPayload

func (*UpdateCustomAppUnprocessableEntity) IsClientError

func (o *UpdateCustomAppUnprocessableEntity) IsClientError() bool

IsClientError returns true when this update custom app unprocessable entity response has a 4xx status code

func (*UpdateCustomAppUnprocessableEntity) IsCode

IsCode returns true when this update custom app unprocessable entity response a status code equal to that given

func (*UpdateCustomAppUnprocessableEntity) IsRedirect

func (o *UpdateCustomAppUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this update custom app unprocessable entity response has a 3xx status code

func (*UpdateCustomAppUnprocessableEntity) IsServerError

func (o *UpdateCustomAppUnprocessableEntity) IsServerError() bool

IsServerError returns true when this update custom app unprocessable entity response has a 5xx status code

func (*UpdateCustomAppUnprocessableEntity) IsSuccess

IsSuccess returns true when this update custom app unprocessable entity response has a 2xx status code

func (*UpdateCustomAppUnprocessableEntity) String

Jump to

Keyboard shortcuts

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