response_management

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

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   DeleteResponsemanagementLibrary deletes an existing response library
	   This will remove any responses associated with the library.
	*/
	DeleteResponsemanagementLibrary(ctx context.Context, params *DeleteResponsemanagementLibraryParams) error
	/*
	   DeleteResponsemanagementResponse deletes an existing response
	   This will remove the response from any libraries associated with it.
	*/
	DeleteResponsemanagementResponse(ctx context.Context, params *DeleteResponsemanagementResponseParams) error
	/*
	   DeleteResponsemanagementResponseasset deletes response asset
	*/
	DeleteResponsemanagementResponseasset(ctx context.Context, params *DeleteResponsemanagementResponseassetParams) (*DeleteResponsemanagementResponseassetNoContent, error)
	/*
	   GetResponsemanagementLibraries gets a list of existing response libraries
	*/
	GetResponsemanagementLibraries(ctx context.Context, params *GetResponsemanagementLibrariesParams) (*GetResponsemanagementLibrariesOK, error)
	/*
	   GetResponsemanagementLibrary gets details about an existing response library
	*/
	GetResponsemanagementLibrary(ctx context.Context, params *GetResponsemanagementLibraryParams) (*GetResponsemanagementLibraryOK, error)
	/*
	   GetResponsemanagementResponse gets details about an existing response
	*/
	GetResponsemanagementResponse(ctx context.Context, params *GetResponsemanagementResponseParams) (*GetResponsemanagementResponseOK, error)
	/*
	   GetResponsemanagementResponseasset gets response asset information
	*/
	GetResponsemanagementResponseasset(ctx context.Context, params *GetResponsemanagementResponseassetParams) (*GetResponsemanagementResponseassetOK, error)
	/*
	   GetResponsemanagementResponseassetsStatusStatusID gets response asset upload status
	*/
	GetResponsemanagementResponseassetsStatusStatusID(ctx context.Context, params *GetResponsemanagementResponseassetsStatusStatusIDParams) (*GetResponsemanagementResponseassetsStatusStatusIDOK, error)
	/*
	   GetResponsemanagementResponses gets a list of existing responses
	*/
	GetResponsemanagementResponses(ctx context.Context, params *GetResponsemanagementResponsesParams) (*GetResponsemanagementResponsesOK, error)
	/*
	   PostResponsemanagementLibraries creates a response library
	*/
	PostResponsemanagementLibraries(ctx context.Context, params *PostResponsemanagementLibrariesParams) (*PostResponsemanagementLibrariesOK, error)
	/*
	   PostResponsemanagementResponseassetsSearch searches response assets
	*/
	PostResponsemanagementResponseassetsSearch(ctx context.Context, params *PostResponsemanagementResponseassetsSearchParams) (*PostResponsemanagementResponseassetsSearchOK, error)
	/*
	   PostResponsemanagementResponseassetsUploads creates pre signed url for uploading response asset
	*/
	PostResponsemanagementResponseassetsUploads(ctx context.Context, params *PostResponsemanagementResponseassetsUploadsParams) (*PostResponsemanagementResponseassetsUploadsOK, error)
	/*
	   PostResponsemanagementResponses creates a response
	*/
	PostResponsemanagementResponses(ctx context.Context, params *PostResponsemanagementResponsesParams) (*PostResponsemanagementResponsesOK, error)
	/*
	   PostResponsemanagementResponsesQuery queries responses
	*/
	PostResponsemanagementResponsesQuery(ctx context.Context, params *PostResponsemanagementResponsesQueryParams) (*PostResponsemanagementResponsesQueryOK, error)
	/*
	   PutResponsemanagementLibrary updates an existing response library
	   Fields that can be updated: name. The most recent version is required for updates.
	*/
	PutResponsemanagementLibrary(ctx context.Context, params *PutResponsemanagementLibraryParams) (*PutResponsemanagementLibraryOK, error)
	/*
	   PutResponsemanagementResponse updates an existing response
	   Fields that can be updated: name, libraries, and texts. The most recent version is required for updates.
	*/
	PutResponsemanagementResponse(ctx context.Context, params *PutResponsemanagementResponseParams) (*PutResponsemanagementResponseOK, error)
	/*
	   PutResponsemanagementResponseasset updates response asset
	*/
	PutResponsemanagementResponseasset(ctx context.Context, params *PutResponsemanagementResponseassetParams) (*PutResponsemanagementResponseassetOK, error)
}

API is the interface of the response management client

type Client

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

Client for response management API

func New

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

New creates a new response management API client.

func (*Client) DeleteResponsemanagementLibrary

func (a *Client) DeleteResponsemanagementLibrary(ctx context.Context, params *DeleteResponsemanagementLibraryParams) error

DeleteResponsemanagementLibrary deletes an existing response library

This will remove any responses associated with the library.

func (*Client) DeleteResponsemanagementResponse

func (a *Client) DeleteResponsemanagementResponse(ctx context.Context, params *DeleteResponsemanagementResponseParams) error

DeleteResponsemanagementResponse deletes an existing response

This will remove the response from any libraries associated with it.

func (*Client) DeleteResponsemanagementResponseasset

DeleteResponsemanagementResponseasset deletes response asset

func (*Client) GetResponsemanagementLibraries

func (a *Client) GetResponsemanagementLibraries(ctx context.Context, params *GetResponsemanagementLibrariesParams) (*GetResponsemanagementLibrariesOK, error)

GetResponsemanagementLibraries gets a list of existing response libraries

func (*Client) GetResponsemanagementLibrary

func (a *Client) GetResponsemanagementLibrary(ctx context.Context, params *GetResponsemanagementLibraryParams) (*GetResponsemanagementLibraryOK, error)

GetResponsemanagementLibrary gets details about an existing response library

func (*Client) GetResponsemanagementResponse

func (a *Client) GetResponsemanagementResponse(ctx context.Context, params *GetResponsemanagementResponseParams) (*GetResponsemanagementResponseOK, error)

GetResponsemanagementResponse gets details about an existing response

func (*Client) GetResponsemanagementResponseasset

func (a *Client) GetResponsemanagementResponseasset(ctx context.Context, params *GetResponsemanagementResponseassetParams) (*GetResponsemanagementResponseassetOK, error)

GetResponsemanagementResponseasset gets response asset information

func (*Client) GetResponsemanagementResponseassetsStatusStatusID

GetResponsemanagementResponseassetsStatusStatusID gets response asset upload status

func (*Client) GetResponsemanagementResponses

func (a *Client) GetResponsemanagementResponses(ctx context.Context, params *GetResponsemanagementResponsesParams) (*GetResponsemanagementResponsesOK, error)

GetResponsemanagementResponses gets a list of existing responses

func (*Client) PostResponsemanagementLibraries

func (a *Client) PostResponsemanagementLibraries(ctx context.Context, params *PostResponsemanagementLibrariesParams) (*PostResponsemanagementLibrariesOK, error)

PostResponsemanagementLibraries creates a response library

func (*Client) PostResponsemanagementResponseassetsSearch

func (a *Client) PostResponsemanagementResponseassetsSearch(ctx context.Context, params *PostResponsemanagementResponseassetsSearchParams) (*PostResponsemanagementResponseassetsSearchOK, error)

PostResponsemanagementResponseassetsSearch searches response assets

func (*Client) PostResponsemanagementResponseassetsUploads

PostResponsemanagementResponseassetsUploads creates pre signed url for uploading response asset

func (*Client) PostResponsemanagementResponses

func (a *Client) PostResponsemanagementResponses(ctx context.Context, params *PostResponsemanagementResponsesParams) (*PostResponsemanagementResponsesOK, error)

PostResponsemanagementResponses creates a response

func (*Client) PostResponsemanagementResponsesQuery

func (a *Client) PostResponsemanagementResponsesQuery(ctx context.Context, params *PostResponsemanagementResponsesQueryParams) (*PostResponsemanagementResponsesQueryOK, error)

PostResponsemanagementResponsesQuery queries responses

func (*Client) PutResponsemanagementLibrary

func (a *Client) PutResponsemanagementLibrary(ctx context.Context, params *PutResponsemanagementLibraryParams) (*PutResponsemanagementLibraryOK, error)

PutResponsemanagementLibrary updates an existing response library

Fields that can be updated: name. The most recent version is required for updates.

func (*Client) PutResponsemanagementResponse

func (a *Client) PutResponsemanagementResponse(ctx context.Context, params *PutResponsemanagementResponseParams) (*PutResponsemanagementResponseOK, error)

PutResponsemanagementResponse updates an existing response

Fields that can be updated: name, libraries, and texts. The most recent version is required for updates.

func (*Client) PutResponsemanagementResponseasset

func (a *Client) PutResponsemanagementResponseasset(ctx context.Context, params *PutResponsemanagementResponseassetParams) (*PutResponsemanagementResponseassetOK, error)

PutResponsemanagementResponseasset updates response asset

type DeleteResponsemanagementLibraryBadRequest

type DeleteResponsemanagementLibraryBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryBadRequest

func NewDeleteResponsemanagementLibraryBadRequest() *DeleteResponsemanagementLibraryBadRequest

NewDeleteResponsemanagementLibraryBadRequest creates a DeleteResponsemanagementLibraryBadRequest with default headers values

func (*DeleteResponsemanagementLibraryBadRequest) Error

func (*DeleteResponsemanagementLibraryBadRequest) GetPayload

func (*DeleteResponsemanagementLibraryBadRequest) IsClientError

IsClientError returns true when this delete responsemanagement library bad request response has a 4xx status code

func (*DeleteResponsemanagementLibraryBadRequest) IsCode

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

func (*DeleteResponsemanagementLibraryBadRequest) IsRedirect

IsRedirect returns true when this delete responsemanagement library bad request response has a 3xx status code

func (*DeleteResponsemanagementLibraryBadRequest) IsServerError

IsServerError returns true when this delete responsemanagement library bad request response has a 5xx status code

func (*DeleteResponsemanagementLibraryBadRequest) IsSuccess

IsSuccess returns true when this delete responsemanagement library bad request response has a 2xx status code

func (*DeleteResponsemanagementLibraryBadRequest) String

type DeleteResponsemanagementLibraryDefault

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

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

successful operation

func NewDeleteResponsemanagementLibraryDefault

func NewDeleteResponsemanagementLibraryDefault(code int) *DeleteResponsemanagementLibraryDefault

NewDeleteResponsemanagementLibraryDefault creates a DeleteResponsemanagementLibraryDefault with default headers values

func (*DeleteResponsemanagementLibraryDefault) Code

Code gets the status code for the delete responsemanagement library default response

func (*DeleteResponsemanagementLibraryDefault) Error

func (*DeleteResponsemanagementLibraryDefault) IsClientError

func (o *DeleteResponsemanagementLibraryDefault) IsClientError() bool

IsClientError returns true when this delete responsemanagement library default response has a 4xx status code

func (*DeleteResponsemanagementLibraryDefault) IsCode

IsCode returns true when this delete responsemanagement library default response a status code equal to that given

func (*DeleteResponsemanagementLibraryDefault) IsRedirect

IsRedirect returns true when this delete responsemanagement library default response has a 3xx status code

func (*DeleteResponsemanagementLibraryDefault) IsServerError

func (o *DeleteResponsemanagementLibraryDefault) IsServerError() bool

IsServerError returns true when this delete responsemanagement library default response has a 5xx status code

func (*DeleteResponsemanagementLibraryDefault) IsSuccess

IsSuccess returns true when this delete responsemanagement library default response has a 2xx status code

func (*DeleteResponsemanagementLibraryDefault) String

type DeleteResponsemanagementLibraryForbidden

type DeleteResponsemanagementLibraryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteResponsemanagementLibraryForbidden

func NewDeleteResponsemanagementLibraryForbidden() *DeleteResponsemanagementLibraryForbidden

NewDeleteResponsemanagementLibraryForbidden creates a DeleteResponsemanagementLibraryForbidden with default headers values

func (*DeleteResponsemanagementLibraryForbidden) Error

func (*DeleteResponsemanagementLibraryForbidden) GetPayload

func (*DeleteResponsemanagementLibraryForbidden) IsClientError

IsClientError returns true when this delete responsemanagement library forbidden response has a 4xx status code

func (*DeleteResponsemanagementLibraryForbidden) IsCode

IsCode returns true when this delete responsemanagement library forbidden response a status code equal to that given

func (*DeleteResponsemanagementLibraryForbidden) IsRedirect

IsRedirect returns true when this delete responsemanagement library forbidden response has a 3xx status code

func (*DeleteResponsemanagementLibraryForbidden) IsServerError

IsServerError returns true when this delete responsemanagement library forbidden response has a 5xx status code

func (*DeleteResponsemanagementLibraryForbidden) IsSuccess

IsSuccess returns true when this delete responsemanagement library forbidden response has a 2xx status code

func (*DeleteResponsemanagementLibraryForbidden) String

type DeleteResponsemanagementLibraryGatewayTimeout

type DeleteResponsemanagementLibraryGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewDeleteResponsemanagementLibraryGatewayTimeout

func NewDeleteResponsemanagementLibraryGatewayTimeout() *DeleteResponsemanagementLibraryGatewayTimeout

NewDeleteResponsemanagementLibraryGatewayTimeout creates a DeleteResponsemanagementLibraryGatewayTimeout with default headers values

func (*DeleteResponsemanagementLibraryGatewayTimeout) Error

func (*DeleteResponsemanagementLibraryGatewayTimeout) GetPayload

func (*DeleteResponsemanagementLibraryGatewayTimeout) IsClientError

IsClientError returns true when this delete responsemanagement library gateway timeout response has a 4xx status code

func (*DeleteResponsemanagementLibraryGatewayTimeout) IsCode

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

func (*DeleteResponsemanagementLibraryGatewayTimeout) IsRedirect

IsRedirect returns true when this delete responsemanagement library gateway timeout response has a 3xx status code

func (*DeleteResponsemanagementLibraryGatewayTimeout) IsServerError

IsServerError returns true when this delete responsemanagement library gateway timeout response has a 5xx status code

func (*DeleteResponsemanagementLibraryGatewayTimeout) IsSuccess

IsSuccess returns true when this delete responsemanagement library gateway timeout response has a 2xx status code

func (*DeleteResponsemanagementLibraryGatewayTimeout) String

type DeleteResponsemanagementLibraryInternalServerError

type DeleteResponsemanagementLibraryInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryInternalServerError

func NewDeleteResponsemanagementLibraryInternalServerError() *DeleteResponsemanagementLibraryInternalServerError

NewDeleteResponsemanagementLibraryInternalServerError creates a DeleteResponsemanagementLibraryInternalServerError with default headers values

func (*DeleteResponsemanagementLibraryInternalServerError) Error

func (*DeleteResponsemanagementLibraryInternalServerError) GetPayload

func (*DeleteResponsemanagementLibraryInternalServerError) IsClientError

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

func (*DeleteResponsemanagementLibraryInternalServerError) IsCode

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

func (*DeleteResponsemanagementLibraryInternalServerError) IsRedirect

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

func (*DeleteResponsemanagementLibraryInternalServerError) IsServerError

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

func (*DeleteResponsemanagementLibraryInternalServerError) IsSuccess

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

func (*DeleteResponsemanagementLibraryInternalServerError) String

type DeleteResponsemanagementLibraryNotFound

type DeleteResponsemanagementLibraryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteResponsemanagementLibraryNotFound

func NewDeleteResponsemanagementLibraryNotFound() *DeleteResponsemanagementLibraryNotFound

NewDeleteResponsemanagementLibraryNotFound creates a DeleteResponsemanagementLibraryNotFound with default headers values

func (*DeleteResponsemanagementLibraryNotFound) Error

func (*DeleteResponsemanagementLibraryNotFound) GetPayload

func (*DeleteResponsemanagementLibraryNotFound) IsClientError

func (o *DeleteResponsemanagementLibraryNotFound) IsClientError() bool

IsClientError returns true when this delete responsemanagement library not found response has a 4xx status code

func (*DeleteResponsemanagementLibraryNotFound) IsCode

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

func (*DeleteResponsemanagementLibraryNotFound) IsRedirect

IsRedirect returns true when this delete responsemanagement library not found response has a 3xx status code

func (*DeleteResponsemanagementLibraryNotFound) IsServerError

func (o *DeleteResponsemanagementLibraryNotFound) IsServerError() bool

IsServerError returns true when this delete responsemanagement library not found response has a 5xx status code

func (*DeleteResponsemanagementLibraryNotFound) IsSuccess

IsSuccess returns true when this delete responsemanagement library not found response has a 2xx status code

func (*DeleteResponsemanagementLibraryNotFound) String

type DeleteResponsemanagementLibraryParams

type DeleteResponsemanagementLibraryParams struct {

	/* LibraryID.

	   Library ID
	*/
	LibraryID string

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

DeleteResponsemanagementLibraryParams contains all the parameters to send to the API endpoint

for the delete responsemanagement library operation.

Typically these are written to a http.Request.

func NewDeleteResponsemanagementLibraryParams

func NewDeleteResponsemanagementLibraryParams() *DeleteResponsemanagementLibraryParams

NewDeleteResponsemanagementLibraryParams creates a new DeleteResponsemanagementLibraryParams 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 NewDeleteResponsemanagementLibraryParamsWithContext

func NewDeleteResponsemanagementLibraryParamsWithContext(ctx context.Context) *DeleteResponsemanagementLibraryParams

NewDeleteResponsemanagementLibraryParamsWithContext creates a new DeleteResponsemanagementLibraryParams object with the ability to set a context for a request.

func NewDeleteResponsemanagementLibraryParamsWithHTTPClient

func NewDeleteResponsemanagementLibraryParamsWithHTTPClient(client *http.Client) *DeleteResponsemanagementLibraryParams

NewDeleteResponsemanagementLibraryParamsWithHTTPClient creates a new DeleteResponsemanagementLibraryParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteResponsemanagementLibraryParamsWithTimeout

func NewDeleteResponsemanagementLibraryParamsWithTimeout(timeout time.Duration) *DeleteResponsemanagementLibraryParams

NewDeleteResponsemanagementLibraryParamsWithTimeout creates a new DeleteResponsemanagementLibraryParams object with the ability to set a timeout on a request.

func (*DeleteResponsemanagementLibraryParams) SetContext

SetContext adds the context to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) SetDefaults

func (o *DeleteResponsemanagementLibraryParams) SetDefaults()

SetDefaults hydrates default values in the delete responsemanagement library params (not the query body).

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

func (*DeleteResponsemanagementLibraryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) SetLibraryID

func (o *DeleteResponsemanagementLibraryParams) SetLibraryID(libraryID string)

SetLibraryID adds the libraryId to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) SetTimeout

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

SetTimeout adds the timeout to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) WithContext

WithContext adds the context to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) WithDefaults

WithDefaults hydrates default values in the delete responsemanagement library params (not the query body).

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

func (*DeleteResponsemanagementLibraryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) WithLibraryID

WithLibraryID adds the libraryID to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) WithTimeout

WithTimeout adds the timeout to the delete responsemanagement library params

func (*DeleteResponsemanagementLibraryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteResponsemanagementLibraryReader

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

DeleteResponsemanagementLibraryReader is a Reader for the DeleteResponsemanagementLibrary structure.

func (*DeleteResponsemanagementLibraryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteResponsemanagementLibraryRequestEntityTooLarge

type DeleteResponsemanagementLibraryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryRequestEntityTooLarge

func NewDeleteResponsemanagementLibraryRequestEntityTooLarge() *DeleteResponsemanagementLibraryRequestEntityTooLarge

NewDeleteResponsemanagementLibraryRequestEntityTooLarge creates a DeleteResponsemanagementLibraryRequestEntityTooLarge with default headers values

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) Error

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) GetPayload

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) IsClientError

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

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) IsCode

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

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) IsRedirect

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

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) IsServerError

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

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) IsSuccess

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

func (*DeleteResponsemanagementLibraryRequestEntityTooLarge) String

type DeleteResponsemanagementLibraryRequestTimeout

type DeleteResponsemanagementLibraryRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryRequestTimeout

func NewDeleteResponsemanagementLibraryRequestTimeout() *DeleteResponsemanagementLibraryRequestTimeout

NewDeleteResponsemanagementLibraryRequestTimeout creates a DeleteResponsemanagementLibraryRequestTimeout with default headers values

func (*DeleteResponsemanagementLibraryRequestTimeout) Error

func (*DeleteResponsemanagementLibraryRequestTimeout) GetPayload

func (*DeleteResponsemanagementLibraryRequestTimeout) IsClientError

IsClientError returns true when this delete responsemanagement library request timeout response has a 4xx status code

func (*DeleteResponsemanagementLibraryRequestTimeout) IsCode

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

func (*DeleteResponsemanagementLibraryRequestTimeout) IsRedirect

IsRedirect returns true when this delete responsemanagement library request timeout response has a 3xx status code

func (*DeleteResponsemanagementLibraryRequestTimeout) IsServerError

IsServerError returns true when this delete responsemanagement library request timeout response has a 5xx status code

func (*DeleteResponsemanagementLibraryRequestTimeout) IsSuccess

IsSuccess returns true when this delete responsemanagement library request timeout response has a 2xx status code

func (*DeleteResponsemanagementLibraryRequestTimeout) String

type DeleteResponsemanagementLibraryServiceUnavailable

type DeleteResponsemanagementLibraryServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryServiceUnavailable

func NewDeleteResponsemanagementLibraryServiceUnavailable() *DeleteResponsemanagementLibraryServiceUnavailable

NewDeleteResponsemanagementLibraryServiceUnavailable creates a DeleteResponsemanagementLibraryServiceUnavailable with default headers values

func (*DeleteResponsemanagementLibraryServiceUnavailable) Error

func (*DeleteResponsemanagementLibraryServiceUnavailable) GetPayload

func (*DeleteResponsemanagementLibraryServiceUnavailable) IsClientError

IsClientError returns true when this delete responsemanagement library service unavailable response has a 4xx status code

func (*DeleteResponsemanagementLibraryServiceUnavailable) IsCode

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

func (*DeleteResponsemanagementLibraryServiceUnavailable) IsRedirect

IsRedirect returns true when this delete responsemanagement library service unavailable response has a 3xx status code

func (*DeleteResponsemanagementLibraryServiceUnavailable) IsServerError

IsServerError returns true when this delete responsemanagement library service unavailable response has a 5xx status code

func (*DeleteResponsemanagementLibraryServiceUnavailable) IsSuccess

IsSuccess returns true when this delete responsemanagement library service unavailable response has a 2xx status code

func (*DeleteResponsemanagementLibraryServiceUnavailable) String

type DeleteResponsemanagementLibraryTooManyRequests

type DeleteResponsemanagementLibraryTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryTooManyRequests

func NewDeleteResponsemanagementLibraryTooManyRequests() *DeleteResponsemanagementLibraryTooManyRequests

NewDeleteResponsemanagementLibraryTooManyRequests creates a DeleteResponsemanagementLibraryTooManyRequests with default headers values

func (*DeleteResponsemanagementLibraryTooManyRequests) Error

func (*DeleteResponsemanagementLibraryTooManyRequests) GetPayload

func (*DeleteResponsemanagementLibraryTooManyRequests) IsClientError

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

func (*DeleteResponsemanagementLibraryTooManyRequests) IsCode

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

func (*DeleteResponsemanagementLibraryTooManyRequests) IsRedirect

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

func (*DeleteResponsemanagementLibraryTooManyRequests) IsServerError

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

func (*DeleteResponsemanagementLibraryTooManyRequests) IsSuccess

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

func (*DeleteResponsemanagementLibraryTooManyRequests) String

type DeleteResponsemanagementLibraryUnauthorized

type DeleteResponsemanagementLibraryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteResponsemanagementLibraryUnauthorized

func NewDeleteResponsemanagementLibraryUnauthorized() *DeleteResponsemanagementLibraryUnauthorized

NewDeleteResponsemanagementLibraryUnauthorized creates a DeleteResponsemanagementLibraryUnauthorized with default headers values

func (*DeleteResponsemanagementLibraryUnauthorized) Error

func (*DeleteResponsemanagementLibraryUnauthorized) GetPayload

func (*DeleteResponsemanagementLibraryUnauthorized) IsClientError

IsClientError returns true when this delete responsemanagement library unauthorized response has a 4xx status code

func (*DeleteResponsemanagementLibraryUnauthorized) IsCode

IsCode returns true when this delete responsemanagement library unauthorized response a status code equal to that given

func (*DeleteResponsemanagementLibraryUnauthorized) IsRedirect

IsRedirect returns true when this delete responsemanagement library unauthorized response has a 3xx status code

func (*DeleteResponsemanagementLibraryUnauthorized) IsServerError

IsServerError returns true when this delete responsemanagement library unauthorized response has a 5xx status code

func (*DeleteResponsemanagementLibraryUnauthorized) IsSuccess

IsSuccess returns true when this delete responsemanagement library unauthorized response has a 2xx status code

func (*DeleteResponsemanagementLibraryUnauthorized) String

type DeleteResponsemanagementLibraryUnsupportedMediaType

type DeleteResponsemanagementLibraryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementLibraryUnsupportedMediaType

func NewDeleteResponsemanagementLibraryUnsupportedMediaType() *DeleteResponsemanagementLibraryUnsupportedMediaType

NewDeleteResponsemanagementLibraryUnsupportedMediaType creates a DeleteResponsemanagementLibraryUnsupportedMediaType with default headers values

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) Error

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) GetPayload

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) IsClientError

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

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) IsCode

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

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) IsRedirect

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

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) IsServerError

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

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) IsSuccess

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

func (*DeleteResponsemanagementLibraryUnsupportedMediaType) String

type DeleteResponsemanagementResponseBadRequest

type DeleteResponsemanagementResponseBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseBadRequest

func NewDeleteResponsemanagementResponseBadRequest() *DeleteResponsemanagementResponseBadRequest

NewDeleteResponsemanagementResponseBadRequest creates a DeleteResponsemanagementResponseBadRequest with default headers values

func (*DeleteResponsemanagementResponseBadRequest) Error

func (*DeleteResponsemanagementResponseBadRequest) GetPayload

func (*DeleteResponsemanagementResponseBadRequest) IsClientError

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

func (*DeleteResponsemanagementResponseBadRequest) IsCode

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

func (*DeleteResponsemanagementResponseBadRequest) IsRedirect

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

func (*DeleteResponsemanagementResponseBadRequest) IsServerError

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

func (*DeleteResponsemanagementResponseBadRequest) IsSuccess

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

func (*DeleteResponsemanagementResponseBadRequest) String

type DeleteResponsemanagementResponseDefault

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

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

successful operation

func NewDeleteResponsemanagementResponseDefault

func NewDeleteResponsemanagementResponseDefault(code int) *DeleteResponsemanagementResponseDefault

NewDeleteResponsemanagementResponseDefault creates a DeleteResponsemanagementResponseDefault with default headers values

func (*DeleteResponsemanagementResponseDefault) Code

Code gets the status code for the delete responsemanagement response default response

func (*DeleteResponsemanagementResponseDefault) Error

func (*DeleteResponsemanagementResponseDefault) IsClientError

func (o *DeleteResponsemanagementResponseDefault) IsClientError() bool

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

func (*DeleteResponsemanagementResponseDefault) IsCode

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

func (*DeleteResponsemanagementResponseDefault) IsRedirect

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

func (*DeleteResponsemanagementResponseDefault) IsServerError

func (o *DeleteResponsemanagementResponseDefault) IsServerError() bool

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

func (*DeleteResponsemanagementResponseDefault) IsSuccess

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

func (*DeleteResponsemanagementResponseDefault) String

type DeleteResponsemanagementResponseForbidden

type DeleteResponsemanagementResponseForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteResponsemanagementResponseForbidden

func NewDeleteResponsemanagementResponseForbidden() *DeleteResponsemanagementResponseForbidden

NewDeleteResponsemanagementResponseForbidden creates a DeleteResponsemanagementResponseForbidden with default headers values

func (*DeleteResponsemanagementResponseForbidden) Error

func (*DeleteResponsemanagementResponseForbidden) GetPayload

func (*DeleteResponsemanagementResponseForbidden) IsClientError

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

func (*DeleteResponsemanagementResponseForbidden) IsCode

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

func (*DeleteResponsemanagementResponseForbidden) IsRedirect

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

func (*DeleteResponsemanagementResponseForbidden) IsServerError

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

func (*DeleteResponsemanagementResponseForbidden) IsSuccess

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

func (*DeleteResponsemanagementResponseForbidden) String

type DeleteResponsemanagementResponseGatewayTimeout

type DeleteResponsemanagementResponseGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewDeleteResponsemanagementResponseGatewayTimeout

func NewDeleteResponsemanagementResponseGatewayTimeout() *DeleteResponsemanagementResponseGatewayTimeout

NewDeleteResponsemanagementResponseGatewayTimeout creates a DeleteResponsemanagementResponseGatewayTimeout with default headers values

func (*DeleteResponsemanagementResponseGatewayTimeout) Error

func (*DeleteResponsemanagementResponseGatewayTimeout) GetPayload

func (*DeleteResponsemanagementResponseGatewayTimeout) IsClientError

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

func (*DeleteResponsemanagementResponseGatewayTimeout) IsCode

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

func (*DeleteResponsemanagementResponseGatewayTimeout) IsRedirect

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

func (*DeleteResponsemanagementResponseGatewayTimeout) IsServerError

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

func (*DeleteResponsemanagementResponseGatewayTimeout) IsSuccess

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

func (*DeleteResponsemanagementResponseGatewayTimeout) String

type DeleteResponsemanagementResponseInternalServerError

type DeleteResponsemanagementResponseInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseInternalServerError

func NewDeleteResponsemanagementResponseInternalServerError() *DeleteResponsemanagementResponseInternalServerError

NewDeleteResponsemanagementResponseInternalServerError creates a DeleteResponsemanagementResponseInternalServerError with default headers values

func (*DeleteResponsemanagementResponseInternalServerError) Error

func (*DeleteResponsemanagementResponseInternalServerError) GetPayload

func (*DeleteResponsemanagementResponseInternalServerError) IsClientError

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

func (*DeleteResponsemanagementResponseInternalServerError) IsCode

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

func (*DeleteResponsemanagementResponseInternalServerError) IsRedirect

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

func (*DeleteResponsemanagementResponseInternalServerError) IsServerError

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

func (*DeleteResponsemanagementResponseInternalServerError) IsSuccess

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

func (*DeleteResponsemanagementResponseInternalServerError) String

type DeleteResponsemanagementResponseNotFound

type DeleteResponsemanagementResponseNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteResponsemanagementResponseNotFound

func NewDeleteResponsemanagementResponseNotFound() *DeleteResponsemanagementResponseNotFound

NewDeleteResponsemanagementResponseNotFound creates a DeleteResponsemanagementResponseNotFound with default headers values

func (*DeleteResponsemanagementResponseNotFound) Error

func (*DeleteResponsemanagementResponseNotFound) GetPayload

func (*DeleteResponsemanagementResponseNotFound) IsClientError

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

func (*DeleteResponsemanagementResponseNotFound) IsCode

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

func (*DeleteResponsemanagementResponseNotFound) IsRedirect

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

func (*DeleteResponsemanagementResponseNotFound) IsServerError

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

func (*DeleteResponsemanagementResponseNotFound) IsSuccess

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

func (*DeleteResponsemanagementResponseNotFound) String

type DeleteResponsemanagementResponseParams

type DeleteResponsemanagementResponseParams struct {

	/* ResponseID.

	   Response ID
	*/
	ResponseID string

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

DeleteResponsemanagementResponseParams contains all the parameters to send to the API endpoint

for the delete responsemanagement response operation.

Typically these are written to a http.Request.

func NewDeleteResponsemanagementResponseParams

func NewDeleteResponsemanagementResponseParams() *DeleteResponsemanagementResponseParams

NewDeleteResponsemanagementResponseParams creates a new DeleteResponsemanagementResponseParams 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 NewDeleteResponsemanagementResponseParamsWithContext

func NewDeleteResponsemanagementResponseParamsWithContext(ctx context.Context) *DeleteResponsemanagementResponseParams

NewDeleteResponsemanagementResponseParamsWithContext creates a new DeleteResponsemanagementResponseParams object with the ability to set a context for a request.

func NewDeleteResponsemanagementResponseParamsWithHTTPClient

func NewDeleteResponsemanagementResponseParamsWithHTTPClient(client *http.Client) *DeleteResponsemanagementResponseParams

NewDeleteResponsemanagementResponseParamsWithHTTPClient creates a new DeleteResponsemanagementResponseParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteResponsemanagementResponseParamsWithTimeout

func NewDeleteResponsemanagementResponseParamsWithTimeout(timeout time.Duration) *DeleteResponsemanagementResponseParams

NewDeleteResponsemanagementResponseParamsWithTimeout creates a new DeleteResponsemanagementResponseParams object with the ability to set a timeout on a request.

func (*DeleteResponsemanagementResponseParams) SetContext

SetContext adds the context to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) SetDefaults

func (o *DeleteResponsemanagementResponseParams) SetDefaults()

SetDefaults hydrates default values in the delete responsemanagement response params (not the query body).

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

func (*DeleteResponsemanagementResponseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) SetResponseID

func (o *DeleteResponsemanagementResponseParams) SetResponseID(responseID string)

SetResponseID adds the responseId to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) SetTimeout

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

SetTimeout adds the timeout to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) WithContext

WithContext adds the context to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) WithDefaults

WithDefaults hydrates default values in the delete responsemanagement response params (not the query body).

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

func (*DeleteResponsemanagementResponseParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) WithResponseID

WithResponseID adds the responseID to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) WithTimeout

WithTimeout adds the timeout to the delete responsemanagement response params

func (*DeleteResponsemanagementResponseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteResponsemanagementResponseReader

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

DeleteResponsemanagementResponseReader is a Reader for the DeleteResponsemanagementResponse structure.

func (*DeleteResponsemanagementResponseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteResponsemanagementResponseRequestEntityTooLarge

type DeleteResponsemanagementResponseRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseRequestEntityTooLarge

func NewDeleteResponsemanagementResponseRequestEntityTooLarge() *DeleteResponsemanagementResponseRequestEntityTooLarge

NewDeleteResponsemanagementResponseRequestEntityTooLarge creates a DeleteResponsemanagementResponseRequestEntityTooLarge with default headers values

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) Error

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) GetPayload

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) IsClientError

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

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) IsCode

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

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) IsRedirect

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

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) IsServerError

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

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) IsSuccess

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

func (*DeleteResponsemanagementResponseRequestEntityTooLarge) String

type DeleteResponsemanagementResponseRequestTimeout

type DeleteResponsemanagementResponseRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseRequestTimeout

func NewDeleteResponsemanagementResponseRequestTimeout() *DeleteResponsemanagementResponseRequestTimeout

NewDeleteResponsemanagementResponseRequestTimeout creates a DeleteResponsemanagementResponseRequestTimeout with default headers values

func (*DeleteResponsemanagementResponseRequestTimeout) Error

func (*DeleteResponsemanagementResponseRequestTimeout) GetPayload

func (*DeleteResponsemanagementResponseRequestTimeout) IsClientError

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

func (*DeleteResponsemanagementResponseRequestTimeout) IsCode

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

func (*DeleteResponsemanagementResponseRequestTimeout) IsRedirect

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

func (*DeleteResponsemanagementResponseRequestTimeout) IsServerError

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

func (*DeleteResponsemanagementResponseRequestTimeout) IsSuccess

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

func (*DeleteResponsemanagementResponseRequestTimeout) String

type DeleteResponsemanagementResponseServiceUnavailable

type DeleteResponsemanagementResponseServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseServiceUnavailable

func NewDeleteResponsemanagementResponseServiceUnavailable() *DeleteResponsemanagementResponseServiceUnavailable

