daemon

package
v0.0.0-...-c34bea4 Latest Latest
Warning

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

Go to latest
Published: May 20, 2022 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const GetClusterNodesOKCode int = 200

GetClusterNodesOKCode is the HTTP code returned for type GetClusterNodesOK

View Source
const GetConfigOKCode int = 200

GetConfigOKCode is the HTTP code returned for type GetConfigOK

View Source
const GetDebuginfoFailureCode int = 500

GetDebuginfoFailureCode is the HTTP code returned for type GetDebuginfoFailure

View Source
const GetDebuginfoOKCode int = 200

GetDebuginfoOKCode is the HTTP code returned for type GetDebuginfoOK

View Source
const GetHealthzOKCode int = 200

GetHealthzOKCode is the HTTP code returned for type GetHealthzOK

View Source
const GetMapNameNotFoundCode int = 404

GetMapNameNotFoundCode is the HTTP code returned for type GetMapNameNotFound

View Source
const GetMapNameOKCode int = 200

GetMapNameOKCode is the HTTP code returned for type GetMapNameOK

View Source
const GetMapOKCode int = 200

GetMapOKCode is the HTTP code returned for type GetMapOK

View Source
const PatchConfigBadRequestCode int = 400

PatchConfigBadRequestCode is the HTTP code returned for type PatchConfigBadRequest

View Source
const PatchConfigFailureCode int = 500

PatchConfigFailureCode is the HTTP code returned for type PatchConfigFailure

View Source
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

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

func NewGetClusterNodes(ctx *middleware.Context, handler GetClusterNodesHandler) *GetClusterNodes

NewGetClusterNodes creates a new http.Handler for the get cluster nodes operation

func (*GetClusterNodes) ServeHTTP

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

type GetClusterNodesHandler

type GetClusterNodesHandler interface {
	Handle(GetClusterNodesParams) middleware.Responder
}

GetClusterNodesHandler interface for that can handle valid get cluster nodes params

type GetClusterNodesHandlerFunc

type GetClusterNodesHandlerFunc func(GetClusterNodesParams) middleware.Responder

GetClusterNodesHandlerFunc turns a function with the right signature into a get cluster nodes handler

func (GetClusterNodesHandlerFunc) Handle

Handle executing the request and returning a response

type GetClusterNodesOK

