debugrequest

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Jul 19, 2018 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

View Source
const CreateDebugRequestCreatedCode int = 201

CreateDebugRequestCreatedCode is the HTTP code returned for type CreateDebugRequestCreated

View Source
const DeleteDebugRequestBadRequestCode int = 400

DeleteDebugRequestBadRequestCode is the HTTP code returned for type DeleteDebugRequestBadRequest

View Source
const DeleteDebugRequestNotFoundCode int = 404

DeleteDebugRequestNotFoundCode is the HTTP code returned for type DeleteDebugRequestNotFound

View Source
const DeleteDebugRequestOKCode int = 200

DeleteDebugRequestOKCode is the HTTP code returned for type DeleteDebugRequestOK

View Source
const DeleteDebugRequestUnprocessableEntityCode int = 422

DeleteDebugRequestUnprocessableEntityCode is the HTTP code returned for type DeleteDebugRequestUnprocessableEntity

View Source
const GetDebugRequestNotFoundCode int = 404

GetDebugRequestNotFoundCode is the HTTP code returned for type GetDebugRequestNotFound

View Source
const GetDebugRequestOKCode int = 200

GetDebugRequestOKCode is the HTTP code returned for type GetDebugRequestOK

View Source
const GetDebugRequestsOKCode int = 200

GetDebugRequestsOKCode is the HTTP code returned for type GetDebugRequestsOK

View Source
const GetDebugRequestsUnprocessableEntityCode int = 422

GetDebugRequestsUnprocessableEntityCode is the HTTP code returned for type GetDebugRequestsUnprocessableEntity

Variables

This section is empty.

Functions

This section is empty.

Types

type CreateDebugRequest

type CreateDebugRequest struct {
	Context *middleware.Context
	Handler CreateDebugRequestHandler
}

CreateDebugRequest swagger:route POST /debugrequest debugrequest createDebugRequest

Return a debug attachment

Return a debug attachment

func NewCreateDebugRequest

func NewCreateDebugRequest(ctx *middleware.Context, handler CreateDebugRequestHandler) *CreateDebugRequest

NewCreateDebugRequest creates a new http.Handler for the create debug request operation

func (*CreateDebugRequest) ServeHTTP

func (o *CreateDebugRequest) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type CreateDebugRequestCreated

type CreateDebugRequestCreated struct {

	/*
	  In: Body
	*/
	Payload *models.DebugRequest `json:"body,omitempty"`
}

CreateDebugRequestCreated Created

swagger:response createDebugRequestCreated

func NewCreateDebugRequestCreated

func NewCreateDebugRequestCreated() *CreateDebugRequestCreated

NewCreateDebugRequestCreated creates CreateDebugRequestCreated with default headers values

func (*CreateDebugRequestCreated) SetPayload

func (o *CreateDebugRequestCreated) SetPayload(payload *models.DebugRequest)

SetPayload sets the payload to the create debug request created response

func (*CreateDebugRequestCreated) WithPayload

WithPayload adds the payload to the create debug request created response

func (*CreateDebugRequestCreated) WriteResponse

func (o *CreateDebugRequestCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type CreateDebugRequestHandler

type CreateDebugRequestHandler interface {
	Handle(CreateDebugRequestParams) middleware.Responder
}

CreateDebugRequestHandler interface for that can handle valid create debug request params

type CreateDebugRequestHandlerFunc

type CreateDebugRequestHandlerFunc func(CreateDebugRequestParams) middleware.Responder

CreateDebugRequestHandlerFunc turns a function with the right signature into a create debug request handler

func (CreateDebugRequestHandlerFunc) Handle

Handle executing the request and returning a response

type CreateDebugRequestParams

type CreateDebugRequestParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*DebugRequest object
	  Required: true
	  In: body
	*/
	Body *models.DebugRequest
}

CreateDebugRequestParams contains all the bound params for the create debug request operation typically these are obtained from a http.Request

swagger:parameters createDebugRequest

func NewCreateDebugRequestParams

func NewCreateDebugRequestParams() CreateDebugRequestParams

NewCreateDebugRequestParams creates a new CreateDebugRequestParams object with the default values initialized.