NewDeleteResponsemanagementResponseServiceUnavailable creates a DeleteResponsemanagementResponseServiceUnavailable with default headers values

func (*DeleteResponsemanagementResponseServiceUnavailable) Error

func (*DeleteResponsemanagementResponseServiceUnavailable) GetPayload

func (*DeleteResponsemanagementResponseServiceUnavailable) IsClientError

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

func (*DeleteResponsemanagementResponseServiceUnavailable) IsCode

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

func (*DeleteResponsemanagementResponseServiceUnavailable) IsRedirect

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

func (*DeleteResponsemanagementResponseServiceUnavailable) IsServerError

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

func (*DeleteResponsemanagementResponseServiceUnavailable) IsSuccess

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

func (*DeleteResponsemanagementResponseServiceUnavailable) String

type DeleteResponsemanagementResponseTooManyRequests

type DeleteResponsemanagementResponseTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseTooManyRequests

func NewDeleteResponsemanagementResponseTooManyRequests() *DeleteResponsemanagementResponseTooManyRequests

NewDeleteResponsemanagementResponseTooManyRequests creates a DeleteResponsemanagementResponseTooManyRequests with default headers values

func (*DeleteResponsemanagementResponseTooManyRequests) Error

func (*DeleteResponsemanagementResponseTooManyRequests) GetPayload

func (*DeleteResponsemanagementResponseTooManyRequests) IsClientError

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

func (*DeleteResponsemanagementResponseTooManyRequests) IsCode

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

func (*DeleteResponsemanagementResponseTooManyRequests) IsRedirect

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

func (*DeleteResponsemanagementResponseTooManyRequests) IsServerError

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

func (*DeleteResponsemanagementResponseTooManyRequests) IsSuccess

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

func (*DeleteResponsemanagementResponseTooManyRequests) String

type DeleteResponsemanagementResponseUnauthorized

type DeleteResponsemanagementResponseUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteResponsemanagementResponseUnauthorized

func NewDeleteResponsemanagementResponseUnauthorized() *DeleteResponsemanagementResponseUnauthorized

NewDeleteResponsemanagementResponseUnauthorized creates a DeleteResponsemanagementResponseUnauthorized with default headers values

func (*DeleteResponsemanagementResponseUnauthorized) Error

func (*DeleteResponsemanagementResponseUnauthorized) GetPayload

func (*DeleteResponsemanagementResponseUnauthorized) IsClientError

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

func (*DeleteResponsemanagementResponseUnauthorized) IsCode

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

func (*DeleteResponsemanagementResponseUnauthorized) IsRedirect

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

func (*DeleteResponsemanagementResponseUnauthorized) IsServerError

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

func (*DeleteResponsemanagementResponseUnauthorized) IsSuccess

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

func (*DeleteResponsemanagementResponseUnauthorized) String

type DeleteResponsemanagementResponseUnsupportedMediaType

type DeleteResponsemanagementResponseUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseUnsupportedMediaType

func NewDeleteResponsemanagementResponseUnsupportedMediaType() *DeleteResponsemanagementResponseUnsupportedMediaType

NewDeleteResponsemanagementResponseUnsupportedMediaType creates a DeleteResponsemanagementResponseUnsupportedMediaType with default headers values

func (*DeleteResponsemanagementResponseUnsupportedMediaType) Error

func (*DeleteResponsemanagementResponseUnsupportedMediaType) GetPayload

func (*DeleteResponsemanagementResponseUnsupportedMediaType) IsClientError

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

func (*DeleteResponsemanagementResponseUnsupportedMediaType) IsCode

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

func (*DeleteResponsemanagementResponseUnsupportedMediaType) IsRedirect

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

func (*DeleteResponsemanagementResponseUnsupportedMediaType) IsServerError

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

func (*DeleteResponsemanagementResponseUnsupportedMediaType) IsSuccess

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

func (*DeleteResponsemanagementResponseUnsupportedMediaType) String

type DeleteResponsemanagementResponseassetBadRequest

type DeleteResponsemanagementResponseassetBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetBadRequest

func NewDeleteResponsemanagementResponseassetBadRequest() *DeleteResponsemanagementResponseassetBadRequest

NewDeleteResponsemanagementResponseassetBadRequest creates a DeleteResponsemanagementResponseassetBadRequest with default headers values

func (*DeleteResponsemanagementResponseassetBadRequest) Error

func (*DeleteResponsemanagementResponseassetBadRequest) GetPayload

func (*DeleteResponsemanagementResponseassetBadRequest) IsClientError

IsClientError returns true when this delete responsemanagement responseasset bad request response has a 4xx status code

func (*DeleteResponsemanagementResponseassetBadRequest) IsCode

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

func (*DeleteResponsemanagementResponseassetBadRequest) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset bad request response has a 3xx status code

func (*DeleteResponsemanagementResponseassetBadRequest) IsServerError

IsServerError returns true when this delete responsemanagement responseasset bad request response has a 5xx status code

func (*DeleteResponsemanagementResponseassetBadRequest) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset bad request response has a 2xx status code

func (*DeleteResponsemanagementResponseassetBadRequest) String

type DeleteResponsemanagementResponseassetForbidden

type DeleteResponsemanagementResponseassetForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteResponsemanagementResponseassetForbidden

func NewDeleteResponsemanagementResponseassetForbidden() *DeleteResponsemanagementResponseassetForbidden

NewDeleteResponsemanagementResponseassetForbidden creates a DeleteResponsemanagementResponseassetForbidden with default headers values

func (*DeleteResponsemanagementResponseassetForbidden) Error

func (*DeleteResponsemanagementResponseassetForbidden) GetPayload

func (*DeleteResponsemanagementResponseassetForbidden) IsClientError

IsClientError returns true when this delete responsemanagement responseasset forbidden response has a 4xx status code

func (*DeleteResponsemanagementResponseassetForbidden) IsCode

IsCode returns true when this delete responsemanagement responseasset forbidden response a status code equal to that given

func (*DeleteResponsemanagementResponseassetForbidden) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset forbidden response has a 3xx status code

func (*DeleteResponsemanagementResponseassetForbidden) IsServerError

IsServerError returns true when this delete responsemanagement responseasset forbidden response has a 5xx status code

func (*DeleteResponsemanagementResponseassetForbidden) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset forbidden response has a 2xx status code

func (*DeleteResponsemanagementResponseassetForbidden) String

type DeleteResponsemanagementResponseassetGatewayTimeout

type DeleteResponsemanagementResponseassetGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewDeleteResponsemanagementResponseassetGatewayTimeout

func NewDeleteResponsemanagementResponseassetGatewayTimeout() *DeleteResponsemanagementResponseassetGatewayTimeout

NewDeleteResponsemanagementResponseassetGatewayTimeout creates a DeleteResponsemanagementResponseassetGatewayTimeout with default headers values

func (*DeleteResponsemanagementResponseassetGatewayTimeout) Error

func (*DeleteResponsemanagementResponseassetGatewayTimeout) GetPayload

func (*DeleteResponsemanagementResponseassetGatewayTimeout) IsClientError

IsClientError returns true when this delete responsemanagement responseasset gateway timeout response has a 4xx status code

func (*DeleteResponsemanagementResponseassetGatewayTimeout) IsCode

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

func (*DeleteResponsemanagementResponseassetGatewayTimeout) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset gateway timeout response has a 3xx status code

func (*DeleteResponsemanagementResponseassetGatewayTimeout) IsServerError

IsServerError returns true when this delete responsemanagement responseasset gateway timeout response has a 5xx status code

func (*DeleteResponsemanagementResponseassetGatewayTimeout) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset gateway timeout response has a 2xx status code

func (*DeleteResponsemanagementResponseassetGatewayTimeout) String

type DeleteResponsemanagementResponseassetInternalServerError

type DeleteResponsemanagementResponseassetInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetInternalServerError

func NewDeleteResponsemanagementResponseassetInternalServerError() *DeleteResponsemanagementResponseassetInternalServerError

NewDeleteResponsemanagementResponseassetInternalServerError creates a DeleteResponsemanagementResponseassetInternalServerError with default headers values

func (*DeleteResponsemanagementResponseassetInternalServerError) Error

func (*DeleteResponsemanagementResponseassetInternalServerError) GetPayload

func (*DeleteResponsemanagementResponseassetInternalServerError) IsClientError

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

func (*DeleteResponsemanagementResponseassetInternalServerError) IsCode

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

func (*DeleteResponsemanagementResponseassetInternalServerError) IsRedirect

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

func (*DeleteResponsemanagementResponseassetInternalServerError) IsServerError

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

func (*DeleteResponsemanagementResponseassetInternalServerError) IsSuccess

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

func (*DeleteResponsemanagementResponseassetInternalServerError) String

type DeleteResponsemanagementResponseassetNoContent

type DeleteResponsemanagementResponseassetNoContent struct {
}

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

Response asset is deleted

func NewDeleteResponsemanagementResponseassetNoContent

func NewDeleteResponsemanagementResponseassetNoContent() *DeleteResponsemanagementResponseassetNoContent

NewDeleteResponsemanagementResponseassetNoContent creates a DeleteResponsemanagementResponseassetNoContent with default headers values

func (*DeleteResponsemanagementResponseassetNoContent) Error

func (*DeleteResponsemanagementResponseassetNoContent) IsClientError

IsClientError returns true when this delete responsemanagement responseasset no content response has a 4xx status code

func (*DeleteResponsemanagementResponseassetNoContent) IsCode

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

func (*DeleteResponsemanagementResponseassetNoContent) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset no content response has a 3xx status code

func (*DeleteResponsemanagementResponseassetNoContent) IsServerError

IsServerError returns true when this delete responsemanagement responseasset no content response has a 5xx status code

func (*DeleteResponsemanagementResponseassetNoContent) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset no content response has a 2xx status code

func (*DeleteResponsemanagementResponseassetNoContent) String

type DeleteResponsemanagementResponseassetNotFound

type DeleteResponsemanagementResponseassetNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteResponsemanagementResponseassetNotFound

func NewDeleteResponsemanagementResponseassetNotFound() *DeleteResponsemanagementResponseassetNotFound

NewDeleteResponsemanagementResponseassetNotFound creates a DeleteResponsemanagementResponseassetNotFound with default headers values

func (*DeleteResponsemanagementResponseassetNotFound) Error

func (*DeleteResponsemanagementResponseassetNotFound) GetPayload

func (*DeleteResponsemanagementResponseassetNotFound) IsClientError

IsClientError returns true when this delete responsemanagement responseasset not found response has a 4xx status code

func (*DeleteResponsemanagementResponseassetNotFound) IsCode

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

func (*DeleteResponsemanagementResponseassetNotFound) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset not found response has a 3xx status code

func (*DeleteResponsemanagementResponseassetNotFound) IsServerError

IsServerError returns true when this delete responsemanagement responseasset not found response has a 5xx status code

func (*DeleteResponsemanagementResponseassetNotFound) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset not found response has a 2xx status code

func (*DeleteResponsemanagementResponseassetNotFound) String

type DeleteResponsemanagementResponseassetParams

type DeleteResponsemanagementResponseassetParams struct {

	/* ResponseAssetID.

	   Asset Id
	*/
	ResponseAssetID string

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

DeleteResponsemanagementResponseassetParams contains all the parameters to send to the API endpoint

for the delete responsemanagement responseasset operation.

Typically these are written to a http.Request.

func NewDeleteResponsemanagementResponseassetParams

func NewDeleteResponsemanagementResponseassetParams() *DeleteResponsemanagementResponseassetParams

NewDeleteResponsemanagementResponseassetParams creates a new DeleteResponsemanagementResponseassetParams 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 NewDeleteResponsemanagementResponseassetParamsWithContext

func NewDeleteResponsemanagementResponseassetParamsWithContext(ctx context.Context) *DeleteResponsemanagementResponseassetParams

NewDeleteResponsemanagementResponseassetParamsWithContext creates a new DeleteResponsemanagementResponseassetParams object with the ability to set a context for a request.

func NewDeleteResponsemanagementResponseassetParamsWithHTTPClient

func NewDeleteResponsemanagementResponseassetParamsWithHTTPClient(client *http.Client) *DeleteResponsemanagementResponseassetParams

NewDeleteResponsemanagementResponseassetParamsWithHTTPClient creates a new DeleteResponsemanagementResponseassetParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteResponsemanagementResponseassetParamsWithTimeout

func NewDeleteResponsemanagementResponseassetParamsWithTimeout(timeout time.Duration) *DeleteResponsemanagementResponseassetParams

NewDeleteResponsemanagementResponseassetParamsWithTimeout creates a new DeleteResponsemanagementResponseassetParams object with the ability to set a timeout on a request.

func (*DeleteResponsemanagementResponseassetParams) SetContext

SetContext adds the context to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) SetDefaults

SetDefaults hydrates default values in the delete responsemanagement responseasset params (not the query body).

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

func (*DeleteResponsemanagementResponseassetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) SetResponseAssetID

func (o *DeleteResponsemanagementResponseassetParams) SetResponseAssetID(responseAssetID string)

SetResponseAssetID adds the responseAssetId to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) SetTimeout

SetTimeout adds the timeout to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) WithContext

WithContext adds the context to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) WithDefaults

WithDefaults hydrates default values in the delete responsemanagement responseasset params (not the query body).

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

func (*DeleteResponsemanagementResponseassetParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) WithResponseAssetID

WithResponseAssetID adds the responseAssetID to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) WithTimeout

WithTimeout adds the timeout to the delete responsemanagement responseasset params

func (*DeleteResponsemanagementResponseassetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteResponsemanagementResponseassetReader

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

DeleteResponsemanagementResponseassetReader is a Reader for the DeleteResponsemanagementResponseasset structure.

func (*DeleteResponsemanagementResponseassetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteResponsemanagementResponseassetRequestEntityTooLarge

type DeleteResponsemanagementResponseassetRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetRequestEntityTooLarge

func NewDeleteResponsemanagementResponseassetRequestEntityTooLarge() *DeleteResponsemanagementResponseassetRequestEntityTooLarge

NewDeleteResponsemanagementResponseassetRequestEntityTooLarge creates a DeleteResponsemanagementResponseassetRequestEntityTooLarge with default headers values

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) Error

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) GetPayload

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) IsClientError

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

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) IsCode

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

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) IsRedirect

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

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) IsServerError

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

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) IsSuccess

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

func (*DeleteResponsemanagementResponseassetRequestEntityTooLarge) String

type DeleteResponsemanagementResponseassetRequestTimeout

type DeleteResponsemanagementResponseassetRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetRequestTimeout

func NewDeleteResponsemanagementResponseassetRequestTimeout() *DeleteResponsemanagementResponseassetRequestTimeout

NewDeleteResponsemanagementResponseassetRequestTimeout creates a DeleteResponsemanagementResponseassetRequestTimeout with default headers values

func (*DeleteResponsemanagementResponseassetRequestTimeout) Error

func (*DeleteResponsemanagementResponseassetRequestTimeout) GetPayload

func (*DeleteResponsemanagementResponseassetRequestTimeout) IsClientError

IsClientError returns true when this delete responsemanagement responseasset request timeout response has a 4xx status code

func (*DeleteResponsemanagementResponseassetRequestTimeout) IsCode

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

func (*DeleteResponsemanagementResponseassetRequestTimeout) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset request timeout response has a 3xx status code

func (*DeleteResponsemanagementResponseassetRequestTimeout) IsServerError

IsServerError returns true when this delete responsemanagement responseasset request timeout response has a 5xx status code

func (*DeleteResponsemanagementResponseassetRequestTimeout) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset request timeout response has a 2xx status code

func (*DeleteResponsemanagementResponseassetRequestTimeout) String

type DeleteResponsemanagementResponseassetServiceUnavailable

type DeleteResponsemanagementResponseassetServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetServiceUnavailable

func NewDeleteResponsemanagementResponseassetServiceUnavailable() *DeleteResponsemanagementResponseassetServiceUnavailable

NewDeleteResponsemanagementResponseassetServiceUnavailable creates a DeleteResponsemanagementResponseassetServiceUnavailable with default headers values

func (*DeleteResponsemanagementResponseassetServiceUnavailable) Error

func (*DeleteResponsemanagementResponseassetServiceUnavailable) GetPayload

func (*DeleteResponsemanagementResponseassetServiceUnavailable) IsClientError

IsClientError returns true when this delete responsemanagement responseasset service unavailable response has a 4xx status code

func (*DeleteResponsemanagementResponseassetServiceUnavailable) IsCode

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

func (*DeleteResponsemanagementResponseassetServiceUnavailable) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset service unavailable response has a 3xx status code

func (*DeleteResponsemanagementResponseassetServiceUnavailable) IsServerError

IsServerError returns true when this delete responsemanagement responseasset service unavailable response has a 5xx status code

func (*DeleteResponsemanagementResponseassetServiceUnavailable) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset service unavailable response has a 2xx status code

func (*DeleteResponsemanagementResponseassetServiceUnavailable) String

type DeleteResponsemanagementResponseassetTooManyRequests

type DeleteResponsemanagementResponseassetTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetTooManyRequests

func NewDeleteResponsemanagementResponseassetTooManyRequests() *DeleteResponsemanagementResponseassetTooManyRequests

NewDeleteResponsemanagementResponseassetTooManyRequests creates a DeleteResponsemanagementResponseassetTooManyRequests with default headers values

func (*DeleteResponsemanagementResponseassetTooManyRequests) Error

func (*DeleteResponsemanagementResponseassetTooManyRequests) GetPayload

func (*DeleteResponsemanagementResponseassetTooManyRequests) IsClientError

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

func (*DeleteResponsemanagementResponseassetTooManyRequests) IsCode

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

func (*DeleteResponsemanagementResponseassetTooManyRequests) IsRedirect

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

func (*DeleteResponsemanagementResponseassetTooManyRequests) IsServerError

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

func (*DeleteResponsemanagementResponseassetTooManyRequests) IsSuccess

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

func (*DeleteResponsemanagementResponseassetTooManyRequests) String

type DeleteResponsemanagementResponseassetUnauthorized

type DeleteResponsemanagementResponseassetUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteResponsemanagementResponseassetUnauthorized

func NewDeleteResponsemanagementResponseassetUnauthorized() *DeleteResponsemanagementResponseassetUnauthorized

NewDeleteResponsemanagementResponseassetUnauthorized creates a DeleteResponsemanagementResponseassetUnauthorized with default headers values

func (*DeleteResponsemanagementResponseassetUnauthorized) Error

func (*DeleteResponsemanagementResponseassetUnauthorized) GetPayload

func (*DeleteResponsemanagementResponseassetUnauthorized) IsClientError

IsClientError returns true when this delete responsemanagement responseasset unauthorized response has a 4xx status code

func (*DeleteResponsemanagementResponseassetUnauthorized) IsCode

IsCode returns true when this delete responsemanagement responseasset unauthorized response a status code equal to that given

func (*DeleteResponsemanagementResponseassetUnauthorized) IsRedirect

IsRedirect returns true when this delete responsemanagement responseasset unauthorized response has a 3xx status code

func (*DeleteResponsemanagementResponseassetUnauthorized) IsServerError

IsServerError returns true when this delete responsemanagement responseasset unauthorized response has a 5xx status code

func (*DeleteResponsemanagementResponseassetUnauthorized) IsSuccess

IsSuccess returns true when this delete responsemanagement responseasset unauthorized response has a 2xx status code

func (*DeleteResponsemanagementResponseassetUnauthorized) String

type DeleteResponsemanagementResponseassetUnsupportedMediaType

type DeleteResponsemanagementResponseassetUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewDeleteResponsemanagementResponseassetUnsupportedMediaType

func NewDeleteResponsemanagementResponseassetUnsupportedMediaType() *DeleteResponsemanagementResponseassetUnsupportedMediaType

NewDeleteResponsemanagementResponseassetUnsupportedMediaType creates a DeleteResponsemanagementResponseassetUnsupportedMediaType with default headers values

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) Error

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) GetPayload

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) IsClientError

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

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) IsCode

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

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) IsRedirect

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

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) IsServerError

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

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) IsSuccess

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

func (*DeleteResponsemanagementResponseassetUnsupportedMediaType) String

type GetResponsemanagementLibrariesBadRequest

type GetResponsemanagementLibrariesBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesBadRequest

func NewGetResponsemanagementLibrariesBadRequest() *GetResponsemanagementLibrariesBadRequest

NewGetResponsemanagementLibrariesBadRequest creates a GetResponsemanagementLibrariesBadRequest with default headers values

func (*GetResponsemanagementLibrariesBadRequest) Error

func (*GetResponsemanagementLibrariesBadRequest) GetPayload

func (*GetResponsemanagementLibrariesBadRequest) IsClientError

IsClientError returns true when this get responsemanagement libraries bad request response has a 4xx status code

func (*GetResponsemanagementLibrariesBadRequest) IsCode

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

func (*GetResponsemanagementLibrariesBadRequest) IsRedirect

IsRedirect returns true when this get responsemanagement libraries bad request response has a 3xx status code

func (*GetResponsemanagementLibrariesBadRequest) IsServerError

IsServerError returns true when this get responsemanagement libraries bad request response has a 5xx status code

func (*GetResponsemanagementLibrariesBadRequest) IsSuccess

IsSuccess returns true when this get responsemanagement libraries bad request response has a 2xx status code

func (*GetResponsemanagementLibrariesBadRequest) String

type GetResponsemanagementLibrariesForbidden

type GetResponsemanagementLibrariesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetResponsemanagementLibrariesForbidden

func NewGetResponsemanagementLibrariesForbidden() *GetResponsemanagementLibrariesForbidden

NewGetResponsemanagementLibrariesForbidden creates a GetResponsemanagementLibrariesForbidden with default headers values

func (*GetResponsemanagementLibrariesForbidden) Error

func (*GetResponsemanagementLibrariesForbidden) GetPayload

func (*GetResponsemanagementLibrariesForbidden) IsClientError

func (o *GetResponsemanagementLibrariesForbidden) IsClientError() bool

IsClientError returns true when this get responsemanagement libraries forbidden response has a 4xx status code

func (*GetResponsemanagementLibrariesForbidden) IsCode

IsCode returns true when this get responsemanagement libraries forbidden response a status code equal to that given

func (*GetResponsemanagementLibrariesForbidden) IsRedirect

IsRedirect returns true when this get responsemanagement libraries forbidden response has a 3xx status code

func (*GetResponsemanagementLibrariesForbidden) IsServerError

func (o *GetResponsemanagementLibrariesForbidden) IsServerError() bool

IsServerError returns true when this get responsemanagement libraries forbidden response has a 5xx status code

func (*GetResponsemanagementLibrariesForbidden) IsSuccess

IsSuccess returns true when this get responsemanagement libraries forbidden response has a 2xx status code

func (*GetResponsemanagementLibrariesForbidden) String

type GetResponsemanagementLibrariesGatewayTimeout

type GetResponsemanagementLibrariesGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetResponsemanagementLibrariesGatewayTimeout

func NewGetResponsemanagementLibrariesGatewayTimeout() *GetResponsemanagementLibrariesGatewayTimeout

NewGetResponsemanagementLibrariesGatewayTimeout creates a GetResponsemanagementLibrariesGatewayTimeout with default headers values

func (*GetResponsemanagementLibrariesGatewayTimeout) Error

func (*GetResponsemanagementLibrariesGatewayTimeout) GetPayload

func (*GetResponsemanagementLibrariesGatewayTimeout) IsClientError

IsClientError returns true when this get responsemanagement libraries gateway timeout response has a 4xx status code

func (*GetResponsemanagementLibrariesGatewayTimeout) IsCode

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

func (*GetResponsemanagementLibrariesGatewayTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement libraries gateway timeout response has a 3xx status code

func (*GetResponsemanagementLibrariesGatewayTimeout) IsServerError

IsServerError returns true when this get responsemanagement libraries gateway timeout response has a 5xx status code

func (*GetResponsemanagementLibrariesGatewayTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement libraries gateway timeout response has a 2xx status code

func (*GetResponsemanagementLibrariesGatewayTimeout) String

type GetResponsemanagementLibrariesInternalServerError

type GetResponsemanagementLibrariesInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesInternalServerError

func NewGetResponsemanagementLibrariesInternalServerError() *GetResponsemanagementLibrariesInternalServerError

NewGetResponsemanagementLibrariesInternalServerError creates a GetResponsemanagementLibrariesInternalServerError with default headers values

func (*GetResponsemanagementLibrariesInternalServerError) Error

func (*GetResponsemanagementLibrariesInternalServerError) GetPayload

func (*GetResponsemanagementLibrariesInternalServerError) IsClientError

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

func (*GetResponsemanagementLibrariesInternalServerError) IsCode

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

func (*GetResponsemanagementLibrariesInternalServerError) IsRedirect

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

func (*GetResponsemanagementLibrariesInternalServerError) IsServerError

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

func (*GetResponsemanagementLibrariesInternalServerError) IsSuccess

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

func (*GetResponsemanagementLibrariesInternalServerError) String

type GetResponsemanagementLibrariesNotFound

type GetResponsemanagementLibrariesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetResponsemanagementLibrariesNotFound

func NewGetResponsemanagementLibrariesNotFound() *GetResponsemanagementLibrariesNotFound

NewGetResponsemanagementLibrariesNotFound creates a GetResponsemanagementLibrariesNotFound with default headers values

func (*GetResponsemanagementLibrariesNotFound) Error

func (*GetResponsemanagementLibrariesNotFound) GetPayload

func (*GetResponsemanagementLibrariesNotFound) IsClientError

func (o *GetResponsemanagementLibrariesNotFound) IsClientError() bool

IsClientError returns true when this get responsemanagement libraries not found response has a 4xx status code

func (*GetResponsemanagementLibrariesNotFound) IsCode

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

func (*GetResponsemanagementLibrariesNotFound) IsRedirect

IsRedirect returns true when this get responsemanagement libraries not found response has a 3xx status code

func (*GetResponsemanagementLibrariesNotFound) IsServerError

func (o *GetResponsemanagementLibrariesNotFound) IsServerError() bool

IsServerError returns true when this get responsemanagement libraries not found response has a 5xx status code

func (*GetResponsemanagementLibrariesNotFound) IsSuccess

IsSuccess returns true when this get responsemanagement libraries not found response has a 2xx status code

func (*GetResponsemanagementLibrariesNotFound) String

type GetResponsemanagementLibrariesOK

type GetResponsemanagementLibrariesOK struct {
	Payload *models.LibraryEntityListing
}

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

successful operation

func NewGetResponsemanagementLibrariesOK

func NewGetResponsemanagementLibrariesOK() *GetResponsemanagementLibrariesOK

NewGetResponsemanagementLibrariesOK creates a GetResponsemanagementLibrariesOK with default headers values

func (*GetResponsemanagementLibrariesOK) Error

func (*GetResponsemanagementLibrariesOK) GetPayload

func (*GetResponsemanagementLibrariesOK) IsClientError

func (o *GetResponsemanagementLibrariesOK) IsClientError() bool

IsClientError returns true when this get responsemanagement libraries o k response has a 4xx status code

func (*GetResponsemanagementLibrariesOK) IsCode

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

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

func (*GetResponsemanagementLibrariesOK) IsRedirect

func (o *GetResponsemanagementLibrariesOK) IsRedirect() bool

IsRedirect returns true when this get responsemanagement libraries o k response has a 3xx status code

func (*GetResponsemanagementLibrariesOK) IsServerError

func (o *GetResponsemanagementLibrariesOK) IsServerError() bool

IsServerError returns true when this get responsemanagement libraries o k response has a 5xx status code

func (*GetResponsemanagementLibrariesOK) IsSuccess

func (o *GetResponsemanagementLibrariesOK) IsSuccess() bool

IsSuccess returns true when this get responsemanagement libraries o k response has a 2xx status code

func (*GetResponsemanagementLibrariesOK) String

type GetResponsemanagementLibrariesParams

type GetResponsemanagementLibrariesParams struct {

	/* MessagingTemplateFilter.

	   Returns a list of libraries that contain responses with at least one messaging template defined for a specific message channel
	*/
	MessagingTemplateFilter *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

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

GetResponsemanagementLibrariesParams contains all the parameters to send to the API endpoint

for the get responsemanagement libraries operation.

Typically these are written to a http.Request.

func NewGetResponsemanagementLibrariesParams

func NewGetResponsemanagementLibrariesParams() *GetResponsemanagementLibrariesParams

NewGetResponsemanagementLibrariesParams creates a new GetResponsemanagementLibrariesParams 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 NewGetResponsemanagementLibrariesParamsWithContext

func NewGetResponsemanagementLibrariesParamsWithContext(ctx context.Context) *GetResponsemanagementLibrariesParams

NewGetResponsemanagementLibrariesParamsWithContext creates a new GetResponsemanagementLibrariesParams object with the ability to set a context for a request.

func NewGetResponsemanagementLibrariesParamsWithHTTPClient

func NewGetResponsemanagementLibrariesParamsWithHTTPClient(client *http.Client) *GetResponsemanagementLibrariesParams

NewGetResponsemanagementLibrariesParamsWithHTTPClient creates a new GetResponsemanagementLibrariesParams object with the ability to set a custom HTTPClient for a request.

func NewGetResponsemanagementLibrariesParamsWithTimeout

func NewGetResponsemanagementLibrariesParamsWithTimeout(timeout time.Duration) *GetResponsemanagementLibrariesParams

NewGetResponsemanagementLibrariesParamsWithTimeout creates a new GetResponsemanagementLibrariesParams object with the ability to set a timeout on a request.

func (*GetResponsemanagementLibrariesParams) SetContext

SetContext adds the context to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) SetDefaults

func (o *GetResponsemanagementLibrariesParams) SetDefaults()

SetDefaults hydrates default values in the get responsemanagement libraries params (not the query body).

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

func (*GetResponsemanagementLibrariesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) SetMessagingTemplateFilter

func (o *GetResponsemanagementLibrariesParams) SetMessagingTemplateFilter(messagingTemplateFilter *string)

SetMessagingTemplateFilter adds the messagingTemplateFilter to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) SetPageNumber

func (o *GetResponsemanagementLibrariesParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) SetPageSize

func (o *GetResponsemanagementLibrariesParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) SetTimeout

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

SetTimeout adds the timeout to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WithContext

WithContext adds the context to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WithDefaults

WithDefaults hydrates default values in the get responsemanagement libraries params (not the query body).

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

func (*GetResponsemanagementLibrariesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WithMessagingTemplateFilter

func (o *GetResponsemanagementLibrariesParams) WithMessagingTemplateFilter(messagingTemplateFilter *string) *GetResponsemanagementLibrariesParams

WithMessagingTemplateFilter adds the messagingTemplateFilter to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WithPageNumber

WithPageNumber adds the pageNumber to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WithPageSize

WithPageSize adds the pageSize to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WithTimeout

WithTimeout adds the timeout to the get responsemanagement libraries params

func (*GetResponsemanagementLibrariesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResponsemanagementLibrariesReader

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

GetResponsemanagementLibrariesReader is a Reader for the GetResponsemanagementLibraries structure.

func (*GetResponsemanagementLibrariesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResponsemanagementLibrariesRequestEntityTooLarge

type GetResponsemanagementLibrariesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesRequestEntityTooLarge

func NewGetResponsemanagementLibrariesRequestEntityTooLarge() *GetResponsemanagementLibrariesRequestEntityTooLarge

NewGetResponsemanagementLibrariesRequestEntityTooLarge creates a GetResponsemanagementLibrariesRequestEntityTooLarge with default headers values

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) Error

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) GetPayload

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) IsClientError

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

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) IsCode

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

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) IsRedirect

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

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) IsServerError

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

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) IsSuccess

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

func (*GetResponsemanagementLibrariesRequestEntityTooLarge) String

type GetResponsemanagementLibrariesRequestTimeout

type GetResponsemanagementLibrariesRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesRequestTimeout

func NewGetResponsemanagementLibrariesRequestTimeout() *GetResponsemanagementLibrariesRequestTimeout

NewGetResponsemanagementLibrariesRequestTimeout creates a GetResponsemanagementLibrariesRequestTimeout with default headers values

func (*GetResponsemanagementLibrariesRequestTimeout) Error

func (*GetResponsemanagementLibrariesRequestTimeout) GetPayload

func (*GetResponsemanagementLibrariesRequestTimeout) IsClientError

IsClientError returns true when this get responsemanagement libraries request timeout response has a 4xx status code

func (*GetResponsemanagementLibrariesRequestTimeout) IsCode

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

func (*GetResponsemanagementLibrariesRequestTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement libraries request timeout response has a 3xx status code

func (*GetResponsemanagementLibrariesRequestTimeout) IsServerError

IsServerError returns true when this get responsemanagement libraries request timeout response has a 5xx status code

func (*GetResponsemanagementLibrariesRequestTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement libraries request timeout response has a 2xx status code

func (*GetResponsemanagementLibrariesRequestTimeout) String

type GetResponsemanagementLibrariesServiceUnavailable

type GetResponsemanagementLibrariesServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesServiceUnavailable

func NewGetResponsemanagementLibrariesServiceUnavailable() *GetResponsemanagementLibrariesServiceUnavailable

NewGetResponsemanagementLibrariesServiceUnavailable creates a GetResponsemanagementLibrariesServiceUnavailable with default headers values

func (*GetResponsemanagementLibrariesServiceUnavailable) Error

func (*GetResponsemanagementLibrariesServiceUnavailable) GetPayload

func (*GetResponsemanagementLibrariesServiceUnavailable) IsClientError

IsClientError returns true when this get responsemanagement libraries service unavailable response has a 4xx status code

func (*GetResponsemanagementLibrariesServiceUnavailable) IsCode

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

func (*GetResponsemanagementLibrariesServiceUnavailable) IsRedirect

IsRedirect returns true when this get responsemanagement libraries service unavailable response has a 3xx status code

func (*GetResponsemanagementLibrariesServiceUnavailable) IsServerError

IsServerError returns true when this get responsemanagement libraries service unavailable response has a 5xx status code

func (*GetResponsemanagementLibrariesServiceUnavailable) IsSuccess

IsSuccess returns true when this get responsemanagement libraries service unavailable response has a 2xx status code

func (*GetResponsemanagementLibrariesServiceUnavailable) String

type GetResponsemanagementLibrariesTooManyRequests

type GetResponsemanagementLibrariesTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesTooManyRequests

func NewGetResponsemanagementLibrariesTooManyRequests() *GetResponsemanagementLibrariesTooManyRequests

NewGetResponsemanagementLibrariesTooManyRequests creates a GetResponsemanagementLibrariesTooManyRequests with default headers values

func (*GetResponsemanagementLibrariesTooManyRequests) Error

func (*GetResponsemanagementLibrariesTooManyRequests) GetPayload

func (*GetResponsemanagementLibrariesTooManyRequests) IsClientError

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

func (*GetResponsemanagementLibrariesTooManyRequests) IsCode

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

func (*GetResponsemanagementLibrariesTooManyRequests) IsRedirect

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

func (*GetResponsemanagementLibrariesTooManyRequests) IsServerError

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

func (*GetResponsemanagementLibrariesTooManyRequests) IsSuccess

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

func (*GetResponsemanagementLibrariesTooManyRequests) String

type GetResponsemanagementLibrariesUnauthorized

type GetResponsemanagementLibrariesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetResponsemanagementLibrariesUnauthorized

func NewGetResponsemanagementLibrariesUnauthorized() *GetResponsemanagementLibrariesUnauthorized

NewGetResponsemanagementLibrariesUnauthorized creates a GetResponsemanagementLibrariesUnauthorized with default headers values

func (*GetResponsemanagementLibrariesUnauthorized) Error

func (*GetResponsemanagementLibrariesUnauthorized) GetPayload

func (*GetResponsemanagementLibrariesUnauthorized) IsClientError

IsClientError returns true when this get responsemanagement libraries unauthorized response has a 4xx status code

func (*GetResponsemanagementLibrariesUnauthorized) IsCode

IsCode returns true when this get responsemanagement libraries unauthorized response a status code equal to that given

func (*GetResponsemanagementLibrariesUnauthorized) IsRedirect

IsRedirect returns true when this get responsemanagement libraries unauthorized response has a 3xx status code

func (*GetResponsemanagementLibrariesUnauthorized) IsServerError

IsServerError returns true when this get responsemanagement libraries unauthorized response has a 5xx status code

func (*GetResponsemanagementLibrariesUnauthorized) IsSuccess

IsSuccess returns true when this get responsemanagement libraries unauthorized response has a 2xx status code

func (*GetResponsemanagementLibrariesUnauthorized) String

type GetResponsemanagementLibrariesUnsupportedMediaType

type GetResponsemanagementLibrariesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibrariesUnsupportedMediaType

func NewGetResponsemanagementLibrariesUnsupportedMediaType() *GetResponsemanagementLibrariesUnsupportedMediaType

NewGetResponsemanagementLibrariesUnsupportedMediaType creates a GetResponsemanagementLibrariesUnsupportedMediaType with default headers values

func (*GetResponsemanagementLibrariesUnsupportedMediaType) Error

func (*GetResponsemanagementLibrariesUnsupportedMediaType) GetPayload

func (*GetResponsemanagementLibrariesUnsupportedMediaType) IsClientError

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

func (*GetResponsemanagementLibrariesUnsupportedMediaType) IsCode

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

func (*GetResponsemanagementLibrariesUnsupportedMediaType) IsRedirect

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

func (*GetResponsemanagementLibrariesUnsupportedMediaType) IsServerError

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

func (*GetResponsemanagementLibrariesUnsupportedMediaType) IsSuccess

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

func (*GetResponsemanagementLibrariesUnsupportedMediaType) String

type GetResponsemanagementLibraryBadRequest

type GetResponsemanagementLibraryBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryBadRequest

func NewGetResponsemanagementLibraryBadRequest() *GetResponsemanagementLibraryBadRequest

NewGetResponsemanagementLibraryBadRequest creates a GetResponsemanagementLibraryBadRequest with default headers values

func (*GetResponsemanagementLibraryBadRequest) Error

func (*GetResponsemanagementLibraryBadRequest) GetPayload

func (*GetResponsemanagementLibraryBadRequest) IsClientError

func (o *GetResponsemanagementLibraryBadRequest) IsClientError() bool

IsClientError returns true when this get responsemanagement library bad request response has a 4xx status code

func (*GetResponsemanagementLibraryBadRequest) IsCode

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

func (*GetResponsemanagementLibraryBadRequest) IsRedirect

IsRedirect returns true when this get responsemanagement library bad request response has a 3xx status code

func (*GetResponsemanagementLibraryBadRequest) IsServerError

func (o *GetResponsemanagementLibraryBadRequest) IsServerError() bool

IsServerError returns true when this get responsemanagement library bad request response has a 5xx status code

func (*GetResponsemanagementLibraryBadRequest) IsSuccess

IsSuccess returns true when this get responsemanagement library bad request response has a 2xx status code

func (*GetResponsemanagementLibraryBadRequest) String

type GetResponsemanagementLibraryForbidden

type GetResponsemanagementLibraryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetResponsemanagementLibraryForbidden

func NewGetResponsemanagementLibraryForbidden() *GetResponsemanagementLibraryForbidden

NewGetResponsemanagementLibraryForbidden creates a GetResponsemanagementLibraryForbidden with default headers values

func (*GetResponsemanagementLibraryForbidden) Error

func (*GetResponsemanagementLibraryForbidden) GetPayload

func (*GetResponsemanagementLibraryForbidden) IsClientError

func (o *GetResponsemanagementLibraryForbidden) IsClientError() bool

IsClientError returns true when this get responsemanagement library forbidden response has a 4xx status code

func (*GetResponsemanagementLibraryForbidden) IsCode

IsCode returns true when this get responsemanagement library forbidden response a status code equal to that given

func (*GetResponsemanagementLibraryForbidden) IsRedirect

IsRedirect returns true when this get responsemanagement library forbidden response has a 3xx status code

func (*GetResponsemanagementLibraryForbidden) IsServerError

func (o *GetResponsemanagementLibraryForbidden) IsServerError() bool

IsServerError returns true when this get responsemanagement library forbidden response has a 5xx status code

func (*GetResponsemanagementLibraryForbidden) IsSuccess

IsSuccess returns true when this get responsemanagement library forbidden response has a 2xx status code

func (*GetResponsemanagementLibraryForbidden) String

type GetResponsemanagementLibraryGatewayTimeout

type GetResponsemanagementLibraryGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetResponsemanagementLibraryGatewayTimeout

func NewGetResponsemanagementLibraryGatewayTimeout() *GetResponsemanagementLibraryGatewayTimeout

NewGetResponsemanagementLibraryGatewayTimeout creates a GetResponsemanagementLibraryGatewayTimeout with default headers values

func (*GetResponsemanagementLibraryGatewayTimeout) Error

func (*GetResponsemanagementLibraryGatewayTimeout) GetPayload

func (*GetResponsemanagementLibraryGatewayTimeout) IsClientError

IsClientError returns true when this get responsemanagement library gateway timeout response has a 4xx status code

func (*GetResponsemanagementLibraryGatewayTimeout) IsCode

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

func (*GetResponsemanagementLibraryGatewayTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement library gateway timeout response has a 3xx status code

func (*GetResponsemanagementLibraryGatewayTimeout) IsServerError

IsServerError returns true when this get responsemanagement library gateway timeout response has a 5xx status code

func (*GetResponsemanagementLibraryGatewayTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement library gateway timeout response has a 2xx status code

func (*GetResponsemanagementLibraryGatewayTimeout) String

type GetResponsemanagementLibraryInternalServerError

type GetResponsemanagementLibraryInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryInternalServerError

func NewGetResponsemanagementLibraryInternalServerError() *GetResponsemanagementLibraryInternalServerError

NewGetResponsemanagementLibraryInternalServerError creates a GetResponsemanagementLibraryInternalServerError with default headers values

func (*GetResponsemanagementLibraryInternalServerError) Error

func (*GetResponsemanagementLibraryInternalServerError) GetPayload

func (*GetResponsemanagementLibraryInternalServerError) IsClientError

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

func (*GetResponsemanagementLibraryInternalServerError) IsCode

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

func (*GetResponsemanagementLibraryInternalServerError) IsRedirect

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

func (*GetResponsemanagementLibraryInternalServerError) IsServerError

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

func (*GetResponsemanagementLibraryInternalServerError) IsSuccess

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

func (*GetResponsemanagementLibraryInternalServerError) String

type GetResponsemanagementLibraryNotFound

type GetResponsemanagementLibraryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetResponsemanagementLibraryNotFound

func NewGetResponsemanagementLibraryNotFound() *GetResponsemanagementLibraryNotFound

NewGetResponsemanagementLibraryNotFound creates a GetResponsemanagementLibraryNotFound with default headers values

func (*GetResponsemanagementLibraryNotFound) Error

func (*GetResponsemanagementLibraryNotFound) GetPayload

func (*GetResponsemanagementLibraryNotFound) IsClientError

func (o *GetResponsemanagementLibraryNotFound) IsClientError() bool

IsClientError returns true when this get responsemanagement library not found response has a 4xx status code

func (*GetResponsemanagementLibraryNotFound) IsCode

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

func (*GetResponsemanagementLibraryNotFound) IsRedirect

IsRedirect returns true when this get responsemanagement library not found response has a 3xx status code

func (*GetResponsemanagementLibraryNotFound) IsServerError

func (o *GetResponsemanagementLibraryNotFound) IsServerError() bool

IsServerError returns true when this get responsemanagement library not found response has a 5xx status code

func (*GetResponsemanagementLibraryNotFound) IsSuccess

IsSuccess returns true when this get responsemanagement library not found response has a 2xx status code

func (*GetResponsemanagementLibraryNotFound) String

type GetResponsemanagementLibraryOK

type GetResponsemanagementLibraryOK struct {
	Payload *models.Library
}

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

successful operation

func NewGetResponsemanagementLibraryOK

func NewGetResponsemanagementLibraryOK() *GetResponsemanagementLibraryOK

NewGetResponsemanagementLibraryOK creates a GetResponsemanagementLibraryOK with default headers values

func (*GetResponsemanagementLibraryOK) Error

func (*GetResponsemanagementLibraryOK) GetPayload

func (*GetResponsemanagementLibraryOK) IsClientError

func (o *GetResponsemanagementLibraryOK) IsClientError() bool

IsClientError returns true when this get responsemanagement library o k response has a 4xx status code

func (*GetResponsemanagementLibraryOK) IsCode

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

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

func (*GetResponsemanagementLibraryOK) IsRedirect

func (o *GetResponsemanagementLibraryOK) IsRedirect() bool

IsRedirect returns true when this get responsemanagement library o k response has a 3xx status code

func (*GetResponsemanagementLibraryOK) IsServerError

func (o *GetResponsemanagementLibraryOK) IsServerError() bool

IsServerError returns true when this get responsemanagement library o k response has a 5xx status code

func (*GetResponsemanagementLibraryOK) IsSuccess

func (o *GetResponsemanagementLibraryOK) IsSuccess() bool

IsSuccess returns true when this get responsemanagement library o k response has a 2xx status code

func (*GetResponsemanagementLibraryOK) String

type GetResponsemanagementLibraryParams

type GetResponsemanagementLibraryParams struct {

	/* LibraryID.

	   Library ID
	*/
	LibraryID string

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

GetResponsemanagementLibraryParams contains all the parameters to send to the API endpoint

for the get responsemanagement library operation.

Typically these are written to a http.Request.

func NewGetResponsemanagementLibraryParams

func NewGetResponsemanagementLibraryParams() *GetResponsemanagementLibraryParams

NewGetResponsemanagementLibraryParams creates a new GetResponsemanagementLibraryParams 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 NewGetResponsemanagementLibraryParamsWithContext

func NewGetResponsemanagementLibraryParamsWithContext(ctx context.Context) *GetResponsemanagementLibraryParams

NewGetResponsemanagementLibraryParamsWithContext creates a new GetResponsemanagementLibraryParams object with the ability to set a context for a request.

func NewGetResponsemanagementLibraryParamsWithHTTPClient

func NewGetResponsemanagementLibraryParamsWithHTTPClient(client *http.Client) *GetResponsemanagementLibraryParams

NewGetResponsemanagementLibraryParamsWithHTTPClient creates a new GetResponsemanagementLibraryParams object with the ability to set a custom HTTPClient for a request.

func NewGetResponsemanagementLibraryParamsWithTimeout

func NewGetResponsemanagementLibraryParamsWithTimeout(timeout time.Duration) *GetResponsemanagementLibraryParams

NewGetResponsemanagementLibraryParamsWithTimeout creates a new GetResponsemanagementLibraryParams object with the ability to set a timeout on a request.

func (*GetResponsemanagementLibraryParams) SetContext

SetContext adds the context to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) SetDefaults

func (o *GetResponsemanagementLibraryParams) SetDefaults()

SetDefaults hydrates default values in the get responsemanagement library params (not the query body).

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

func (*GetResponsemanagementLibraryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) SetLibraryID

func (o *GetResponsemanagementLibraryParams) SetLibraryID(libraryID string)

SetLibraryID adds the libraryId to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) SetTimeout

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

SetTimeout adds the timeout to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) WithContext

WithContext adds the context to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) WithDefaults

WithDefaults hydrates default values in the get responsemanagement library params (not the query body).

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

func (*GetResponsemanagementLibraryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) WithLibraryID

WithLibraryID adds the libraryID to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) WithTimeout

WithTimeout adds the timeout to the get responsemanagement library params

func (*GetResponsemanagementLibraryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResponsemanagementLibraryReader

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

GetResponsemanagementLibraryReader is a Reader for the GetResponsemanagementLibrary structure.

func (*GetResponsemanagementLibraryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResponsemanagementLibraryRequestEntityTooLarge

type GetResponsemanagementLibraryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryRequestEntityTooLarge

func NewGetResponsemanagementLibraryRequestEntityTooLarge() *GetResponsemanagementLibraryRequestEntityTooLarge

NewGetResponsemanagementLibraryRequestEntityTooLarge creates a GetResponsemanagementLibraryRequestEntityTooLarge with default headers values

func (*GetResponsemanagementLibraryRequestEntityTooLarge) Error

func (*GetResponsemanagementLibraryRequestEntityTooLarge) GetPayload

func (*GetResponsemanagementLibraryRequestEntityTooLarge) IsClientError

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

func (*GetResponsemanagementLibraryRequestEntityTooLarge) IsCode

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

func (*GetResponsemanagementLibraryRequestEntityTooLarge) IsRedirect

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

func (*GetResponsemanagementLibraryRequestEntityTooLarge) IsServerError

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

func (*GetResponsemanagementLibraryRequestEntityTooLarge) IsSuccess

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

func (*GetResponsemanagementLibraryRequestEntityTooLarge) String

type GetResponsemanagementLibraryRequestTimeout

type GetResponsemanagementLibraryRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryRequestTimeout

func NewGetResponsemanagementLibraryRequestTimeout() *GetResponsemanagementLibraryRequestTimeout

NewGetResponsemanagementLibraryRequestTimeout creates a GetResponsemanagementLibraryRequestTimeout with default headers values

func (*GetResponsemanagementLibraryRequestTimeout) Error

func (*GetResponsemanagementLibraryRequestTimeout) GetPayload

func (*GetResponsemanagementLibraryRequestTimeout) IsClientError

IsClientError returns true when this get responsemanagement library request timeout response has a 4xx status code

func (*GetResponsemanagementLibraryRequestTimeout) IsCode

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

func (*GetResponsemanagementLibraryRequestTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement library request timeout response has a 3xx status code

func (*GetResponsemanagementLibraryRequestTimeout) IsServerError

IsServerError returns true when this get responsemanagement library request timeout response has a 5xx status code

func (*GetResponsemanagementLibraryRequestTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement library request timeout response has a 2xx status code

func (*GetResponsemanagementLibraryRequestTimeout) String

type GetResponsemanagementLibraryServiceUnavailable

type GetResponsemanagementLibraryServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryServiceUnavailable

func NewGetResponsemanagementLibraryServiceUnavailable() *GetResponsemanagementLibraryServiceUnavailable

NewGetResponsemanagementLibraryServiceUnavailable creates a GetResponsemanagementLibraryServiceUnavailable with default headers values

func (*GetResponsemanagementLibraryServiceUnavailable) Error

func (*GetResponsemanagementLibraryServiceUnavailable) GetPayload

func (*GetResponsemanagementLibraryServiceUnavailable) IsClientError

IsClientError returns true when this get responsemanagement library service unavailable response has a 4xx status code

func (*GetResponsemanagementLibraryServiceUnavailable) IsCode

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

func (*GetResponsemanagementLibraryServiceUnavailable) IsRedirect

IsRedirect returns true when this get responsemanagement library service unavailable response has a 3xx status code

func (*GetResponsemanagementLibraryServiceUnavailable) IsServerError

IsServerError returns true when this get responsemanagement library service unavailable response has a 5xx status code

func (*GetResponsemanagementLibraryServiceUnavailable) IsSuccess

IsSuccess returns true when this get responsemanagement library service unavailable response has a 2xx status code

func (*GetResponsemanagementLibraryServiceUnavailable) String

type GetResponsemanagementLibraryTooManyRequests

type GetResponsemanagementLibraryTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryTooManyRequests

func NewGetResponsemanagementLibraryTooManyRequests() *GetResponsemanagementLibraryTooManyRequests

NewGetResponsemanagementLibraryTooManyRequests creates a GetResponsemanagementLibraryTooManyRequests with default headers values

func (*GetResponsemanagementLibraryTooManyRequests) Error

func (*GetResponsemanagementLibraryTooManyRequests) GetPayload

func (*GetResponsemanagementLibraryTooManyRequests) IsClientError

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

func (*GetResponsemanagementLibraryTooManyRequests) IsCode

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

func (*GetResponsemanagementLibraryTooManyRequests) IsRedirect

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

func (*GetResponsemanagementLibraryTooManyRequests) IsServerError

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

func (*GetResponsemanagementLibraryTooManyRequests) IsSuccess

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

func (*GetResponsemanagementLibraryTooManyRequests) String

type GetResponsemanagementLibraryUnauthorized

type GetResponsemanagementLibraryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetResponsemanagementLibraryUnauthorized

func NewGetResponsemanagementLibraryUnauthorized() *GetResponsemanagementLibraryUnauthorized

NewGetResponsemanagementLibraryUnauthorized creates a GetResponsemanagementLibraryUnauthorized with default headers values

func (*GetResponsemanagementLibraryUnauthorized) Error

func (*GetResponsemanagementLibraryUnauthorized) GetPayload

func (*GetResponsemanagementLibraryUnauthorized) IsClientError

IsClientError returns true when this get responsemanagement library unauthorized response has a 4xx status code

func (*GetResponsemanagementLibraryUnauthorized) IsCode

IsCode returns true when this get responsemanagement library unauthorized response a status code equal to that given

func (*GetResponsemanagementLibraryUnauthorized) IsRedirect

IsRedirect returns true when this get responsemanagement library unauthorized response has a 3xx status code

func (*GetResponsemanagementLibraryUnauthorized) IsServerError

IsServerError returns true when this get responsemanagement library unauthorized response has a 5xx status code

func (*GetResponsemanagementLibraryUnauthorized) IsSuccess

IsSuccess returns true when this get responsemanagement library unauthorized response has a 2xx status code

func (*GetResponsemanagementLibraryUnauthorized) String

type GetResponsemanagementLibraryUnsupportedMediaType

type GetResponsemanagementLibraryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementLibraryUnsupportedMediaType

func NewGetResponsemanagementLibraryUnsupportedMediaType() *GetResponsemanagementLibraryUnsupportedMediaType

NewGetResponsemanagementLibraryUnsupportedMediaType creates a GetResponsemanagementLibraryUnsupportedMediaType with default headers values

func (*GetResponsemanagementLibraryUnsupportedMediaType) Error

func (*GetResponsemanagementLibraryUnsupportedMediaType) GetPayload

func (*GetResponsemanagementLibraryUnsupportedMediaType) IsClientError

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

func (*GetResponsemanagementLibraryUnsupportedMediaType) IsCode

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

func (*GetResponsemanagementLibraryUnsupportedMediaType) IsRedirect

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

func (*GetResponsemanagementLibraryUnsupportedMediaType) IsServerError

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

func (*GetResponsemanagementLibraryUnsupportedMediaType) IsSuccess

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

func (*GetResponsemanagementLibraryUnsupportedMediaType) String

type GetResponsemanagementResponseBadRequest

type GetResponsemanagementResponseBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseBadRequest

func NewGetResponsemanagementResponseBadRequest() *GetResponsemanagementResponseBadRequest

NewGetResponsemanagementResponseBadRequest creates a GetResponsemanagementResponseBadRequest with default headers values

func (*GetResponsemanagementResponseBadRequest) Error

func (*GetResponsemanagementResponseBadRequest) GetPayload

func (*GetResponsemanagementResponseBadRequest) IsClientError

func (o *GetResponsemanagementResponseBadRequest) IsClientError() bool

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

func (*GetResponsemanagementResponseBadRequest) IsCode

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

func (*GetResponsemanagementResponseBadRequest) IsRedirect

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

func (*GetResponsemanagementResponseBadRequest) IsServerError

func (o *GetResponsemanagementResponseBadRequest) IsServerError() bool

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

func (*GetResponsemanagementResponseBadRequest) IsSuccess

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

func (*GetResponsemanagementResponseBadRequest) String

type GetResponsemanagementResponseForbidden

type GetResponsemanagementResponseForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetResponsemanagementResponseForbidden

func NewGetResponsemanagementResponseForbidden() *GetResponsemanagementResponseForbidden

NewGetResponsemanagementResponseForbidden creates a GetResponsemanagementResponseForbidden with default headers values

func (*GetResponsemanagementResponseForbidden) Error

func (*GetResponsemanagementResponseForbidden) GetPayload

func (*GetResponsemanagementResponseForbidden) IsClientError

func (o *GetResponsemanagementResponseForbidden) IsClientError() bool

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

func (*GetResponsemanagementResponseForbidden) IsCode

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

func (*GetResponsemanagementResponseForbidden) IsRedirect

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

func (*GetResponsemanagementResponseForbidden) IsServerError

func (o *GetResponsemanagementResponseForbidden) IsServerError() bool

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

func (*GetResponsemanagementResponseForbidden) IsSuccess

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

func (*GetResponsemanagementResponseForbidden) String

type GetResponsemanagementResponseGatewayTimeout

type GetResponsemanagementResponseGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetResponsemanagementResponseGatewayTimeout

func NewGetResponsemanagementResponseGatewayTimeout() *GetResponsemanagementResponseGatewayTimeout

NewGetResponsemanagementResponseGatewayTimeout creates a GetResponsemanagementResponseGatewayTimeout with default headers values

func (*GetResponsemanagementResponseGatewayTimeout) Error

func (*GetResponsemanagementResponseGatewayTimeout) GetPayload

func (*GetResponsemanagementResponseGatewayTimeout) IsClientError

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

func (*GetResponsemanagementResponseGatewayTimeout) IsCode

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

func (*GetResponsemanagementResponseGatewayTimeout) IsRedirect

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

func (*GetResponsemanagementResponseGatewayTimeout) IsServerError

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

func (*GetResponsemanagementResponseGatewayTimeout) IsSuccess

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

func (*GetResponsemanagementResponseGatewayTimeout) String

type GetResponsemanagementResponseInternalServerError

type GetResponsemanagementResponseInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseInternalServerError

func NewGetResponsemanagementResponseInternalServerError() *GetResponsemanagementResponseInternalServerError

NewGetResponsemanagementResponseInternalServerError creates a GetResponsemanagementResponseInternalServerError with default headers values

func (*GetResponsemanagementResponseInternalServerError) Error

func (*GetResponsemanagementResponseInternalServerError) GetPayload

func (*GetResponsemanagementResponseInternalServerError) IsClientError

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

func (*GetResponsemanagementResponseInternalServerError) IsCode

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

func (*GetResponsemanagementResponseInternalServerError) IsRedirect

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

func (*GetResponsemanagementResponseInternalServerError) IsServerError

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

func (*GetResponsemanagementResponseInternalServerError) IsSuccess

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

func (*GetResponsemanagementResponseInternalServerError) String

type GetResponsemanagementResponseNotFound

type GetResponsemanagementResponseNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetResponsemanagementResponseNotFound

func NewGetResponsemanagementResponseNotFound() *GetResponsemanagementResponseNotFound

NewGetResponsemanagementResponseNotFound creates a GetResponsemanagementResponseNotFound with default headers values

func (*GetResponsemanagementResponseNotFound) Error

func (*GetResponsemanagementResponseNotFound) GetPayload

func (*GetResponsemanagementResponseNotFound) IsClientError

func (o *GetResponsemanagementResponseNotFound) IsClientError() bool

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

func (*GetResponsemanagementResponseNotFound) IsCode

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

func (*GetResponsemanagementResponseNotFound) IsRedirect

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

func (*GetResponsemanagementResponseNotFound) IsServerError

func (o *GetResponsemanagementResponseNotFound) IsServerError() bool

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

func (*GetResponsemanagementResponseNotFound) IsSuccess

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

func (*GetResponsemanagementResponseNotFound) String

type GetResponsemanagementResponseOK

type GetResponsemanagementResponseOK struct {
	Payload *models.Response
}

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

successful operation

func NewGetResponsemanagementResponseOK

func NewGetResponsemanagementResponseOK() *GetResponsemanagementResponseOK

NewGetResponsemanagementResponseOK creates a GetResponsemanagementResponseOK with default headers values

func (*GetResponsemanagementResponseOK) Error

func (*GetResponsemanagementResponseOK) GetPayload

func (*GetResponsemanagementResponseOK) IsClientError

func (o *GetResponsemanagementResponseOK) IsClientError() bool

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

func (*GetResponsemanagementResponseOK) IsCode

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

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

func (*GetResponsemanagementResponseOK) IsRedirect

func (o *GetResponsemanagementResponseOK) IsRedirect() bool

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

func (*GetResponsemanagementResponseOK) IsServerError

func (o *GetResponsemanagementResponseOK) IsServerError() bool

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

func (*GetResponsemanagementResponseOK) IsSuccess

func (o *GetResponsemanagementResponseOK) IsSuccess() bool

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

func (*GetResponsemanagementResponseOK) String

type GetResponsemanagementResponseParams

type GetResponsemanagementResponseParams struct {

	/* Expand.

	   Expand instructions for the return value.
	*/
	Expand *string

	/* ResponseID.

	   Response ID
	*/
	ResponseID string

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

GetResponsemanagementResponseParams contains all the parameters to send to the API endpoint

for the get responsemanagement response operation.

Typically these are written to a http.Request.

func NewGetResponsemanagementResponseParams

func NewGetResponsemanagementResponseParams() *GetResponsemanagementResponseParams

NewGetResponsemanagementResponseParams creates a new GetResponsemanagementResponseParams 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 NewGetResponsemanagementResponseParamsWithContext

func NewGetResponsemanagementResponseParamsWithContext(ctx context.Context) *GetResponsemanagementResponseParams

NewGetResponsemanagementResponseParamsWithContext creates a new GetResponsemanagementResponseParams object with the ability to set a context for a request.

func NewGetResponsemanagementResponseParamsWithHTTPClient

func NewGetResponsemanagementResponseParamsWithHTTPClient(client *http.Client) *GetResponsemanagementResponseParams

NewGetResponsemanagementResponseParamsWithHTTPClient creates a new GetResponsemanagementResponseParams object with the ability to set a custom HTTPClient for a request.

func NewGetResponsemanagementResponseParamsWithTimeout

func NewGetResponsemanagementResponseParamsWithTimeout(timeout time.Duration) *GetResponsemanagementResponseParams

NewGetResponsemanagementResponseParamsWithTimeout creates a new GetResponsemanagementResponseParams object with the ability to set a timeout on a request.

func (*GetResponsemanagementResponseParams) SetContext

SetContext adds the context to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) SetDefaults

func (o *GetResponsemanagementResponseParams) SetDefaults()

SetDefaults hydrates default values in the get responsemanagement response params (not the query body).

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

func (*GetResponsemanagementResponseParams) SetExpand

func (o *GetResponsemanagementResponseParams) SetExpand(expand *string)

SetExpand adds the expand to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) SetResponseID

func (o *GetResponsemanagementResponseParams) SetResponseID(responseID string)

SetResponseID adds the responseId to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) SetTimeout

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

SetTimeout adds the timeout to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) WithContext

WithContext adds the context to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) WithDefaults

WithDefaults hydrates default values in the get responsemanagement response params (not the query body).

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

func (*GetResponsemanagementResponseParams) WithExpand

WithExpand adds the expand to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) WithResponseID

WithResponseID adds the responseID to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) WithTimeout

WithTimeout adds the timeout to the get responsemanagement response params

func (*GetResponsemanagementResponseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResponsemanagementResponseReader

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

GetResponsemanagementResponseReader is a Reader for the GetResponsemanagementResponse structure.

func (*GetResponsemanagementResponseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResponsemanagementResponseRequestEntityTooLarge

type GetResponsemanagementResponseRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseRequestEntityTooLarge

func NewGetResponsemanagementResponseRequestEntityTooLarge() *GetResponsemanagementResponseRequestEntityTooLarge

NewGetResponsemanagementResponseRequestEntityTooLarge creates a GetResponsemanagementResponseRequestEntityTooLarge with default headers values

func (*GetResponsemanagementResponseRequestEntityTooLarge) Error

func (*GetResponsemanagementResponseRequestEntityTooLarge) GetPayload

func (*GetResponsemanagementResponseRequestEntityTooLarge) IsClientError

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

func (*GetResponsemanagementResponseRequestEntityTooLarge) IsCode

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

func (*GetResponsemanagementResponseRequestEntityTooLarge) IsRedirect

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

func (*GetResponsemanagementResponseRequestEntityTooLarge) IsServerError

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

func (*GetResponsemanagementResponseRequestEntityTooLarge) IsSuccess

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

func (*GetResponsemanagementResponseRequestEntityTooLarge) String

type GetResponsemanagementResponseRequestTimeout

type GetResponsemanagementResponseRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseRequestTimeout

func NewGetResponsemanagementResponseRequestTimeout() *GetResponsemanagementResponseRequestTimeout

NewGetResponsemanagementResponseRequestTimeout creates a GetResponsemanagementResponseRequestTimeout with default headers values

func (*GetResponsemanagementResponseRequestTimeout) Error

func (*GetResponsemanagementResponseRequestTimeout) GetPayload

func (*GetResponsemanagementResponseRequestTimeout) IsClientError

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

func (*GetResponsemanagementResponseRequestTimeout) IsCode

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

func (*GetResponsemanagementResponseRequestTimeout) IsRedirect

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

func (*GetResponsemanagementResponseRequestTimeout) IsServerError

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

func (*GetResponsemanagementResponseRequestTimeout) IsSuccess

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

func (*GetResponsemanagementResponseRequestTimeout) String

type GetResponsemanagementResponseServiceUnavailable

type GetResponsemanagementResponseServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseServiceUnavailable

func NewGetResponsemanagementResponseServiceUnavailable() *GetResponsemanagementResponseServiceUnavailable

NewGetResponsemanagementResponseServiceUnavailable creates a GetResponsemanagementResponseServiceUnavailable with default headers values

func (*GetResponsemanagementResponseServiceUnavailable) Error

func (*GetResponsemanagementResponseServiceUnavailable) GetPayload

func (*GetResponsemanagementResponseServiceUnavailable) IsClientError

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

func (*GetResponsemanagementResponseServiceUnavailable) IsCode

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

func (*GetResponsemanagementResponseServiceUnavailable) IsRedirect

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

func (*GetResponsemanagementResponseServiceUnavailable) IsServerError

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

func (*GetResponsemanagementResponseServiceUnavailable) IsSuccess

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

func (*GetResponsemanagementResponseServiceUnavailable) String

type GetResponsemanagementResponseTooManyRequests

type GetResponsemanagementResponseTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseTooManyRequests

func NewGetResponsemanagementResponseTooManyRequests() *GetResponsemanagementResponseTooManyRequests

NewGetResponsemanagementResponseTooManyRequests creates a GetResponsemanagementResponseTooManyRequests with default headers values

func (*GetResponsemanagementResponseTooManyRequests) Error

func (*GetResponsemanagementResponseTooManyRequests) GetPayload

func (*GetResponsemanagementResponseTooManyRequests) IsClientError

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

func (*GetResponsemanagementResponseTooManyRequests) IsCode

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

func (*GetResponsemanagementResponseTooManyRequests) IsRedirect

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

func (*GetResponsemanagementResponseTooManyRequests) IsServerError

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

func (*GetResponsemanagementResponseTooManyRequests) IsSuccess

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

func (*GetResponsemanagementResponseTooManyRequests) String

type GetResponsemanagementResponseUnauthorized

type GetResponsemanagementResponseUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetResponsemanagementResponseUnauthorized

func NewGetResponsemanagementResponseUnauthorized() *GetResponsemanagementResponseUnauthorized

NewGetResponsemanagementResponseUnauthorized creates a GetResponsemanagementResponseUnauthorized with default headers values

func (*GetResponsemanagementResponseUnauthorized) Error

func (*GetResponsemanagementResponseUnauthorized) GetPayload

func (*GetResponsemanagementResponseUnauthorized) IsClientError

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

func (*GetResponsemanagementResponseUnauthorized) IsCode

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

func (*GetResponsemanagementResponseUnauthorized) IsRedirect

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

func (*GetResponsemanagementResponseUnauthorized) IsServerError

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

func (*GetResponsemanagementResponseUnauthorized) IsSuccess

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

func (*GetResponsemanagementResponseUnauthorized) String

type GetResponsemanagementResponseUnsupportedMediaType

type GetResponsemanagementResponseUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseUnsupportedMediaType

func NewGetResponsemanagementResponseUnsupportedMediaType() *GetResponsemanagementResponseUnsupportedMediaType

NewGetResponsemanagementResponseUnsupportedMediaType creates a GetResponsemanagementResponseUnsupportedMediaType with default headers values

func (*GetResponsemanagementResponseUnsupportedMediaType) Error

func (*GetResponsemanagementResponseUnsupportedMediaType) GetPayload

func (*GetResponsemanagementResponseUnsupportedMediaType) IsClientError

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

func (*GetResponsemanagementResponseUnsupportedMediaType) IsCode

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

func (*GetResponsemanagementResponseUnsupportedMediaType) IsRedirect

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

func (*GetResponsemanagementResponseUnsupportedMediaType) IsServerError

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

func (*GetResponsemanagementResponseUnsupportedMediaType) IsSuccess

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

func (*GetResponsemanagementResponseUnsupportedMediaType) String

type GetResponsemanagementResponseassetBadRequest

type GetResponsemanagementResponseassetBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetBadRequest

func NewGetResponsemanagementResponseassetBadRequest() *GetResponsemanagementResponseassetBadRequest

NewGetResponsemanagementResponseassetBadRequest creates a GetResponsemanagementResponseassetBadRequest with default headers values

func (*GetResponsemanagementResponseassetBadRequest) Error

func (*GetResponsemanagementResponseassetBadRequest) GetPayload

func (*GetResponsemanagementResponseassetBadRequest) IsClientError

IsClientError returns true when this get responsemanagement responseasset bad request response has a 4xx status code

func (*GetResponsemanagementResponseassetBadRequest) IsCode

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

func (*GetResponsemanagementResponseassetBadRequest) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset bad request response has a 3xx status code

func (*GetResponsemanagementResponseassetBadRequest) IsServerError

IsServerError returns true when this get responsemanagement responseasset bad request response has a 5xx status code

func (*GetResponsemanagementResponseassetBadRequest) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset bad request response has a 2xx status code

func (*GetResponsemanagementResponseassetBadRequest) String

type GetResponsemanagementResponseassetForbidden

type GetResponsemanagementResponseassetForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetResponsemanagementResponseassetForbidden

func NewGetResponsemanagementResponseassetForbidden() *GetResponsemanagementResponseassetForbidden

NewGetResponsemanagementResponseassetForbidden creates a GetResponsemanagementResponseassetForbidden with default headers values

func (*GetResponsemanagementResponseassetForbidden) Error

func (*GetResponsemanagementResponseassetForbidden) GetPayload

func (*GetResponsemanagementResponseassetForbidden) IsClientError

IsClientError returns true when this get responsemanagement responseasset forbidden response has a 4xx status code

func (*GetResponsemanagementResponseassetForbidden) IsCode

IsCode returns true when this get responsemanagement responseasset forbidden response a status code equal to that given

func (*GetResponsemanagementResponseassetForbidden) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset forbidden response has a 3xx status code

func (*GetResponsemanagementResponseassetForbidden) IsServerError

IsServerError returns true when this get responsemanagement responseasset forbidden response has a 5xx status code

func (*GetResponsemanagementResponseassetForbidden) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset forbidden response has a 2xx status code

func (*GetResponsemanagementResponseassetForbidden) String

type GetResponsemanagementResponseassetGatewayTimeout

type GetResponsemanagementResponseassetGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetResponsemanagementResponseassetGatewayTimeout

func NewGetResponsemanagementResponseassetGatewayTimeout() *GetResponsemanagementResponseassetGatewayTimeout

NewGetResponsemanagementResponseassetGatewayTimeout creates a GetResponsemanagementResponseassetGatewayTimeout with default headers values

func (*GetResponsemanagementResponseassetGatewayTimeout) Error

func (*GetResponsemanagementResponseassetGatewayTimeout) GetPayload

func (*GetResponsemanagementResponseassetGatewayTimeout) IsClientError

IsClientError returns true when this get responsemanagement responseasset gateway timeout response has a 4xx status code

func (*GetResponsemanagementResponseassetGatewayTimeout) IsCode

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

func (*GetResponsemanagementResponseassetGatewayTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset gateway timeout response has a 3xx status code

func (*GetResponsemanagementResponseassetGatewayTimeout) IsServerError

IsServerError returns true when this get responsemanagement responseasset gateway timeout response has a 5xx status code

func (*GetResponsemanagementResponseassetGatewayTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset gateway timeout response has a 2xx status code

func (*GetResponsemanagementResponseassetGatewayTimeout) String

type GetResponsemanagementResponseassetInternalServerError

type GetResponsemanagementResponseassetInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetInternalServerError

func NewGetResponsemanagementResponseassetInternalServerError() *GetResponsemanagementResponseassetInternalServerError

NewGetResponsemanagementResponseassetInternalServerError creates a GetResponsemanagementResponseassetInternalServerError with default headers values

func (*GetResponsemanagementResponseassetInternalServerError) Error

func (*GetResponsemanagementResponseassetInternalServerError) GetPayload

func (*GetResponsemanagementResponseassetInternalServerError) IsClientError

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

func (*GetResponsemanagementResponseassetInternalServerError) IsCode

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

func (*GetResponsemanagementResponseassetInternalServerError) IsRedirect

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

func (*GetResponsemanagementResponseassetInternalServerError) IsServerError

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

func (*GetResponsemanagementResponseassetInternalServerError) IsSuccess

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

func (*GetResponsemanagementResponseassetInternalServerError) String

type GetResponsemanagementResponseassetNotFound

type GetResponsemanagementResponseassetNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetResponsemanagementResponseassetNotFound

func NewGetResponsemanagementResponseassetNotFound() *GetResponsemanagementResponseassetNotFound

NewGetResponsemanagementResponseassetNotFound creates a GetResponsemanagementResponseassetNotFound with default headers values

func (*GetResponsemanagementResponseassetNotFound) Error

func (*GetResponsemanagementResponseassetNotFound) GetPayload

func (*GetResponsemanagementResponseassetNotFound) IsClientError

IsClientError returns true when this get responsemanagement responseasset not found response has a 4xx status code

func (*GetResponsemanagementResponseassetNotFound) IsCode

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

func (*GetResponsemanagementResponseassetNotFound) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset not found response has a 3xx status code

func (*GetResponsemanagementResponseassetNotFound) IsServerError

IsServerError returns true when this get responsemanagement responseasset not found response has a 5xx status code

func (*GetResponsemanagementResponseassetNotFound) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset not found response has a 2xx status code

func (*GetResponsemanagementResponseassetNotFound) String

type GetResponsemanagementResponseassetOK

type GetResponsemanagementResponseassetOK struct {
	Payload *models.ResponseAsset
}

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

successful operation

func NewGetResponsemanagementResponseassetOK

func NewGetResponsemanagementResponseassetOK() *GetResponsemanagementResponseassetOK

NewGetResponsemanagementResponseassetOK creates a GetResponsemanagementResponseassetOK with default headers values

func (*GetResponsemanagementResponseassetOK) Error

func (*GetResponsemanagementResponseassetOK) GetPayload

func (*GetResponsemanagementResponseassetOK) IsClientError

func (o *GetResponsemanagementResponseassetOK) IsClientError() bool

IsClientError returns true when this get responsemanagement responseasset o k response has a 4xx status code

func (*GetResponsemanagementResponseassetOK) IsCode

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

func (*GetResponsemanagementResponseassetOK) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset o k response has a 3xx status code

func (*GetResponsemanagementResponseassetOK) IsServerError

func (o *GetResponsemanagementResponseassetOK) IsServerError() bool

IsServerError returns true when this get responsemanagement responseasset o k response has a 5xx status code

func (*GetResponsemanagementResponseassetOK) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset o k response has a 2xx status code

func (*GetResponsemanagementResponseassetOK) String

type GetResponsemanagementResponseassetParams

type GetResponsemanagementResponseassetParams struct {

	/* ResponseAssetID.

	   Asset Id
	*/
	ResponseAssetID string

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

GetResponsemanagementResponseassetParams contains all the parameters to send to the API endpoint

for the get responsemanagement responseasset operation.

Typically these are written to a http.Request.

func NewGetResponsemanagementResponseassetParams

func NewGetResponsemanagementResponseassetParams() *GetResponsemanagementResponseassetParams

NewGetResponsemanagementResponseassetParams creates a new GetResponsemanagementResponseassetParams 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 NewGetResponsemanagementResponseassetParamsWithContext

func NewGetResponsemanagementResponseassetParamsWithContext(ctx context.Context) *GetResponsemanagementResponseassetParams

NewGetResponsemanagementResponseassetParamsWithContext creates a new GetResponsemanagementResponseassetParams object with the ability to set a context for a request.

func NewGetResponsemanagementResponseassetParamsWithHTTPClient

func NewGetResponsemanagementResponseassetParamsWithHTTPClient(client *http.Client) *GetResponsemanagementResponseassetParams

NewGetResponsemanagementResponseassetParamsWithHTTPClient creates a new GetResponsemanagementResponseassetParams object with the ability to set a custom HTTPClient for a request.

func NewGetResponsemanagementResponseassetParamsWithTimeout

func NewGetResponsemanagementResponseassetParamsWithTimeout(timeout time.Duration) *GetResponsemanagementResponseassetParams

NewGetResponsemanagementResponseassetParamsWithTimeout creates a new GetResponsemanagementResponseassetParams object with the ability to set a timeout on a request.

func (*GetResponsemanagementResponseassetParams) SetContext

SetContext adds the context to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) SetDefaults

SetDefaults hydrates default values in the get responsemanagement responseasset params (not the query body).

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

func (*GetResponsemanagementResponseassetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) SetResponseAssetID

func (o *GetResponsemanagementResponseassetParams) SetResponseAssetID(responseAssetID string)

SetResponseAssetID adds the responseAssetId to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) SetTimeout

SetTimeout adds the timeout to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) WithContext

WithContext adds the context to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) WithDefaults

WithDefaults hydrates default values in the get responsemanagement responseasset params (not the query body).

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

func (*GetResponsemanagementResponseassetParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) WithResponseAssetID

WithResponseAssetID adds the responseAssetID to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) WithTimeout

