Documentation ¶
Index ¶
- Constants
- type GetRuntimeLiveness
- type GetRuntimeLivenessHandler
- type GetRuntimeLivenessHandlerFunc
- type GetRuntimeLivenessInternalServerError
- type GetRuntimeLivenessOK
- type GetRuntimeLivenessParams
- type GetRuntimeLivenessURL
- func (o *GetRuntimeLivenessURL) Build() (*url.URL, error)
- func (o *GetRuntimeLivenessURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *GetRuntimeLivenessURL) Must(u *url.URL, err error) *url.URL
- func (o *GetRuntimeLivenessURL) SetBasePath(bp string)
- func (o *GetRuntimeLivenessURL) String() string
- func (o *GetRuntimeLivenessURL) StringFull(scheme, host string) string
- func (o *GetRuntimeLivenessURL) WithBasePath(bp string) *GetRuntimeLivenessURL
- type GetRuntimeReadiness
- type GetRuntimeReadinessHandler
- type GetRuntimeReadinessHandlerFunc
- type GetRuntimeReadinessInternalServerError
- type GetRuntimeReadinessOK
- type GetRuntimeReadinessParams
- type GetRuntimeReadinessURL
- func (o *GetRuntimeReadinessURL) Build() (*url.URL, error)
- func (o *GetRuntimeReadinessURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *GetRuntimeReadinessURL) Must(u *url.URL, err error) *url.URL
- func (o *GetRuntimeReadinessURL) SetBasePath(bp string)
- func (o *GetRuntimeReadinessURL) String() string
- func (o *GetRuntimeReadinessURL) StringFull(scheme, host string) string
- func (o *GetRuntimeReadinessURL) WithBasePath(bp string) *GetRuntimeReadinessURL
- type GetRuntimeStartup
- type GetRuntimeStartupHandler
- type GetRuntimeStartupHandlerFunc
- type GetRuntimeStartupInternalServerError
- type GetRuntimeStartupOK
- type GetRuntimeStartupParams
- type GetRuntimeStartupURL
- func (o *GetRuntimeStartupURL) Build() (*url.URL, error)
- func (o *GetRuntimeStartupURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *GetRuntimeStartupURL) Must(u *url.URL, err error) *url.URL
- func (o *GetRuntimeStartupURL) SetBasePath(bp string)
- func (o *GetRuntimeStartupURL) String() string
- func (o *GetRuntimeStartupURL) StringFull(scheme, host string) string
- func (o *GetRuntimeStartupURL) WithBasePath(bp string) *GetRuntimeStartupURL
Constants ¶
const GetRuntimeLivenessInternalServerErrorCode int = 500
GetRuntimeLivenessInternalServerErrorCode is the HTTP code returned for type GetRuntimeLivenessInternalServerError
const GetRuntimeLivenessOKCode int = 200
GetRuntimeLivenessOKCode is the HTTP code returned for type GetRuntimeLivenessOK
const GetRuntimeReadinessInternalServerErrorCode int = 500
GetRuntimeReadinessInternalServerErrorCode is the HTTP code returned for type GetRuntimeReadinessInternalServerError
const GetRuntimeReadinessOKCode int = 200
GetRuntimeReadinessOKCode is the HTTP code returned for type GetRuntimeReadinessOK
const GetRuntimeStartupInternalServerErrorCode int = 500
GetRuntimeStartupInternalServerErrorCode is the HTTP code returned for type GetRuntimeStartupInternalServerError
const GetRuntimeStartupOKCode int = 200
GetRuntimeStartupOKCode is the HTTP code returned for type GetRuntimeStartupOK
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetRuntimeLiveness ¶
type GetRuntimeLiveness struct { Context *middleware.Context Handler GetRuntimeLivenessHandler }
GetRuntimeLiveness swagger:route GET /runtime/liveness runtime getRuntimeLiveness
Liveness probe ¶
Check pod liveness probe
func NewGetRuntimeLiveness ¶
func NewGetRuntimeLiveness(ctx *middleware.Context, handler GetRuntimeLivenessHandler) *GetRuntimeLiveness
NewGetRuntimeLiveness creates a new http.Handler for the get runtime liveness operation
func (*GetRuntimeLiveness) ServeHTTP ¶
func (o *GetRuntimeLiveness) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetRuntimeLivenessHandler ¶
type GetRuntimeLivenessHandler interface {
Handle(GetRuntimeLivenessParams) middleware.Responder
}
GetRuntimeLivenessHandler interface for that can handle valid get runtime liveness params
type GetRuntimeLivenessHandlerFunc ¶
type GetRuntimeLivenessHandlerFunc func(GetRuntimeLivenessParams) middleware.Responder
GetRuntimeLivenessHandlerFunc turns a function with the right signature into a get runtime liveness handler
func (GetRuntimeLivenessHandlerFunc) Handle ¶
func (fn GetRuntimeLivenessHandlerFunc) Handle(params GetRuntimeLivenessParams) middleware.Responder
Handle executing the request and returning a response
type GetRuntimeLivenessInternalServerError ¶
type GetRuntimeLivenessInternalServerError struct { }
GetRuntimeLivenessInternalServerError Failed
swagger:response getRuntimeLivenessInternalServerError
func NewGetRuntimeLivenessInternalServerError ¶
func NewGetRuntimeLivenessInternalServerError() *GetRuntimeLivenessInternalServerError
NewGetRuntimeLivenessInternalServerError creates GetRuntimeLivenessInternalServerError with default headers values
func (*GetRuntimeLivenessInternalServerError) WriteResponse ¶
func (o *GetRuntimeLivenessInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetRuntimeLivenessOK ¶
type GetRuntimeLivenessOK struct { }
GetRuntimeLivenessOK Success
swagger:response getRuntimeLivenessOK
func NewGetRuntimeLivenessOK ¶
func NewGetRuntimeLivenessOK() *GetRuntimeLivenessOK
NewGetRuntimeLivenessOK creates GetRuntimeLivenessOK with default headers values
func (*GetRuntimeLivenessOK) WriteResponse ¶
func (o *GetRuntimeLivenessOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetRuntimeLivenessParams ¶
type GetRuntimeLivenessParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` }
GetRuntimeLivenessParams contains all the bound params for the get runtime liveness operation typically these are obtained from a http.Request
swagger:parameters GetRuntimeLiveness
func NewGetRuntimeLivenessParams ¶
func NewGetRuntimeLivenessParams() GetRuntimeLivenessParams
NewGetRuntimeLivenessParams creates a new GetRuntimeLivenessParams object
There are no default values defined in the spec.
func (*GetRuntimeLivenessParams) BindRequest ¶
func (o *GetRuntimeLivenessParams) 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.
To ensure default values, the struct must have been initialized with NewGetRuntimeLivenessParams() beforehand.
type GetRuntimeLivenessURL ¶
type GetRuntimeLivenessURL struct {
// contains filtered or unexported fields
}
GetRuntimeLivenessURL generates an URL for the get runtime liveness operation
func (*GetRuntimeLivenessURL) Build ¶
func (o *GetRuntimeLivenessURL) Build() (*url.URL, error)
Build a url path and query string
func (*GetRuntimeLivenessURL) BuildFull ¶
func (o *GetRuntimeLivenessURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*GetRuntimeLivenessURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*GetRuntimeLivenessURL) SetBasePath ¶
func (o *GetRuntimeLivenessURL) 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 (*GetRuntimeLivenessURL) String ¶
func (o *GetRuntimeLivenessURL) String() string
String returns the string representation of the path with query string
func (*GetRuntimeLivenessURL) StringFull ¶
func (o *GetRuntimeLivenessURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*GetRuntimeLivenessURL) WithBasePath ¶
func (o *GetRuntimeLivenessURL) WithBasePath(bp string) *GetRuntimeLivenessURL
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 GetRuntimeReadiness ¶
type GetRuntimeReadiness struct { Context *middleware.Context Handler GetRuntimeReadinessHandler }
GetRuntimeReadiness swagger:route GET /runtime/readiness runtime getRuntimeReadiness
Readiness probe ¶
Check pod readiness probe
func NewGetRuntimeReadiness ¶
func NewGetRuntimeReadiness(ctx *middleware.Context, handler GetRuntimeReadinessHandler) *GetRuntimeReadiness
NewGetRuntimeReadiness creates a new http.Handler for the get runtime readiness operation
func (*GetRuntimeReadiness) ServeHTTP ¶
func (o *GetRuntimeReadiness) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetRuntimeReadinessHandler ¶
type GetRuntimeReadinessHandler interface {
Handle(GetRuntimeReadinessParams) middleware.Responder
}
GetRuntimeReadinessHandler interface for that can handle valid get runtime readiness params
type GetRuntimeReadinessHandlerFunc ¶
type GetRuntimeReadinessHandlerFunc func(GetRuntimeReadinessParams) middleware.Responder
GetRuntimeReadinessHandlerFunc turns a function with the right signature into a get runtime readiness handler
func (GetRuntimeReadinessHandlerFunc) Handle ¶
func (fn GetRuntimeReadinessHandlerFunc) Handle(params GetRuntimeReadinessParams) middleware.Responder
Handle executing the request and returning a response
type GetRuntimeReadinessInternalServerError ¶
type GetRuntimeReadinessInternalServerError struct { }
GetRuntimeReadinessInternalServerError Failed
swagger:response getRuntimeReadinessInternalServerError
func NewGetRuntimeReadinessInternalServerError ¶
func NewGetRuntimeReadinessInternalServerError() *GetRuntimeReadinessInternalServerError
NewGetRuntimeReadinessInternalServerError creates GetRuntimeReadinessInternalServerError with default headers values
func (*GetRuntimeReadinessInternalServerError) WriteResponse ¶
func (o *GetRuntimeReadinessInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetRuntimeReadinessOK ¶
type GetRuntimeReadinessOK struct { }
GetRuntimeReadinessOK Success
swagger:response getRuntimeReadinessOK
func NewGetRuntimeReadinessOK ¶
func NewGetRuntimeReadinessOK() *GetRuntimeReadinessOK
NewGetRuntimeReadinessOK creates GetRuntimeReadinessOK with default headers values
func (*GetRuntimeReadinessOK) WriteResponse ¶
func (o *GetRuntimeReadinessOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetRuntimeReadinessParams ¶
type GetRuntimeReadinessParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` }
GetRuntimeReadinessParams contains all the bound params for the get runtime readiness operation typically these are obtained from a http.Request
swagger:parameters GetRuntimeReadiness
func NewGetRuntimeReadinessParams ¶
func NewGetRuntimeReadinessParams() GetRuntimeReadinessParams
NewGetRuntimeReadinessParams creates a new GetRuntimeReadinessParams object
There are no default values defined in the spec.
func (*GetRuntimeReadinessParams) BindRequest ¶
func (o *GetRuntimeReadinessParams) 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.
To ensure default values, the struct must have been initialized with NewGetRuntimeReadinessParams() beforehand.
type GetRuntimeReadinessURL ¶
type GetRuntimeReadinessURL struct {
// contains filtered or unexported fields
}
GetRuntimeReadinessURL generates an URL for the get runtime readiness operation
func (*GetRuntimeReadinessURL) Build ¶
func (o *GetRuntimeReadinessURL) Build() (*url.URL, error)
Build a url path and query string
func (*GetRuntimeReadinessURL) BuildFull ¶
func (o *GetRuntimeReadinessURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*GetRuntimeReadinessURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*GetRuntimeReadinessURL) SetBasePath ¶
func (o *GetRuntimeReadinessURL) 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 (*GetRuntimeReadinessURL) String ¶
func (o *GetRuntimeReadinessURL) String() string
String returns the string representation of the path with query string
func (*GetRuntimeReadinessURL) StringFull ¶
func (o *GetRuntimeReadinessURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*GetRuntimeReadinessURL) WithBasePath ¶
func (o *GetRuntimeReadinessURL) WithBasePath(bp string) *GetRuntimeReadinessURL
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 GetRuntimeStartup ¶
type GetRuntimeStartup struct { Context *middleware.Context Handler GetRuntimeStartupHandler }
GetRuntimeStartup swagger:route GET /runtime/startup runtime getRuntimeStartup
Startup probe ¶
Check pod startup probe
func NewGetRuntimeStartup ¶
func NewGetRuntimeStartup(ctx *middleware.Context, handler GetRuntimeStartupHandler) *GetRuntimeStartup
NewGetRuntimeStartup creates a new http.Handler for the get runtime startup operation
func (*GetRuntimeStartup) ServeHTTP ¶
func (o *GetRuntimeStartup) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetRuntimeStartupHandler ¶
type GetRuntimeStartupHandler interface {
Handle(GetRuntimeStartupParams) middleware.Responder
}
GetRuntimeStartupHandler interface for that can handle valid get runtime startup params
type GetRuntimeStartupHandlerFunc ¶
type GetRuntimeStartupHandlerFunc func(GetRuntimeStartupParams) middleware.Responder
GetRuntimeStartupHandlerFunc turns a function with the right signature into a get runtime startup handler
func (GetRuntimeStartupHandlerFunc) Handle ¶
func (fn GetRuntimeStartupHandlerFunc) Handle(params GetRuntimeStartupParams) middleware.Responder
Handle executing the request and returning a response
type GetRuntimeStartupInternalServerError ¶
type GetRuntimeStartupInternalServerError struct { }
GetRuntimeStartupInternalServerError Failed
swagger:response getRuntimeStartupInternalServerError
func NewGetRuntimeStartupInternalServerError ¶
func NewGetRuntimeStartupInternalServerError() *GetRuntimeStartupInternalServerError
NewGetRuntimeStartupInternalServerError creates GetRuntimeStartupInternalServerError with default headers values
func (*GetRuntimeStartupInternalServerError) WriteResponse ¶
func (o *GetRuntimeStartupInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetRuntimeStartupOK ¶
type GetRuntimeStartupOK struct { }
GetRuntimeStartupOK Success
swagger:response getRuntimeStartupOK
func NewGetRuntimeStartupOK ¶
func NewGetRuntimeStartupOK() *GetRuntimeStartupOK
NewGetRuntimeStartupOK creates GetRuntimeStartupOK with default headers values
func (*GetRuntimeStartupOK) WriteResponse ¶
func (o *GetRuntimeStartupOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetRuntimeStartupParams ¶
GetRuntimeStartupParams contains all the bound params for the get runtime startup operation typically these are obtained from a http.Request
swagger:parameters GetRuntimeStartup
func NewGetRuntimeStartupParams ¶
func NewGetRuntimeStartupParams() GetRuntimeStartupParams
NewGetRuntimeStartupParams creates a new GetRuntimeStartupParams object
There are no default values defined in the spec.
func (*GetRuntimeStartupParams) BindRequest ¶
func (o *GetRuntimeStartupParams) 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.
To ensure default values, the struct must have been initialized with NewGetRuntimeStartupParams() beforehand.
type GetRuntimeStartupURL ¶
type GetRuntimeStartupURL struct {
// contains filtered or unexported fields
}
GetRuntimeStartupURL generates an URL for the get runtime startup operation
func (*GetRuntimeStartupURL) Build ¶
func (o *GetRuntimeStartupURL) Build() (*url.URL, error)
Build a url path and query string
func (*GetRuntimeStartupURL) BuildFull ¶
func (o *GetRuntimeStartupURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*GetRuntimeStartupURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*GetRuntimeStartupURL) SetBasePath ¶
func (o *GetRuntimeStartupURL) 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 (*GetRuntimeStartupURL) String ¶
func (o *GetRuntimeStartupURL) String() string
String returns the string representation of the path with query string
func (*GetRuntimeStartupURL) StringFull ¶
func (o *GetRuntimeStartupURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*GetRuntimeStartupURL) WithBasePath ¶
func (o *GetRuntimeStartupURL) WithBasePath(bp string) *GetRuntimeStartupURL
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
Source Files ¶
- get_runtime_liveness.go
- get_runtime_liveness_parameters.go
- get_runtime_liveness_responses.go
- get_runtime_liveness_urlbuilder.go
- get_runtime_readiness.go
- get_runtime_readiness_parameters.go
- get_runtime_readiness_responses.go
- get_runtime_readiness_urlbuilder.go
- get_runtime_startup.go
- get_runtime_startup_parameters.go
- get_runtime_startup_responses.go
- get_runtime_startup_urlbuilder.go