type GetClusterNodesOK struct {

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

GetClusterNodesOK Success

swagger:response getClusterNodesOK

func NewGetClusterNodesOK

func NewGetClusterNodesOK() *GetClusterNodesOK

NewGetClusterNodesOK creates GetClusterNodesOK with default headers values

func (*GetClusterNodesOK) SetPayload

func (o *GetClusterNodesOK) SetPayload(payload *models.ClusterNodeStatus)

SetPayload sets the payload to the get cluster nodes o k response

func (*GetClusterNodesOK) WithPayload

func (o *GetClusterNodesOK) WithPayload(payload *models.ClusterNodeStatus) *GetClusterNodesOK

WithPayload adds the payload to the get cluster nodes o k response

func (*GetClusterNodesOK) WriteResponse

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

WriteResponse to the client

type GetClusterNodesParams

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

func NewGetClusterNodesParams() GetClusterNodesParams

NewGetClusterNodesParams creates a new GetClusterNodesParams object no default values defined in spec.

func (*GetClusterNodesParams) BindRequest

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

func (*GetConfig) ServeHTTP

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

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

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

type GetConfigParams struct {

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

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

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

func NewGetDebuginfo(ctx *middleware.Context, handler GetDebuginfoHandler) *GetDebuginfo

NewGetDebuginfo creates a new http.Handler for the get debuginfo operation

func (*GetDebuginfo) ServeHTTP

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

type GetDebuginfoFailure

type GetDebuginfoFailure struct {

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

GetDebuginfoFailure DebugInfo get failed

swagger:response getDebuginfoFailure

func NewGetDebuginfoFailure

func NewGetDebuginfoFailure() *GetDebuginfoFailure

NewGetDebuginfoFailure creates GetDebuginfoFailure with default headers values

func (*GetDebuginfoFailure) SetPayload

func (o *GetDebuginfoFailure) SetPayload(payload models.Error)

SetPayload sets the payload to the get debuginfo failure response

func (*GetDebuginfoFailure) WithPayload

func (o *GetDebuginfoFailure) WithPayload(payload models.Error) *GetDebuginfoFailure

WithPayload adds the payload to the get debuginfo failure response

func (*GetDebuginfoFailure) WriteResponse

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

WriteResponse to the client

type GetDebuginfoHandler

type GetDebuginfoHandler interface {
	Handle(GetDebuginfoParams) middleware.Responder
}

GetDebuginfoHandler interface for that can handle valid get debuginfo params

type GetDebuginfoHandlerFunc

type GetDebuginfoHandlerFunc func(GetDebuginfoParams) middleware.Responder

GetDebuginfoHandlerFunc turns a function with the right signature into a get debuginfo handler

func (GetDebuginfoHandlerFunc) Handle

Handle executing the request and returning a response

type GetDebuginfoOK

type GetDebuginfoOK struct {

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

GetDebuginfoOK Success

swagger:response getDebuginfoOK

func NewGetDebuginfoOK

func NewGetDebuginfoOK() *GetDebuginfoOK

NewGetDebuginfoOK creates GetDebuginfoOK with default headers values

func (*GetDebuginfoOK) SetPayload

func (o *GetDebuginfoOK) SetPayload(payload *models.DebugInfo)

SetPayload sets the payload to the get debuginfo o k response

func (*GetDebuginfoOK) WithPayload

func (o *GetDebuginfoOK) WithPayload(payload *models.DebugInfo) *GetDebuginfoOK

WithPayload adds the payload to the get debuginfo o k response

func (*GetDebuginfoOK) WriteResponse

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

WriteResponse to the client

type GetDebuginfoParams

type GetDebuginfoParams struct {

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

GetDebuginfoParams contains all the bound params for the get debuginfo operation typically these are obtained from a http.Request

swagger:parameters GetDebuginfo

func NewGetDebuginfoParams

func NewGetDebuginfoParams() GetDebuginfoParams

NewGetDebuginfoParams creates a new GetDebuginfoParams object no default values defined in spec.

func (*GetDebuginfoParams) BindRequest

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

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

type GetMap struct {
	Context *middleware.Context
	Handler GetMapHandler
}

GetMap swagger:route GET /map daemon getMap

List all open maps

func NewGetMap

func NewGetMap(ctx *middleware.Context, handler GetMapHandler) *GetMap

NewGetMap creates a new http.Handler for the get map operation

func (*GetMap) ServeHTTP

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

type GetMapHandler

type GetMapHandler interface {
	Handle(GetMapParams) middleware.Responder
}

GetMapHandler interface for that can handle valid get map params

type GetMapHandlerFunc

type GetMapHandlerFunc func(GetMapParams) middleware.Responder

GetMapHandlerFunc turns a function with the right signature into a get map handler

func (GetMapHandlerFunc) Handle

Handle executing the request and returning a response

type GetMapName

type GetMapName struct {
	Context *middleware.Context
	Handler GetMapNameHandler
}

GetMapName swagger:route GET /map/{name} daemon getMapName

Retrieve contents of BPF map

func NewGetMapName

func NewGetMapName(ctx *middleware.Context, handler GetMapNameHandler) *GetMapName

NewGetMapName creates a new http.Handler for the get map name operation

func (*GetMapName) ServeHTTP

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

type GetMapNameHandler

type GetMapNameHandler interface {
	Handle(GetMapNameParams) middleware.Responder
}

GetMapNameHandler interface for that can handle valid get map name params

type GetMapNameHandlerFunc

type GetMapNameHandlerFunc func(GetMapNameParams) middleware.Responder

GetMapNameHandlerFunc turns a function with the right signature into a get map name handler

func (GetMapNameHandlerFunc) Handle

Handle executing the request and returning a response

type GetMapNameNotFound

type GetMapNameNotFound struct {
}

GetMapNameNotFound Map not found

swagger:response getMapNameNotFound

func NewGetMapNameNotFound

func NewGetMapNameNotFound() *GetMapNameNotFound

NewGetMapNameNotFound creates GetMapNameNotFound with default headers values

func (*GetMapNameNotFound) WriteResponse

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

WriteResponse to the client

type GetMapNameOK

type GetMapNameOK struct {

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

GetMapNameOK Success

swagger:response getMapNameOK

func NewGetMapNameOK

func NewGetMapNameOK() *GetMapNameOK

NewGetMapNameOK creates GetMapNameOK with default headers values

func (*GetMapNameOK) SetPayload

func (o *GetMapNameOK) SetPayload(payload *models.BPFMap)

SetPayload sets the payload to the get map name o k response

func (*GetMapNameOK) WithPayload

func (o *GetMapNameOK) WithPayload(payload *models.BPFMap) *GetMapNameOK

WithPayload adds the payload to the get map name o k response

func (*GetMapNameOK) WriteResponse

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

WriteResponse to the client

type GetMapNameParams

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

func NewGetMapNameParams() GetMapNameParams

NewGetMapNameParams creates a new GetMapNameParams object no default values defined in spec.

func (*GetMapNameParams) BindRequest

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

type GetMapOK struct {

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

GetMapOK Success

swagger:response getMapOK

func NewGetMapOK

func NewGetMapOK() *GetMapOK

NewGetMapOK creates GetMapOK with default headers values

func (*GetMapOK) SetPayload

func (o *GetMapOK) SetPayload(payload *models.BPFMapList)

SetPayload sets the payload to the get map o k response

func (*GetMapOK) WithPayload

func (o *GetMapOK) WithPayload(payload *models.BPFMapList) *GetMapOK

WithPayload adds the payload to the get map o k response

func (*GetMapOK) WriteResponse

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

WriteResponse to the client

type GetMapParams

type GetMapParams struct {

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

GetMapParams contains all the bound params for the get map operation typically these are obtained from a http.Request

swagger:parameters GetMap

func NewGetMapParams

func NewGetMapParams() GetMapParams

NewGetMapParams creates a new GetMapParams object no default values defined in spec.

func (*GetMapParams) BindRequest

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

type PatchConfigBadRequest struct {

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

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

type PatchConfigFailure struct {

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

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

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.

Jump to

Keyboard shortcuts

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