WithTimeout adds the timeout to the get responsemanagement responseasset params

func (*GetResponsemanagementResponseassetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResponsemanagementResponseassetReader

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

GetResponsemanagementResponseassetReader is a Reader for the GetResponsemanagementResponseasset structure.

func (*GetResponsemanagementResponseassetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResponsemanagementResponseassetRequestEntityTooLarge

type GetResponsemanagementResponseassetRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetRequestEntityTooLarge

func NewGetResponsemanagementResponseassetRequestEntityTooLarge() *GetResponsemanagementResponseassetRequestEntityTooLarge

NewGetResponsemanagementResponseassetRequestEntityTooLarge creates a GetResponsemanagementResponseassetRequestEntityTooLarge with default headers values

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) Error

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) GetPayload

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) IsClientError

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

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) IsCode

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

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) IsRedirect

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

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) IsServerError

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

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) IsSuccess

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

func (*GetResponsemanagementResponseassetRequestEntityTooLarge) String

type GetResponsemanagementResponseassetRequestTimeout

type GetResponsemanagementResponseassetRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetRequestTimeout

func NewGetResponsemanagementResponseassetRequestTimeout() *GetResponsemanagementResponseassetRequestTimeout

NewGetResponsemanagementResponseassetRequestTimeout creates a GetResponsemanagementResponseassetRequestTimeout with default headers values

func (*GetResponsemanagementResponseassetRequestTimeout) Error

func (*GetResponsemanagementResponseassetRequestTimeout) GetPayload

func (*GetResponsemanagementResponseassetRequestTimeout) IsClientError

IsClientError returns true when this get responsemanagement responseasset request timeout response has a 4xx status code

func (*GetResponsemanagementResponseassetRequestTimeout) IsCode

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

func (*GetResponsemanagementResponseassetRequestTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset request timeout response has a 3xx status code

func (*GetResponsemanagementResponseassetRequestTimeout) IsServerError

IsServerError returns true when this get responsemanagement responseasset request timeout response has a 5xx status code

func (*GetResponsemanagementResponseassetRequestTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset request timeout response has a 2xx status code

func (*GetResponsemanagementResponseassetRequestTimeout) String

type GetResponsemanagementResponseassetServiceUnavailable

type GetResponsemanagementResponseassetServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetServiceUnavailable

func NewGetResponsemanagementResponseassetServiceUnavailable() *GetResponsemanagementResponseassetServiceUnavailable

NewGetResponsemanagementResponseassetServiceUnavailable creates a GetResponsemanagementResponseassetServiceUnavailable with default headers values

func (*GetResponsemanagementResponseassetServiceUnavailable) Error

func (*GetResponsemanagementResponseassetServiceUnavailable) GetPayload

func (*GetResponsemanagementResponseassetServiceUnavailable) IsClientError

IsClientError returns true when this get responsemanagement responseasset service unavailable response has a 4xx status code

func (*GetResponsemanagementResponseassetServiceUnavailable) IsCode

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

func (*GetResponsemanagementResponseassetServiceUnavailable) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset service unavailable response has a 3xx status code

func (*GetResponsemanagementResponseassetServiceUnavailable) IsServerError

IsServerError returns true when this get responsemanagement responseasset service unavailable response has a 5xx status code

func (*GetResponsemanagementResponseassetServiceUnavailable) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset service unavailable response has a 2xx status code

func (*GetResponsemanagementResponseassetServiceUnavailable) String

type GetResponsemanagementResponseassetTooManyRequests

type GetResponsemanagementResponseassetTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetTooManyRequests

func NewGetResponsemanagementResponseassetTooManyRequests() *GetResponsemanagementResponseassetTooManyRequests

NewGetResponsemanagementResponseassetTooManyRequests creates a GetResponsemanagementResponseassetTooManyRequests with default headers values

func (*GetResponsemanagementResponseassetTooManyRequests) Error

func (*GetResponsemanagementResponseassetTooManyRequests) GetPayload

func (*GetResponsemanagementResponseassetTooManyRequests) IsClientError

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

func (*GetResponsemanagementResponseassetTooManyRequests) IsCode

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

func (*GetResponsemanagementResponseassetTooManyRequests) IsRedirect

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

func (*GetResponsemanagementResponseassetTooManyRequests) IsServerError

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

func (*GetResponsemanagementResponseassetTooManyRequests) IsSuccess

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

func (*GetResponsemanagementResponseassetTooManyRequests) String

type GetResponsemanagementResponseassetUnauthorized

type GetResponsemanagementResponseassetUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetResponsemanagementResponseassetUnauthorized

func NewGetResponsemanagementResponseassetUnauthorized() *GetResponsemanagementResponseassetUnauthorized

NewGetResponsemanagementResponseassetUnauthorized creates a GetResponsemanagementResponseassetUnauthorized with default headers values

func (*GetResponsemanagementResponseassetUnauthorized) Error

func (*GetResponsemanagementResponseassetUnauthorized) GetPayload

func (*GetResponsemanagementResponseassetUnauthorized) IsClientError

IsClientError returns true when this get responsemanagement responseasset unauthorized response has a 4xx status code

func (*GetResponsemanagementResponseassetUnauthorized) IsCode

IsCode returns true when this get responsemanagement responseasset unauthorized response a status code equal to that given

func (*GetResponsemanagementResponseassetUnauthorized) IsRedirect

IsRedirect returns true when this get responsemanagement responseasset unauthorized response has a 3xx status code

func (*GetResponsemanagementResponseassetUnauthorized) IsServerError

IsServerError returns true when this get responsemanagement responseasset unauthorized response has a 5xx status code

func (*GetResponsemanagementResponseassetUnauthorized) IsSuccess

IsSuccess returns true when this get responsemanagement responseasset unauthorized response has a 2xx status code

func (*GetResponsemanagementResponseassetUnauthorized) String

type GetResponsemanagementResponseassetUnsupportedMediaType

type GetResponsemanagementResponseassetUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetUnsupportedMediaType

func NewGetResponsemanagementResponseassetUnsupportedMediaType() *GetResponsemanagementResponseassetUnsupportedMediaType

NewGetResponsemanagementResponseassetUnsupportedMediaType creates a GetResponsemanagementResponseassetUnsupportedMediaType with default headers values

func (*GetResponsemanagementResponseassetUnsupportedMediaType) Error

func (*GetResponsemanagementResponseassetUnsupportedMediaType) GetPayload

func (*GetResponsemanagementResponseassetUnsupportedMediaType) IsClientError

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

func (*GetResponsemanagementResponseassetUnsupportedMediaType) IsCode

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

func (*GetResponsemanagementResponseassetUnsupportedMediaType) IsRedirect

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

func (*GetResponsemanagementResponseassetUnsupportedMediaType) IsServerError

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

func (*GetResponsemanagementResponseassetUnsupportedMediaType) IsSuccess

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

func (*GetResponsemanagementResponseassetUnsupportedMediaType) String

type GetResponsemanagementResponseassetsStatusStatusIDBadRequest

type GetResponsemanagementResponseassetsStatusStatusIDBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDBadRequest

func NewGetResponsemanagementResponseassetsStatusStatusIDBadRequest() *GetResponsemanagementResponseassetsStatusStatusIDBadRequest

NewGetResponsemanagementResponseassetsStatusStatusIDBadRequest creates a GetResponsemanagementResponseassetsStatusStatusIDBadRequest with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id bad request response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id bad request response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id bad request response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id bad request response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id bad request response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDBadRequest) String

type GetResponsemanagementResponseassetsStatusStatusIDForbidden

type GetResponsemanagementResponseassetsStatusStatusIDForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetResponsemanagementResponseassetsStatusStatusIDForbidden

func NewGetResponsemanagementResponseassetsStatusStatusIDForbidden() *GetResponsemanagementResponseassetsStatusStatusIDForbidden

NewGetResponsemanagementResponseassetsStatusStatusIDForbidden creates a GetResponsemanagementResponseassetsStatusStatusIDForbidden with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id forbidden response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id forbidden response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id forbidden response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id forbidden response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id forbidden response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDForbidden) String

type GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout

type GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout

func NewGetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout() *GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout

NewGetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout creates a GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id gateway timeout response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id gateway timeout response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id gateway timeout response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id gateway timeout response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id gateway timeout response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDGatewayTimeout) String

type GetResponsemanagementResponseassetsStatusStatusIDInternalServerError

type GetResponsemanagementResponseassetsStatusStatusIDInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDInternalServerError

func NewGetResponsemanagementResponseassetsStatusStatusIDInternalServerError() *GetResponsemanagementResponseassetsStatusStatusIDInternalServerError

NewGetResponsemanagementResponseassetsStatusStatusIDInternalServerError creates a GetResponsemanagementResponseassetsStatusStatusIDInternalServerError with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id internal server error response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id internal server error response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id internal server error response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id internal server error response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id internal server error response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDInternalServerError) String

type GetResponsemanagementResponseassetsStatusStatusIDNotFound

type GetResponsemanagementResponseassetsStatusStatusIDNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetResponsemanagementResponseassetsStatusStatusIDNotFound

func NewGetResponsemanagementResponseassetsStatusStatusIDNotFound() *GetResponsemanagementResponseassetsStatusStatusIDNotFound

NewGetResponsemanagementResponseassetsStatusStatusIDNotFound creates a GetResponsemanagementResponseassetsStatusStatusIDNotFound with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id not found response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id not found response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id not found response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id not found response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id not found response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDNotFound) String

type GetResponsemanagementResponseassetsStatusStatusIDOK

type GetResponsemanagementResponseassetsStatusStatusIDOK struct {
	Payload *models.ResponseAssetStatus
}

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

successful operation

func NewGetResponsemanagementResponseassetsStatusStatusIDOK

func NewGetResponsemanagementResponseassetsStatusStatusIDOK() *GetResponsemanagementResponseassetsStatusStatusIDOK

NewGetResponsemanagementResponseassetsStatusStatusIDOK creates a GetResponsemanagementResponseassetsStatusStatusIDOK with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id o k response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id o k response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id o k response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id o k response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id o k response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDOK) String

type GetResponsemanagementResponseassetsStatusStatusIDParams

type GetResponsemanagementResponseassetsStatusStatusIDParams struct {

	/* StatusID.

	   Status Id
	*/
	StatusID string

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

GetResponsemanagementResponseassetsStatusStatusIDParams contains all the parameters to send to the API endpoint

for the get responsemanagement responseassets status status Id operation.

Typically these are written to a http.Request.

func NewGetResponsemanagementResponseassetsStatusStatusIDParams

func NewGetResponsemanagementResponseassetsStatusStatusIDParams() *GetResponsemanagementResponseassetsStatusStatusIDParams

NewGetResponsemanagementResponseassetsStatusStatusIDParams creates a new GetResponsemanagementResponseassetsStatusStatusIDParams 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 NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithContext

func NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithContext(ctx context.Context) *GetResponsemanagementResponseassetsStatusStatusIDParams

NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithContext creates a new GetResponsemanagementResponseassetsStatusStatusIDParams object with the ability to set a context for a request.

func NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithHTTPClient

func NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithHTTPClient(client *http.Client) *GetResponsemanagementResponseassetsStatusStatusIDParams

NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithHTTPClient creates a new GetResponsemanagementResponseassetsStatusStatusIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithTimeout

func NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithTimeout(timeout time.Duration) *GetResponsemanagementResponseassetsStatusStatusIDParams

NewGetResponsemanagementResponseassetsStatusStatusIDParamsWithTimeout creates a new GetResponsemanagementResponseassetsStatusStatusIDParams object with the ability to set a timeout on a request.

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) SetContext

SetContext adds the context to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) SetDefaults

SetDefaults hydrates default values in the get responsemanagement responseassets status status Id params (not the query body).

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

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) SetStatusID

SetStatusID adds the statusId to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) SetTimeout

SetTimeout adds the timeout to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) WithContext

WithContext adds the context to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) WithDefaults

WithDefaults hydrates default values in the get responsemanagement responseassets status status Id params (not the query body).

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

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) WithStatusID

WithStatusID adds the statusID to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) WithTimeout

WithTimeout adds the timeout to the get responsemanagement responseassets status status Id params

func (*GetResponsemanagementResponseassetsStatusStatusIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResponsemanagementResponseassetsStatusStatusIDReader

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

GetResponsemanagementResponseassetsStatusStatusIDReader is a Reader for the GetResponsemanagementResponseassetsStatusStatusID structure.

func (*GetResponsemanagementResponseassetsStatusStatusIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge

type GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge

func NewGetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge() *GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge

NewGetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge creates a GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id request entity too large response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id request entity too large response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id request entity too large response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id request entity too large response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id request entity too large response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestEntityTooLarge) String

type GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout

type GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDRequestTimeout

func NewGetResponsemanagementResponseassetsStatusStatusIDRequestTimeout() *GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout

NewGetResponsemanagementResponseassetsStatusStatusIDRequestTimeout creates a GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id request timeout response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id request timeout response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id request timeout response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id request timeout response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id request timeout response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDRequestTimeout) String

type GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable

type GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable

func NewGetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable() *GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable

NewGetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable creates a GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id service unavailable response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id service unavailable response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id service unavailable response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id service unavailable response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id service unavailable response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDServiceUnavailable) String

type GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests

type GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDTooManyRequests

func NewGetResponsemanagementResponseassetsStatusStatusIDTooManyRequests() *GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests

NewGetResponsemanagementResponseassetsStatusStatusIDTooManyRequests creates a GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id too many requests response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id too many requests response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id too many requests response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id too many requests response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id too many requests response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDTooManyRequests) String

type GetResponsemanagementResponseassetsStatusStatusIDUnauthorized

type GetResponsemanagementResponseassetsStatusStatusIDUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetResponsemanagementResponseassetsStatusStatusIDUnauthorized

func NewGetResponsemanagementResponseassetsStatusStatusIDUnauthorized() *GetResponsemanagementResponseassetsStatusStatusIDUnauthorized

NewGetResponsemanagementResponseassetsStatusStatusIDUnauthorized creates a GetResponsemanagementResponseassetsStatusStatusIDUnauthorized with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id unauthorized response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id unauthorized response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id unauthorized response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id unauthorized response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id unauthorized response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnauthorized) String

type GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType

type GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType

func NewGetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType() *GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType

NewGetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType creates a GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType with default headers values

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) Error

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) GetPayload

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) IsClientError

IsClientError returns true when this get responsemanagement responseassets status status Id unsupported media type response has a 4xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) IsCode

IsCode returns true when this get responsemanagement responseassets status status Id unsupported media type response a status code equal to that given

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get responsemanagement responseassets status status Id unsupported media type response has a 3xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) IsServerError

IsServerError returns true when this get responsemanagement responseassets status status Id unsupported media type response has a 5xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get responsemanagement responseassets status status Id unsupported media type response has a 2xx status code

func (*GetResponsemanagementResponseassetsStatusStatusIDUnsupportedMediaType) String

type GetResponsemanagementResponsesBadRequest

type GetResponsemanagementResponsesBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesBadRequest

func NewGetResponsemanagementResponsesBadRequest() *GetResponsemanagementResponsesBadRequest

NewGetResponsemanagementResponsesBadRequest creates a GetResponsemanagementResponsesBadRequest with default headers values

func (*GetResponsemanagementResponsesBadRequest) Error

func (*GetResponsemanagementResponsesBadRequest) GetPayload

func (*GetResponsemanagementResponsesBadRequest) IsClientError

IsClientError returns true when this get responsemanagement responses bad request response has a 4xx status code

func (*GetResponsemanagementResponsesBadRequest) IsCode

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

func (*GetResponsemanagementResponsesBadRequest) IsRedirect

IsRedirect returns true when this get responsemanagement responses bad request response has a 3xx status code

func (*GetResponsemanagementResponsesBadRequest) IsServerError

IsServerError returns true when this get responsemanagement responses bad request response has a 5xx status code

func (*GetResponsemanagementResponsesBadRequest) IsSuccess

IsSuccess returns true when this get responsemanagement responses bad request response has a 2xx status code

func (*GetResponsemanagementResponsesBadRequest) String

type GetResponsemanagementResponsesForbidden

type GetResponsemanagementResponsesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetResponsemanagementResponsesForbidden

func NewGetResponsemanagementResponsesForbidden() *GetResponsemanagementResponsesForbidden

NewGetResponsemanagementResponsesForbidden creates a GetResponsemanagementResponsesForbidden with default headers values

func (*GetResponsemanagementResponsesForbidden) Error

func (*GetResponsemanagementResponsesForbidden) GetPayload

func (*GetResponsemanagementResponsesForbidden) IsClientError

func (o *GetResponsemanagementResponsesForbidden) IsClientError() bool

IsClientError returns true when this get responsemanagement responses forbidden response has a 4xx status code

func (*GetResponsemanagementResponsesForbidden) IsCode

IsCode returns true when this get responsemanagement responses forbidden response a status code equal to that given

func (*GetResponsemanagementResponsesForbidden) IsRedirect

IsRedirect returns true when this get responsemanagement responses forbidden response has a 3xx status code

func (*GetResponsemanagementResponsesForbidden) IsServerError

func (o *GetResponsemanagementResponsesForbidden) IsServerError() bool

IsServerError returns true when this get responsemanagement responses forbidden response has a 5xx status code

func (*GetResponsemanagementResponsesForbidden) IsSuccess

IsSuccess returns true when this get responsemanagement responses forbidden response has a 2xx status code

func (*GetResponsemanagementResponsesForbidden) String

type GetResponsemanagementResponsesGatewayTimeout

type GetResponsemanagementResponsesGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetResponsemanagementResponsesGatewayTimeout

func NewGetResponsemanagementResponsesGatewayTimeout() *GetResponsemanagementResponsesGatewayTimeout

NewGetResponsemanagementResponsesGatewayTimeout creates a GetResponsemanagementResponsesGatewayTimeout with default headers values

func (*GetResponsemanagementResponsesGatewayTimeout) Error

func (*GetResponsemanagementResponsesGatewayTimeout) GetPayload

func (*GetResponsemanagementResponsesGatewayTimeout) IsClientError

IsClientError returns true when this get responsemanagement responses gateway timeout response has a 4xx status code

func (*GetResponsemanagementResponsesGatewayTimeout) IsCode

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

func (*GetResponsemanagementResponsesGatewayTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement responses gateway timeout response has a 3xx status code

func (*GetResponsemanagementResponsesGatewayTimeout) IsServerError

IsServerError returns true when this get responsemanagement responses gateway timeout response has a 5xx status code

func (*GetResponsemanagementResponsesGatewayTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement responses gateway timeout response has a 2xx status code

func (*GetResponsemanagementResponsesGatewayTimeout) String

type GetResponsemanagementResponsesInternalServerError

type GetResponsemanagementResponsesInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesInternalServerError

func NewGetResponsemanagementResponsesInternalServerError() *GetResponsemanagementResponsesInternalServerError

NewGetResponsemanagementResponsesInternalServerError creates a GetResponsemanagementResponsesInternalServerError with default headers values

func (*GetResponsemanagementResponsesInternalServerError) Error

func (*GetResponsemanagementResponsesInternalServerError) GetPayload

func (*GetResponsemanagementResponsesInternalServerError) IsClientError

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

func (*GetResponsemanagementResponsesInternalServerError) IsCode

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

func (*GetResponsemanagementResponsesInternalServerError) IsRedirect

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

func (*GetResponsemanagementResponsesInternalServerError) IsServerError

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

func (*GetResponsemanagementResponsesInternalServerError) IsSuccess

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

func (*GetResponsemanagementResponsesInternalServerError) String

type GetResponsemanagementResponsesNotFound

type GetResponsemanagementResponsesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetResponsemanagementResponsesNotFound

func NewGetResponsemanagementResponsesNotFound() *GetResponsemanagementResponsesNotFound

NewGetResponsemanagementResponsesNotFound creates a GetResponsemanagementResponsesNotFound with default headers values

func (*GetResponsemanagementResponsesNotFound) Error

func (*GetResponsemanagementResponsesNotFound) GetPayload

func (*GetResponsemanagementResponsesNotFound) IsClientError

func (o *GetResponsemanagementResponsesNotFound) IsClientError() bool

IsClientError returns true when this get responsemanagement responses not found response has a 4xx status code

func (*GetResponsemanagementResponsesNotFound) IsCode

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

func (*GetResponsemanagementResponsesNotFound) IsRedirect

IsRedirect returns true when this get responsemanagement responses not found response has a 3xx status code

func (*GetResponsemanagementResponsesNotFound) IsServerError

func (o *GetResponsemanagementResponsesNotFound) IsServerError() bool

IsServerError returns true when this get responsemanagement responses not found response has a 5xx status code

func (*GetResponsemanagementResponsesNotFound) IsSuccess

IsSuccess returns true when this get responsemanagement responses not found response has a 2xx status code

func (*GetResponsemanagementResponsesNotFound) String

type GetResponsemanagementResponsesOK

type GetResponsemanagementResponsesOK struct {
	Payload *models.ResponseEntityListing
}

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

successful operation

func NewGetResponsemanagementResponsesOK

func NewGetResponsemanagementResponsesOK() *GetResponsemanagementResponsesOK

NewGetResponsemanagementResponsesOK creates a GetResponsemanagementResponsesOK with default headers values

func (*GetResponsemanagementResponsesOK) Error

func (*GetResponsemanagementResponsesOK) GetPayload

func (*GetResponsemanagementResponsesOK) IsClientError

func (o *GetResponsemanagementResponsesOK) IsClientError() bool

IsClientError returns true when this get responsemanagement responses o k response has a 4xx status code

func (*GetResponsemanagementResponsesOK) IsCode

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

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

func (*GetResponsemanagementResponsesOK) IsRedirect

func (o *GetResponsemanagementResponsesOK) IsRedirect() bool

IsRedirect returns true when this get responsemanagement responses o k response has a 3xx status code

func (*GetResponsemanagementResponsesOK) IsServerError

func (o *GetResponsemanagementResponsesOK) IsServerError() bool

IsServerError returns true when this get responsemanagement responses o k response has a 5xx status code

func (*GetResponsemanagementResponsesOK) IsSuccess

func (o *GetResponsemanagementResponsesOK) IsSuccess() bool

IsSuccess returns true when this get responsemanagement responses o k response has a 2xx status code

func (*GetResponsemanagementResponsesOK) String

type GetResponsemanagementResponsesParams

type GetResponsemanagementResponsesParams struct {

	/* Expand.

	   Expand instructions for the return value.
	*/
	Expand *string

	/* LibraryID.

	   Library ID
	*/
	LibraryID string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

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

GetResponsemanagementResponsesParams contains all the parameters to send to the API endpoint

for the get responsemanagement responses operation.

Typically these are written to a http.Request.

func NewGetResponsemanagementResponsesParams

func NewGetResponsemanagementResponsesParams() *GetResponsemanagementResponsesParams

NewGetResponsemanagementResponsesParams creates a new GetResponsemanagementResponsesParams 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 NewGetResponsemanagementResponsesParamsWithContext

func NewGetResponsemanagementResponsesParamsWithContext(ctx context.Context) *GetResponsemanagementResponsesParams

NewGetResponsemanagementResponsesParamsWithContext creates a new GetResponsemanagementResponsesParams object with the ability to set a context for a request.

func NewGetResponsemanagementResponsesParamsWithHTTPClient

func NewGetResponsemanagementResponsesParamsWithHTTPClient(client *http.Client) *GetResponsemanagementResponsesParams

NewGetResponsemanagementResponsesParamsWithHTTPClient creates a new GetResponsemanagementResponsesParams object with the ability to set a custom HTTPClient for a request.

func NewGetResponsemanagementResponsesParamsWithTimeout

func NewGetResponsemanagementResponsesParamsWithTimeout(timeout time.Duration) *GetResponsemanagementResponsesParams

NewGetResponsemanagementResponsesParamsWithTimeout creates a new GetResponsemanagementResponsesParams object with the ability to set a timeout on a request.

func (*GetResponsemanagementResponsesParams) SetContext

SetContext adds the context to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) SetDefaults

func (o *GetResponsemanagementResponsesParams) SetDefaults()

SetDefaults hydrates default values in the get responsemanagement responses params (not the query body).

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

func (*GetResponsemanagementResponsesParams) SetExpand

func (o *GetResponsemanagementResponsesParams) SetExpand(expand *string)

SetExpand adds the expand to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) SetLibraryID

func (o *GetResponsemanagementResponsesParams) SetLibraryID(libraryID string)

SetLibraryID adds the libraryId to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) SetPageNumber

func (o *GetResponsemanagementResponsesParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) SetPageSize

func (o *GetResponsemanagementResponsesParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) SetTimeout

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

SetTimeout adds the timeout to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithContext

WithContext adds the context to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithDefaults

WithDefaults hydrates default values in the get responsemanagement responses params (not the query body).

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

func (*GetResponsemanagementResponsesParams) WithExpand

WithExpand adds the expand to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithLibraryID

WithLibraryID adds the libraryID to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithPageNumber

WithPageNumber adds the pageNumber to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithPageSize

WithPageSize adds the pageSize to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WithTimeout

WithTimeout adds the timeout to the get responsemanagement responses params

func (*GetResponsemanagementResponsesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResponsemanagementResponsesReader

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

GetResponsemanagementResponsesReader is a Reader for the GetResponsemanagementResponses structure.

func (*GetResponsemanagementResponsesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResponsemanagementResponsesRequestEntityTooLarge

type GetResponsemanagementResponsesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesRequestEntityTooLarge

func NewGetResponsemanagementResponsesRequestEntityTooLarge() *GetResponsemanagementResponsesRequestEntityTooLarge

NewGetResponsemanagementResponsesRequestEntityTooLarge creates a GetResponsemanagementResponsesRequestEntityTooLarge with default headers values

func (*GetResponsemanagementResponsesRequestEntityTooLarge) Error

func (*GetResponsemanagementResponsesRequestEntityTooLarge) GetPayload

func (*GetResponsemanagementResponsesRequestEntityTooLarge) IsClientError

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

func (*GetResponsemanagementResponsesRequestEntityTooLarge) IsCode

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

func (*GetResponsemanagementResponsesRequestEntityTooLarge) IsRedirect

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

func (*GetResponsemanagementResponsesRequestEntityTooLarge) IsServerError

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

func (*GetResponsemanagementResponsesRequestEntityTooLarge) IsSuccess

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

func (*GetResponsemanagementResponsesRequestEntityTooLarge) String

type GetResponsemanagementResponsesRequestTimeout

type GetResponsemanagementResponsesRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesRequestTimeout

func NewGetResponsemanagementResponsesRequestTimeout() *GetResponsemanagementResponsesRequestTimeout

NewGetResponsemanagementResponsesRequestTimeout creates a GetResponsemanagementResponsesRequestTimeout with default headers values

func (*GetResponsemanagementResponsesRequestTimeout) Error

func (*GetResponsemanagementResponsesRequestTimeout) GetPayload

func (*GetResponsemanagementResponsesRequestTimeout) IsClientError

IsClientError returns true when this get responsemanagement responses request timeout response has a 4xx status code

func (*GetResponsemanagementResponsesRequestTimeout) IsCode

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

func (*GetResponsemanagementResponsesRequestTimeout) IsRedirect

IsRedirect returns true when this get responsemanagement responses request timeout response has a 3xx status code

func (*GetResponsemanagementResponsesRequestTimeout) IsServerError

IsServerError returns true when this get responsemanagement responses request timeout response has a 5xx status code

func (*GetResponsemanagementResponsesRequestTimeout) IsSuccess

IsSuccess returns true when this get responsemanagement responses request timeout response has a 2xx status code

func (*GetResponsemanagementResponsesRequestTimeout) String

type GetResponsemanagementResponsesServiceUnavailable

type GetResponsemanagementResponsesServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesServiceUnavailable

func NewGetResponsemanagementResponsesServiceUnavailable() *GetResponsemanagementResponsesServiceUnavailable

NewGetResponsemanagementResponsesServiceUnavailable creates a GetResponsemanagementResponsesServiceUnavailable with default headers values

func (*GetResponsemanagementResponsesServiceUnavailable) Error

func (*GetResponsemanagementResponsesServiceUnavailable) GetPayload

func (*GetResponsemanagementResponsesServiceUnavailable) IsClientError

IsClientError returns true when this get responsemanagement responses service unavailable response has a 4xx status code

func (*GetResponsemanagementResponsesServiceUnavailable) IsCode

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

func (*GetResponsemanagementResponsesServiceUnavailable) IsRedirect

IsRedirect returns true when this get responsemanagement responses service unavailable response has a 3xx status code

func (*GetResponsemanagementResponsesServiceUnavailable) IsServerError

IsServerError returns true when this get responsemanagement responses service unavailable response has a 5xx status code

func (*GetResponsemanagementResponsesServiceUnavailable) IsSuccess

IsSuccess returns true when this get responsemanagement responses service unavailable response has a 2xx status code

func (*GetResponsemanagementResponsesServiceUnavailable) String

type GetResponsemanagementResponsesTooManyRequests

type GetResponsemanagementResponsesTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesTooManyRequests

func NewGetResponsemanagementResponsesTooManyRequests() *GetResponsemanagementResponsesTooManyRequests

NewGetResponsemanagementResponsesTooManyRequests creates a GetResponsemanagementResponsesTooManyRequests with default headers values

func (*GetResponsemanagementResponsesTooManyRequests) Error

func (*GetResponsemanagementResponsesTooManyRequests) GetPayload

func (*GetResponsemanagementResponsesTooManyRequests) IsClientError

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

func (*GetResponsemanagementResponsesTooManyRequests) IsCode

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

func (*GetResponsemanagementResponsesTooManyRequests) IsRedirect

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

func (*GetResponsemanagementResponsesTooManyRequests) IsServerError

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

func (*GetResponsemanagementResponsesTooManyRequests) IsSuccess

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

func (*GetResponsemanagementResponsesTooManyRequests) String

type GetResponsemanagementResponsesUnauthorized

type GetResponsemanagementResponsesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetResponsemanagementResponsesUnauthorized

func NewGetResponsemanagementResponsesUnauthorized() *GetResponsemanagementResponsesUnauthorized

NewGetResponsemanagementResponsesUnauthorized creates a GetResponsemanagementResponsesUnauthorized with default headers values

func (*GetResponsemanagementResponsesUnauthorized) Error

func (*GetResponsemanagementResponsesUnauthorized) GetPayload

func (*GetResponsemanagementResponsesUnauthorized) IsClientError

IsClientError returns true when this get responsemanagement responses unauthorized response has a 4xx status code

func (*GetResponsemanagementResponsesUnauthorized) IsCode

IsCode returns true when this get responsemanagement responses unauthorized response a status code equal to that given

func (*GetResponsemanagementResponsesUnauthorized) IsRedirect

IsRedirect returns true when this get responsemanagement responses unauthorized response has a 3xx status code

func (*GetResponsemanagementResponsesUnauthorized) IsServerError

IsServerError returns true when this get responsemanagement responses unauthorized response has a 5xx status code

func (*GetResponsemanagementResponsesUnauthorized) IsSuccess

IsSuccess returns true when this get responsemanagement responses unauthorized response has a 2xx status code

func (*GetResponsemanagementResponsesUnauthorized) String

type GetResponsemanagementResponsesUnsupportedMediaType

type GetResponsemanagementResponsesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewGetResponsemanagementResponsesUnsupportedMediaType

func NewGetResponsemanagementResponsesUnsupportedMediaType() *GetResponsemanagementResponsesUnsupportedMediaType

NewGetResponsemanagementResponsesUnsupportedMediaType creates a GetResponsemanagementResponsesUnsupportedMediaType with default headers values

func (*GetResponsemanagementResponsesUnsupportedMediaType) Error

func (*GetResponsemanagementResponsesUnsupportedMediaType) GetPayload

func (*GetResponsemanagementResponsesUnsupportedMediaType) IsClientError

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

func (*GetResponsemanagementResponsesUnsupportedMediaType) IsCode

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

func (*GetResponsemanagementResponsesUnsupportedMediaType) IsRedirect

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

func (*GetResponsemanagementResponsesUnsupportedMediaType) IsServerError

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

func (*GetResponsemanagementResponsesUnsupportedMediaType) IsSuccess

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

func (*GetResponsemanagementResponsesUnsupportedMediaType) String

type PostResponsemanagementLibrariesBadRequest

type PostResponsemanagementLibrariesBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesBadRequest

func NewPostResponsemanagementLibrariesBadRequest() *PostResponsemanagementLibrariesBadRequest

NewPostResponsemanagementLibrariesBadRequest creates a PostResponsemanagementLibrariesBadRequest with default headers values

func (*PostResponsemanagementLibrariesBadRequest) Error

func (*PostResponsemanagementLibrariesBadRequest) GetPayload

func (*PostResponsemanagementLibrariesBadRequest) IsClientError

IsClientError returns true when this post responsemanagement libraries bad request response has a 4xx status code

func (*PostResponsemanagementLibrariesBadRequest) IsCode

IsCode returns true when this post responsemanagement libraries bad request response a status code equal to that given

func (*PostResponsemanagementLibrariesBadRequest) IsRedirect

IsRedirect returns true when this post responsemanagement libraries bad request response has a 3xx status code

func (*PostResponsemanagementLibrariesBadRequest) IsServerError

IsServerError returns true when this post responsemanagement libraries bad request response has a 5xx status code

func (*PostResponsemanagementLibrariesBadRequest) IsSuccess

IsSuccess returns true when this post responsemanagement libraries bad request response has a 2xx status code

func (*PostResponsemanagementLibrariesBadRequest) String

type PostResponsemanagementLibrariesForbidden

type PostResponsemanagementLibrariesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostResponsemanagementLibrariesForbidden

func NewPostResponsemanagementLibrariesForbidden() *PostResponsemanagementLibrariesForbidden

NewPostResponsemanagementLibrariesForbidden creates a PostResponsemanagementLibrariesForbidden with default headers values

func (*PostResponsemanagementLibrariesForbidden) Error

func (*PostResponsemanagementLibrariesForbidden) GetPayload

func (*PostResponsemanagementLibrariesForbidden) IsClientError

IsClientError returns true when this post responsemanagement libraries forbidden response has a 4xx status code

func (*PostResponsemanagementLibrariesForbidden) IsCode

IsCode returns true when this post responsemanagement libraries forbidden response a status code equal to that given

func (*PostResponsemanagementLibrariesForbidden) IsRedirect

IsRedirect returns true when this post responsemanagement libraries forbidden response has a 3xx status code

func (*PostResponsemanagementLibrariesForbidden) IsServerError

IsServerError returns true when this post responsemanagement libraries forbidden response has a 5xx status code

func (*PostResponsemanagementLibrariesForbidden) IsSuccess

IsSuccess returns true when this post responsemanagement libraries forbidden response has a 2xx status code

func (*PostResponsemanagementLibrariesForbidden) String

type PostResponsemanagementLibrariesGatewayTimeout

type PostResponsemanagementLibrariesGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostResponsemanagementLibrariesGatewayTimeout

func NewPostResponsemanagementLibrariesGatewayTimeout() *PostResponsemanagementLibrariesGatewayTimeout

NewPostResponsemanagementLibrariesGatewayTimeout creates a PostResponsemanagementLibrariesGatewayTimeout with default headers values

func (*PostResponsemanagementLibrariesGatewayTimeout) Error

func (*PostResponsemanagementLibrariesGatewayTimeout) GetPayload

func (*PostResponsemanagementLibrariesGatewayTimeout) IsClientError

IsClientError returns true when this post responsemanagement libraries gateway timeout response has a 4xx status code

func (*PostResponsemanagementLibrariesGatewayTimeout) IsCode

IsCode returns true when this post responsemanagement libraries gateway timeout response a status code equal to that given

func (*PostResponsemanagementLibrariesGatewayTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement libraries gateway timeout response has a 3xx status code

func (*PostResponsemanagementLibrariesGatewayTimeout) IsServerError

IsServerError returns true when this post responsemanagement libraries gateway timeout response has a 5xx status code

func (*PostResponsemanagementLibrariesGatewayTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement libraries gateway timeout response has a 2xx status code

func (*PostResponsemanagementLibrariesGatewayTimeout) String

type PostResponsemanagementLibrariesInternalServerError

type PostResponsemanagementLibrariesInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesInternalServerError

func NewPostResponsemanagementLibrariesInternalServerError() *PostResponsemanagementLibrariesInternalServerError

NewPostResponsemanagementLibrariesInternalServerError creates a PostResponsemanagementLibrariesInternalServerError with default headers values

func (*PostResponsemanagementLibrariesInternalServerError) Error

func (*PostResponsemanagementLibrariesInternalServerError) GetPayload

func (*PostResponsemanagementLibrariesInternalServerError) IsClientError

IsClientError returns true when this post responsemanagement libraries internal server error response has a 4xx status code

func (*PostResponsemanagementLibrariesInternalServerError) IsCode

IsCode returns true when this post responsemanagement libraries internal server error response a status code equal to that given

func (*PostResponsemanagementLibrariesInternalServerError) IsRedirect

IsRedirect returns true when this post responsemanagement libraries internal server error response has a 3xx status code

func (*PostResponsemanagementLibrariesInternalServerError) IsServerError

IsServerError returns true when this post responsemanagement libraries internal server error response has a 5xx status code

func (*PostResponsemanagementLibrariesInternalServerError) IsSuccess

IsSuccess returns true when this post responsemanagement libraries internal server error response has a 2xx status code

func (*PostResponsemanagementLibrariesInternalServerError) String

type PostResponsemanagementLibrariesNotFound

type PostResponsemanagementLibrariesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostResponsemanagementLibrariesNotFound

func NewPostResponsemanagementLibrariesNotFound() *PostResponsemanagementLibrariesNotFound

NewPostResponsemanagementLibrariesNotFound creates a PostResponsemanagementLibrariesNotFound with default headers values

func (*PostResponsemanagementLibrariesNotFound) Error

func (*PostResponsemanagementLibrariesNotFound) GetPayload

func (*PostResponsemanagementLibrariesNotFound) IsClientError

func (o *PostResponsemanagementLibrariesNotFound) IsClientError() bool

IsClientError returns true when this post responsemanagement libraries not found response has a 4xx status code

func (*PostResponsemanagementLibrariesNotFound) IsCode

IsCode returns true when this post responsemanagement libraries not found response a status code equal to that given

func (*PostResponsemanagementLibrariesNotFound) IsRedirect

IsRedirect returns true when this post responsemanagement libraries not found response has a 3xx status code

func (*PostResponsemanagementLibrariesNotFound) IsServerError

func (o *PostResponsemanagementLibrariesNotFound) IsServerError() bool

IsServerError returns true when this post responsemanagement libraries not found response has a 5xx status code

func (*PostResponsemanagementLibrariesNotFound) IsSuccess

IsSuccess returns true when this post responsemanagement libraries not found response has a 2xx status code

func (*PostResponsemanagementLibrariesNotFound) String

type PostResponsemanagementLibrariesOK

type PostResponsemanagementLibrariesOK struct {
	Payload *models.Library
}

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

successful operation

func NewPostResponsemanagementLibrariesOK

func NewPostResponsemanagementLibrariesOK() *PostResponsemanagementLibrariesOK

NewPostResponsemanagementLibrariesOK creates a PostResponsemanagementLibrariesOK with default headers values

func (*PostResponsemanagementLibrariesOK) Error

func (*PostResponsemanagementLibrariesOK) GetPayload

func (*PostResponsemanagementLibrariesOK) IsClientError

func (o *PostResponsemanagementLibrariesOK) IsClientError() bool

IsClientError returns true when this post responsemanagement libraries o k response has a 4xx status code

func (*PostResponsemanagementLibrariesOK) IsCode

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

IsCode returns true when this post responsemanagement libraries o k response a status code equal to that given

func (*PostResponsemanagementLibrariesOK) IsRedirect

func (o *PostResponsemanagementLibrariesOK) IsRedirect() bool

IsRedirect returns true when this post responsemanagement libraries o k response has a 3xx status code

func (*PostResponsemanagementLibrariesOK) IsServerError

func (o *PostResponsemanagementLibrariesOK) IsServerError() bool

IsServerError returns true when this post responsemanagement libraries o k response has a 5xx status code

func (*PostResponsemanagementLibrariesOK) IsSuccess

func (o *PostResponsemanagementLibrariesOK) IsSuccess() bool

IsSuccess returns true when this post responsemanagement libraries o k response has a 2xx status code

func (*PostResponsemanagementLibrariesOK) String

type PostResponsemanagementLibrariesParams

type PostResponsemanagementLibrariesParams struct {

	/* Body.

	   Library
	*/
	Body *models.Library

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

PostResponsemanagementLibrariesParams contains all the parameters to send to the API endpoint

for the post responsemanagement libraries operation.

Typically these are written to a http.Request.

func NewPostResponsemanagementLibrariesParams

func NewPostResponsemanagementLibrariesParams() *PostResponsemanagementLibrariesParams

NewPostResponsemanagementLibrariesParams creates a new PostResponsemanagementLibrariesParams 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 NewPostResponsemanagementLibrariesParamsWithContext

func NewPostResponsemanagementLibrariesParamsWithContext(ctx context.Context) *PostResponsemanagementLibrariesParams

NewPostResponsemanagementLibrariesParamsWithContext creates a new PostResponsemanagementLibrariesParams object with the ability to set a context for a request.

func NewPostResponsemanagementLibrariesParamsWithHTTPClient

func NewPostResponsemanagementLibrariesParamsWithHTTPClient(client *http.Client) *PostResponsemanagementLibrariesParams

NewPostResponsemanagementLibrariesParamsWithHTTPClient creates a new PostResponsemanagementLibrariesParams object with the ability to set a custom HTTPClient for a request.

func NewPostResponsemanagementLibrariesParamsWithTimeout

func NewPostResponsemanagementLibrariesParamsWithTimeout(timeout time.Duration) *PostResponsemanagementLibrariesParams

NewPostResponsemanagementLibrariesParamsWithTimeout creates a new PostResponsemanagementLibrariesParams object with the ability to set a timeout on a request.

func (*PostResponsemanagementLibrariesParams) SetBody

SetBody adds the body to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) SetContext

SetContext adds the context to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) SetDefaults

func (o *PostResponsemanagementLibrariesParams) SetDefaults()

SetDefaults hydrates default values in the post responsemanagement libraries params (not the query body).

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

func (*PostResponsemanagementLibrariesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) SetTimeout

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

SetTimeout adds the timeout to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) WithBody

WithBody adds the body to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) WithContext

WithContext adds the context to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) WithDefaults

WithDefaults hydrates default values in the post responsemanagement libraries params (not the query body).

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

func (*PostResponsemanagementLibrariesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) WithTimeout

WithTimeout adds the timeout to the post responsemanagement libraries params

func (*PostResponsemanagementLibrariesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostResponsemanagementLibrariesReader

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

PostResponsemanagementLibrariesReader is a Reader for the PostResponsemanagementLibraries structure.

func (*PostResponsemanagementLibrariesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostResponsemanagementLibrariesRequestEntityTooLarge

type PostResponsemanagementLibrariesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesRequestEntityTooLarge

func NewPostResponsemanagementLibrariesRequestEntityTooLarge() *PostResponsemanagementLibrariesRequestEntityTooLarge

NewPostResponsemanagementLibrariesRequestEntityTooLarge creates a PostResponsemanagementLibrariesRequestEntityTooLarge with default headers values

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) Error

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) GetPayload

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) IsClientError

IsClientError returns true when this post responsemanagement libraries request entity too large response has a 4xx status code

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) IsCode

IsCode returns true when this post responsemanagement libraries request entity too large response a status code equal to that given

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post responsemanagement libraries request entity too large response has a 3xx status code

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) IsServerError

IsServerError returns true when this post responsemanagement libraries request entity too large response has a 5xx status code

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post responsemanagement libraries request entity too large response has a 2xx status code

func (*PostResponsemanagementLibrariesRequestEntityTooLarge) String

type PostResponsemanagementLibrariesRequestTimeout

type PostResponsemanagementLibrariesRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesRequestTimeout

func NewPostResponsemanagementLibrariesRequestTimeout() *PostResponsemanagementLibrariesRequestTimeout

NewPostResponsemanagementLibrariesRequestTimeout creates a PostResponsemanagementLibrariesRequestTimeout with default headers values

func (*PostResponsemanagementLibrariesRequestTimeout) Error

func (*PostResponsemanagementLibrariesRequestTimeout) GetPayload

func (*PostResponsemanagementLibrariesRequestTimeout) IsClientError

IsClientError returns true when this post responsemanagement libraries request timeout response has a 4xx status code

func (*PostResponsemanagementLibrariesRequestTimeout) IsCode

IsCode returns true when this post responsemanagement libraries request timeout response a status code equal to that given

func (*PostResponsemanagementLibrariesRequestTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement libraries request timeout response has a 3xx status code

func (*PostResponsemanagementLibrariesRequestTimeout) IsServerError

IsServerError returns true when this post responsemanagement libraries request timeout response has a 5xx status code

func (*PostResponsemanagementLibrariesRequestTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement libraries request timeout response has a 2xx status code

func (*PostResponsemanagementLibrariesRequestTimeout) String

type PostResponsemanagementLibrariesServiceUnavailable

type PostResponsemanagementLibrariesServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesServiceUnavailable

func NewPostResponsemanagementLibrariesServiceUnavailable() *PostResponsemanagementLibrariesServiceUnavailable

NewPostResponsemanagementLibrariesServiceUnavailable creates a PostResponsemanagementLibrariesServiceUnavailable with default headers values

func (*PostResponsemanagementLibrariesServiceUnavailable) Error

func (*PostResponsemanagementLibrariesServiceUnavailable) GetPayload

func (*PostResponsemanagementLibrariesServiceUnavailable) IsClientError

IsClientError returns true when this post responsemanagement libraries service unavailable response has a 4xx status code

func (*PostResponsemanagementLibrariesServiceUnavailable) IsCode

IsCode returns true when this post responsemanagement libraries service unavailable response a status code equal to that given

func (*PostResponsemanagementLibrariesServiceUnavailable) IsRedirect

IsRedirect returns true when this post responsemanagement libraries service unavailable response has a 3xx status code

func (*PostResponsemanagementLibrariesServiceUnavailable) IsServerError

IsServerError returns true when this post responsemanagement libraries service unavailable response has a 5xx status code

func (*PostResponsemanagementLibrariesServiceUnavailable) IsSuccess

IsSuccess returns true when this post responsemanagement libraries service unavailable response has a 2xx status code

func (*PostResponsemanagementLibrariesServiceUnavailable) String

type PostResponsemanagementLibrariesTooManyRequests

type PostResponsemanagementLibrariesTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesTooManyRequests

func NewPostResponsemanagementLibrariesTooManyRequests() *PostResponsemanagementLibrariesTooManyRequests

NewPostResponsemanagementLibrariesTooManyRequests creates a PostResponsemanagementLibrariesTooManyRequests with default headers values

func (*PostResponsemanagementLibrariesTooManyRequests) Error

func (*PostResponsemanagementLibrariesTooManyRequests) GetPayload

func (*PostResponsemanagementLibrariesTooManyRequests) IsClientError

IsClientError returns true when this post responsemanagement libraries too many requests response has a 4xx status code

func (*PostResponsemanagementLibrariesTooManyRequests) IsCode

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

func (*PostResponsemanagementLibrariesTooManyRequests) IsRedirect

IsRedirect returns true when this post responsemanagement libraries too many requests response has a 3xx status code

func (*PostResponsemanagementLibrariesTooManyRequests) IsServerError

IsServerError returns true when this post responsemanagement libraries too many requests response has a 5xx status code

func (*PostResponsemanagementLibrariesTooManyRequests) IsSuccess

IsSuccess returns true when this post responsemanagement libraries too many requests response has a 2xx status code

func (*PostResponsemanagementLibrariesTooManyRequests) String

type PostResponsemanagementLibrariesUnauthorized

type PostResponsemanagementLibrariesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostResponsemanagementLibrariesUnauthorized

func NewPostResponsemanagementLibrariesUnauthorized() *PostResponsemanagementLibrariesUnauthorized

NewPostResponsemanagementLibrariesUnauthorized creates a PostResponsemanagementLibrariesUnauthorized with default headers values

func (*PostResponsemanagementLibrariesUnauthorized) Error

func (*PostResponsemanagementLibrariesUnauthorized) GetPayload

func (*PostResponsemanagementLibrariesUnauthorized) IsClientError

IsClientError returns true when this post responsemanagement libraries unauthorized response has a 4xx status code

func (*PostResponsemanagementLibrariesUnauthorized) IsCode

IsCode returns true when this post responsemanagement libraries unauthorized response a status code equal to that given

func (*PostResponsemanagementLibrariesUnauthorized) IsRedirect

IsRedirect returns true when this post responsemanagement libraries unauthorized response has a 3xx status code

func (*PostResponsemanagementLibrariesUnauthorized) IsServerError

IsServerError returns true when this post responsemanagement libraries unauthorized response has a 5xx status code

func (*PostResponsemanagementLibrariesUnauthorized) IsSuccess

IsSuccess returns true when this post responsemanagement libraries unauthorized response has a 2xx status code

func (*PostResponsemanagementLibrariesUnauthorized) String

type PostResponsemanagementLibrariesUnsupportedMediaType

type PostResponsemanagementLibrariesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementLibrariesUnsupportedMediaType

func NewPostResponsemanagementLibrariesUnsupportedMediaType() *PostResponsemanagementLibrariesUnsupportedMediaType

NewPostResponsemanagementLibrariesUnsupportedMediaType creates a PostResponsemanagementLibrariesUnsupportedMediaType with default headers values

func (*PostResponsemanagementLibrariesUnsupportedMediaType) Error

func (*PostResponsemanagementLibrariesUnsupportedMediaType) GetPayload

func (*PostResponsemanagementLibrariesUnsupportedMediaType) IsClientError

IsClientError returns true when this post responsemanagement libraries unsupported media type response has a 4xx status code

func (*PostResponsemanagementLibrariesUnsupportedMediaType) IsCode

IsCode returns true when this post responsemanagement libraries unsupported media type response a status code equal to that given

func (*PostResponsemanagementLibrariesUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post responsemanagement libraries unsupported media type response has a 3xx status code

func (*PostResponsemanagementLibrariesUnsupportedMediaType) IsServerError

IsServerError returns true when this post responsemanagement libraries unsupported media type response has a 5xx status code

func (*PostResponsemanagementLibrariesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post responsemanagement libraries unsupported media type response has a 2xx status code

func (*PostResponsemanagementLibrariesUnsupportedMediaType) String

type PostResponsemanagementResponseassetsSearchBadRequest

type PostResponsemanagementResponseassetsSearchBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchBadRequest

func NewPostResponsemanagementResponseassetsSearchBadRequest() *PostResponsemanagementResponseassetsSearchBadRequest

NewPostResponsemanagementResponseassetsSearchBadRequest creates a PostResponsemanagementResponseassetsSearchBadRequest with default headers values

func (*PostResponsemanagementResponseassetsSearchBadRequest) Error

func (*PostResponsemanagementResponseassetsSearchBadRequest) GetPayload

func (*PostResponsemanagementResponseassetsSearchBadRequest) IsClientError

IsClientError returns true when this post responsemanagement responseassets search bad request response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchBadRequest) IsCode

IsCode returns true when this post responsemanagement responseassets search bad request response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchBadRequest) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search bad request response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchBadRequest) IsServerError

IsServerError returns true when this post responsemanagement responseassets search bad request response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchBadRequest) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search bad request response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchBadRequest) String

type PostResponsemanagementResponseassetsSearchForbidden

type PostResponsemanagementResponseassetsSearchForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostResponsemanagementResponseassetsSearchForbidden

func NewPostResponsemanagementResponseassetsSearchForbidden() *PostResponsemanagementResponseassetsSearchForbidden

NewPostResponsemanagementResponseassetsSearchForbidden creates a PostResponsemanagementResponseassetsSearchForbidden with default headers values

func (*PostResponsemanagementResponseassetsSearchForbidden) Error

func (*PostResponsemanagementResponseassetsSearchForbidden) GetPayload

func (*PostResponsemanagementResponseassetsSearchForbidden) IsClientError

IsClientError returns true when this post responsemanagement responseassets search forbidden response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchForbidden) IsCode

IsCode returns true when this post responsemanagement responseassets search forbidden response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchForbidden) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search forbidden response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchForbidden) IsServerError

IsServerError returns true when this post responsemanagement responseassets search forbidden response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchForbidden) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search forbidden response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchForbidden) String

type PostResponsemanagementResponseassetsSearchGatewayTimeout

type PostResponsemanagementResponseassetsSearchGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostResponsemanagementResponseassetsSearchGatewayTimeout

func NewPostResponsemanagementResponseassetsSearchGatewayTimeout() *PostResponsemanagementResponseassetsSearchGatewayTimeout

NewPostResponsemanagementResponseassetsSearchGatewayTimeout creates a PostResponsemanagementResponseassetsSearchGatewayTimeout with default headers values

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) Error

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) GetPayload

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) IsClientError

IsClientError returns true when this post responsemanagement responseassets search gateway timeout response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) IsCode

IsCode returns true when this post responsemanagement responseassets search gateway timeout response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search gateway timeout response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) IsServerError

IsServerError returns true when this post responsemanagement responseassets search gateway timeout response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search gateway timeout response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchGatewayTimeout) String

type PostResponsemanagementResponseassetsSearchInternalServerError

type PostResponsemanagementResponseassetsSearchInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchInternalServerError

func NewPostResponsemanagementResponseassetsSearchInternalServerError() *PostResponsemanagementResponseassetsSearchInternalServerError

NewPostResponsemanagementResponseassetsSearchInternalServerError creates a PostResponsemanagementResponseassetsSearchInternalServerError with default headers values

func (*PostResponsemanagementResponseassetsSearchInternalServerError) Error

func (*PostResponsemanagementResponseassetsSearchInternalServerError) GetPayload

func (*PostResponsemanagementResponseassetsSearchInternalServerError) IsClientError

IsClientError returns true when this post responsemanagement responseassets search internal server error response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchInternalServerError) IsCode

IsCode returns true when this post responsemanagement responseassets search internal server error response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchInternalServerError) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search internal server error response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchInternalServerError) IsServerError

IsServerError returns true when this post responsemanagement responseassets search internal server error response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchInternalServerError) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search internal server error response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchInternalServerError) String

type PostResponsemanagementResponseassetsSearchNotFound

type PostResponsemanagementResponseassetsSearchNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostResponsemanagementResponseassetsSearchNotFound

func NewPostResponsemanagementResponseassetsSearchNotFound() *PostResponsemanagementResponseassetsSearchNotFound

NewPostResponsemanagementResponseassetsSearchNotFound creates a PostResponsemanagementResponseassetsSearchNotFound with default headers values

func (*PostResponsemanagementResponseassetsSearchNotFound) Error

func (*PostResponsemanagementResponseassetsSearchNotFound) GetPayload

func (*PostResponsemanagementResponseassetsSearchNotFound) IsClientError

IsClientError returns true when this post responsemanagement responseassets search not found response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchNotFound) IsCode

IsCode returns true when this post responsemanagement responseassets search not found response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchNotFound) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search not found response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchNotFound) IsServerError

IsServerError returns true when this post responsemanagement responseassets search not found response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchNotFound) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search not found response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchNotFound) String

type PostResponsemanagementResponseassetsSearchOK

type PostResponsemanagementResponseassetsSearchOK struct {
	Payload *models.ResponseAssetSearchResults
}

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

successful operation

func NewPostResponsemanagementResponseassetsSearchOK

func NewPostResponsemanagementResponseassetsSearchOK() *PostResponsemanagementResponseassetsSearchOK

NewPostResponsemanagementResponseassetsSearchOK creates a PostResponsemanagementResponseassetsSearchOK with default headers values

func (*PostResponsemanagementResponseassetsSearchOK) Error

func (*PostResponsemanagementResponseassetsSearchOK) GetPayload

func (*PostResponsemanagementResponseassetsSearchOK) IsClientError

IsClientError returns true when this post responsemanagement responseassets search o k response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchOK) IsCode

IsCode returns true when this post responsemanagement responseassets search o k response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchOK) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search o k response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchOK) IsServerError

IsServerError returns true when this post responsemanagement responseassets search o k response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchOK) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search o k response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchOK) String

type PostResponsemanagementResponseassetsSearchParams

type PostResponsemanagementResponseassetsSearchParams struct {

	/* Body.

	   request
	*/
	Body *models.ResponseAssetSearchRequest

	/* Expand.

	   Which fields, if any, to expand
	*/
	Expand []string

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

PostResponsemanagementResponseassetsSearchParams contains all the parameters to send to the API endpoint

for the post responsemanagement responseassets search operation.

Typically these are written to a http.Request.

func NewPostResponsemanagementResponseassetsSearchParams

func NewPostResponsemanagementResponseassetsSearchParams() *PostResponsemanagementResponseassetsSearchParams

NewPostResponsemanagementResponseassetsSearchParams creates a new PostResponsemanagementResponseassetsSearchParams 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 NewPostResponsemanagementResponseassetsSearchParamsWithContext

func NewPostResponsemanagementResponseassetsSearchParamsWithContext(ctx context.Context) *PostResponsemanagementResponseassetsSearchParams

NewPostResponsemanagementResponseassetsSearchParamsWithContext creates a new PostResponsemanagementResponseassetsSearchParams object with the ability to set a context for a request.

func NewPostResponsemanagementResponseassetsSearchParamsWithHTTPClient

func NewPostResponsemanagementResponseassetsSearchParamsWithHTTPClient(client *http.Client) *PostResponsemanagementResponseassetsSearchParams

NewPostResponsemanagementResponseassetsSearchParamsWithHTTPClient creates a new PostResponsemanagementResponseassetsSearchParams object with the ability to set a custom HTTPClient for a request.

func NewPostResponsemanagementResponseassetsSearchParamsWithTimeout

func NewPostResponsemanagementResponseassetsSearchParamsWithTimeout(timeout time.Duration) *PostResponsemanagementResponseassetsSearchParams

NewPostResponsemanagementResponseassetsSearchParamsWithTimeout creates a new PostResponsemanagementResponseassetsSearchParams object with the ability to set a timeout on a request.

func (*PostResponsemanagementResponseassetsSearchParams) SetBody

SetBody adds the body to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) SetContext

SetContext adds the context to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) SetDefaults

SetDefaults hydrates default values in the post responsemanagement responseassets search params (not the query body).

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

func (*PostResponsemanagementResponseassetsSearchParams) SetExpand

SetExpand adds the expand to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) SetTimeout

SetTimeout adds the timeout to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) WithBody

WithBody adds the body to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) WithContext

WithContext adds the context to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) WithDefaults

WithDefaults hydrates default values in the post responsemanagement responseassets search params (not the query body).

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

func (*PostResponsemanagementResponseassetsSearchParams) WithExpand

WithExpand adds the expand to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) WithTimeout

WithTimeout adds the timeout to the post responsemanagement responseassets search params

func (*PostResponsemanagementResponseassetsSearchParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostResponsemanagementResponseassetsSearchReader

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

PostResponsemanagementResponseassetsSearchReader is a Reader for the PostResponsemanagementResponseassetsSearch structure.

func (*PostResponsemanagementResponseassetsSearchReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostResponsemanagementResponseassetsSearchRequestEntityTooLarge

type PostResponsemanagementResponseassetsSearchRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchRequestEntityTooLarge

func NewPostResponsemanagementResponseassetsSearchRequestEntityTooLarge() *PostResponsemanagementResponseassetsSearchRequestEntityTooLarge

NewPostResponsemanagementResponseassetsSearchRequestEntityTooLarge creates a PostResponsemanagementResponseassetsSearchRequestEntityTooLarge with default headers values

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) Error

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) GetPayload

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) IsClientError

IsClientError returns true when this post responsemanagement responseassets search request entity too large response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) IsCode

IsCode returns true when this post responsemanagement responseassets search request entity too large response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search request entity too large response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) IsServerError

IsServerError returns true when this post responsemanagement responseassets search request entity too large response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search request entity too large response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchRequestEntityTooLarge) String

type PostResponsemanagementResponseassetsSearchRequestTimeout

type PostResponsemanagementResponseassetsSearchRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchRequestTimeout

func NewPostResponsemanagementResponseassetsSearchRequestTimeout() *PostResponsemanagementResponseassetsSearchRequestTimeout

NewPostResponsemanagementResponseassetsSearchRequestTimeout creates a PostResponsemanagementResponseassetsSearchRequestTimeout with default headers values

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) Error

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) GetPayload

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) IsClientError

IsClientError returns true when this post responsemanagement responseassets search request timeout response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) IsCode

IsCode returns true when this post responsemanagement responseassets search request timeout response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search request timeout response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) IsServerError

IsServerError returns true when this post responsemanagement responseassets search request timeout response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search request timeout response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchRequestTimeout) String

type PostResponsemanagementResponseassetsSearchServiceUnavailable

type PostResponsemanagementResponseassetsSearchServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchServiceUnavailable

func NewPostResponsemanagementResponseassetsSearchServiceUnavailable() *PostResponsemanagementResponseassetsSearchServiceUnavailable

NewPostResponsemanagementResponseassetsSearchServiceUnavailable creates a PostResponsemanagementResponseassetsSearchServiceUnavailable with default headers values

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) Error

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) GetPayload

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) IsClientError

IsClientError returns true when this post responsemanagement responseassets search service unavailable response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) IsCode

IsCode returns true when this post responsemanagement responseassets search service unavailable response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search service unavailable response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) IsServerError

IsServerError returns true when this post responsemanagement responseassets search service unavailable response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search service unavailable response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchServiceUnavailable) String

type PostResponsemanagementResponseassetsSearchTooManyRequests

type PostResponsemanagementResponseassetsSearchTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchTooManyRequests

func NewPostResponsemanagementResponseassetsSearchTooManyRequests() *PostResponsemanagementResponseassetsSearchTooManyRequests

NewPostResponsemanagementResponseassetsSearchTooManyRequests creates a PostResponsemanagementResponseassetsSearchTooManyRequests with default headers values

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) Error

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) GetPayload

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) IsClientError

IsClientError returns true when this post responsemanagement responseassets search too many requests response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) IsCode

IsCode returns true when this post responsemanagement responseassets search too many requests response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search too many requests response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) IsServerError

IsServerError returns true when this post responsemanagement responseassets search too many requests response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search too many requests response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchTooManyRequests) String

type PostResponsemanagementResponseassetsSearchUnauthorized

type PostResponsemanagementResponseassetsSearchUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostResponsemanagementResponseassetsSearchUnauthorized

func NewPostResponsemanagementResponseassetsSearchUnauthorized() *PostResponsemanagementResponseassetsSearchUnauthorized

NewPostResponsemanagementResponseassetsSearchUnauthorized creates a PostResponsemanagementResponseassetsSearchUnauthorized with default headers values

func (*PostResponsemanagementResponseassetsSearchUnauthorized) Error

func (*PostResponsemanagementResponseassetsSearchUnauthorized) GetPayload

func (*PostResponsemanagementResponseassetsSearchUnauthorized) IsClientError

IsClientError returns true when this post responsemanagement responseassets search unauthorized response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchUnauthorized) IsCode

IsCode returns true when this post responsemanagement responseassets search unauthorized response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchUnauthorized) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search unauthorized response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchUnauthorized) IsServerError

IsServerError returns true when this post responsemanagement responseassets search unauthorized response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchUnauthorized) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search unauthorized response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchUnauthorized) String

type PostResponsemanagementResponseassetsSearchUnsupportedMediaType

type PostResponsemanagementResponseassetsSearchUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsSearchUnsupportedMediaType

func NewPostResponsemanagementResponseassetsSearchUnsupportedMediaType() *PostResponsemanagementResponseassetsSearchUnsupportedMediaType

NewPostResponsemanagementResponseassetsSearchUnsupportedMediaType creates a PostResponsemanagementResponseassetsSearchUnsupportedMediaType with default headers values

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) Error

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) GetPayload

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) IsClientError

IsClientError returns true when this post responsemanagement responseassets search unsupported media type response has a 4xx status code

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) IsCode

IsCode returns true when this post responsemanagement responseassets search unsupported media type response a status code equal to that given

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets search unsupported media type response has a 3xx status code

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) IsServerError

IsServerError returns true when this post responsemanagement responseassets search unsupported media type response has a 5xx status code

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets search unsupported media type response has a 2xx status code

func (*PostResponsemanagementResponseassetsSearchUnsupportedMediaType) String

type PostResponsemanagementResponseassetsUploadsBadRequest

type PostResponsemanagementResponseassetsUploadsBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsBadRequest

func NewPostResponsemanagementResponseassetsUploadsBadRequest() *PostResponsemanagementResponseassetsUploadsBadRequest

NewPostResponsemanagementResponseassetsUploadsBadRequest creates a PostResponsemanagementResponseassetsUploadsBadRequest with default headers values

func (*PostResponsemanagementResponseassetsUploadsBadRequest) Error

func (*PostResponsemanagementResponseassetsUploadsBadRequest) GetPayload

func (*PostResponsemanagementResponseassetsUploadsBadRequest) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads bad request response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsBadRequest) IsCode

IsCode returns true when this post responsemanagement responseassets uploads bad request response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsBadRequest) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads bad request response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsBadRequest) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads bad request response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsBadRequest) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads bad request response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsBadRequest) String

type PostResponsemanagementResponseassetsUploadsForbidden

type PostResponsemanagementResponseassetsUploadsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostResponsemanagementResponseassetsUploadsForbidden

func NewPostResponsemanagementResponseassetsUploadsForbidden() *PostResponsemanagementResponseassetsUploadsForbidden

NewPostResponsemanagementResponseassetsUploadsForbidden creates a PostResponsemanagementResponseassetsUploadsForbidden with default headers values

func (*PostResponsemanagementResponseassetsUploadsForbidden) Error

func (*PostResponsemanagementResponseassetsUploadsForbidden) GetPayload

func (*PostResponsemanagementResponseassetsUploadsForbidden) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads forbidden response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsForbidden) IsCode

IsCode returns true when this post responsemanagement responseassets uploads forbidden response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsForbidden) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads forbidden response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsForbidden) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads forbidden response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsForbidden) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads forbidden response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsForbidden) String

type PostResponsemanagementResponseassetsUploadsGatewayTimeout

type PostResponsemanagementResponseassetsUploadsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostResponsemanagementResponseassetsUploadsGatewayTimeout

func NewPostResponsemanagementResponseassetsUploadsGatewayTimeout() *PostResponsemanagementResponseassetsUploadsGatewayTimeout

NewPostResponsemanagementResponseassetsUploadsGatewayTimeout creates a PostResponsemanagementResponseassetsUploadsGatewayTimeout with default headers values

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) Error

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) GetPayload

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads gateway timeout response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) IsCode

IsCode returns true when this post responsemanagement responseassets uploads gateway timeout response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads gateway timeout response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads gateway timeout response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads gateway timeout response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsGatewayTimeout) String

type PostResponsemanagementResponseassetsUploadsInternalServerError

type PostResponsemanagementResponseassetsUploadsInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsInternalServerError

func NewPostResponsemanagementResponseassetsUploadsInternalServerError() *PostResponsemanagementResponseassetsUploadsInternalServerError

NewPostResponsemanagementResponseassetsUploadsInternalServerError creates a PostResponsemanagementResponseassetsUploadsInternalServerError with default headers values

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) Error

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) GetPayload

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads internal server error response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) IsCode

IsCode returns true when this post responsemanagement responseassets uploads internal server error response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads internal server error response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads internal server error response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads internal server error response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsInternalServerError) String

type PostResponsemanagementResponseassetsUploadsNotFound

type PostResponsemanagementResponseassetsUploadsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostResponsemanagementResponseassetsUploadsNotFound

func NewPostResponsemanagementResponseassetsUploadsNotFound() *PostResponsemanagementResponseassetsUploadsNotFound

NewPostResponsemanagementResponseassetsUploadsNotFound creates a PostResponsemanagementResponseassetsUploadsNotFound with default headers values

func (*PostResponsemanagementResponseassetsUploadsNotFound) Error

func (*PostResponsemanagementResponseassetsUploadsNotFound) GetPayload

func (*PostResponsemanagementResponseassetsUploadsNotFound) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads not found response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsNotFound) IsCode

IsCode returns true when this post responsemanagement responseassets uploads not found response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsNotFound) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads not found response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsNotFound) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads not found response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsNotFound) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads not found response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsNotFound) String

type PostResponsemanagementResponseassetsUploadsOK

type PostResponsemanagementResponseassetsUploadsOK struct {
	Payload *models.CreateResponseAssetResponse
}

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

successful operation

func NewPostResponsemanagementResponseassetsUploadsOK

func NewPostResponsemanagementResponseassetsUploadsOK() *PostResponsemanagementResponseassetsUploadsOK

NewPostResponsemanagementResponseassetsUploadsOK creates a PostResponsemanagementResponseassetsUploadsOK with default headers values

func (*PostResponsemanagementResponseassetsUploadsOK) Error

func (*PostResponsemanagementResponseassetsUploadsOK) GetPayload

func (*PostResponsemanagementResponseassetsUploadsOK) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads o k response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsOK) IsCode

IsCode returns true when this post responsemanagement responseassets uploads o k response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsOK) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads o k response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsOK) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads o k response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsOK) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads o k response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsOK) String

type PostResponsemanagementResponseassetsUploadsParams

type PostResponsemanagementResponseassetsUploadsParams struct {

	/* Body.

	   request
	*/
	Body *models.CreateResponseAssetRequest

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

PostResponsemanagementResponseassetsUploadsParams contains all the parameters to send to the API endpoint

for the post responsemanagement responseassets uploads operation.

Typically these are written to a http.Request.

func NewPostResponsemanagementResponseassetsUploadsParams

func NewPostResponsemanagementResponseassetsUploadsParams() *PostResponsemanagementResponseassetsUploadsParams

NewPostResponsemanagementResponseassetsUploadsParams creates a new PostResponsemanagementResponseassetsUploadsParams 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 NewPostResponsemanagementResponseassetsUploadsParamsWithContext

func NewPostResponsemanagementResponseassetsUploadsParamsWithContext(ctx context.Context) *PostResponsemanagementResponseassetsUploadsParams

NewPostResponsemanagementResponseassetsUploadsParamsWithContext creates a new PostResponsemanagementResponseassetsUploadsParams object with the ability to set a context for a request.

func NewPostResponsemanagementResponseassetsUploadsParamsWithHTTPClient

func NewPostResponsemanagementResponseassetsUploadsParamsWithHTTPClient(client *http.Client) *PostResponsemanagementResponseassetsUploadsParams

NewPostResponsemanagementResponseassetsUploadsParamsWithHTTPClient creates a new PostResponsemanagementResponseassetsUploadsParams object with the ability to set a custom HTTPClient for a request.

func NewPostResponsemanagementResponseassetsUploadsParamsWithTimeout

func NewPostResponsemanagementResponseassetsUploadsParamsWithTimeout(timeout time.Duration) *PostResponsemanagementResponseassetsUploadsParams

NewPostResponsemanagementResponseassetsUploadsParamsWithTimeout creates a new PostResponsemanagementResponseassetsUploadsParams object with the ability to set a timeout on a request.

func (*PostResponsemanagementResponseassetsUploadsParams) SetBody

SetBody adds the body to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) SetContext

SetContext adds the context to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) SetDefaults

SetDefaults hydrates default values in the post responsemanagement responseassets uploads params (not the query body).

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

func (*PostResponsemanagementResponseassetsUploadsParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) SetTimeout

SetTimeout adds the timeout to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) WithBody

WithBody adds the body to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) WithContext

WithContext adds the context to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) WithDefaults

WithDefaults hydrates default values in the post responsemanagement responseassets uploads params (not the query body).

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

func (*PostResponsemanagementResponseassetsUploadsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) WithTimeout

WithTimeout adds the timeout to the post responsemanagement responseassets uploads params

func (*PostResponsemanagementResponseassetsUploadsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostResponsemanagementResponseassetsUploadsReader

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

PostResponsemanagementResponseassetsUploadsReader is a Reader for the PostResponsemanagementResponseassetsUploads structure.

func (*PostResponsemanagementResponseassetsUploadsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge

type PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsRequestEntityTooLarge

func NewPostResponsemanagementResponseassetsUploadsRequestEntityTooLarge() *PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge

NewPostResponsemanagementResponseassetsUploadsRequestEntityTooLarge creates a PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge with default headers values

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) Error

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) GetPayload

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads request entity too large response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) IsCode

IsCode returns true when this post responsemanagement responseassets uploads request entity too large response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads request entity too large response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads request entity too large response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads request entity too large response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestEntityTooLarge) String

type PostResponsemanagementResponseassetsUploadsRequestTimeout

type PostResponsemanagementResponseassetsUploadsRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsRequestTimeout

func NewPostResponsemanagementResponseassetsUploadsRequestTimeout() *PostResponsemanagementResponseassetsUploadsRequestTimeout

NewPostResponsemanagementResponseassetsUploadsRequestTimeout creates a PostResponsemanagementResponseassetsUploadsRequestTimeout with default headers values

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) Error

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) GetPayload

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads request timeout response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) IsCode

IsCode returns true when this post responsemanagement responseassets uploads request timeout response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads request timeout response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads request timeout response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads request timeout response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsRequestTimeout) String

type PostResponsemanagementResponseassetsUploadsServiceUnavailable

type PostResponsemanagementResponseassetsUploadsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsServiceUnavailable

func NewPostResponsemanagementResponseassetsUploadsServiceUnavailable() *PostResponsemanagementResponseassetsUploadsServiceUnavailable

NewPostResponsemanagementResponseassetsUploadsServiceUnavailable creates a PostResponsemanagementResponseassetsUploadsServiceUnavailable with default headers values

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) Error

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) GetPayload

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads service unavailable response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) IsCode

IsCode returns true when this post responsemanagement responseassets uploads service unavailable response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads service unavailable response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads service unavailable response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads service unavailable response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsServiceUnavailable) String

type PostResponsemanagementResponseassetsUploadsTooManyRequests

type PostResponsemanagementResponseassetsUploadsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsTooManyRequests

func NewPostResponsemanagementResponseassetsUploadsTooManyRequests() *PostResponsemanagementResponseassetsUploadsTooManyRequests

NewPostResponsemanagementResponseassetsUploadsTooManyRequests creates a PostResponsemanagementResponseassetsUploadsTooManyRequests with default headers values

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) Error

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) GetPayload

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads too many requests response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) IsCode

IsCode returns true when this post responsemanagement responseassets uploads too many requests response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads too many requests response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads too many requests response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads too many requests response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsTooManyRequests) String

type PostResponsemanagementResponseassetsUploadsUnauthorized

type PostResponsemanagementResponseassetsUploadsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostResponsemanagementResponseassetsUploadsUnauthorized

func NewPostResponsemanagementResponseassetsUploadsUnauthorized() *PostResponsemanagementResponseassetsUploadsUnauthorized

NewPostResponsemanagementResponseassetsUploadsUnauthorized creates a PostResponsemanagementResponseassetsUploadsUnauthorized with default headers values

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) Error

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) GetPayload

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads unauthorized response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) IsCode

IsCode returns true when this post responsemanagement responseassets uploads unauthorized response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads unauthorized response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads unauthorized response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads unauthorized response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsUnauthorized) String

type PostResponsemanagementResponseassetsUploadsUnsupportedMediaType

type PostResponsemanagementResponseassetsUploadsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponseassetsUploadsUnsupportedMediaType

func NewPostResponsemanagementResponseassetsUploadsUnsupportedMediaType() *PostResponsemanagementResponseassetsUploadsUnsupportedMediaType

NewPostResponsemanagementResponseassetsUploadsUnsupportedMediaType creates a PostResponsemanagementResponseassetsUploadsUnsupportedMediaType with default headers values

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) Error

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) GetPayload

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) IsClientError

IsClientError returns true when this post responsemanagement responseassets uploads unsupported media type response has a 4xx status code

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) IsCode

IsCode returns true when this post responsemanagement responseassets uploads unsupported media type response a status code equal to that given

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post responsemanagement responseassets uploads unsupported media type response has a 3xx status code

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) IsServerError

IsServerError returns true when this post responsemanagement responseassets uploads unsupported media type response has a 5xx status code

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post responsemanagement responseassets uploads unsupported media type response has a 2xx status code

func (*PostResponsemanagementResponseassetsUploadsUnsupportedMediaType) String

type PostResponsemanagementResponsesBadRequest

type PostResponsemanagementResponsesBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesBadRequest

func NewPostResponsemanagementResponsesBadRequest() *PostResponsemanagementResponsesBadRequest

NewPostResponsemanagementResponsesBadRequest creates a PostResponsemanagementResponsesBadRequest with default headers values

func (*PostResponsemanagementResponsesBadRequest) Error

func (*PostResponsemanagementResponsesBadRequest) GetPayload

func (*PostResponsemanagementResponsesBadRequest) IsClientError

IsClientError returns true when this post responsemanagement responses bad request response has a 4xx status code

func (*PostResponsemanagementResponsesBadRequest) IsCode

IsCode returns true when this post responsemanagement responses bad request response a status code equal to that given

func (*PostResponsemanagementResponsesBadRequest) IsRedirect

IsRedirect returns true when this post responsemanagement responses bad request response has a 3xx status code

func (*PostResponsemanagementResponsesBadRequest) IsServerError

IsServerError returns true when this post responsemanagement responses bad request response has a 5xx status code

func (*PostResponsemanagementResponsesBadRequest) IsSuccess

IsSuccess returns true when this post responsemanagement responses bad request response has a 2xx status code

func (*PostResponsemanagementResponsesBadRequest) String

type PostResponsemanagementResponsesForbidden

type PostResponsemanagementResponsesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostResponsemanagementResponsesForbidden

func NewPostResponsemanagementResponsesForbidden() *PostResponsemanagementResponsesForbidden

NewPostResponsemanagementResponsesForbidden creates a PostResponsemanagementResponsesForbidden with default headers values

func (*PostResponsemanagementResponsesForbidden) Error

func (*PostResponsemanagementResponsesForbidden) GetPayload

func (*PostResponsemanagementResponsesForbidden) IsClientError

IsClientError returns true when this post responsemanagement responses forbidden response has a 4xx status code

func (*PostResponsemanagementResponsesForbidden) IsCode

IsCode returns true when this post responsemanagement responses forbidden response a status code equal to that given

func (*PostResponsemanagementResponsesForbidden) IsRedirect

IsRedirect returns true when this post responsemanagement responses forbidden response has a 3xx status code

func (*PostResponsemanagementResponsesForbidden) IsServerError

IsServerError returns true when this post responsemanagement responses forbidden response has a 5xx status code

func (*PostResponsemanagementResponsesForbidden) IsSuccess

IsSuccess returns true when this post responsemanagement responses forbidden response has a 2xx status code

func (*PostResponsemanagementResponsesForbidden) String

type PostResponsemanagementResponsesGatewayTimeout

type PostResponsemanagementResponsesGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostResponsemanagementResponsesGatewayTimeout

func NewPostResponsemanagementResponsesGatewayTimeout() *PostResponsemanagementResponsesGatewayTimeout

NewPostResponsemanagementResponsesGatewayTimeout creates a PostResponsemanagementResponsesGatewayTimeout with default headers values

func (*PostResponsemanagementResponsesGatewayTimeout) Error

func (*PostResponsemanagementResponsesGatewayTimeout) GetPayload

func (*PostResponsemanagementResponsesGatewayTimeout) IsClientError

IsClientError returns true when this post responsemanagement responses gateway timeout response has a 4xx status code

func (*PostResponsemanagementResponsesGatewayTimeout) IsCode

IsCode returns true when this post responsemanagement responses gateway timeout response a status code equal to that given

func (*PostResponsemanagementResponsesGatewayTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responses gateway timeout response has a 3xx status code

func (*PostResponsemanagementResponsesGatewayTimeout) IsServerError

IsServerError returns true when this post responsemanagement responses gateway timeout response has a 5xx status code

func (*PostResponsemanagementResponsesGatewayTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responses gateway timeout response has a 2xx status code

func (*PostResponsemanagementResponsesGatewayTimeout) String

type PostResponsemanagementResponsesInternalServerError

type PostResponsemanagementResponsesInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesInternalServerError

func NewPostResponsemanagementResponsesInternalServerError() *PostResponsemanagementResponsesInternalServerError

NewPostResponsemanagementResponsesInternalServerError creates a PostResponsemanagementResponsesInternalServerError with default headers values

func (*PostResponsemanagementResponsesInternalServerError) Error

func (*PostResponsemanagementResponsesInternalServerError) GetPayload

func (*PostResponsemanagementResponsesInternalServerError) IsClientError

IsClientError returns true when this post responsemanagement responses internal server error response has a 4xx status code

func (*PostResponsemanagementResponsesInternalServerError) IsCode

IsCode returns true when this post responsemanagement responses internal server error response a status code equal to that given

func (*PostResponsemanagementResponsesInternalServerError) IsRedirect

IsRedirect returns true when this post responsemanagement responses internal server error response has a 3xx status code

func (*PostResponsemanagementResponsesInternalServerError) IsServerError

IsServerError returns true when this post responsemanagement responses internal server error response has a 5xx status code

func (*PostResponsemanagementResponsesInternalServerError) IsSuccess

IsSuccess returns true when this post responsemanagement responses internal server error response has a 2xx status code

func (*PostResponsemanagementResponsesInternalServerError) String

type PostResponsemanagementResponsesNotFound

type PostResponsemanagementResponsesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostResponsemanagementResponsesNotFound

func NewPostResponsemanagementResponsesNotFound() *PostResponsemanagementResponsesNotFound

NewPostResponsemanagementResponsesNotFound creates a PostResponsemanagementResponsesNotFound with default headers values

func (*PostResponsemanagementResponsesNotFound) Error

func (*PostResponsemanagementResponsesNotFound) GetPayload

func (*PostResponsemanagementResponsesNotFound) IsClientError

func (o *PostResponsemanagementResponsesNotFound) IsClientError() bool

IsClientError returns true when this post responsemanagement responses not found response has a 4xx status code

func (*PostResponsemanagementResponsesNotFound) IsCode

IsCode returns true when this post responsemanagement responses not found response a status code equal to that given

func (*PostResponsemanagementResponsesNotFound) IsRedirect

IsRedirect returns true when this post responsemanagement responses not found response has a 3xx status code

func (*PostResponsemanagementResponsesNotFound) IsServerError

func (o *PostResponsemanagementResponsesNotFound) IsServerError() bool

IsServerError returns true when this post responsemanagement responses not found response has a 5xx status code

func (*PostResponsemanagementResponsesNotFound) IsSuccess

IsSuccess returns true when this post responsemanagement responses not found response has a 2xx status code

func (*PostResponsemanagementResponsesNotFound) String

type PostResponsemanagementResponsesOK

type PostResponsemanagementResponsesOK struct {
	Payload *models.Response
}

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

successful operation

func NewPostResponsemanagementResponsesOK

func NewPostResponsemanagementResponsesOK() *PostResponsemanagementResponsesOK

NewPostResponsemanagementResponsesOK creates a PostResponsemanagementResponsesOK with default headers values

func (*PostResponsemanagementResponsesOK) Error

func (*PostResponsemanagementResponsesOK) GetPayload

func (*PostResponsemanagementResponsesOK) IsClientError

func (o *PostResponsemanagementResponsesOK) IsClientError() bool

IsClientError returns true when this post responsemanagement responses o k response has a 4xx status code

func (*PostResponsemanagementResponsesOK) IsCode

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

IsCode returns true when this post responsemanagement responses o k response a status code equal to that given

func (*PostResponsemanagementResponsesOK) IsRedirect

func (o *PostResponsemanagementResponsesOK) IsRedirect() bool

IsRedirect returns true when this post responsemanagement responses o k response has a 3xx status code

func (*PostResponsemanagementResponsesOK) IsServerError

func (o *PostResponsemanagementResponsesOK) IsServerError() bool

IsServerError returns true when this post responsemanagement responses o k response has a 5xx status code

func (*PostResponsemanagementResponsesOK) IsSuccess

func (o *PostResponsemanagementResponsesOK) IsSuccess() bool

IsSuccess returns true when this post responsemanagement responses o k response has a 2xx status code

func (*PostResponsemanagementResponsesOK) String

type PostResponsemanagementResponsesParams

type PostResponsemanagementResponsesParams struct {

	/* Body.

	   Response
	*/
	Body *models.Response

	/* Expand.

	   Expand instructions for the return value.
	*/
	Expand *string

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

PostResponsemanagementResponsesParams contains all the parameters to send to the API endpoint

for the post responsemanagement responses operation.

Typically these are written to a http.Request.

func NewPostResponsemanagementResponsesParams

func NewPostResponsemanagementResponsesParams() *PostResponsemanagementResponsesParams

NewPostResponsemanagementResponsesParams creates a new PostResponsemanagementResponsesParams 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 NewPostResponsemanagementResponsesParamsWithContext

func NewPostResponsemanagementResponsesParamsWithContext(ctx context.Context) *PostResponsemanagementResponsesParams

NewPostResponsemanagementResponsesParamsWithContext creates a new PostResponsemanagementResponsesParams object with the ability to set a context for a request.

func NewPostResponsemanagementResponsesParamsWithHTTPClient

func NewPostResponsemanagementResponsesParamsWithHTTPClient(client *http.Client) *PostResponsemanagementResponsesParams

NewPostResponsemanagementResponsesParamsWithHTTPClient creates a new PostResponsemanagementResponsesParams object with the ability to set a custom HTTPClient for a request.

func NewPostResponsemanagementResponsesParamsWithTimeout

func NewPostResponsemanagementResponsesParamsWithTimeout(timeout time.Duration) *PostResponsemanagementResponsesParams

NewPostResponsemanagementResponsesParamsWithTimeout creates a new PostResponsemanagementResponsesParams object with the ability to set a timeout on a request.

func (*PostResponsemanagementResponsesParams) SetBody

SetBody adds the body to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) SetContext

SetContext adds the context to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) SetDefaults

func (o *PostResponsemanagementResponsesParams) SetDefaults()

SetDefaults hydrates default values in the post responsemanagement responses params (not the query body).

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

func (*PostResponsemanagementResponsesParams) SetExpand

func (o *PostResponsemanagementResponsesParams) SetExpand(expand *string)

SetExpand adds the expand to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) SetTimeout

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

SetTimeout adds the timeout to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) WithBody

WithBody adds the body to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) WithContext

WithContext adds the context to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) WithDefaults

WithDefaults hydrates default values in the post responsemanagement responses params (not the query body).

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

func (*PostResponsemanagementResponsesParams) WithExpand

WithExpand adds the expand to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) WithTimeout

WithTimeout adds the timeout to the post responsemanagement responses params

func (*PostResponsemanagementResponsesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostResponsemanagementResponsesPreconditionFailed

type PostResponsemanagementResponsesPreconditionFailed struct {
	Payload *models.ErrorBody
}

PostResponsemanagementResponsesPreconditionFailed describes a response with status code 412, with default header values.

Precondition Failed

func NewPostResponsemanagementResponsesPreconditionFailed

func NewPostResponsemanagementResponsesPreconditionFailed() *PostResponsemanagementResponsesPreconditionFailed

NewPostResponsemanagementResponsesPreconditionFailed creates a PostResponsemanagementResponsesPreconditionFailed with default headers values

func (*PostResponsemanagementResponsesPreconditionFailed) Error

func (*PostResponsemanagementResponsesPreconditionFailed) GetPayload

func (*PostResponsemanagementResponsesPreconditionFailed) IsClientError

IsClientError returns true when this post responsemanagement responses precondition failed response has a 4xx status code

func (*PostResponsemanagementResponsesPreconditionFailed) IsCode

IsCode returns true when this post responsemanagement responses precondition failed response a status code equal to that given

func (*PostResponsemanagementResponsesPreconditionFailed) IsRedirect

IsRedirect returns true when this post responsemanagement responses precondition failed response has a 3xx status code

func (*PostResponsemanagementResponsesPreconditionFailed) IsServerError

IsServerError returns true when this post responsemanagement responses precondition failed response has a 5xx status code

func (*PostResponsemanagementResponsesPreconditionFailed) IsSuccess

IsSuccess returns true when this post responsemanagement responses precondition failed response has a 2xx status code

func (*PostResponsemanagementResponsesPreconditionFailed) String

type PostResponsemanagementResponsesQueryBadRequest

type PostResponsemanagementResponsesQueryBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryBadRequest

func NewPostResponsemanagementResponsesQueryBadRequest() *PostResponsemanagementResponsesQueryBadRequest

NewPostResponsemanagementResponsesQueryBadRequest creates a PostResponsemanagementResponsesQueryBadRequest with default headers values

func (*PostResponsemanagementResponsesQueryBadRequest) Error

func (*PostResponsemanagementResponsesQueryBadRequest) GetPayload

func (*PostResponsemanagementResponsesQueryBadRequest) IsClientError

IsClientError returns true when this post responsemanagement responses query bad request response has a 4xx status code

func (*PostResponsemanagementResponsesQueryBadRequest) IsCode

IsCode returns true when this post responsemanagement responses query bad request response a status code equal to that given

func (*PostResponsemanagementResponsesQueryBadRequest) IsRedirect

IsRedirect returns true when this post responsemanagement responses query bad request response has a 3xx status code

func (*PostResponsemanagementResponsesQueryBadRequest) IsServerError

IsServerError returns true when this post responsemanagement responses query bad request response has a 5xx status code

func (*PostResponsemanagementResponsesQueryBadRequest) IsSuccess

IsSuccess returns true when this post responsemanagement responses query bad request response has a 2xx status code

func (*PostResponsemanagementResponsesQueryBadRequest) String

type PostResponsemanagementResponsesQueryForbidden

type PostResponsemanagementResponsesQueryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostResponsemanagementResponsesQueryForbidden

func NewPostResponsemanagementResponsesQueryForbidden() *PostResponsemanagementResponsesQueryForbidden

NewPostResponsemanagementResponsesQueryForbidden creates a PostResponsemanagementResponsesQueryForbidden with default headers values

func (*PostResponsemanagementResponsesQueryForbidden) Error

func (*PostResponsemanagementResponsesQueryForbidden) GetPayload

func (*PostResponsemanagementResponsesQueryForbidden) IsClientError

IsClientError returns true when this post responsemanagement responses query forbidden response has a 4xx status code

func (*PostResponsemanagementResponsesQueryForbidden) IsCode

IsCode returns true when this post responsemanagement responses query forbidden response a status code equal to that given

func (*PostResponsemanagementResponsesQueryForbidden) IsRedirect

IsRedirect returns true when this post responsemanagement responses query forbidden response has a 3xx status code

func (*PostResponsemanagementResponsesQueryForbidden) IsServerError

IsServerError returns true when this post responsemanagement responses query forbidden response has a 5xx status code

func (*PostResponsemanagementResponsesQueryForbidden) IsSuccess

IsSuccess returns true when this post responsemanagement responses query forbidden response has a 2xx status code

func (*PostResponsemanagementResponsesQueryForbidden) String

type PostResponsemanagementResponsesQueryGatewayTimeout

type PostResponsemanagementResponsesQueryGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostResponsemanagementResponsesQueryGatewayTimeout

func NewPostResponsemanagementResponsesQueryGatewayTimeout() *PostResponsemanagementResponsesQueryGatewayTimeout

NewPostResponsemanagementResponsesQueryGatewayTimeout creates a PostResponsemanagementResponsesQueryGatewayTimeout with default headers values

func (*PostResponsemanagementResponsesQueryGatewayTimeout) Error

func (*PostResponsemanagementResponsesQueryGatewayTimeout) GetPayload

func (*PostResponsemanagementResponsesQueryGatewayTimeout) IsClientError

IsClientError returns true when this post responsemanagement responses query gateway timeout response has a 4xx status code

func (*PostResponsemanagementResponsesQueryGatewayTimeout) IsCode

IsCode returns true when this post responsemanagement responses query gateway timeout response a status code equal to that given

func (*PostResponsemanagementResponsesQueryGatewayTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responses query gateway timeout response has a 3xx status code

func (*PostResponsemanagementResponsesQueryGatewayTimeout) IsServerError

IsServerError returns true when this post responsemanagement responses query gateway timeout response has a 5xx status code

func (*PostResponsemanagementResponsesQueryGatewayTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responses query gateway timeout response has a 2xx status code

func (*PostResponsemanagementResponsesQueryGatewayTimeout) String

type PostResponsemanagementResponsesQueryInternalServerError

type PostResponsemanagementResponsesQueryInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryInternalServerError

func NewPostResponsemanagementResponsesQueryInternalServerError() *PostResponsemanagementResponsesQueryInternalServerError

NewPostResponsemanagementResponsesQueryInternalServerError creates a PostResponsemanagementResponsesQueryInternalServerError with default headers values

func (*PostResponsemanagementResponsesQueryInternalServerError) Error

func (*PostResponsemanagementResponsesQueryInternalServerError) GetPayload

func (*PostResponsemanagementResponsesQueryInternalServerError) IsClientError

IsClientError returns true when this post responsemanagement responses query internal server error response has a 4xx status code

func (*PostResponsemanagementResponsesQueryInternalServerError) IsCode

IsCode returns true when this post responsemanagement responses query internal server error response a status code equal to that given

func (*PostResponsemanagementResponsesQueryInternalServerError) IsRedirect

IsRedirect returns true when this post responsemanagement responses query internal server error response has a 3xx status code

func (*PostResponsemanagementResponsesQueryInternalServerError) IsServerError

IsServerError returns true when this post responsemanagement responses query internal server error response has a 5xx status code

func (*PostResponsemanagementResponsesQueryInternalServerError) IsSuccess

IsSuccess returns true when this post responsemanagement responses query internal server error response has a 2xx status code

func (*PostResponsemanagementResponsesQueryInternalServerError) String

type PostResponsemanagementResponsesQueryNotFound

type PostResponsemanagementResponsesQueryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostResponsemanagementResponsesQueryNotFound

func NewPostResponsemanagementResponsesQueryNotFound() *PostResponsemanagementResponsesQueryNotFound

NewPostResponsemanagementResponsesQueryNotFound creates a PostResponsemanagementResponsesQueryNotFound with default headers values

func (*PostResponsemanagementResponsesQueryNotFound) Error

func (*PostResponsemanagementResponsesQueryNotFound) GetPayload

func (*PostResponsemanagementResponsesQueryNotFound) IsClientError

IsClientError returns true when this post responsemanagement responses query not found response has a 4xx status code

func (*PostResponsemanagementResponsesQueryNotFound) IsCode

IsCode returns true when this post responsemanagement responses query not found response a status code equal to that given

func (*PostResponsemanagementResponsesQueryNotFound) IsRedirect

IsRedirect returns true when this post responsemanagement responses query not found response has a 3xx status code

func (*PostResponsemanagementResponsesQueryNotFound) IsServerError

IsServerError returns true when this post responsemanagement responses query not found response has a 5xx status code

func (*PostResponsemanagementResponsesQueryNotFound) IsSuccess

IsSuccess returns true when this post responsemanagement responses query not found response has a 2xx status code

func (*PostResponsemanagementResponsesQueryNotFound) String

type PostResponsemanagementResponsesQueryOK

type PostResponsemanagementResponsesQueryOK struct {
	Payload *models.ResponseQueryResults
}

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

successful operation

func NewPostResponsemanagementResponsesQueryOK

func NewPostResponsemanagementResponsesQueryOK() *PostResponsemanagementResponsesQueryOK

NewPostResponsemanagementResponsesQueryOK creates a PostResponsemanagementResponsesQueryOK with default headers values

func (*PostResponsemanagementResponsesQueryOK) Error

func (*PostResponsemanagementResponsesQueryOK) GetPayload

func (*PostResponsemanagementResponsesQueryOK) IsClientError

func (o *PostResponsemanagementResponsesQueryOK) IsClientError() bool

IsClientError returns true when this post responsemanagement responses query o k response has a 4xx status code

func (*PostResponsemanagementResponsesQueryOK) IsCode

IsCode returns true when this post responsemanagement responses query o k response a status code equal to that given

func (*PostResponsemanagementResponsesQueryOK) IsRedirect

IsRedirect returns true when this post responsemanagement responses query o k response has a 3xx status code

func (*PostResponsemanagementResponsesQueryOK) IsServerError

func (o *PostResponsemanagementResponsesQueryOK) IsServerError() bool

IsServerError returns true when this post responsemanagement responses query o k response has a 5xx status code

func (*PostResponsemanagementResponsesQueryOK) IsSuccess

IsSuccess returns true when this post responsemanagement responses query o k response has a 2xx status code

func (*PostResponsemanagementResponsesQueryOK) String

type PostResponsemanagementResponsesQueryParams

type PostResponsemanagementResponsesQueryParams struct {

	/* Body.

	   Response
	*/
	Body *models.ResponseQueryRequest

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

PostResponsemanagementResponsesQueryParams contains all the parameters to send to the API endpoint

for the post responsemanagement responses query operation.

Typically these are written to a http.Request.

func NewPostResponsemanagementResponsesQueryParams

func NewPostResponsemanagementResponsesQueryParams() *PostResponsemanagementResponsesQueryParams

NewPostResponsemanagementResponsesQueryParams creates a new PostResponsemanagementResponsesQueryParams 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 NewPostResponsemanagementResponsesQueryParamsWithContext

func NewPostResponsemanagementResponsesQueryParamsWithContext(ctx context.Context) *PostResponsemanagementResponsesQueryParams

NewPostResponsemanagementResponsesQueryParamsWithContext creates a new PostResponsemanagementResponsesQueryParams object with the ability to set a context for a request.

func NewPostResponsemanagementResponsesQueryParamsWithHTTPClient

func NewPostResponsemanagementResponsesQueryParamsWithHTTPClient(client *http.Client) *PostResponsemanagementResponsesQueryParams

NewPostResponsemanagementResponsesQueryParamsWithHTTPClient creates a new PostResponsemanagementResponsesQueryParams object with the ability to set a custom HTTPClient for a request.

func NewPostResponsemanagementResponsesQueryParamsWithTimeout

func NewPostResponsemanagementResponsesQueryParamsWithTimeout(timeout time.Duration) *PostResponsemanagementResponsesQueryParams

NewPostResponsemanagementResponsesQueryParamsWithTimeout creates a new PostResponsemanagementResponsesQueryParams object with the ability to set a timeout on a request.

func (*PostResponsemanagementResponsesQueryParams) SetBody

SetBody adds the body to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) SetContext

SetContext adds the context to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) SetDefaults

SetDefaults hydrates default values in the post responsemanagement responses query params (not the query body).

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

func (*PostResponsemanagementResponsesQueryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) SetTimeout

SetTimeout adds the timeout to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) WithBody

WithBody adds the body to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) WithContext

WithContext adds the context to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) WithDefaults

WithDefaults hydrates default values in the post responsemanagement responses query params (not the query body).

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

func (*PostResponsemanagementResponsesQueryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) WithTimeout

WithTimeout adds the timeout to the post responsemanagement responses query params

func (*PostResponsemanagementResponsesQueryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostResponsemanagementResponsesQueryReader

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

PostResponsemanagementResponsesQueryReader is a Reader for the PostResponsemanagementResponsesQuery structure.

func (*PostResponsemanagementResponsesQueryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostResponsemanagementResponsesQueryRequestEntityTooLarge

type PostResponsemanagementResponsesQueryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryRequestEntityTooLarge

func NewPostResponsemanagementResponsesQueryRequestEntityTooLarge() *PostResponsemanagementResponsesQueryRequestEntityTooLarge

NewPostResponsemanagementResponsesQueryRequestEntityTooLarge creates a PostResponsemanagementResponsesQueryRequestEntityTooLarge with default headers values

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) Error

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) GetPayload

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) IsClientError

IsClientError returns true when this post responsemanagement responses query request entity too large response has a 4xx status code

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) IsCode