func (*CreateDebugRequestParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls

type CreateDebugRequestURL

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

CreateDebugRequestURL generates an URL for the create debug request operation

func (*CreateDebugRequestURL) Build

func (o *CreateDebugRequestURL) Build() (*url.URL, error)

Build a url path and query string

func (*CreateDebugRequestURL) BuildFull

func (o *CreateDebugRequestURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*CreateDebugRequestURL) Must

func (o *CreateDebugRequestURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*CreateDebugRequestURL) SetBasePath

func (o *CreateDebugRequestURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*CreateDebugRequestURL) String

func (o *CreateDebugRequestURL) String() string

String returns the string representation of the path with query string

func (*CreateDebugRequestURL) StringFull

func (o *CreateDebugRequestURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*CreateDebugRequestURL) WithBasePath

func (o *CreateDebugRequestURL) WithBasePath(bp string) *CreateDebugRequestURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type DeleteDebugRequest

type DeleteDebugRequest struct {
	Context *middleware.Context
	Handler DeleteDebugRequestHandler
}

DeleteDebugRequest swagger:route DELETE /debugrequest/{debugRequestId} debugrequest deleteDebugRequest

Delete a debug request

Delete a debug request.

func NewDeleteDebugRequest

func NewDeleteDebugRequest(ctx *middleware.Context, handler DeleteDebugRequestHandler) *DeleteDebugRequest

NewDeleteDebugRequest creates a new http.Handler for the delete debug request operation

func (*DeleteDebugRequest) ServeHTTP

func (o *DeleteDebugRequest) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type DeleteDebugRequestBadRequest

type DeleteDebugRequestBadRequest struct {
}

DeleteDebugRequestBadRequest Invalid ID supplied

swagger:response deleteDebugRequestBadRequest

func NewDeleteDebugRequestBadRequest

func NewDeleteDebugRequestBadRequest() *DeleteDebugRequestBadRequest

NewDeleteDebugRequestBadRequest creates DeleteDebugRequestBadRequest with default headers values

func (*DeleteDebugRequestBadRequest) WriteResponse

func (o *DeleteDebugRequestBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteDebugRequestHandler

type DeleteDebugRequestHandler interface {
	Handle(DeleteDebugRequestParams) middleware.Responder
}

DeleteDebugRequestHandler interface for that can handle valid delete debug request params

type DeleteDebugRequestHandlerFunc

type DeleteDebugRequestHandlerFunc func(DeleteDebugRequestParams) middleware.Responder

DeleteDebugRequestHandlerFunc turns a function with the right signature into a delete debug request handler

func (DeleteDebugRequestHandlerFunc) Handle

Handle executing the request and returning a response

type DeleteDebugRequestNotFound

type DeleteDebugRequestNotFound struct {
}

DeleteDebugRequestNotFound Debug request not found

swagger:response deleteDebugRequestNotFound

func NewDeleteDebugRequestNotFound

func NewDeleteDebugRequestNotFound() *DeleteDebugRequestNotFound

NewDeleteDebugRequestNotFound creates DeleteDebugRequestNotFound with default headers values

func (*DeleteDebugRequestNotFound) WriteResponse

func (o *DeleteDebugRequestNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteDebugRequestOK

type DeleteDebugRequestOK struct {
}

DeleteDebugRequestOK OK

swagger:response deleteDebugRequestOK

func NewDeleteDebugRequestOK

func NewDeleteDebugRequestOK() *DeleteDebugRequestOK

NewDeleteDebugRequestOK creates DeleteDebugRequestOK with default headers values

func (*DeleteDebugRequestOK) WriteResponse

func (o *DeleteDebugRequestOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteDebugRequestParams

type DeleteDebugRequestParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*ID of debug request
	  Required: true
	  In: path
	*/
	DebugRequestID string
}

DeleteDebugRequestParams contains all the bound params for the delete debug request operation typically these are obtained from a http.Request

swagger:parameters deleteDebugRequest

func NewDeleteDebugRequestParams

func NewDeleteDebugRequestParams() DeleteDebugRequestParams

NewDeleteDebugRequestParams creates a new DeleteDebugRequestParams object with the default values initialized.

func (*DeleteDebugRequestParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls

type DeleteDebugRequestURL

type DeleteDebugRequestURL struct {
	DebugRequestID string
	// contains filtered or unexported fields
}

DeleteDebugRequestURL generates an URL for the delete debug request operation

func (*DeleteDebugRequestURL) Build

func (o *DeleteDebugRequestURL) Build() (*url.URL, error)

Build a url path and query string

func (*DeleteDebugRequestURL) BuildFull

func (o *DeleteDebugRequestURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*DeleteDebugRequestURL) Must

func (o *DeleteDebugRequestURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*DeleteDebugRequestURL) SetBasePath

func (o *DeleteDebugRequestURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*DeleteDebugRequestURL) String

func (o *DeleteDebugRequestURL) String() string

String returns the string representation of the path with query string

func (*DeleteDebugRequestURL) StringFull

func (o *DeleteDebugRequestURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*DeleteDebugRequestURL) WithBasePath

func (o *DeleteDebugRequestURL) WithBasePath(bp string) *DeleteDebugRequestURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type DeleteDebugRequestUnprocessableEntity

type DeleteDebugRequestUnprocessableEntity struct {
}

DeleteDebugRequestUnprocessableEntity Validation exception

swagger:response deleteDebugRequestUnprocessableEntity

func NewDeleteDebugRequestUnprocessableEntity

func NewDeleteDebugRequestUnprocessableEntity() *DeleteDebugRequestUnprocessableEntity

NewDeleteDebugRequestUnprocessableEntity creates DeleteDebugRequestUnprocessableEntity with default headers values

func (*DeleteDebugRequestUnprocessableEntity) WriteResponse

WriteResponse to the client

type GetDebugRequest

type GetDebugRequest struct {
	Context *middleware.Context
	Handler GetDebugRequestHandler
}

GetDebugRequest swagger:route GET /debugrequest/{debugRequestId} debugrequest getDebugRequest

Get a debug request

Get a debug request

func NewGetDebugRequest

func NewGetDebugRequest(ctx *middleware.Context, handler GetDebugRequestHandler) *GetDebugRequest

NewGetDebugRequest creates a new http.Handler for the get debug request operation

func (*GetDebugRequest) ServeHTTP

func (o *GetDebugRequest) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type GetDebugRequestHandler

type GetDebugRequestHandler interface {
	Handle(GetDebugRequestParams) middleware.Responder
}

GetDebugRequestHandler interface for that can handle valid get debug request params

type GetDebugRequestHandlerFunc

type GetDebugRequestHandlerFunc func(GetDebugRequestParams) middleware.Responder

GetDebugRequestHandlerFunc turns a function with the right signature into a get debug request handler

func (GetDebugRequestHandlerFunc) Handle

Handle executing the request and returning a response

type GetDebugRequestNotFound

type GetDebugRequestNotFound struct {
}

GetDebugRequestNotFound Not found

swagger:response getDebugRequestNotFound

func NewGetDebugRequestNotFound

func NewGetDebugRequestNotFound() *GetDebugRequestNotFound

NewGetDebugRequestNotFound creates GetDebugRequestNotFound with default headers values

func (*GetDebugRequestNotFound) WriteResponse

func (o *GetDebugRequestNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type GetDebugRequestOK

type GetDebugRequestOK struct {

	/*
	  In: Body
	*/
	Payload *models.DebugRequest `json:"body,omitempty"`
}

GetDebugRequestOK OK

swagger:response getDebugRequestOK

func NewGetDebugRequestOK

func NewGetDebugRequestOK() *GetDebugRequestOK

NewGetDebugRequestOK creates GetDebugRequestOK with default headers values

func (*GetDebugRequestOK) SetPayload

func (o *GetDebugRequestOK) SetPayload(payload *models.DebugRequest)

SetPayload sets the payload to the get debug request o k response

func (*GetDebugRequestOK) WithPayload

func (o *GetDebugRequestOK) WithPayload(payload *models.DebugRequest) *GetDebugRequestOK

WithPayload adds the payload to the get debug request o k response

func (*GetDebugRequestOK) WriteResponse

func (o *GetDebugRequestOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type GetDebugRequestParams

type GetDebugRequestParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*ID of config to return
	  Required: true
	  In: path
	*/
	DebugRequestID string
}

GetDebugRequestParams contains all the bound params for the get debug request operation typically these are obtained from a http.Request

swagger:parameters getDebugRequest

func NewGetDebugRequestParams

func NewGetDebugRequestParams() GetDebugRequestParams

NewGetDebugRequestParams creates a new GetDebugRequestParams object with the default values initialized.

func (*GetDebugRequestParams) BindRequest

func (o *GetDebugRequestParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls

type GetDebugRequestURL

type GetDebugRequestURL struct {
	DebugRequestID string
	// contains filtered or unexported fields
}

GetDebugRequestURL generates an URL for the get debug request operation

func (*GetDebugRequestURL) Build

func (o *GetDebugRequestURL) Build() (*url.URL, error)

Build a url path and query string

func (*GetDebugRequestURL) BuildFull

func (o *GetDebugRequestURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*GetDebugRequestURL) Must

func (o *GetDebugRequestURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*GetDebugRequestURL) SetBasePath

func (o *GetDebugRequestURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*GetDebugRequestURL) String

func (o *GetDebugRequestURL) String() string

String returns the string representation of the path with query string

func (*GetDebugRequestURL) StringFull

func (o *GetDebugRequestURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*GetDebugRequestURL) WithBasePath

func (o *GetDebugRequestURL) WithBasePath(bp string) *GetDebugRequestURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type GetDebugRequests

type GetDebugRequests struct {
	Context *middleware.Context
	Handler GetDebugRequestsHandler
}

GetDebugRequests swagger:route GET /debugrequest debugrequest getDebugRequests

Return all debug request

Return all debug requests

func NewGetDebugRequests

func NewGetDebugRequests(ctx *middleware.Context, handler GetDebugRequestsHandler) *GetDebugRequests

NewGetDebugRequests creates a new http.Handler for the get debug requests operation

func (*GetDebugRequests) ServeHTTP

func (o *GetDebugRequests) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type GetDebugRequestsHandler

type GetDebugRequestsHandler interface {
	Handle(GetDebugRequestsParams) middleware.Responder
}

GetDebugRequestsHandler interface for that can handle valid get debug requests params

type GetDebugRequestsHandlerFunc

type GetDebugRequestsHandlerFunc func(GetDebugRequestsParams) middleware.Responder

GetDebugRequestsHandlerFunc turns a function with the right signature into a get debug requests handler

func (GetDebugRequestsHandlerFunc) Handle

Handle executing the request and returning a response

type GetDebugRequestsOK

type GetDebugRequestsOK struct {

	/*
	  In: Body
	*/
	Payload models.GetDebugRequestsOKBody `json:"body,omitempty"`
}

GetDebugRequestsOK OK

swagger:response getDebugRequestsOK

func NewGetDebugRequestsOK

func NewGetDebugRequestsOK() *GetDebugRequestsOK

NewGetDebugRequestsOK creates GetDebugRequestsOK with default headers values

func (*GetDebugRequestsOK) SetPayload

func (o *GetDebugRequestsOK) SetPayload(payload models.GetDebugRequestsOKBody)

SetPayload sets the payload to the get debug requests o k response

func (*GetDebugRequestsOK) WithPayload

WithPayload adds the payload to the get debug requests o k response

func (*GetDebugRequestsOK) WriteResponse

func (o *GetDebugRequestsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type GetDebugRequestsParams

type GetDebugRequestsParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`
}

GetDebugRequestsParams contains all the bound params for the get debug requests operation typically these are obtained from a http.Request

swagger:parameters getDebugRequests

func NewGetDebugRequestsParams

func NewGetDebugRequestsParams() GetDebugRequestsParams

NewGetDebugRequestsParams creates a new GetDebugRequestsParams object with the default values initialized.

func (*GetDebugRequestsParams) BindRequest

func (o *GetDebugRequestsParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls

type GetDebugRequestsURL

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

GetDebugRequestsURL generates an URL for the get debug requests operation

func (*GetDebugRequestsURL) Build

func (o *GetDebugRequestsURL) Build() (*url.URL, error)

Build a url path and query string

func (*GetDebugRequestsURL) BuildFull

func (o *GetDebugRequestsURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*GetDebugRequestsURL) Must

func (o *GetDebugRequestsURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*GetDebugRequestsURL) SetBasePath

func (o *GetDebugRequestsURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*GetDebugRequestsURL) String

func (o *GetDebugRequestsURL) String() string

String returns the string representation of the path with query string

func (*GetDebugRequestsURL) StringFull

func (o *GetDebugRequestsURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*GetDebugRequestsURL) WithBasePath

func (o *GetDebugRequestsURL) WithBasePath(bp string) *GetDebugRequestsURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type GetDebugRequestsUnprocessableEntity

type GetDebugRequestsUnprocessableEntity struct {
}

GetDebugRequestsUnprocessableEntity Validation exception

swagger:response getDebugRequestsUnprocessableEntity

func NewGetDebugRequestsUnprocessableEntity

func NewGetDebugRequestsUnprocessableEntity() *GetDebugRequestsUnprocessableEntity

NewGetDebugRequestsUnprocessableEntity creates GetDebugRequestsUnprocessableEntity with default headers values

func (*GetDebugRequestsUnprocessableEntity) WriteResponse

WriteResponse to the client

Jump to

Keyboard shortcuts

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