Documentation ¶
Index ¶
- Constants
- type GetClusterNodes
- type GetClusterNodesHandler
- type GetClusterNodesHandlerFunc
- type GetClusterNodesOK
- type GetClusterNodesParams
- type GetConfig
- type GetConfigHandler
- type GetConfigHandlerFunc
- type GetConfigOK
- type GetConfigParams
- type GetDebuginfo
- type GetDebuginfoFailure
- type GetDebuginfoHandler
- type GetDebuginfoHandlerFunc
- type GetDebuginfoOK
- type GetDebuginfoParams
- type GetHealthz
- type GetHealthzHandler
- type GetHealthzHandlerFunc
- type GetHealthzOK
- type GetHealthzParams
- type GetMap
- type GetMapHandler
- type GetMapHandlerFunc
- type GetMapName
- type GetMapNameHandler
- type GetMapNameHandlerFunc
- type GetMapNameNotFound
- type GetMapNameOK
- type GetMapNameParams
- type GetMapOK
- type GetMapParams
- type PatchConfig
- type PatchConfigBadRequest
- type PatchConfigFailure
- type PatchConfigHandler
- type PatchConfigHandlerFunc
- type PatchConfigOK
- type PatchConfigParams
Constants ¶
const GetClusterNodesOKCode int = 200
GetClusterNodesOKCode is the HTTP code returned for type GetClusterNodesOK
const GetConfigOKCode int = 200
GetConfigOKCode is the HTTP code returned for type GetConfigOK
const GetDebuginfoFailureCode int = 500
GetDebuginfoFailureCode is the HTTP code returned for type GetDebuginfoFailure
const GetDebuginfoOKCode int = 200
GetDebuginfoOKCode is the HTTP code returned for type GetDebuginfoOK
const GetHealthzOKCode int = 200
GetHealthzOKCode is the HTTP code returned for type GetHealthzOK
const GetMapNameNotFoundCode int = 404
GetMapNameNotFoundCode is the HTTP code returned for type GetMapNameNotFound
const GetMapNameOKCode int = 200
GetMapNameOKCode is the HTTP code returned for type GetMapNameOK
const GetMapOKCode int = 200
GetMapOKCode is the HTTP code returned for type GetMapOK
const PatchConfigBadRequestCode int = 400
PatchConfigBadRequestCode is the HTTP code returned for type PatchConfigBadRequest
const PatchConfigFailureCode int = 500
PatchConfigFailureCode is the HTTP code returned for type PatchConfigFailure
const PatchConfigOKCode int = 200
PatchConfigOKCode is the HTTP code returned for type PatchConfigOK
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetClusterNodes ¶ added in v0.15.7
type GetClusterNodes struct { Context *middleware.Context Handler GetClusterNodesHandler }
GetClusterNodes swagger:route GET /cluster/nodes daemon getClusterNodes
Get nodes information stored in the cilium-agent
func NewGetClusterNodes ¶ added in v0.15.7
func NewGetClusterNodes(ctx *middleware.Context, handler GetClusterNodesHandler) *GetClusterNodes
NewGetClusterNodes creates a new http.Handler for the get cluster nodes operation
func (*GetClusterNodes) ServeHTTP ¶ added in v0.15.7
func (o *GetClusterNodes) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetClusterNodesHandler ¶ added in v0.15.7
type GetClusterNodesHandler interface {
Handle(GetClusterNodesParams) middleware.Responder
}
GetClusterNodesHandler interface for that can handle valid get cluster nodes params
type GetClusterNodesHandlerFunc ¶ added in v0.15.7
type GetClusterNodesHandlerFunc func(GetClusterNodesParams) middleware.Responder
GetClusterNodesHandlerFunc turns a function with the right signature into a get cluster nodes handler
func (GetClusterNodesHandlerFunc) Handle ¶ added in v0.15.7
func (fn GetClusterNodesHandlerFunc) Handle(params GetClusterNodesParams) middleware.Responder
Handle executing the request and returning a response
type GetClusterNodesOK ¶ added in v0.15.7
type GetClusterNodesOK struct { /* In: Body */ Payload *models.ClusterNodeStatus `json:"body,omitempty"` }
GetClusterNodesOK Success
swagger:response getClusterNodesOK
func NewGetClusterNodesOK ¶ added in v0.15.7
func NewGetClusterNodesOK() *GetClusterNodesOK
NewGetClusterNodesOK creates GetClusterNodesOK with default headers values
func (*GetClusterNodesOK) SetPayload ¶ added in v0.15.7
func (o *GetClusterNodesOK) SetPayload(payload *models.ClusterNodeStatus)
SetPayload sets the payload to the get cluster nodes o k response
func (*GetClusterNodesOK) WithPayload ¶ added in v0.15.7
func (o *GetClusterNodesOK) WithPayload(payload *models.ClusterNodeStatus) *GetClusterNodesOK
WithPayload adds the payload to the get cluster nodes o k response
func (*GetClusterNodesOK) WriteResponse ¶ added in v0.15.7
func (o *GetClusterNodesOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetClusterNodesParams ¶ added in v0.15.7
type GetClusterNodesParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*Client UUID should be used when the client wants to request a diff of nodes added and / or removed since the last time that client has made a request. In: header */ ClientID *int64 }
GetClusterNodesParams contains all the bound params for the get cluster nodes operation typically these are obtained from a http.Request
swagger:parameters GetClusterNodes
func NewGetClusterNodesParams ¶ added in v0.15.7
func NewGetClusterNodesParams() GetClusterNodesParams
NewGetClusterNodesParams creates a new GetClusterNodesParams object no default values defined in spec.
func (*GetClusterNodesParams) BindRequest ¶ added in v0.15.7
func (o *GetClusterNodesParams) 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 NewGetClusterNodesParams() beforehand.
type GetConfig ¶
type GetConfig struct { Context *middleware.Context Handler GetConfigHandler }
GetConfig swagger:route GET /config daemon getConfig
Get configuration of Cilium daemon ¶
Returns the configuration of the Cilium daemon.
func NewGetConfig ¶
func NewGetConfig(ctx *middleware.Context, handler GetConfigHandler) *GetConfig
NewGetConfig creates a new http.Handler for the get config operation
type GetConfigHandler ¶
type GetConfigHandler interface {
Handle(GetConfigParams) middleware.Responder
}
GetConfigHandler interface for that can handle valid get config params
type GetConfigHandlerFunc ¶
type GetConfigHandlerFunc func(GetConfigParams) middleware.Responder
GetConfigHandlerFunc turns a function with the right signature into a get config handler
func (GetConfigHandlerFunc) Handle ¶
func (fn GetConfigHandlerFunc) Handle(params GetConfigParams) middleware.Responder
Handle executing the request and returning a response
type GetConfigOK ¶
type GetConfigOK struct { /* In: Body */ Payload *models.DaemonConfiguration `json:"body,omitempty"` }
GetConfigOK Success
swagger:response getConfigOK
func NewGetConfigOK ¶
func NewGetConfigOK() *GetConfigOK
NewGetConfigOK creates GetConfigOK with default headers values
func (*GetConfigOK) SetPayload ¶
func (o *GetConfigOK) SetPayload(payload *models.DaemonConfiguration)
SetPayload sets the payload to the get config o k response
func (*GetConfigOK) WithPayload ¶
func (o *GetConfigOK) WithPayload(payload *models.DaemonConfiguration) *GetConfigOK
WithPayload adds the payload to the get config o k response
func (*GetConfigOK) WriteResponse ¶
func (o *GetConfigOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetConfigParams ¶
GetConfigParams contains all the bound params for the get config operation typically these are obtained from a http.Request
swagger:parameters GetConfig
func NewGetConfigParams ¶
func NewGetConfigParams() GetConfigParams
NewGetConfigParams creates a new GetConfigParams object no default values defined in spec.
func (*GetConfigParams) BindRequest ¶
func (o *GetConfigParams) 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 NewGetConfigParams() beforehand.
type GetDebuginfo ¶ added in v0.15.7
type GetDebuginfo struct { Context *middleware.Context Handler GetDebuginfoHandler }
GetDebuginfo swagger:route GET /debuginfo daemon getDebuginfo
Retrieve information about the agent and evironment for debugging
func NewGetDebuginfo ¶ added in v0.15.7
func NewGetDebuginfo(ctx *middleware.Context, handler GetDebuginfoHandler) *GetDebuginfo
NewGetDebuginfo creates a new http.Handler for the get debuginfo operation
func (*GetDebuginfo) ServeHTTP ¶ added in v0.15.7
func (o *GetDebuginfo) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetDebuginfoFailure ¶ added in v0.15.7
GetDebuginfoFailure DebugInfo get failed
swagger:response getDebuginfoFailure
func NewGetDebuginfoFailure ¶ added in v0.15.7
func NewGetDebuginfoFailure() *GetDebuginfoFailure
NewGetDebuginfoFailure creates GetDebuginfoFailure with default headers values
func (*GetDebuginfoFailure) SetPayload ¶ added in v0.15.7
func (o *GetDebuginfoFailure) SetPayload(payload models.Error)
SetPayload sets the payload to the get debuginfo failure response
func (*GetDebuginfoFailure) WithPayload ¶ added in v0.15.7
func (o *GetDebuginfoFailure) WithPayload(payload models.Error) *GetDebuginfoFailure
WithPayload adds the payload to the get debuginfo failure response
func (*GetDebuginfoFailure) WriteResponse ¶ added in v0.15.7
func (o *GetDebuginfoFailure) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetDebuginfoHandler ¶ added in v0.15.7
type GetDebuginfoHandler interface {
Handle(GetDebuginfoParams) middleware.Responder
}
GetDebuginfoHandler interface for that can handle valid get debuginfo params
type GetDebuginfoHandlerFunc ¶ added in v0.15.7
type GetDebuginfoHandlerFunc func(GetDebuginfoParams) middleware.Responder
GetDebuginfoHandlerFunc turns a function with the right signature into a get debuginfo handler
func (GetDebuginfoHandlerFunc) Handle ¶ added in v0.15.7
func (fn GetDebuginfoHandlerFunc) Handle(params GetDebuginfoParams) middleware.Responder
Handle executing the request and returning a response
type GetDebuginfoOK ¶ added in v0.15.7
GetDebuginfoOK Success
swagger:response getDebuginfoOK
func NewGetDebuginfoOK ¶ added in v0.15.7
func NewGetDebuginfoOK() *GetDebuginfoOK
NewGetDebuginfoOK creates GetDebuginfoOK with default headers values
func (*GetDebuginfoOK) SetPayload ¶ added in v0.15.7
func (o *GetDebuginfoOK) SetPayload(payload *models.DebugInfo)
SetPayload sets the payload to the get debuginfo o k response
func (*GetDebuginfoOK) WithPayload ¶ added in v0.15.7
func (o *GetDebuginfoOK) WithPayload(payload *models.DebugInfo) *GetDebuginfoOK
WithPayload adds the payload to the get debuginfo o k response
func (*GetDebuginfoOK) WriteResponse ¶ added in v0.15.7
func (o *GetDebuginfoOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetDebuginfoParams ¶ added in v0.15.7
GetDebuginfoParams contains all the bound params for the get debuginfo operation typically these are obtained from a http.Request
swagger:parameters GetDebuginfo
func NewGetDebuginfoParams ¶ added in v0.15.7
func NewGetDebuginfoParams() GetDebuginfoParams
NewGetDebuginfoParams creates a new GetDebuginfoParams object no default values defined in spec.
func (*GetDebuginfoParams) BindRequest ¶ added in v0.15.7
func (o *GetDebuginfoParams) 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 NewGetDebuginfoParams() beforehand.
type GetHealthz ¶
type GetHealthz struct { Context *middleware.Context Handler GetHealthzHandler }
GetHealthz swagger:route GET /healthz daemon getHealthz
Get health of Cilium daemon ¶
Returns health and status information of the Cilium daemon and related components such as the local container runtime, connected datastore, Kubernetes integration and Hubble.
func NewGetHealthz ¶
func NewGetHealthz(ctx *middleware.Context, handler GetHealthzHandler) *GetHealthz
NewGetHealthz creates a new http.Handler for the get healthz operation
func (*GetHealthz) ServeHTTP ¶
func (o *GetHealthz) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetHealthzHandler ¶
type GetHealthzHandler interface {
Handle(GetHealthzParams) middleware.Responder
}
GetHealthzHandler interface for that can handle valid get healthz params
type GetHealthzHandlerFunc ¶
type GetHealthzHandlerFunc func(GetHealthzParams) middleware.Responder
GetHealthzHandlerFunc turns a function with the right signature into a get healthz handler
func (GetHealthzHandlerFunc) Handle ¶
func (fn GetHealthzHandlerFunc) Handle(params GetHealthzParams) middleware.Responder
Handle executing the request and returning a response
type GetHealthzOK ¶
type GetHealthzOK struct { /* In: Body */ Payload *models.StatusResponse `json:"body,omitempty"` }
GetHealthzOK Success
swagger:response getHealthzOK
func NewGetHealthzOK ¶
func NewGetHealthzOK() *GetHealthzOK
NewGetHealthzOK creates GetHealthzOK with default headers values
func (*GetHealthzOK) SetPayload ¶
func (o *GetHealthzOK) SetPayload(payload *models.StatusResponse)
SetPayload sets the payload to the get healthz o k response
func (*GetHealthzOK) WithPayload ¶
func (o *GetHealthzOK) WithPayload(payload *models.StatusResponse) *GetHealthzOK
WithPayload adds the payload to the get healthz o k response
func (*GetHealthzOK) WriteResponse ¶
func (o *GetHealthzOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetHealthzParams ¶
type GetHealthzParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*Brief will return a brief representation of the Cilium status. In: header */ Brief *bool }
GetHealthzParams contains all the bound params for the get healthz operation typically these are obtained from a http.Request
swagger:parameters GetHealthz
func NewGetHealthzParams ¶
func NewGetHealthzParams() GetHealthzParams
NewGetHealthzParams creates a new GetHealthzParams object no default values defined in spec.
func (*GetHealthzParams) BindRequest ¶
func (o *GetHealthzParams) 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 NewGetHealthzParams() beforehand.
type GetMap ¶ added in v0.15.7
type GetMap struct { Context *middleware.Context Handler GetMapHandler }
GetMap swagger:route GET /map daemon getMap
List all open maps
func NewGetMap ¶ added in v0.15.7
func NewGetMap(ctx *middleware.Context, handler GetMapHandler) *GetMap
NewGetMap creates a new http.Handler for the get map operation
type GetMapHandler ¶ added in v0.15.7
type GetMapHandler interface {
Handle(GetMapParams) middleware.Responder
}
GetMapHandler interface for that can handle valid get map params
type GetMapHandlerFunc ¶ added in v0.15.7
type GetMapHandlerFunc func(GetMapParams) middleware.Responder
GetMapHandlerFunc turns a function with the right signature into a get map handler
func (GetMapHandlerFunc) Handle ¶ added in v0.15.7
func (fn GetMapHandlerFunc) Handle(params GetMapParams) middleware.Responder
Handle executing the request and returning a response
type GetMapName ¶ added in v0.15.7
type GetMapName struct { Context *middleware.Context Handler GetMapNameHandler }
GetMapName swagger:route GET /map/{name} daemon getMapName
Retrieve contents of BPF map
func NewGetMapName ¶ added in v0.15.7
func NewGetMapName(ctx *middleware.Context, handler GetMapNameHandler) *GetMapName
NewGetMapName creates a new http.Handler for the get map name operation
func (*GetMapName) ServeHTTP ¶ added in v0.15.7
func (o *GetMapName) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetMapNameHandler ¶ added in v0.15.7
type GetMapNameHandler interface {
Handle(GetMapNameParams) middleware.Responder
}
GetMapNameHandler interface for that can handle valid get map name params
type GetMapNameHandlerFunc ¶ added in v0.15.7
type GetMapNameHandlerFunc func(GetMapNameParams) middleware.Responder
GetMapNameHandlerFunc turns a function with the right signature into a get map name handler
func (GetMapNameHandlerFunc) Handle ¶ added in v0.15.7
func (fn GetMapNameHandlerFunc) Handle(params GetMapNameParams) middleware.Responder
Handle executing the request and returning a response
type GetMapNameNotFound ¶ added in v0.15.7
type GetMapNameNotFound struct { }
GetMapNameNotFound Map not found
swagger:response getMapNameNotFound
func NewGetMapNameNotFound ¶ added in v0.15.7
func NewGetMapNameNotFound() *GetMapNameNotFound
NewGetMapNameNotFound creates GetMapNameNotFound with default headers values
func (*GetMapNameNotFound) WriteResponse ¶ added in v0.15.7
func (o *GetMapNameNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetMapNameOK ¶ added in v0.15.7
GetMapNameOK Success
swagger:response getMapNameOK
func NewGetMapNameOK ¶ added in v0.15.7
func NewGetMapNameOK() *GetMapNameOK
NewGetMapNameOK creates GetMapNameOK with default headers values
func (*GetMapNameOK) SetPayload ¶ added in v0.15.7
func (o *GetMapNameOK) SetPayload(payload *models.BPFMap)
SetPayload sets the payload to the get map name o k response
func (*GetMapNameOK) WithPayload ¶ added in v0.15.7
func (o *GetMapNameOK) WithPayload(payload *models.BPFMap) *GetMapNameOK
WithPayload adds the payload to the get map name o k response
func (*GetMapNameOK) WriteResponse ¶ added in v0.15.7
func (o *GetMapNameOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetMapNameParams ¶ added in v0.15.7
type GetMapNameParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /*Name of map Required: true In: path */ Name string }
GetMapNameParams contains all the bound params for the get map name operation typically these are obtained from a http.Request
swagger:parameters GetMapName
func NewGetMapNameParams ¶ added in v0.15.7
func NewGetMapNameParams() GetMapNameParams
NewGetMapNameParams creates a new GetMapNameParams object no default values defined in spec.
func (*GetMapNameParams) BindRequest ¶ added in v0.15.7
func (o *GetMapNameParams) 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 NewGetMapNameParams() beforehand.
type GetMapOK ¶ added in v0.15.7
type GetMapOK struct { /* In: Body */ Payload *models.BPFMapList `json:"body,omitempty"` }
GetMapOK Success
swagger:response getMapOK
func NewGetMapOK ¶ added in v0.15.7
func NewGetMapOK() *GetMapOK
NewGetMapOK creates GetMapOK with default headers values
func (*GetMapOK) SetPayload ¶ added in v0.15.7
func (o *GetMapOK) SetPayload(payload *models.BPFMapList)
SetPayload sets the payload to the get map o k response
func (*GetMapOK) WithPayload ¶ added in v0.15.7
func (o *GetMapOK) WithPayload(payload *models.BPFMapList) *GetMapOK
WithPayload adds the payload to the get map o k response
func (*GetMapOK) WriteResponse ¶ added in v0.15.7
func (o *GetMapOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetMapParams ¶ added in v0.15.7
GetMapParams contains all the bound params for the get map operation typically these are obtained from a http.Request
swagger:parameters GetMap
func NewGetMapParams ¶ added in v0.15.7
func NewGetMapParams() GetMapParams
NewGetMapParams creates a new GetMapParams object no default values defined in spec.
func (*GetMapParams) BindRequest ¶ added in v0.15.7
func (o *GetMapParams) 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 NewGetMapParams() beforehand.
type PatchConfig ¶
type PatchConfig struct { Context *middleware.Context Handler PatchConfigHandler }
PatchConfig swagger:route PATCH /config daemon patchConfig
Modify daemon configuration ¶
Updates the daemon configuration by applying the provided ConfigurationMap and regenerates & recompiles all required datapath components.
func NewPatchConfig ¶
func NewPatchConfig(ctx *middleware.Context, handler PatchConfigHandler) *PatchConfig
NewPatchConfig creates a new http.Handler for the patch config operation
func (*PatchConfig) ServeHTTP ¶
func (o *PatchConfig) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type PatchConfigBadRequest ¶
PatchConfigBadRequest Bad configuration parameters
swagger:response patchConfigBadRequest
func NewPatchConfigBadRequest ¶
func NewPatchConfigBadRequest() *PatchConfigBadRequest
NewPatchConfigBadRequest creates PatchConfigBadRequest with default headers values
func (*PatchConfigBadRequest) SetPayload ¶
func (o *PatchConfigBadRequest) SetPayload(payload models.Error)
SetPayload sets the payload to the patch config bad request response
func (*PatchConfigBadRequest) WithPayload ¶
func (o *PatchConfigBadRequest) WithPayload(payload models.Error) *PatchConfigBadRequest
WithPayload adds the payload to the patch config bad request response
func (*PatchConfigBadRequest) WriteResponse ¶
func (o *PatchConfigBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PatchConfigFailure ¶
PatchConfigFailure Recompilation failed
swagger:response patchConfigFailure
func NewPatchConfigFailure ¶
func NewPatchConfigFailure() *PatchConfigFailure
NewPatchConfigFailure creates PatchConfigFailure with default headers values
func (*PatchConfigFailure) SetPayload ¶
func (o *PatchConfigFailure) SetPayload(payload models.Error)
SetPayload sets the payload to the patch config failure response
func (*PatchConfigFailure) WithPayload ¶
func (o *PatchConfigFailure) WithPayload(payload models.Error) *PatchConfigFailure
WithPayload adds the payload to the patch config failure response
func (*PatchConfigFailure) WriteResponse ¶
func (o *PatchConfigFailure) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PatchConfigHandler ¶
type PatchConfigHandler interface {
Handle(PatchConfigParams) middleware.Responder
}
PatchConfigHandler interface for that can handle valid patch config params
type PatchConfigHandlerFunc ¶
type PatchConfigHandlerFunc func(PatchConfigParams) middleware.Responder
PatchConfigHandlerFunc turns a function with the right signature into a patch config handler
func (PatchConfigHandlerFunc) Handle ¶
func (fn PatchConfigHandlerFunc) Handle(params PatchConfigParams) middleware.Responder
Handle executing the request and returning a response
type PatchConfigOK ¶
type PatchConfigOK struct { }
PatchConfigOK Success
swagger:response patchConfigOK
func NewPatchConfigOK ¶
func NewPatchConfigOK() *PatchConfigOK
NewPatchConfigOK creates PatchConfigOK with default headers values
func (*PatchConfigOK) WriteResponse ¶
func (o *PatchConfigOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type PatchConfigParams ¶
type PatchConfigParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /* Required: true In: body */ Configuration *models.DaemonConfigurationSpec }
PatchConfigParams contains all the bound params for the patch config operation typically these are obtained from a http.Request
swagger:parameters PatchConfig
func NewPatchConfigParams ¶
func NewPatchConfigParams() PatchConfigParams
NewPatchConfigParams creates a new PatchConfigParams object no default values defined in spec.
func (*PatchConfigParams) BindRequest ¶
func (o *PatchConfigParams) 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 NewPatchConfigParams() beforehand.
Source Files ¶
- get_cluster_nodes.go
- get_cluster_nodes_parameters.go
- get_cluster_nodes_responses.go
- get_config.go
- get_config_parameters.go
- get_config_responses.go
- get_debuginfo.go
- get_debuginfo_parameters.go
- get_debuginfo_responses.go
- get_healthz.go
- get_healthz_parameters.go
- get_healthz_responses.go
- get_map.go
- get_map_name.go
- get_map_name_parameters.go
- get_map_name_responses.go
- get_map_parameters.go
- get_map_responses.go
- patch_config.go
- patch_config_parameters.go
- patch_config_responses.go