IsCode returns true when this post responsemanagement responses query request entity too large response a status code equal to that given

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post responsemanagement responses query request entity too large response has a 3xx status code

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) IsServerError

IsServerError returns true when this post responsemanagement responses query request entity too large response has a 5xx status code

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post responsemanagement responses query request entity too large response has a 2xx status code

func (*PostResponsemanagementResponsesQueryRequestEntityTooLarge) String

type PostResponsemanagementResponsesQueryRequestTimeout

type PostResponsemanagementResponsesQueryRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryRequestTimeout

func NewPostResponsemanagementResponsesQueryRequestTimeout() *PostResponsemanagementResponsesQueryRequestTimeout

NewPostResponsemanagementResponsesQueryRequestTimeout creates a PostResponsemanagementResponsesQueryRequestTimeout with default headers values

func (*PostResponsemanagementResponsesQueryRequestTimeout) Error

func (*PostResponsemanagementResponsesQueryRequestTimeout) GetPayload

func (*PostResponsemanagementResponsesQueryRequestTimeout) IsClientError

IsClientError returns true when this post responsemanagement responses query request timeout response has a 4xx status code

func (*PostResponsemanagementResponsesQueryRequestTimeout) IsCode

IsCode returns true when this post responsemanagement responses query request timeout response a status code equal to that given

func (*PostResponsemanagementResponsesQueryRequestTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responses query request timeout response has a 3xx status code

func (*PostResponsemanagementResponsesQueryRequestTimeout) IsServerError

IsServerError returns true when this post responsemanagement responses query request timeout response has a 5xx status code

func (*PostResponsemanagementResponsesQueryRequestTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responses query request timeout response has a 2xx status code

func (*PostResponsemanagementResponsesQueryRequestTimeout) String

type PostResponsemanagementResponsesQueryServiceUnavailable

type PostResponsemanagementResponsesQueryServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryServiceUnavailable

func NewPostResponsemanagementResponsesQueryServiceUnavailable() *PostResponsemanagementResponsesQueryServiceUnavailable

NewPostResponsemanagementResponsesQueryServiceUnavailable creates a PostResponsemanagementResponsesQueryServiceUnavailable with default headers values

func (*PostResponsemanagementResponsesQueryServiceUnavailable) Error

func (*PostResponsemanagementResponsesQueryServiceUnavailable) GetPayload

func (*PostResponsemanagementResponsesQueryServiceUnavailable) IsClientError

IsClientError returns true when this post responsemanagement responses query service unavailable response has a 4xx status code

func (*PostResponsemanagementResponsesQueryServiceUnavailable) IsCode

IsCode returns true when this post responsemanagement responses query service unavailable response a status code equal to that given

func (*PostResponsemanagementResponsesQueryServiceUnavailable) IsRedirect

IsRedirect returns true when this post responsemanagement responses query service unavailable response has a 3xx status code

func (*PostResponsemanagementResponsesQueryServiceUnavailable) IsServerError

IsServerError returns true when this post responsemanagement responses query service unavailable response has a 5xx status code

func (*PostResponsemanagementResponsesQueryServiceUnavailable) IsSuccess

IsSuccess returns true when this post responsemanagement responses query service unavailable response has a 2xx status code

func (*PostResponsemanagementResponsesQueryServiceUnavailable) String

type PostResponsemanagementResponsesQueryTooManyRequests

type PostResponsemanagementResponsesQueryTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryTooManyRequests

func NewPostResponsemanagementResponsesQueryTooManyRequests() *PostResponsemanagementResponsesQueryTooManyRequests

NewPostResponsemanagementResponsesQueryTooManyRequests creates a PostResponsemanagementResponsesQueryTooManyRequests with default headers values

func (*PostResponsemanagementResponsesQueryTooManyRequests) Error

func (*PostResponsemanagementResponsesQueryTooManyRequests) GetPayload

func (*PostResponsemanagementResponsesQueryTooManyRequests) IsClientError

IsClientError returns true when this post responsemanagement responses query too many requests response has a 4xx status code

func (*PostResponsemanagementResponsesQueryTooManyRequests) IsCode

IsCode returns true when this post responsemanagement responses query too many requests response a status code equal to that given

func (*PostResponsemanagementResponsesQueryTooManyRequests) IsRedirect

IsRedirect returns true when this post responsemanagement responses query too many requests response has a 3xx status code

func (*PostResponsemanagementResponsesQueryTooManyRequests) IsServerError

IsServerError returns true when this post responsemanagement responses query too many requests response has a 5xx status code

func (*PostResponsemanagementResponsesQueryTooManyRequests) IsSuccess

IsSuccess returns true when this post responsemanagement responses query too many requests response has a 2xx status code

func (*PostResponsemanagementResponsesQueryTooManyRequests) String

type PostResponsemanagementResponsesQueryUnauthorized

type PostResponsemanagementResponsesQueryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostResponsemanagementResponsesQueryUnauthorized

func NewPostResponsemanagementResponsesQueryUnauthorized() *PostResponsemanagementResponsesQueryUnauthorized

NewPostResponsemanagementResponsesQueryUnauthorized creates a PostResponsemanagementResponsesQueryUnauthorized with default headers values

func (*PostResponsemanagementResponsesQueryUnauthorized) Error

func (*PostResponsemanagementResponsesQueryUnauthorized) GetPayload

func (*PostResponsemanagementResponsesQueryUnauthorized) IsClientError

IsClientError returns true when this post responsemanagement responses query unauthorized response has a 4xx status code

func (*PostResponsemanagementResponsesQueryUnauthorized) IsCode

IsCode returns true when this post responsemanagement responses query unauthorized response a status code equal to that given

func (*PostResponsemanagementResponsesQueryUnauthorized) IsRedirect

IsRedirect returns true when this post responsemanagement responses query unauthorized response has a 3xx status code

func (*PostResponsemanagementResponsesQueryUnauthorized) IsServerError

IsServerError returns true when this post responsemanagement responses query unauthorized response has a 5xx status code

func (*PostResponsemanagementResponsesQueryUnauthorized) IsSuccess

IsSuccess returns true when this post responsemanagement responses query unauthorized response has a 2xx status code

func (*PostResponsemanagementResponsesQueryUnauthorized) String

type PostResponsemanagementResponsesQueryUnsupportedMediaType

type PostResponsemanagementResponsesQueryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesQueryUnsupportedMediaType

func NewPostResponsemanagementResponsesQueryUnsupportedMediaType() *PostResponsemanagementResponsesQueryUnsupportedMediaType

NewPostResponsemanagementResponsesQueryUnsupportedMediaType creates a PostResponsemanagementResponsesQueryUnsupportedMediaType with default headers values

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) Error

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) GetPayload

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) IsClientError

IsClientError returns true when this post responsemanagement responses query unsupported media type response has a 4xx status code

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) IsCode

IsCode returns true when this post responsemanagement responses query unsupported media type response a status code equal to that given

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post responsemanagement responses query unsupported media type response has a 3xx status code

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) IsServerError

IsServerError returns true when this post responsemanagement responses query unsupported media type response has a 5xx status code

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post responsemanagement responses query unsupported media type response has a 2xx status code

func (*PostResponsemanagementResponsesQueryUnsupportedMediaType) String

type PostResponsemanagementResponsesReader

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

PostResponsemanagementResponsesReader is a Reader for the PostResponsemanagementResponses structure.

func (*PostResponsemanagementResponsesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostResponsemanagementResponsesRequestEntityTooLarge

type PostResponsemanagementResponsesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesRequestEntityTooLarge

func NewPostResponsemanagementResponsesRequestEntityTooLarge() *PostResponsemanagementResponsesRequestEntityTooLarge

NewPostResponsemanagementResponsesRequestEntityTooLarge creates a PostResponsemanagementResponsesRequestEntityTooLarge with default headers values

func (*PostResponsemanagementResponsesRequestEntityTooLarge) Error

func (*PostResponsemanagementResponsesRequestEntityTooLarge) GetPayload

func (*PostResponsemanagementResponsesRequestEntityTooLarge) IsClientError

IsClientError returns true when this post responsemanagement responses request entity too large response has a 4xx status code

func (*PostResponsemanagementResponsesRequestEntityTooLarge) IsCode

IsCode returns true when this post responsemanagement responses request entity too large response a status code equal to that given

func (*PostResponsemanagementResponsesRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post responsemanagement responses request entity too large response has a 3xx status code

func (*PostResponsemanagementResponsesRequestEntityTooLarge) IsServerError

IsServerError returns true when this post responsemanagement responses request entity too large response has a 5xx status code

func (*PostResponsemanagementResponsesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post responsemanagement responses request entity too large response has a 2xx status code

func (*PostResponsemanagementResponsesRequestEntityTooLarge) String

type PostResponsemanagementResponsesRequestTimeout

type PostResponsemanagementResponsesRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesRequestTimeout

func NewPostResponsemanagementResponsesRequestTimeout() *PostResponsemanagementResponsesRequestTimeout

NewPostResponsemanagementResponsesRequestTimeout creates a PostResponsemanagementResponsesRequestTimeout with default headers values

func (*PostResponsemanagementResponsesRequestTimeout) Error

func (*PostResponsemanagementResponsesRequestTimeout) GetPayload

func (*PostResponsemanagementResponsesRequestTimeout) IsClientError

IsClientError returns true when this post responsemanagement responses request timeout response has a 4xx status code

func (*PostResponsemanagementResponsesRequestTimeout) IsCode

IsCode returns true when this post responsemanagement responses request timeout response a status code equal to that given

func (*PostResponsemanagementResponsesRequestTimeout) IsRedirect

IsRedirect returns true when this post responsemanagement responses request timeout response has a 3xx status code

func (*PostResponsemanagementResponsesRequestTimeout) IsServerError

IsServerError returns true when this post responsemanagement responses request timeout response has a 5xx status code

func (*PostResponsemanagementResponsesRequestTimeout) IsSuccess

IsSuccess returns true when this post responsemanagement responses request timeout response has a 2xx status code

func (*PostResponsemanagementResponsesRequestTimeout) String

type PostResponsemanagementResponsesServiceUnavailable

type PostResponsemanagementResponsesServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesServiceUnavailable

func NewPostResponsemanagementResponsesServiceUnavailable() *PostResponsemanagementResponsesServiceUnavailable

NewPostResponsemanagementResponsesServiceUnavailable creates a PostResponsemanagementResponsesServiceUnavailable with default headers values

func (*PostResponsemanagementResponsesServiceUnavailable) Error

func (*PostResponsemanagementResponsesServiceUnavailable) GetPayload

func (*PostResponsemanagementResponsesServiceUnavailable) IsClientError

IsClientError returns true when this post responsemanagement responses service unavailable response has a 4xx status code

func (*PostResponsemanagementResponsesServiceUnavailable) IsCode

IsCode returns true when this post responsemanagement responses service unavailable response a status code equal to that given

func (*PostResponsemanagementResponsesServiceUnavailable) IsRedirect

IsRedirect returns true when this post responsemanagement responses service unavailable response has a 3xx status code

func (*PostResponsemanagementResponsesServiceUnavailable) IsServerError

IsServerError returns true when this post responsemanagement responses service unavailable response has a 5xx status code

func (*PostResponsemanagementResponsesServiceUnavailable) IsSuccess

IsSuccess returns true when this post responsemanagement responses service unavailable response has a 2xx status code

func (*PostResponsemanagementResponsesServiceUnavailable) String

type PostResponsemanagementResponsesTooManyRequests

type PostResponsemanagementResponsesTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesTooManyRequests

func NewPostResponsemanagementResponsesTooManyRequests() *PostResponsemanagementResponsesTooManyRequests

NewPostResponsemanagementResponsesTooManyRequests creates a PostResponsemanagementResponsesTooManyRequests with default headers values

func (*PostResponsemanagementResponsesTooManyRequests) Error

func (*PostResponsemanagementResponsesTooManyRequests) GetPayload

func (*PostResponsemanagementResponsesTooManyRequests) IsClientError

IsClientError returns true when this post responsemanagement responses too many requests response has a 4xx status code

func (*PostResponsemanagementResponsesTooManyRequests) IsCode

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

func (*PostResponsemanagementResponsesTooManyRequests) IsRedirect

IsRedirect returns true when this post responsemanagement responses too many requests response has a 3xx status code

func (*PostResponsemanagementResponsesTooManyRequests) IsServerError

IsServerError returns true when this post responsemanagement responses too many requests response has a 5xx status code

func (*PostResponsemanagementResponsesTooManyRequests) IsSuccess

IsSuccess returns true when this post responsemanagement responses too many requests response has a 2xx status code

func (*PostResponsemanagementResponsesTooManyRequests) String

type PostResponsemanagementResponsesUnauthorized

type PostResponsemanagementResponsesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostResponsemanagementResponsesUnauthorized

func NewPostResponsemanagementResponsesUnauthorized() *PostResponsemanagementResponsesUnauthorized

NewPostResponsemanagementResponsesUnauthorized creates a PostResponsemanagementResponsesUnauthorized with default headers values

func (*PostResponsemanagementResponsesUnauthorized) Error

func (*PostResponsemanagementResponsesUnauthorized) GetPayload

func (*PostResponsemanagementResponsesUnauthorized) IsClientError

IsClientError returns true when this post responsemanagement responses unauthorized response has a 4xx status code

func (*PostResponsemanagementResponsesUnauthorized) IsCode

IsCode returns true when this post responsemanagement responses unauthorized response a status code equal to that given

func (*PostResponsemanagementResponsesUnauthorized) IsRedirect

IsRedirect returns true when this post responsemanagement responses unauthorized response has a 3xx status code

func (*PostResponsemanagementResponsesUnauthorized) IsServerError

IsServerError returns true when this post responsemanagement responses unauthorized response has a 5xx status code

func (*PostResponsemanagementResponsesUnauthorized) IsSuccess

IsSuccess returns true when this post responsemanagement responses unauthorized response has a 2xx status code

func (*PostResponsemanagementResponsesUnauthorized) String

type PostResponsemanagementResponsesUnsupportedMediaType

type PostResponsemanagementResponsesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPostResponsemanagementResponsesUnsupportedMediaType

func NewPostResponsemanagementResponsesUnsupportedMediaType() *PostResponsemanagementResponsesUnsupportedMediaType

NewPostResponsemanagementResponsesUnsupportedMediaType creates a PostResponsemanagementResponsesUnsupportedMediaType with default headers values

func (*PostResponsemanagementResponsesUnsupportedMediaType) Error

func (*PostResponsemanagementResponsesUnsupportedMediaType) GetPayload

func (*PostResponsemanagementResponsesUnsupportedMediaType) IsClientError

IsClientError returns true when this post responsemanagement responses unsupported media type response has a 4xx status code

func (*PostResponsemanagementResponsesUnsupportedMediaType) IsCode

IsCode returns true when this post responsemanagement responses unsupported media type response a status code equal to that given

func (*PostResponsemanagementResponsesUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post responsemanagement responses unsupported media type response has a 3xx status code

func (*PostResponsemanagementResponsesUnsupportedMediaType) IsServerError

IsServerError returns true when this post responsemanagement responses unsupported media type response has a 5xx status code

func (*PostResponsemanagementResponsesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post responsemanagement responses unsupported media type response has a 2xx status code

func (*PostResponsemanagementResponsesUnsupportedMediaType) String

type PutResponsemanagementLibraryBadRequest

type PutResponsemanagementLibraryBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryBadRequest

func NewPutResponsemanagementLibraryBadRequest() *PutResponsemanagementLibraryBadRequest

NewPutResponsemanagementLibraryBadRequest creates a PutResponsemanagementLibraryBadRequest with default headers values

func (*PutResponsemanagementLibraryBadRequest) Error

func (*PutResponsemanagementLibraryBadRequest) GetPayload

func (*PutResponsemanagementLibraryBadRequest) IsClientError

func (o *PutResponsemanagementLibraryBadRequest) IsClientError() bool

IsClientError returns true when this put responsemanagement library bad request response has a 4xx status code

func (*PutResponsemanagementLibraryBadRequest) IsCode

IsCode returns true when this put responsemanagement library bad request response a status code equal to that given

func (*PutResponsemanagementLibraryBadRequest) IsRedirect

IsRedirect returns true when this put responsemanagement library bad request response has a 3xx status code

func (*PutResponsemanagementLibraryBadRequest) IsServerError

func (o *PutResponsemanagementLibraryBadRequest) IsServerError() bool

IsServerError returns true when this put responsemanagement library bad request response has a 5xx status code

func (*PutResponsemanagementLibraryBadRequest) IsSuccess

IsSuccess returns true when this put responsemanagement library bad request response has a 2xx status code

func (*PutResponsemanagementLibraryBadRequest) String

type PutResponsemanagementLibraryConflict

type PutResponsemanagementLibraryConflict struct {
}

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

Resource conflict - Unexpected version was provided

func NewPutResponsemanagementLibraryConflict

func NewPutResponsemanagementLibraryConflict() *PutResponsemanagementLibraryConflict

NewPutResponsemanagementLibraryConflict creates a PutResponsemanagementLibraryConflict with default headers values

func (*PutResponsemanagementLibraryConflict) Error

func (*PutResponsemanagementLibraryConflict) IsClientError

func (o *PutResponsemanagementLibraryConflict) IsClientError() bool

IsClientError returns true when this put responsemanagement library conflict response has a 4xx status code

func (*PutResponsemanagementLibraryConflict) IsCode

IsCode returns true when this put responsemanagement library conflict response a status code equal to that given

func (*PutResponsemanagementLibraryConflict) IsRedirect

IsRedirect returns true when this put responsemanagement library conflict response has a 3xx status code

func (*PutResponsemanagementLibraryConflict) IsServerError

func (o *PutResponsemanagementLibraryConflict) IsServerError() bool

IsServerError returns true when this put responsemanagement library conflict response has a 5xx status code

func (*PutResponsemanagementLibraryConflict) IsSuccess

IsSuccess returns true when this put responsemanagement library conflict response has a 2xx status code

func (*PutResponsemanagementLibraryConflict) String

type PutResponsemanagementLibraryForbidden

type PutResponsemanagementLibraryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPutResponsemanagementLibraryForbidden

func NewPutResponsemanagementLibraryForbidden() *PutResponsemanagementLibraryForbidden

NewPutResponsemanagementLibraryForbidden creates a PutResponsemanagementLibraryForbidden with default headers values

func (*PutResponsemanagementLibraryForbidden) Error

func (*PutResponsemanagementLibraryForbidden) GetPayload

func (*PutResponsemanagementLibraryForbidden) IsClientError

func (o *PutResponsemanagementLibraryForbidden) IsClientError() bool

IsClientError returns true when this put responsemanagement library forbidden response has a 4xx status code

func (*PutResponsemanagementLibraryForbidden) IsCode

IsCode returns true when this put responsemanagement library forbidden response a status code equal to that given

func (*PutResponsemanagementLibraryForbidden) IsRedirect

IsRedirect returns true when this put responsemanagement library forbidden response has a 3xx status code

func (*PutResponsemanagementLibraryForbidden) IsServerError

func (o *PutResponsemanagementLibraryForbidden) IsServerError() bool

IsServerError returns true when this put responsemanagement library forbidden response has a 5xx status code

func (*PutResponsemanagementLibraryForbidden) IsSuccess

IsSuccess returns true when this put responsemanagement library forbidden response has a 2xx status code

func (*PutResponsemanagementLibraryForbidden) String

type PutResponsemanagementLibraryGatewayTimeout

type PutResponsemanagementLibraryGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPutResponsemanagementLibraryGatewayTimeout

func NewPutResponsemanagementLibraryGatewayTimeout() *PutResponsemanagementLibraryGatewayTimeout

NewPutResponsemanagementLibraryGatewayTimeout creates a PutResponsemanagementLibraryGatewayTimeout with default headers values

func (*PutResponsemanagementLibraryGatewayTimeout) Error

func (*PutResponsemanagementLibraryGatewayTimeout) GetPayload

func (*PutResponsemanagementLibraryGatewayTimeout) IsClientError

IsClientError returns true when this put responsemanagement library gateway timeout response has a 4xx status code

func (*PutResponsemanagementLibraryGatewayTimeout) IsCode

IsCode returns true when this put responsemanagement library gateway timeout response a status code equal to that given

func (*PutResponsemanagementLibraryGatewayTimeout) IsRedirect

IsRedirect returns true when this put responsemanagement library gateway timeout response has a 3xx status code

func (*PutResponsemanagementLibraryGatewayTimeout) IsServerError

IsServerError returns true when this put responsemanagement library gateway timeout response has a 5xx status code

func (*PutResponsemanagementLibraryGatewayTimeout) IsSuccess

IsSuccess returns true when this put responsemanagement library gateway timeout response has a 2xx status code

func (*PutResponsemanagementLibraryGatewayTimeout) String

type PutResponsemanagementLibraryInternalServerError

type PutResponsemanagementLibraryInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryInternalServerError

func NewPutResponsemanagementLibraryInternalServerError() *PutResponsemanagementLibraryInternalServerError

NewPutResponsemanagementLibraryInternalServerError creates a PutResponsemanagementLibraryInternalServerError with default headers values

func (*PutResponsemanagementLibraryInternalServerError) Error

func (*PutResponsemanagementLibraryInternalServerError) GetPayload

func (*PutResponsemanagementLibraryInternalServerError) IsClientError

IsClientError returns true when this put responsemanagement library internal server error response has a 4xx status code

func (*PutResponsemanagementLibraryInternalServerError) IsCode

IsCode returns true when this put responsemanagement library internal server error response a status code equal to that given

func (*PutResponsemanagementLibraryInternalServerError) IsRedirect

IsRedirect returns true when this put responsemanagement library internal server error response has a 3xx status code

func (*PutResponsemanagementLibraryInternalServerError) IsServerError

IsServerError returns true when this put responsemanagement library internal server error response has a 5xx status code

func (*PutResponsemanagementLibraryInternalServerError) IsSuccess

IsSuccess returns true when this put responsemanagement library internal server error response has a 2xx status code

func (*PutResponsemanagementLibraryInternalServerError) String

type PutResponsemanagementLibraryNotFound

type PutResponsemanagementLibraryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPutResponsemanagementLibraryNotFound

func NewPutResponsemanagementLibraryNotFound() *PutResponsemanagementLibraryNotFound

NewPutResponsemanagementLibraryNotFound creates a PutResponsemanagementLibraryNotFound with default headers values

func (*PutResponsemanagementLibraryNotFound) Error

func (*PutResponsemanagementLibraryNotFound) GetPayload

func (*PutResponsemanagementLibraryNotFound) IsClientError

func (o *PutResponsemanagementLibraryNotFound) IsClientError() bool

IsClientError returns true when this put responsemanagement library not found response has a 4xx status code

func (*PutResponsemanagementLibraryNotFound) IsCode

IsCode returns true when this put responsemanagement library not found response a status code equal to that given

func (*PutResponsemanagementLibraryNotFound) IsRedirect

IsRedirect returns true when this put responsemanagement library not found response has a 3xx status code

func (*PutResponsemanagementLibraryNotFound) IsServerError

func (o *PutResponsemanagementLibraryNotFound) IsServerError() bool

IsServerError returns true when this put responsemanagement library not found response has a 5xx status code

func (*PutResponsemanagementLibraryNotFound) IsSuccess

IsSuccess returns true when this put responsemanagement library not found response has a 2xx status code

func (*PutResponsemanagementLibraryNotFound) String

type PutResponsemanagementLibraryOK

type PutResponsemanagementLibraryOK struct {
	Payload *models.Library
}

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

successful operation

func NewPutResponsemanagementLibraryOK

func NewPutResponsemanagementLibraryOK() *PutResponsemanagementLibraryOK

NewPutResponsemanagementLibraryOK creates a PutResponsemanagementLibraryOK with default headers values

func (*PutResponsemanagementLibraryOK) Error

func (*PutResponsemanagementLibraryOK) GetPayload

func (*PutResponsemanagementLibraryOK) IsClientError

func (o *PutResponsemanagementLibraryOK) IsClientError() bool

IsClientError returns true when this put responsemanagement library o k response has a 4xx status code

func (*PutResponsemanagementLibraryOK) IsCode

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

IsCode returns true when this put responsemanagement library o k response a status code equal to that given

func (*PutResponsemanagementLibraryOK) IsRedirect

func (o *PutResponsemanagementLibraryOK) IsRedirect() bool

IsRedirect returns true when this put responsemanagement library o k response has a 3xx status code

func (*PutResponsemanagementLibraryOK) IsServerError

func (o *PutResponsemanagementLibraryOK) IsServerError() bool

IsServerError returns true when this put responsemanagement library o k response has a 5xx status code

func (*PutResponsemanagementLibraryOK) IsSuccess

func (o *PutResponsemanagementLibraryOK) IsSuccess() bool

IsSuccess returns true when this put responsemanagement library o k response has a 2xx status code

func (*PutResponsemanagementLibraryOK) String

type PutResponsemanagementLibraryParams

type PutResponsemanagementLibraryParams struct {

	/* Body.

	   Library
	*/
	Body *models.Library

	/* LibraryID.

	   Library ID
	*/
	LibraryID string

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

PutResponsemanagementLibraryParams contains all the parameters to send to the API endpoint

for the put responsemanagement library operation.

Typically these are written to a http.Request.

func NewPutResponsemanagementLibraryParams

func NewPutResponsemanagementLibraryParams() *PutResponsemanagementLibraryParams

NewPutResponsemanagementLibraryParams creates a new PutResponsemanagementLibraryParams 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 NewPutResponsemanagementLibraryParamsWithContext

func NewPutResponsemanagementLibraryParamsWithContext(ctx context.Context) *PutResponsemanagementLibraryParams

NewPutResponsemanagementLibraryParamsWithContext creates a new PutResponsemanagementLibraryParams object with the ability to set a context for a request.

func NewPutResponsemanagementLibraryParamsWithHTTPClient

func NewPutResponsemanagementLibraryParamsWithHTTPClient(client *http.Client) *PutResponsemanagementLibraryParams

NewPutResponsemanagementLibraryParamsWithHTTPClient creates a new PutResponsemanagementLibraryParams object with the ability to set a custom HTTPClient for a request.

func NewPutResponsemanagementLibraryParamsWithTimeout

func NewPutResponsemanagementLibraryParamsWithTimeout(timeout time.Duration) *PutResponsemanagementLibraryParams

NewPutResponsemanagementLibraryParamsWithTimeout creates a new PutResponsemanagementLibraryParams object with the ability to set a timeout on a request.

func (*PutResponsemanagementLibraryParams) SetBody

SetBody adds the body to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) SetContext

SetContext adds the context to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) SetDefaults

func (o *PutResponsemanagementLibraryParams) SetDefaults()

SetDefaults hydrates default values in the put responsemanagement library params (not the query body).

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

func (*PutResponsemanagementLibraryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) SetLibraryID

func (o *PutResponsemanagementLibraryParams) SetLibraryID(libraryID string)

SetLibraryID adds the libraryId to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) SetTimeout

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

SetTimeout adds the timeout to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) WithBody

WithBody adds the body to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) WithContext

WithContext adds the context to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) WithDefaults

WithDefaults hydrates default values in the put responsemanagement library params (not the query body).

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

func (*PutResponsemanagementLibraryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) WithLibraryID

WithLibraryID adds the libraryID to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) WithTimeout

WithTimeout adds the timeout to the put responsemanagement library params

func (*PutResponsemanagementLibraryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutResponsemanagementLibraryReader

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

PutResponsemanagementLibraryReader is a Reader for the PutResponsemanagementLibrary structure.

func (*PutResponsemanagementLibraryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutResponsemanagementLibraryRequestEntityTooLarge

type PutResponsemanagementLibraryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryRequestEntityTooLarge

func NewPutResponsemanagementLibraryRequestEntityTooLarge() *PutResponsemanagementLibraryRequestEntityTooLarge

NewPutResponsemanagementLibraryRequestEntityTooLarge creates a PutResponsemanagementLibraryRequestEntityTooLarge with default headers values

func (*PutResponsemanagementLibraryRequestEntityTooLarge) Error

func (*PutResponsemanagementLibraryRequestEntityTooLarge) GetPayload

func (*PutResponsemanagementLibraryRequestEntityTooLarge) IsClientError

IsClientError returns true when this put responsemanagement library request entity too large response has a 4xx status code

func (*PutResponsemanagementLibraryRequestEntityTooLarge) IsCode

IsCode returns true when this put responsemanagement library request entity too large response a status code equal to that given

func (*PutResponsemanagementLibraryRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this put responsemanagement library request entity too large response has a 3xx status code

func (*PutResponsemanagementLibraryRequestEntityTooLarge) IsServerError

IsServerError returns true when this put responsemanagement library request entity too large response has a 5xx status code

func (*PutResponsemanagementLibraryRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put responsemanagement library request entity too large response has a 2xx status code

func (*PutResponsemanagementLibraryRequestEntityTooLarge) String

type PutResponsemanagementLibraryRequestTimeout

type PutResponsemanagementLibraryRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryRequestTimeout

func NewPutResponsemanagementLibraryRequestTimeout() *PutResponsemanagementLibraryRequestTimeout

NewPutResponsemanagementLibraryRequestTimeout creates a PutResponsemanagementLibraryRequestTimeout with default headers values

func (*PutResponsemanagementLibraryRequestTimeout) Error

func (*PutResponsemanagementLibraryRequestTimeout) GetPayload

func (*PutResponsemanagementLibraryRequestTimeout) IsClientError

IsClientError returns true when this put responsemanagement library request timeout response has a 4xx status code

func (*PutResponsemanagementLibraryRequestTimeout) IsCode

IsCode returns true when this put responsemanagement library request timeout response a status code equal to that given

func (*PutResponsemanagementLibraryRequestTimeout) IsRedirect

IsRedirect returns true when this put responsemanagement library request timeout response has a 3xx status code

func (*PutResponsemanagementLibraryRequestTimeout) IsServerError

IsServerError returns true when this put responsemanagement library request timeout response has a 5xx status code

func (*PutResponsemanagementLibraryRequestTimeout) IsSuccess

IsSuccess returns true when this put responsemanagement library request timeout response has a 2xx status code

func (*PutResponsemanagementLibraryRequestTimeout) String

type PutResponsemanagementLibraryServiceUnavailable

type PutResponsemanagementLibraryServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryServiceUnavailable

func NewPutResponsemanagementLibraryServiceUnavailable() *PutResponsemanagementLibraryServiceUnavailable

NewPutResponsemanagementLibraryServiceUnavailable creates a PutResponsemanagementLibraryServiceUnavailable with default headers values

func (*PutResponsemanagementLibraryServiceUnavailable) Error

func (*PutResponsemanagementLibraryServiceUnavailable) GetPayload

func (*PutResponsemanagementLibraryServiceUnavailable) IsClientError

IsClientError returns true when this put responsemanagement library service unavailable response has a 4xx status code

func (*PutResponsemanagementLibraryServiceUnavailable) IsCode

IsCode returns true when this put responsemanagement library service unavailable response a status code equal to that given

func (*PutResponsemanagementLibraryServiceUnavailable) IsRedirect

IsRedirect returns true when this put responsemanagement library service unavailable response has a 3xx status code

func (*PutResponsemanagementLibraryServiceUnavailable) IsServerError

IsServerError returns true when this put responsemanagement library service unavailable response has a 5xx status code

func (*PutResponsemanagementLibraryServiceUnavailable) IsSuccess

IsSuccess returns true when this put responsemanagement library service unavailable response has a 2xx status code

func (*PutResponsemanagementLibraryServiceUnavailable) String

type PutResponsemanagementLibraryTooManyRequests

type PutResponsemanagementLibraryTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryTooManyRequests

func NewPutResponsemanagementLibraryTooManyRequests() *PutResponsemanagementLibraryTooManyRequests

NewPutResponsemanagementLibraryTooManyRequests creates a PutResponsemanagementLibraryTooManyRequests with default headers values

func (*PutResponsemanagementLibraryTooManyRequests) Error

func (*PutResponsemanagementLibraryTooManyRequests) GetPayload

func (*PutResponsemanagementLibraryTooManyRequests) IsClientError

IsClientError returns true when this put responsemanagement library too many requests response has a 4xx status code

func (*PutResponsemanagementLibraryTooManyRequests) IsCode

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

func (*PutResponsemanagementLibraryTooManyRequests) IsRedirect

IsRedirect returns true when this put responsemanagement library too many requests response has a 3xx status code

func (*PutResponsemanagementLibraryTooManyRequests) IsServerError

IsServerError returns true when this put responsemanagement library too many requests response has a 5xx status code

func (*PutResponsemanagementLibraryTooManyRequests) IsSuccess

IsSuccess returns true when this put responsemanagement library too many requests response has a 2xx status code

func (*PutResponsemanagementLibraryTooManyRequests) String

type PutResponsemanagementLibraryUnauthorized

type PutResponsemanagementLibraryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPutResponsemanagementLibraryUnauthorized

func NewPutResponsemanagementLibraryUnauthorized() *PutResponsemanagementLibraryUnauthorized

NewPutResponsemanagementLibraryUnauthorized creates a PutResponsemanagementLibraryUnauthorized with default headers values

func (*PutResponsemanagementLibraryUnauthorized) Error

func (*PutResponsemanagementLibraryUnauthorized) GetPayload

func (*PutResponsemanagementLibraryUnauthorized) IsClientError

IsClientError returns true when this put responsemanagement library unauthorized response has a 4xx status code

func (*PutResponsemanagementLibraryUnauthorized) IsCode

IsCode returns true when this put responsemanagement library unauthorized response a status code equal to that given

func (*PutResponsemanagementLibraryUnauthorized) IsRedirect

IsRedirect returns true when this put responsemanagement library unauthorized response has a 3xx status code

func (*PutResponsemanagementLibraryUnauthorized) IsServerError

IsServerError returns true when this put responsemanagement library unauthorized response has a 5xx status code

func (*PutResponsemanagementLibraryUnauthorized) IsSuccess

IsSuccess returns true when this put responsemanagement library unauthorized response has a 2xx status code

func (*PutResponsemanagementLibraryUnauthorized) String

type PutResponsemanagementLibraryUnsupportedMediaType

type PutResponsemanagementLibraryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementLibraryUnsupportedMediaType

func NewPutResponsemanagementLibraryUnsupportedMediaType() *PutResponsemanagementLibraryUnsupportedMediaType

NewPutResponsemanagementLibraryUnsupportedMediaType creates a PutResponsemanagementLibraryUnsupportedMediaType with default headers values

func (*PutResponsemanagementLibraryUnsupportedMediaType) Error

func (*PutResponsemanagementLibraryUnsupportedMediaType) GetPayload

func (*PutResponsemanagementLibraryUnsupportedMediaType) IsClientError

IsClientError returns true when this put responsemanagement library unsupported media type response has a 4xx status code

func (*PutResponsemanagementLibraryUnsupportedMediaType) IsCode

IsCode returns true when this put responsemanagement library unsupported media type response a status code equal to that given

func (*PutResponsemanagementLibraryUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put responsemanagement library unsupported media type response has a 3xx status code

func (*PutResponsemanagementLibraryUnsupportedMediaType) IsServerError

IsServerError returns true when this put responsemanagement library unsupported media type response has a 5xx status code

func (*PutResponsemanagementLibraryUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put responsemanagement library unsupported media type response has a 2xx status code

func (*PutResponsemanagementLibraryUnsupportedMediaType) String

type PutResponsemanagementResponseBadRequest

type PutResponsemanagementResponseBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseBadRequest

func NewPutResponsemanagementResponseBadRequest() *PutResponsemanagementResponseBadRequest

NewPutResponsemanagementResponseBadRequest creates a PutResponsemanagementResponseBadRequest with default headers values

func (*PutResponsemanagementResponseBadRequest) Error

func (*PutResponsemanagementResponseBadRequest) GetPayload

func (*PutResponsemanagementResponseBadRequest) IsClientError

func (o *PutResponsemanagementResponseBadRequest) IsClientError() bool

IsClientError returns true when this put responsemanagement response bad request response has a 4xx status code

func (*PutResponsemanagementResponseBadRequest) IsCode

IsCode returns true when this put responsemanagement response bad request response a status code equal to that given

func (*PutResponsemanagementResponseBadRequest) IsRedirect

IsRedirect returns true when this put responsemanagement response bad request response has a 3xx status code

func (*PutResponsemanagementResponseBadRequest) IsServerError

func (o *PutResponsemanagementResponseBadRequest) IsServerError() bool

IsServerError returns true when this put responsemanagement response bad request response has a 5xx status code

func (*PutResponsemanagementResponseBadRequest) IsSuccess

IsSuccess returns true when this put responsemanagement response bad request response has a 2xx status code

func (*PutResponsemanagementResponseBadRequest) String

type PutResponsemanagementResponseConflict

type PutResponsemanagementResponseConflict struct {
}

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

Resource conflict - Unexpected version was provided

func NewPutResponsemanagementResponseConflict

func NewPutResponsemanagementResponseConflict() *PutResponsemanagementResponseConflict

NewPutResponsemanagementResponseConflict creates a PutResponsemanagementResponseConflict with default headers values

func (*PutResponsemanagementResponseConflict) Error

func (*PutResponsemanagementResponseConflict) IsClientError

func (o *PutResponsemanagementResponseConflict) IsClientError() bool

IsClientError returns true when this put responsemanagement response conflict response has a 4xx status code

func (*PutResponsemanagementResponseConflict) IsCode

IsCode returns true when this put responsemanagement response conflict response a status code equal to that given

func (*PutResponsemanagementResponseConflict) IsRedirect

IsRedirect returns true when this put responsemanagement response conflict response has a 3xx status code

func (*PutResponsemanagementResponseConflict) IsServerError

func (o *PutResponsemanagementResponseConflict) IsServerError() bool

IsServerError returns true when this put responsemanagement response conflict response has a 5xx status code

func (*PutResponsemanagementResponseConflict) IsSuccess

IsSuccess returns true when this put responsemanagement response conflict response has a 2xx status code

func (*PutResponsemanagementResponseConflict) String

type PutResponsemanagementResponseForbidden

type PutResponsemanagementResponseForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPutResponsemanagementResponseForbidden

func NewPutResponsemanagementResponseForbidden() *PutResponsemanagementResponseForbidden

NewPutResponsemanagementResponseForbidden creates a PutResponsemanagementResponseForbidden with default headers values

func (*PutResponsemanagementResponseForbidden) Error

func (*PutResponsemanagementResponseForbidden) GetPayload

func (*PutResponsemanagementResponseForbidden) IsClientError

func (o *PutResponsemanagementResponseForbidden) IsClientError() bool

IsClientError returns true when this put responsemanagement response forbidden response has a 4xx status code

func (*PutResponsemanagementResponseForbidden) IsCode

IsCode returns true when this put responsemanagement response forbidden response a status code equal to that given

func (*PutResponsemanagementResponseForbidden) IsRedirect

IsRedirect returns true when this put responsemanagement response forbidden response has a 3xx status code

func (*PutResponsemanagementResponseForbidden) IsServerError

func (o *PutResponsemanagementResponseForbidden) IsServerError() bool

IsServerError returns true when this put responsemanagement response forbidden response has a 5xx status code

func (*PutResponsemanagementResponseForbidden) IsSuccess

IsSuccess returns true when this put responsemanagement response forbidden response has a 2xx status code

func (*PutResponsemanagementResponseForbidden) String

type PutResponsemanagementResponseGatewayTimeout

type PutResponsemanagementResponseGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPutResponsemanagementResponseGatewayTimeout

func NewPutResponsemanagementResponseGatewayTimeout() *PutResponsemanagementResponseGatewayTimeout

NewPutResponsemanagementResponseGatewayTimeout creates a PutResponsemanagementResponseGatewayTimeout with default headers values

func (*PutResponsemanagementResponseGatewayTimeout) Error

func (*PutResponsemanagementResponseGatewayTimeout) GetPayload

func (*PutResponsemanagementResponseGatewayTimeout) IsClientError

IsClientError returns true when this put responsemanagement response gateway timeout response has a 4xx status code

func (*PutResponsemanagementResponseGatewayTimeout) IsCode

IsCode returns true when this put responsemanagement response gateway timeout response a status code equal to that given

func (*PutResponsemanagementResponseGatewayTimeout) IsRedirect

IsRedirect returns true when this put responsemanagement response gateway timeout response has a 3xx status code

func (*PutResponsemanagementResponseGatewayTimeout) IsServerError

IsServerError returns true when this put responsemanagement response gateway timeout response has a 5xx status code

func (*PutResponsemanagementResponseGatewayTimeout) IsSuccess

IsSuccess returns true when this put responsemanagement response gateway timeout response has a 2xx status code

func (*PutResponsemanagementResponseGatewayTimeout) String

type PutResponsemanagementResponseInternalServerError

type PutResponsemanagementResponseInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseInternalServerError

func NewPutResponsemanagementResponseInternalServerError() *PutResponsemanagementResponseInternalServerError

NewPutResponsemanagementResponseInternalServerError creates a PutResponsemanagementResponseInternalServerError with default headers values

func (*PutResponsemanagementResponseInternalServerError) Error

func (*PutResponsemanagementResponseInternalServerError) GetPayload

func (*PutResponsemanagementResponseInternalServerError) IsClientError

IsClientError returns true when this put responsemanagement response internal server error response has a 4xx status code

func (*PutResponsemanagementResponseInternalServerError) IsCode

IsCode returns true when this put responsemanagement response internal server error response a status code equal to that given

func (*PutResponsemanagementResponseInternalServerError) IsRedirect

IsRedirect returns true when this put responsemanagement response internal server error response has a 3xx status code

func (*PutResponsemanagementResponseInternalServerError) IsServerError

IsServerError returns true when this put responsemanagement response internal server error response has a 5xx status code

func (*PutResponsemanagementResponseInternalServerError) IsSuccess

IsSuccess returns true when this put responsemanagement response internal server error response has a 2xx status code

func (*PutResponsemanagementResponseInternalServerError) String

type PutResponsemanagementResponseNotFound

type PutResponsemanagementResponseNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPutResponsemanagementResponseNotFound

func NewPutResponsemanagementResponseNotFound() *PutResponsemanagementResponseNotFound

NewPutResponsemanagementResponseNotFound creates a PutResponsemanagementResponseNotFound with default headers values

func (*PutResponsemanagementResponseNotFound) Error

func (*PutResponsemanagementResponseNotFound) GetPayload

func (*PutResponsemanagementResponseNotFound) IsClientError

func (o *PutResponsemanagementResponseNotFound) IsClientError() bool

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

func (*PutResponsemanagementResponseNotFound) IsCode

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

func (*PutResponsemanagementResponseNotFound) IsRedirect

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

func (*PutResponsemanagementResponseNotFound) IsServerError

func (o *PutResponsemanagementResponseNotFound) IsServerError() bool

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

func (*PutResponsemanagementResponseNotFound) IsSuccess

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

func (*PutResponsemanagementResponseNotFound) String

type PutResponsemanagementResponseOK

type PutResponsemanagementResponseOK struct {
	Payload *models.Response
}

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

successful operation

func NewPutResponsemanagementResponseOK

func NewPutResponsemanagementResponseOK() *PutResponsemanagementResponseOK

NewPutResponsemanagementResponseOK creates a PutResponsemanagementResponseOK with default headers values

func (*PutResponsemanagementResponseOK) Error

func (*PutResponsemanagementResponseOK) GetPayload

func (*PutResponsemanagementResponseOK) IsClientError

func (o *PutResponsemanagementResponseOK) IsClientError() bool

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

func (*PutResponsemanagementResponseOK) IsCode

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

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

func (*PutResponsemanagementResponseOK) IsRedirect

func (o *PutResponsemanagementResponseOK) IsRedirect() bool

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

func (*PutResponsemanagementResponseOK) IsServerError

func (o *PutResponsemanagementResponseOK) IsServerError() bool

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

func (*PutResponsemanagementResponseOK) IsSuccess

func (o *PutResponsemanagementResponseOK) IsSuccess() bool

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

func (*PutResponsemanagementResponseOK) String

type PutResponsemanagementResponseParams

type PutResponsemanagementResponseParams struct {

	/* Body.

	   Response
	*/
	Body *models.Response

	/* Expand.

	   Expand instructions for the return value.
	*/
	Expand *string

	/* ResponseID.

	   Response ID
	*/
	ResponseID string

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

PutResponsemanagementResponseParams contains all the parameters to send to the API endpoint

for the put responsemanagement response operation.

Typically these are written to a http.Request.

func NewPutResponsemanagementResponseParams

func NewPutResponsemanagementResponseParams() *PutResponsemanagementResponseParams

NewPutResponsemanagementResponseParams creates a new PutResponsemanagementResponseParams 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 NewPutResponsemanagementResponseParamsWithContext

func NewPutResponsemanagementResponseParamsWithContext(ctx context.Context) *PutResponsemanagementResponseParams

NewPutResponsemanagementResponseParamsWithContext creates a new PutResponsemanagementResponseParams object with the ability to set a context for a request.

func NewPutResponsemanagementResponseParamsWithHTTPClient

func NewPutResponsemanagementResponseParamsWithHTTPClient(client *http.Client) *PutResponsemanagementResponseParams

NewPutResponsemanagementResponseParamsWithHTTPClient creates a new PutResponsemanagementResponseParams object with the ability to set a custom HTTPClient for a request.

func NewPutResponsemanagementResponseParamsWithTimeout

func NewPutResponsemanagementResponseParamsWithTimeout(timeout time.Duration) *PutResponsemanagementResponseParams

NewPutResponsemanagementResponseParamsWithTimeout creates a new PutResponsemanagementResponseParams object with the ability to set a timeout on a request.

func (*PutResponsemanagementResponseParams) SetBody

SetBody adds the body to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) SetContext

SetContext adds the context to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) SetDefaults

func (o *PutResponsemanagementResponseParams) SetDefaults()

SetDefaults hydrates default values in the put responsemanagement response params (not the query body).

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

func (*PutResponsemanagementResponseParams) SetExpand

func (o *PutResponsemanagementResponseParams) SetExpand(expand *string)

SetExpand adds the expand to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) SetResponseID

func (o *PutResponsemanagementResponseParams) SetResponseID(responseID string)

SetResponseID adds the responseId to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) SetTimeout

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

SetTimeout adds the timeout to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WithBody

WithBody adds the body to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WithContext

WithContext adds the context to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WithDefaults

WithDefaults hydrates default values in the put responsemanagement response params (not the query body).

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

func (*PutResponsemanagementResponseParams) WithExpand

WithExpand adds the expand to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WithResponseID

WithResponseID adds the responseID to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WithTimeout

WithTimeout adds the timeout to the put responsemanagement response params

func (*PutResponsemanagementResponseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutResponsemanagementResponseReader

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

PutResponsemanagementResponseReader is a Reader for the PutResponsemanagementResponse structure.

func (*PutResponsemanagementResponseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutResponsemanagementResponseRequestEntityTooLarge

type PutResponsemanagementResponseRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseRequestEntityTooLarge

func NewPutResponsemanagementResponseRequestEntityTooLarge() *PutResponsemanagementResponseRequestEntityTooLarge

NewPutResponsemanagementResponseRequestEntityTooLarge creates a PutResponsemanagementResponseRequestEntityTooLarge with default headers values

func (*PutResponsemanagementResponseRequestEntityTooLarge) Error

func (*PutResponsemanagementResponseRequestEntityTooLarge) GetPayload

func (*PutResponsemanagementResponseRequestEntityTooLarge) IsClientError

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

func (*PutResponsemanagementResponseRequestEntityTooLarge) IsCode

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

func (*PutResponsemanagementResponseRequestEntityTooLarge) IsRedirect

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

func (*PutResponsemanagementResponseRequestEntityTooLarge) IsServerError

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

func (*PutResponsemanagementResponseRequestEntityTooLarge) IsSuccess

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

func (*PutResponsemanagementResponseRequestEntityTooLarge) String

type PutResponsemanagementResponseRequestTimeout

type PutResponsemanagementResponseRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseRequestTimeout

func NewPutResponsemanagementResponseRequestTimeout() *PutResponsemanagementResponseRequestTimeout

NewPutResponsemanagementResponseRequestTimeout creates a PutResponsemanagementResponseRequestTimeout with default headers values

func (*PutResponsemanagementResponseRequestTimeout) Error

func (*PutResponsemanagementResponseRequestTimeout) GetPayload

func (*PutResponsemanagementResponseRequestTimeout) IsClientError

IsClientError returns true when this put responsemanagement response request timeout response has a 4xx status code

func (*PutResponsemanagementResponseRequestTimeout) IsCode

IsCode returns true when this put responsemanagement response request timeout response a status code equal to that given

func (*PutResponsemanagementResponseRequestTimeout) IsRedirect

IsRedirect returns true when this put responsemanagement response request timeout response has a 3xx status code

func (*PutResponsemanagementResponseRequestTimeout) IsServerError

IsServerError returns true when this put responsemanagement response request timeout response has a 5xx status code

func (*PutResponsemanagementResponseRequestTimeout) IsSuccess

IsSuccess returns true when this put responsemanagement response request timeout response has a 2xx status code

func (*PutResponsemanagementResponseRequestTimeout) String

type PutResponsemanagementResponseServiceUnavailable

type PutResponsemanagementResponseServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseServiceUnavailable

func NewPutResponsemanagementResponseServiceUnavailable() *PutResponsemanagementResponseServiceUnavailable

NewPutResponsemanagementResponseServiceUnavailable creates a PutResponsemanagementResponseServiceUnavailable with default headers values

func (*PutResponsemanagementResponseServiceUnavailable) Error

func (*PutResponsemanagementResponseServiceUnavailable) GetPayload

func (*PutResponsemanagementResponseServiceUnavailable) IsClientError

IsClientError returns true when this put responsemanagement response service unavailable response has a 4xx status code

func (*PutResponsemanagementResponseServiceUnavailable) IsCode

IsCode returns true when this put responsemanagement response service unavailable response a status code equal to that given

func (*PutResponsemanagementResponseServiceUnavailable) IsRedirect

IsRedirect returns true when this put responsemanagement response service unavailable response has a 3xx status code

func (*PutResponsemanagementResponseServiceUnavailable) IsServerError

IsServerError returns true when this put responsemanagement response service unavailable response has a 5xx status code

func (*PutResponsemanagementResponseServiceUnavailable) IsSuccess

IsSuccess returns true when this put responsemanagement response service unavailable response has a 2xx status code

func (*PutResponsemanagementResponseServiceUnavailable) String

type PutResponsemanagementResponseTooManyRequests

type PutResponsemanagementResponseTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseTooManyRequests

func NewPutResponsemanagementResponseTooManyRequests() *PutResponsemanagementResponseTooManyRequests

NewPutResponsemanagementResponseTooManyRequests creates a PutResponsemanagementResponseTooManyRequests with default headers values

func (*PutResponsemanagementResponseTooManyRequests) Error

func (*PutResponsemanagementResponseTooManyRequests) GetPayload

func (*PutResponsemanagementResponseTooManyRequests) IsClientError

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

func (*PutResponsemanagementResponseTooManyRequests) IsCode

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

func (*PutResponsemanagementResponseTooManyRequests) IsRedirect

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

func (*PutResponsemanagementResponseTooManyRequests) IsServerError

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

func (*PutResponsemanagementResponseTooManyRequests) IsSuccess

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

func (*PutResponsemanagementResponseTooManyRequests) String

type PutResponsemanagementResponseUnauthorized

type PutResponsemanagementResponseUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPutResponsemanagementResponseUnauthorized

func NewPutResponsemanagementResponseUnauthorized() *PutResponsemanagementResponseUnauthorized

NewPutResponsemanagementResponseUnauthorized creates a PutResponsemanagementResponseUnauthorized with default headers values

func (*PutResponsemanagementResponseUnauthorized) Error

func (*PutResponsemanagementResponseUnauthorized) GetPayload

func (*PutResponsemanagementResponseUnauthorized) IsClientError

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

func (*PutResponsemanagementResponseUnauthorized) IsCode

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

func (*PutResponsemanagementResponseUnauthorized) IsRedirect

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

func (*PutResponsemanagementResponseUnauthorized) IsServerError

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

func (*PutResponsemanagementResponseUnauthorized) IsSuccess

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

func (*PutResponsemanagementResponseUnauthorized) String

type PutResponsemanagementResponseUnsupportedMediaType

type PutResponsemanagementResponseUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseUnsupportedMediaType

func NewPutResponsemanagementResponseUnsupportedMediaType() *PutResponsemanagementResponseUnsupportedMediaType

NewPutResponsemanagementResponseUnsupportedMediaType creates a PutResponsemanagementResponseUnsupportedMediaType with default headers values

func (*PutResponsemanagementResponseUnsupportedMediaType) Error

func (*PutResponsemanagementResponseUnsupportedMediaType) GetPayload

func (*PutResponsemanagementResponseUnsupportedMediaType) IsClientError

IsClientError returns true when this put responsemanagement response unsupported media type response has a 4xx status code

func (*PutResponsemanagementResponseUnsupportedMediaType) IsCode

IsCode returns true when this put responsemanagement response unsupported media type response a status code equal to that given

func (*PutResponsemanagementResponseUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put responsemanagement response unsupported media type response has a 3xx status code

func (*PutResponsemanagementResponseUnsupportedMediaType) IsServerError

IsServerError returns true when this put responsemanagement response unsupported media type response has a 5xx status code

func (*PutResponsemanagementResponseUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put responsemanagement response unsupported media type response has a 2xx status code

func (*PutResponsemanagementResponseUnsupportedMediaType) String

type PutResponsemanagementResponseassetBadRequest

type PutResponsemanagementResponseassetBadRequest struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetBadRequest

func NewPutResponsemanagementResponseassetBadRequest() *PutResponsemanagementResponseassetBadRequest

NewPutResponsemanagementResponseassetBadRequest creates a PutResponsemanagementResponseassetBadRequest with default headers values

func (*PutResponsemanagementResponseassetBadRequest) Error

func (*PutResponsemanagementResponseassetBadRequest) GetPayload

func (*PutResponsemanagementResponseassetBadRequest) IsClientError

IsClientError returns true when this put responsemanagement responseasset bad request response has a 4xx status code

func (*PutResponsemanagementResponseassetBadRequest) IsCode

IsCode returns true when this put responsemanagement responseasset bad request response a status code equal to that given

func (*PutResponsemanagementResponseassetBadRequest) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset bad request response has a 3xx status code

func (*PutResponsemanagementResponseassetBadRequest) IsServerError

IsServerError returns true when this put responsemanagement responseasset bad request response has a 5xx status code

func (*PutResponsemanagementResponseassetBadRequest) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset bad request response has a 2xx status code

func (*PutResponsemanagementResponseassetBadRequest) String

type PutResponsemanagementResponseassetForbidden

type PutResponsemanagementResponseassetForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPutResponsemanagementResponseassetForbidden

func NewPutResponsemanagementResponseassetForbidden() *PutResponsemanagementResponseassetForbidden

NewPutResponsemanagementResponseassetForbidden creates a PutResponsemanagementResponseassetForbidden with default headers values

func (*PutResponsemanagementResponseassetForbidden) Error

func (*PutResponsemanagementResponseassetForbidden) GetPayload

func (*PutResponsemanagementResponseassetForbidden) IsClientError

IsClientError returns true when this put responsemanagement responseasset forbidden response has a 4xx status code

func (*PutResponsemanagementResponseassetForbidden) IsCode

IsCode returns true when this put responsemanagement responseasset forbidden response a status code equal to that given

func (*PutResponsemanagementResponseassetForbidden) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset forbidden response has a 3xx status code

func (*PutResponsemanagementResponseassetForbidden) IsServerError

IsServerError returns true when this put responsemanagement responseasset forbidden response has a 5xx status code

func (*PutResponsemanagementResponseassetForbidden) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset forbidden response has a 2xx status code

func (*PutResponsemanagementResponseassetForbidden) String

type PutResponsemanagementResponseassetGatewayTimeout

type PutResponsemanagementResponseassetGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPutResponsemanagementResponseassetGatewayTimeout

func NewPutResponsemanagementResponseassetGatewayTimeout() *PutResponsemanagementResponseassetGatewayTimeout

NewPutResponsemanagementResponseassetGatewayTimeout creates a PutResponsemanagementResponseassetGatewayTimeout with default headers values

func (*PutResponsemanagementResponseassetGatewayTimeout) Error

func (*PutResponsemanagementResponseassetGatewayTimeout) GetPayload

func (*PutResponsemanagementResponseassetGatewayTimeout) IsClientError

IsClientError returns true when this put responsemanagement responseasset gateway timeout response has a 4xx status code

func (*PutResponsemanagementResponseassetGatewayTimeout) IsCode

IsCode returns true when this put responsemanagement responseasset gateway timeout response a status code equal to that given

func (*PutResponsemanagementResponseassetGatewayTimeout) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset gateway timeout response has a 3xx status code

func (*PutResponsemanagementResponseassetGatewayTimeout) IsServerError

IsServerError returns true when this put responsemanagement responseasset gateway timeout response has a 5xx status code

func (*PutResponsemanagementResponseassetGatewayTimeout) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset gateway timeout response has a 2xx status code

func (*PutResponsemanagementResponseassetGatewayTimeout) String

type PutResponsemanagementResponseassetInternalServerError

type PutResponsemanagementResponseassetInternalServerError struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetInternalServerError

func NewPutResponsemanagementResponseassetInternalServerError() *PutResponsemanagementResponseassetInternalServerError

NewPutResponsemanagementResponseassetInternalServerError creates a PutResponsemanagementResponseassetInternalServerError with default headers values

func (*PutResponsemanagementResponseassetInternalServerError) Error

func (*PutResponsemanagementResponseassetInternalServerError) GetPayload

func (*PutResponsemanagementResponseassetInternalServerError) IsClientError

IsClientError returns true when this put responsemanagement responseasset internal server error response has a 4xx status code

func (*PutResponsemanagementResponseassetInternalServerError) IsCode

IsCode returns true when this put responsemanagement responseasset internal server error response a status code equal to that given

func (*PutResponsemanagementResponseassetInternalServerError) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset internal server error response has a 3xx status code

func (*PutResponsemanagementResponseassetInternalServerError) IsServerError

IsServerError returns true when this put responsemanagement responseasset internal server error response has a 5xx status code

func (*PutResponsemanagementResponseassetInternalServerError) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset internal server error response has a 2xx status code

func (*PutResponsemanagementResponseassetInternalServerError) String

type PutResponsemanagementResponseassetNotFound

type PutResponsemanagementResponseassetNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPutResponsemanagementResponseassetNotFound

func NewPutResponsemanagementResponseassetNotFound() *PutResponsemanagementResponseassetNotFound

NewPutResponsemanagementResponseassetNotFound creates a PutResponsemanagementResponseassetNotFound with default headers values

func (*PutResponsemanagementResponseassetNotFound) Error

func (*PutResponsemanagementResponseassetNotFound) GetPayload

func (*PutResponsemanagementResponseassetNotFound) IsClientError

IsClientError returns true when this put responsemanagement responseasset not found response has a 4xx status code

func (*PutResponsemanagementResponseassetNotFound) IsCode

IsCode returns true when this put responsemanagement responseasset not found response a status code equal to that given

func (*PutResponsemanagementResponseassetNotFound) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset not found response has a 3xx status code

func (*PutResponsemanagementResponseassetNotFound) IsServerError

IsServerError returns true when this put responsemanagement responseasset not found response has a 5xx status code

func (*PutResponsemanagementResponseassetNotFound) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset not found response has a 2xx status code

func (*PutResponsemanagementResponseassetNotFound) String

type PutResponsemanagementResponseassetOK

type PutResponsemanagementResponseassetOK struct {
	Payload *models.ResponseAsset
}

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

successful operation

func NewPutResponsemanagementResponseassetOK

func NewPutResponsemanagementResponseassetOK() *PutResponsemanagementResponseassetOK

NewPutResponsemanagementResponseassetOK creates a PutResponsemanagementResponseassetOK with default headers values

func (*PutResponsemanagementResponseassetOK) Error

func (*PutResponsemanagementResponseassetOK) GetPayload

func (*PutResponsemanagementResponseassetOK) IsClientError

func (o *PutResponsemanagementResponseassetOK) IsClientError() bool

IsClientError returns true when this put responsemanagement responseasset o k response has a 4xx status code

func (*PutResponsemanagementResponseassetOK) IsCode

IsCode returns true when this put responsemanagement responseasset o k response a status code equal to that given

func (*PutResponsemanagementResponseassetOK) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset o k response has a 3xx status code

func (*PutResponsemanagementResponseassetOK) IsServerError

func (o *PutResponsemanagementResponseassetOK) IsServerError() bool

IsServerError returns true when this put responsemanagement responseasset o k response has a 5xx status code

func (*PutResponsemanagementResponseassetOK) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset o k response has a 2xx status code

func (*PutResponsemanagementResponseassetOK) String

type PutResponsemanagementResponseassetParams

type PutResponsemanagementResponseassetParams struct {

	/* Body.

	   request
	*/
	Body *models.ResponseAssetRequest

	/* ResponseAssetID.

	   Asset Id
	*/
	ResponseAssetID string

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

PutResponsemanagementResponseassetParams contains all the parameters to send to the API endpoint

for the put responsemanagement responseasset operation.

Typically these are written to a http.Request.

func NewPutResponsemanagementResponseassetParams

func NewPutResponsemanagementResponseassetParams() *PutResponsemanagementResponseassetParams

NewPutResponsemanagementResponseassetParams creates a new PutResponsemanagementResponseassetParams 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 NewPutResponsemanagementResponseassetParamsWithContext

func NewPutResponsemanagementResponseassetParamsWithContext(ctx context.Context) *PutResponsemanagementResponseassetParams

NewPutResponsemanagementResponseassetParamsWithContext creates a new PutResponsemanagementResponseassetParams object with the ability to set a context for a request.

func NewPutResponsemanagementResponseassetParamsWithHTTPClient

func NewPutResponsemanagementResponseassetParamsWithHTTPClient(client *http.Client) *PutResponsemanagementResponseassetParams

NewPutResponsemanagementResponseassetParamsWithHTTPClient creates a new PutResponsemanagementResponseassetParams object with the ability to set a custom HTTPClient for a request.

func NewPutResponsemanagementResponseassetParamsWithTimeout

func NewPutResponsemanagementResponseassetParamsWithTimeout(timeout time.Duration) *PutResponsemanagementResponseassetParams

NewPutResponsemanagementResponseassetParamsWithTimeout creates a new PutResponsemanagementResponseassetParams object with the ability to set a timeout on a request.

func (*PutResponsemanagementResponseassetParams) SetBody

SetBody adds the body to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) SetContext

SetContext adds the context to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) SetDefaults

SetDefaults hydrates default values in the put responsemanagement responseasset params (not the query body).

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

func (*PutResponsemanagementResponseassetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) SetResponseAssetID

func (o *PutResponsemanagementResponseassetParams) SetResponseAssetID(responseAssetID string)

SetResponseAssetID adds the responseAssetId to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) SetTimeout

SetTimeout adds the timeout to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) WithBody

WithBody adds the body to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) WithContext

WithContext adds the context to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) WithDefaults

WithDefaults hydrates default values in the put responsemanagement responseasset params (not the query body).

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

func (*PutResponsemanagementResponseassetParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) WithResponseAssetID

WithResponseAssetID adds the responseAssetID to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) WithTimeout

WithTimeout adds the timeout to the put responsemanagement responseasset params

func (*PutResponsemanagementResponseassetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutResponsemanagementResponseassetReader

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

PutResponsemanagementResponseassetReader is a Reader for the PutResponsemanagementResponseasset structure.

func (*PutResponsemanagementResponseassetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutResponsemanagementResponseassetRequestEntityTooLarge

type PutResponsemanagementResponseassetRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetRequestEntityTooLarge

func NewPutResponsemanagementResponseassetRequestEntityTooLarge() *PutResponsemanagementResponseassetRequestEntityTooLarge

NewPutResponsemanagementResponseassetRequestEntityTooLarge creates a PutResponsemanagementResponseassetRequestEntityTooLarge with default headers values

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) Error

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) GetPayload

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) IsClientError

IsClientError returns true when this put responsemanagement responseasset request entity too large response has a 4xx status code

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) IsCode

IsCode returns true when this put responsemanagement responseasset request entity too large response a status code equal to that given

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset request entity too large response has a 3xx status code

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) IsServerError

IsServerError returns true when this put responsemanagement responseasset request entity too large response has a 5xx status code

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset request entity too large response has a 2xx status code

func (*PutResponsemanagementResponseassetRequestEntityTooLarge) String

type PutResponsemanagementResponseassetRequestTimeout

type PutResponsemanagementResponseassetRequestTimeout struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetRequestTimeout

func NewPutResponsemanagementResponseassetRequestTimeout() *PutResponsemanagementResponseassetRequestTimeout

NewPutResponsemanagementResponseassetRequestTimeout creates a PutResponsemanagementResponseassetRequestTimeout with default headers values

func (*PutResponsemanagementResponseassetRequestTimeout) Error

func (*PutResponsemanagementResponseassetRequestTimeout) GetPayload

func (*PutResponsemanagementResponseassetRequestTimeout) IsClientError

IsClientError returns true when this put responsemanagement responseasset request timeout response has a 4xx status code

func (*PutResponsemanagementResponseassetRequestTimeout) IsCode

IsCode returns true when this put responsemanagement responseasset request timeout response a status code equal to that given

func (*PutResponsemanagementResponseassetRequestTimeout) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset request timeout response has a 3xx status code

func (*PutResponsemanagementResponseassetRequestTimeout) IsServerError

IsServerError returns true when this put responsemanagement responseasset request timeout response has a 5xx status code

func (*PutResponsemanagementResponseassetRequestTimeout) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset request timeout response has a 2xx status code

func (*PutResponsemanagementResponseassetRequestTimeout) String

type PutResponsemanagementResponseassetServiceUnavailable

type PutResponsemanagementResponseassetServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetServiceUnavailable

func NewPutResponsemanagementResponseassetServiceUnavailable() *PutResponsemanagementResponseassetServiceUnavailable

NewPutResponsemanagementResponseassetServiceUnavailable creates a PutResponsemanagementResponseassetServiceUnavailable with default headers values

func (*PutResponsemanagementResponseassetServiceUnavailable) Error

func (*PutResponsemanagementResponseassetServiceUnavailable) GetPayload

func (*PutResponsemanagementResponseassetServiceUnavailable) IsClientError

IsClientError returns true when this put responsemanagement responseasset service unavailable response has a 4xx status code

func (*PutResponsemanagementResponseassetServiceUnavailable) IsCode

IsCode returns true when this put responsemanagement responseasset service unavailable response a status code equal to that given

func (*PutResponsemanagementResponseassetServiceUnavailable) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset service unavailable response has a 3xx status code

func (*PutResponsemanagementResponseassetServiceUnavailable) IsServerError

IsServerError returns true when this put responsemanagement responseasset service unavailable response has a 5xx status code

func (*PutResponsemanagementResponseassetServiceUnavailable) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset service unavailable response has a 2xx status code

func (*PutResponsemanagementResponseassetServiceUnavailable) String

type PutResponsemanagementResponseassetTooManyRequests

type PutResponsemanagementResponseassetTooManyRequests struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetTooManyRequests

func NewPutResponsemanagementResponseassetTooManyRequests() *PutResponsemanagementResponseassetTooManyRequests

NewPutResponsemanagementResponseassetTooManyRequests creates a PutResponsemanagementResponseassetTooManyRequests with default headers values

func (*PutResponsemanagementResponseassetTooManyRequests) Error

func (*PutResponsemanagementResponseassetTooManyRequests) GetPayload

func (*PutResponsemanagementResponseassetTooManyRequests) IsClientError

IsClientError returns true when this put responsemanagement responseasset too many requests response has a 4xx status code

func (*PutResponsemanagementResponseassetTooManyRequests) IsCode

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

func (*PutResponsemanagementResponseassetTooManyRequests) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset too many requests response has a 3xx status code

func (*PutResponsemanagementResponseassetTooManyRequests) IsServerError

IsServerError returns true when this put responsemanagement responseasset too many requests response has a 5xx status code

func (*PutResponsemanagementResponseassetTooManyRequests) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset too many requests response has a 2xx status code

func (*PutResponsemanagementResponseassetTooManyRequests) String

type PutResponsemanagementResponseassetUnauthorized

type PutResponsemanagementResponseassetUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPutResponsemanagementResponseassetUnauthorized

func NewPutResponsemanagementResponseassetUnauthorized() *PutResponsemanagementResponseassetUnauthorized

NewPutResponsemanagementResponseassetUnauthorized creates a PutResponsemanagementResponseassetUnauthorized with default headers values

func (*PutResponsemanagementResponseassetUnauthorized) Error

func (*PutResponsemanagementResponseassetUnauthorized) GetPayload

func (*PutResponsemanagementResponseassetUnauthorized) IsClientError

IsClientError returns true when this put responsemanagement responseasset unauthorized response has a 4xx status code

func (*PutResponsemanagementResponseassetUnauthorized) IsCode

IsCode returns true when this put responsemanagement responseasset unauthorized response a status code equal to that given

func (*PutResponsemanagementResponseassetUnauthorized) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset unauthorized response has a 3xx status code

func (*PutResponsemanagementResponseassetUnauthorized) IsServerError

IsServerError returns true when this put responsemanagement responseasset unauthorized response has a 5xx status code

func (*PutResponsemanagementResponseassetUnauthorized) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset unauthorized response has a 2xx status code

func (*PutResponsemanagementResponseassetUnauthorized) String

type PutResponsemanagementResponseassetUnsupportedMediaType

type PutResponsemanagementResponseassetUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

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

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

func NewPutResponsemanagementResponseassetUnsupportedMediaType

func NewPutResponsemanagementResponseassetUnsupportedMediaType() *PutResponsemanagementResponseassetUnsupportedMediaType

NewPutResponsemanagementResponseassetUnsupportedMediaType creates a PutResponsemanagementResponseassetUnsupportedMediaType with default headers values

func (*PutResponsemanagementResponseassetUnsupportedMediaType) Error

func (*PutResponsemanagementResponseassetUnsupportedMediaType) GetPayload

func (*PutResponsemanagementResponseassetUnsupportedMediaType) IsClientError

IsClientError returns true when this put responsemanagement responseasset unsupported media type response has a 4xx status code

func (*PutResponsemanagementResponseassetUnsupportedMediaType) IsCode

IsCode returns true when this put responsemanagement responseasset unsupported media type response a status code equal to that given

func (*PutResponsemanagementResponseassetUnsupportedMediaType) IsRedirect

IsRedirect returns true when this put responsemanagement responseasset unsupported media type response has a 3xx status code

func (*PutResponsemanagementResponseassetUnsupportedMediaType) IsServerError

IsServerError returns true when this put responsemanagement responseasset unsupported media type response has a 5xx status code

func (*PutResponsemanagementResponseassetUnsupportedMediaType) IsSuccess

IsSuccess returns true when this put responsemanagement responseasset unsupported media type response has a 2xx status code

func (*PutResponsemanagementResponseassetUnsupportedMediaType) String

Source Files

Jump to

Keyboard shortcuts

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