daemon

package
v0.0.0-...-9514e8a Latest Latest
Warning

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

Go to latest
Published: Jun 5, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for daemon API

func (*Client) GetCgroupDumpMetadata

func (a *Client) GetCgroupDumpMetadata(params *GetCgroupDumpMetadataParams, opts ...ClientOption) (*GetCgroupDumpMetadataOK, error)

GetCgroupDumpMetadata retrieves cgroup metadata for all pods

func (*Client) GetClusterNodes

func (a *Client) GetClusterNodes(params *GetClusterNodesParams, opts ...ClientOption) (*GetClusterNodesOK, error)

GetClusterNodes gets nodes information stored in the cilium agent

func (*Client) GetConfig

func (a *Client) GetConfig(params *GetConfigParams, opts ...ClientOption) (*GetConfigOK, error)

GetConfig gets configuration of cilium daemon

Returns the configuration of the Cilium daemon.

func (*Client) GetDebuginfo

func (a *Client) GetDebuginfo(params *GetDebuginfoParams, opts ...ClientOption) (*GetDebuginfoOK, error)

GetDebuginfo retrieves information about the agent and environment for debugging

func (*Client) GetHealth

func (a *Client) GetHealth(params *GetHealthParams, opts ...ClientOption) (*GetHealthOK, error)

GetHealth gets modules health of cilium daemon

Returns modules health and status information of the Cilium daemon.

func (*Client) GetHealthz

func (a *Client) GetHealthz(params *GetHealthzParams, opts ...ClientOption) (*GetHealthzOK, error)
GetHealthz gets 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 (*Client) GetMap

func (a *Client) GetMap(params *GetMapParams, opts ...ClientOption) (*GetMapOK, error)

GetMap lists all open maps

func (*Client) GetMapName

func (a *Client) GetMapName(params *GetMapNameParams, opts ...ClientOption) (*GetMapNameOK, error)

GetMapName retrieves contents of b p f map

func (*Client) GetMapNameEvents

func (a *Client) GetMapNameEvents(params *GetMapNameEventsParams, writer io.Writer, opts ...ClientOption) (*GetMapNameEventsOK, error)

GetMapNameEvents retrieves the recent event logs associated with this endpoint

func (*Client) GetNodeIds

func (a *Client) GetNodeIds(params *GetNodeIdsParams, opts ...ClientOption) (*GetNodeIdsOK, error)
GetNodeIds lists information about known node i ds

Retrieves a list of node IDs allocated by the agent and their

associated node IP addresses.

func (*Client) PatchConfig

func (a *Client) PatchConfig(params *PatchConfigParams, opts ...ClientOption) (*PatchConfigOK, error)
PatchConfig modifies daemon configuration

Updates the daemon configuration by applying the provided

ConfigurationMap and regenerates & recompiles all required datapath components.

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	GetCgroupDumpMetadata(params *GetCgroupDumpMetadataParams, opts ...ClientOption) (*GetCgroupDumpMetadataOK, error)

	GetClusterNodes(params *GetClusterNodesParams, opts ...ClientOption) (*GetClusterNodesOK, error)

	GetConfig(params *GetConfigParams, opts ...ClientOption) (*GetConfigOK, error)

	GetDebuginfo(params *GetDebuginfoParams, opts ...ClientOption) (*GetDebuginfoOK, error)

	GetHealth(params *GetHealthParams, opts ...ClientOption) (*GetHealthOK, error)

	GetHealthz(params *GetHealthzParams, opts ...ClientOption) (*GetHealthzOK, error)

	GetMap(params *GetMapParams, opts ...ClientOption) (*GetMapOK, error)

	GetMapName(params *GetMapNameParams, opts ...ClientOption) (*GetMapNameOK, error)

	GetMapNameEvents(params *GetMapNameEventsParams, writer io.Writer, opts ...ClientOption) (*GetMapNameEventsOK, error)

	GetNodeIds(params *GetNodeIdsParams, opts ...ClientOption) (*GetNodeIdsOK, error)

	PatchConfig(params *PatchConfigParams, opts ...ClientOption) (*PatchConfigOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new daemon API client.

type GetCgroupDumpMetadataFailure

type GetCgroupDumpMetadataFailure struct {
	Payload models.Error
}

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

CgroupDumpMetadata get failed

func NewGetCgroupDumpMetadataFailure

func NewGetCgroupDumpMetadataFailure() *GetCgroupDumpMetadataFailure

NewGetCgroupDumpMetadataFailure creates a GetCgroupDumpMetadataFailure with default headers values

func (*GetCgroupDumpMetadataFailure) Error

func (*GetCgroupDumpMetadataFailure) GetPayload

func (o *GetCgroupDumpMetadataFailure) GetPayload() models.Error

func (*GetCgroupDumpMetadataFailure) IsClientError

func (o *GetCgroupDumpMetadataFailure) IsClientError() bool

IsClientError returns true when this get cgroup dump metadata failure response has a 4xx status code

func (*GetCgroupDumpMetadataFailure) IsCode

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

IsCode returns true when this get cgroup dump metadata failure response a status code equal to that given

func (*GetCgroupDumpMetadataFailure) IsRedirect

func (o *GetCgroupDumpMetadataFailure) IsRedirect() bool

IsRedirect returns true when this get cgroup dump metadata failure response has a 3xx status code

func (*GetCgroupDumpMetadataFailure) IsServerError

func (o *GetCgroupDumpMetadataFailure) IsServerError() bool

IsServerError returns true when this get cgroup dump metadata failure response has a 5xx status code

func (*GetCgroupDumpMetadataFailure) IsSuccess

func (o *GetCgroupDumpMetadataFailure) IsSuccess() bool

IsSuccess returns true when this get cgroup dump metadata failure response has a 2xx status code

func (*GetCgroupDumpMetadataFailure) String

type GetCgroupDumpMetadataOK

type GetCgroupDumpMetadataOK struct {
	Payload *models.CgroupDumpMetadata
}

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

Success

func NewGetCgroupDumpMetadataOK

func NewGetCgroupDumpMetadataOK() *GetCgroupDumpMetadataOK

NewGetCgroupDumpMetadataOK creates a GetCgroupDumpMetadataOK with default headers values

func (*GetCgroupDumpMetadataOK) Error

func (o *GetCgroupDumpMetadataOK) Error() string

func (*GetCgroupDumpMetadataOK) GetPayload

func (*GetCgroupDumpMetadataOK) IsClientError

func (o *GetCgroupDumpMetadataOK) IsClientError() bool

IsClientError returns true when this get cgroup dump metadata o k response has a 4xx status code

func (*GetCgroupDumpMetadataOK) IsCode

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

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

func (*GetCgroupDumpMetadataOK) IsRedirect

func (o *GetCgroupDumpMetadataOK) IsRedirect() bool

IsRedirect returns true when this get cgroup dump metadata o k response has a 3xx status code

func (*GetCgroupDumpMetadataOK) IsServerError

func (o *GetCgroupDumpMetadataOK) IsServerError() bool

IsServerError returns true when this get cgroup dump metadata o k response has a 5xx status code

func (*GetCgroupDumpMetadataOK) IsSuccess

func (o *GetCgroupDumpMetadataOK) IsSuccess() bool

IsSuccess returns true when this get cgroup dump metadata o k response has a 2xx status code

func (*GetCgroupDumpMetadataOK) String

func (o *GetCgroupDumpMetadataOK) String() string

type GetCgroupDumpMetadataParams

type GetCgroupDumpMetadataParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetCgroupDumpMetadataParams contains all the parameters to send to the API endpoint

for the get cgroup dump metadata operation.

Typically these are written to a http.Request.

func NewGetCgroupDumpMetadataParams

func NewGetCgroupDumpMetadataParams() *GetCgroupDumpMetadataParams

NewGetCgroupDumpMetadataParams creates a new GetCgroupDumpMetadataParams 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 NewGetCgroupDumpMetadataParamsWithContext

func NewGetCgroupDumpMetadataParamsWithContext(ctx context.Context) *GetCgroupDumpMetadataParams

NewGetCgroupDumpMetadataParamsWithContext creates a new GetCgroupDumpMetadataParams object with the ability to set a context for a request.

func NewGetCgroupDumpMetadataParamsWithHTTPClient

func NewGetCgroupDumpMetadataParamsWithHTTPClient(client *http.Client) *GetCgroupDumpMetadataParams

NewGetCgroupDumpMetadataParamsWithHTTPClient creates a new GetCgroupDumpMetadataParams object with the ability to set a custom HTTPClient for a request.

func NewGetCgroupDumpMetadataParamsWithTimeout

func NewGetCgroupDumpMetadataParamsWithTimeout(timeout time.Duration) *GetCgroupDumpMetadataParams

NewGetCgroupDumpMetadataParamsWithTimeout creates a new GetCgroupDumpMetadataParams object with the ability to set a timeout on a request.

func (*GetCgroupDumpMetadataParams) SetContext

func (o *GetCgroupDumpMetadataParams) SetContext(ctx context.Context)

SetContext adds the context to the get cgroup dump metadata params

func (*GetCgroupDumpMetadataParams) SetDefaults

func (o *GetCgroupDumpMetadataParams) SetDefaults()

SetDefaults hydrates default values in the get cgroup dump metadata params (not the query body).

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

func (*GetCgroupDumpMetadataParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get cgroup dump metadata params

func (*GetCgroupDumpMetadataParams) SetTimeout

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

SetTimeout adds the timeout to the get cgroup dump metadata params

func (*GetCgroupDumpMetadataParams) WithContext

WithContext adds the context to the get cgroup dump metadata params

func (*GetCgroupDumpMetadataParams) WithDefaults

WithDefaults hydrates default values in the get cgroup dump metadata params (not the query body).

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

func (*GetCgroupDumpMetadataParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get cgroup dump metadata params

func (*GetCgroupDumpMetadataParams) WithTimeout

WithTimeout adds the timeout to the get cgroup dump metadata params

func (*GetCgroupDumpMetadataParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCgroupDumpMetadataReader

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

GetCgroupDumpMetadataReader is a Reader for the GetCgroupDumpMetadata structure.

func (*GetCgroupDumpMetadataReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetClusterNodesOK

type GetClusterNodesOK struct {
	Payload *models.ClusterNodeStatus
}

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

Success

func NewGetClusterNodesOK

func NewGetClusterNodesOK() *GetClusterNodesOK

NewGetClusterNodesOK creates a GetClusterNodesOK with default headers values

func (*GetClusterNodesOK) Error

func (o *GetClusterNodesOK) Error() string

func (*GetClusterNodesOK) GetPayload

func (o *GetClusterNodesOK) GetPayload() *models.ClusterNodeStatus

func (*GetClusterNodesOK) IsClientError

func (o *GetClusterNodesOK) IsClientError() bool

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

func (*GetClusterNodesOK) IsCode

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

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

func (*GetClusterNodesOK) IsRedirect

func (o *GetClusterNodesOK) IsRedirect() bool

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

func (*GetClusterNodesOK) IsServerError

func (o *GetClusterNodesOK) IsServerError() bool

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

func (*GetClusterNodesOK) IsSuccess

func (o *GetClusterNodesOK) IsSuccess() bool

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

func (*GetClusterNodesOK) String

func (o *GetClusterNodesOK) String() string

type GetClusterNodesParams

type GetClusterNodesParams struct {

	/* ClientID.

	     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.

	*/
	ClientID *int64

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

GetClusterNodesParams contains all the parameters to send to the API endpoint

for the get cluster nodes operation.

Typically these are written to a http.Request.

func NewGetClusterNodesParams

func NewGetClusterNodesParams() *GetClusterNodesParams

NewGetClusterNodesParams creates a new GetClusterNodesParams 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 NewGetClusterNodesParamsWithContext

func NewGetClusterNodesParamsWithContext(ctx context.Context) *GetClusterNodesParams

NewGetClusterNodesParamsWithContext creates a new GetClusterNodesParams object with the ability to set a context for a request.

func NewGetClusterNodesParamsWithHTTPClient

func NewGetClusterNodesParamsWithHTTPClient(client *http.Client) *GetClusterNodesParams

NewGetClusterNodesParamsWithHTTPClient creates a new GetClusterNodesParams object with the ability to set a custom HTTPClient for a request.

func NewGetClusterNodesParamsWithTimeout

func NewGetClusterNodesParamsWithTimeout(timeout time.Duration) *GetClusterNodesParams

NewGetClusterNodesParamsWithTimeout creates a new GetClusterNodesParams object with the ability to set a timeout on a request.

func (*GetClusterNodesParams) SetClientID

func (o *GetClusterNodesParams) SetClientID(clientID *int64)

SetClientID adds the clientId to the get cluster nodes params

func (*GetClusterNodesParams) SetContext

func (o *GetClusterNodesParams) SetContext(ctx context.Context)

SetContext adds the context to the get cluster nodes params

func (*GetClusterNodesParams) SetDefaults

func (o *GetClusterNodesParams) SetDefaults()

SetDefaults hydrates default values in the get cluster nodes params (not the query body).

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

func (*GetClusterNodesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get cluster nodes params

func (*GetClusterNodesParams) SetTimeout

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

SetTimeout adds the timeout to the get cluster nodes params

func (*GetClusterNodesParams) WithClientID

func (o *GetClusterNodesParams) WithClientID(clientID *int64) *GetClusterNodesParams

WithClientID adds the clientID to the get cluster nodes params

func (*GetClusterNodesParams) WithContext

WithContext adds the context to the get cluster nodes params

func (*GetClusterNodesParams) WithDefaults

func (o *GetClusterNodesParams) WithDefaults() *GetClusterNodesParams

WithDefaults hydrates default values in the get cluster nodes params (not the query body).

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

func (*GetClusterNodesParams) WithHTTPClient

func (o *GetClusterNodesParams) WithHTTPClient(client *http.Client) *GetClusterNodesParams

WithHTTPClient adds the HTTPClient to the get cluster nodes params

func (*GetClusterNodesParams) WithTimeout

func (o *GetClusterNodesParams) WithTimeout(timeout time.Duration) *GetClusterNodesParams

WithTimeout adds the timeout to the get cluster nodes params

func (*GetClusterNodesParams) WriteToRequest

func (o *GetClusterNodesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetClusterNodesReader

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

GetClusterNodesReader is a Reader for the GetClusterNodes structure.

func (*GetClusterNodesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetConfigOK

type GetConfigOK struct {
	Payload *models.DaemonConfiguration
}

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

Success

func NewGetConfigOK

func NewGetConfigOK() *GetConfigOK

NewGetConfigOK creates a GetConfigOK with default headers values

func (*GetConfigOK) Error

func (o *GetConfigOK) Error() string

func (*GetConfigOK) GetPayload

func (o *GetConfigOK) GetPayload() *models.DaemonConfiguration

func (*GetConfigOK) IsClientError

func (o *GetConfigOK) IsClientError() bool

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

func (*GetConfigOK) IsCode

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

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

func (*GetConfigOK) IsRedirect

func (o *GetConfigOK) IsRedirect() bool

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

func (*GetConfigOK) IsServerError

func (o *GetConfigOK) IsServerError() bool

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

func (*GetConfigOK) IsSuccess

func (o *GetConfigOK) IsSuccess() bool

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

func (*GetConfigOK) String

func (o *GetConfigOK) String() string

type GetConfigParams

type GetConfigParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetConfigParams contains all the parameters to send to the API endpoint

for the get config operation.

Typically these are written to a http.Request.

func NewGetConfigParams

func NewGetConfigParams() *GetConfigParams

NewGetConfigParams creates a new GetConfigParams 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 NewGetConfigParamsWithContext

func NewGetConfigParamsWithContext(ctx context.Context) *GetConfigParams

NewGetConfigParamsWithContext creates a new GetConfigParams object with the ability to set a context for a request.

func NewGetConfigParamsWithHTTPClient

func NewGetConfigParamsWithHTTPClient(client *http.Client) *GetConfigParams

NewGetConfigParamsWithHTTPClient creates a new GetConfigParams object with the ability to set a custom HTTPClient for a request.

func NewGetConfigParamsWithTimeout

func NewGetConfigParamsWithTimeout(timeout time.Duration) *GetConfigParams

NewGetConfigParamsWithTimeout creates a new GetConfigParams object with the ability to set a timeout on a request.

func (*GetConfigParams) SetContext

func (o *GetConfigParams) SetContext(ctx context.Context)

SetContext adds the context to the get config params

func (*GetConfigParams) SetDefaults

func (o *GetConfigParams) SetDefaults()

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

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

func (*GetConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get config params

func (*GetConfigParams) SetTimeout

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

SetTimeout adds the timeout to the get config params

func (*GetConfigParams) WithContext

func (o *GetConfigParams) WithContext(ctx context.Context) *GetConfigParams

WithContext adds the context to the get config params

func (*GetConfigParams) WithDefaults

func (o *GetConfigParams) WithDefaults() *GetConfigParams

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

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

func (*GetConfigParams) WithHTTPClient

func (o *GetConfigParams) WithHTTPClient(client *http.Client) *GetConfigParams

WithHTTPClient adds the HTTPClient to the get config params

func (*GetConfigParams) WithTimeout

func (o *GetConfigParams) WithTimeout(timeout time.Duration) *GetConfigParams

WithTimeout adds the timeout to the get config params

func (*GetConfigParams) WriteToRequest

func (o *GetConfigParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetConfigReader

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

GetConfigReader is a Reader for the GetConfig structure.

func (*GetConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDebuginfoFailure

type GetDebuginfoFailure struct {
	Payload models.Error
}

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

DebugInfo get failed

func NewGetDebuginfoFailure

func NewGetDebuginfoFailure() *GetDebuginfoFailure

NewGetDebuginfoFailure creates a GetDebuginfoFailure with default headers values

func (*GetDebuginfoFailure) Error

func (o *GetDebuginfoFailure) Error() string

func (*GetDebuginfoFailure) GetPayload

func (o *GetDebuginfoFailure) GetPayload() models.Error

func (*GetDebuginfoFailure) IsClientError

func (o *GetDebuginfoFailure) IsClientError() bool

IsClientError returns true when this get debuginfo failure response has a 4xx status code

func (*GetDebuginfoFailure) IsCode

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

IsCode returns true when this get debuginfo failure response a status code equal to that given

func (*GetDebuginfoFailure) IsRedirect

func (o *GetDebuginfoFailure) IsRedirect() bool

IsRedirect returns true when this get debuginfo failure response has a 3xx status code

func (*GetDebuginfoFailure) IsServerError

func (o *GetDebuginfoFailure) IsServerError() bool

IsServerError returns true when this get debuginfo failure response has a 5xx status code

func (*GetDebuginfoFailure) IsSuccess

func (o *GetDebuginfoFailure) IsSuccess() bool

IsSuccess returns true when this get debuginfo failure response has a 2xx status code

func (*GetDebuginfoFailure) String

func (o *GetDebuginfoFailure) String() string

type GetDebuginfoOK

type GetDebuginfoOK struct {
	Payload *models.DebugInfo
}

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

Success

func NewGetDebuginfoOK

func NewGetDebuginfoOK() *GetDebuginfoOK

NewGetDebuginfoOK creates a GetDebuginfoOK with default headers values

func (*GetDebuginfoOK) Error

func (o *GetDebuginfoOK) Error() string

func (*GetDebuginfoOK) GetPayload

func (o *GetDebuginfoOK) GetPayload() *models.DebugInfo

func (*GetDebuginfoOK) IsClientError

func (o *GetDebuginfoOK) IsClientError() bool

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

func (*GetDebuginfoOK) IsCode

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

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

func (*GetDebuginfoOK) IsRedirect

func (o *GetDebuginfoOK) IsRedirect() bool

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

func (*GetDebuginfoOK) IsServerError

func (o *GetDebuginfoOK) IsServerError() bool

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

func (*GetDebuginfoOK) IsSuccess

func (o *GetDebuginfoOK) IsSuccess() bool

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

func (*GetDebuginfoOK) String

func (o *GetDebuginfoOK) String() string

type GetDebuginfoParams

type GetDebuginfoParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetDebuginfoParams contains all the parameters to send to the API endpoint

for the get debuginfo operation.

Typically these are written to a http.Request.

func NewGetDebuginfoParams

func NewGetDebuginfoParams() *GetDebuginfoParams

NewGetDebuginfoParams creates a new GetDebuginfoParams 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 NewGetDebuginfoParamsWithContext

func NewGetDebuginfoParamsWithContext(ctx context.Context) *GetDebuginfoParams

NewGetDebuginfoParamsWithContext creates a new GetDebuginfoParams object with the ability to set a context for a request.

func NewGetDebuginfoParamsWithHTTPClient

func NewGetDebuginfoParamsWithHTTPClient(client *http.Client) *GetDebuginfoParams

NewGetDebuginfoParamsWithHTTPClient creates a new GetDebuginfoParams object with the ability to set a custom HTTPClient for a request.

func NewGetDebuginfoParamsWithTimeout

func NewGetDebuginfoParamsWithTimeout(timeout time.Duration) *GetDebuginfoParams

NewGetDebuginfoParamsWithTimeout creates a new GetDebuginfoParams object with the ability to set a timeout on a request.

func (*GetDebuginfoParams) SetContext

func (o *GetDebuginfoParams) SetContext(ctx context.Context)

SetContext adds the context to the get debuginfo params

func (*GetDebuginfoParams) SetDefaults

func (o *GetDebuginfoParams) SetDefaults()

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

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

func (*GetDebuginfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get debuginfo params

func (*GetDebuginfoParams) SetTimeout

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

SetTimeout adds the timeout to the get debuginfo params

func (*GetDebuginfoParams) WithContext

WithContext adds the context to the get debuginfo params

func (*GetDebuginfoParams) WithDefaults

func (o *GetDebuginfoParams) WithDefaults() *GetDebuginfoParams

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

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

func (*GetDebuginfoParams) WithHTTPClient

func (o *GetDebuginfoParams) WithHTTPClient(client *http.Client) *GetDebuginfoParams

WithHTTPClient adds the HTTPClient to the get debuginfo params

func (*GetDebuginfoParams) WithTimeout

func (o *GetDebuginfoParams) WithTimeout(timeout time.Duration) *GetDebuginfoParams

WithTimeout adds the timeout to the get debuginfo params

func (*GetDebuginfoParams) WriteToRequest

func (o *GetDebuginfoParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetDebuginfoReader

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

GetDebuginfoReader is a Reader for the GetDebuginfo structure.

func (*GetDebuginfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetHealthOK

type GetHealthOK struct {
	Payload *models.ModulesHealth
}

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

Success

func NewGetHealthOK

func NewGetHealthOK() *GetHealthOK

NewGetHealthOK creates a GetHealthOK with default headers values

func (*GetHealthOK) Error

func (o *GetHealthOK) Error() string

func (*GetHealthOK) GetPayload

func (o *GetHealthOK) GetPayload() *models.ModulesHealth

func (*GetHealthOK) IsClientError

func (o *GetHealthOK) IsClientError() bool

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

func (*GetHealthOK) IsCode

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

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

func (*GetHealthOK) IsRedirect

func (o *GetHealthOK) IsRedirect() bool

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

func (*GetHealthOK) IsServerError

func (o *GetHealthOK) IsServerError() bool

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

func (*GetHealthOK) IsSuccess

func (o *GetHealthOK) IsSuccess() bool

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

func (*GetHealthOK) String

func (o *GetHealthOK) String() string

type GetHealthParams

type GetHealthParams struct {

	/* Brief.

	   Brief is a brief representation of the Cilium status.

	*/
	Brief *bool

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

GetHealthParams contains all the parameters to send to the API endpoint

for the get health operation.

Typically these are written to a http.Request.

func NewGetHealthParams

func NewGetHealthParams() *GetHealthParams

NewGetHealthParams creates a new GetHealthParams 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 NewGetHealthParamsWithContext

func NewGetHealthParamsWithContext(ctx context.Context) *GetHealthParams

NewGetHealthParamsWithContext creates a new GetHealthParams object with the ability to set a context for a request.

func NewGetHealthParamsWithHTTPClient

func NewGetHealthParamsWithHTTPClient(client *http.Client) *GetHealthParams

NewGetHealthParamsWithHTTPClient creates a new GetHealthParams object with the ability to set a custom HTTPClient for a request.

func NewGetHealthParamsWithTimeout

func NewGetHealthParamsWithTimeout(timeout time.Duration) *GetHealthParams

NewGetHealthParamsWithTimeout creates a new GetHealthParams object with the ability to set a timeout on a request.

func (*GetHealthParams) SetBrief

func (o *GetHealthParams) SetBrief(brief *bool)

SetBrief adds the brief to the get health params

func (*GetHealthParams) SetContext

func (o *GetHealthParams) SetContext(ctx context.Context)

SetContext adds the context to the get health params

func (*GetHealthParams) SetDefaults

func (o *GetHealthParams) SetDefaults()

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

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

func (*GetHealthParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get health params

func (*GetHealthParams) SetTimeout

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

SetTimeout adds the timeout to the get health params

func (*GetHealthParams) WithBrief

func (o *GetHealthParams) WithBrief(brief *bool) *GetHealthParams

WithBrief adds the brief to the get health params

func (*GetHealthParams) WithContext

func (o *GetHealthParams) WithContext(ctx context.Context) *GetHealthParams

WithContext adds the context to the get health params

func (*GetHealthParams) WithDefaults

func (o *GetHealthParams) WithDefaults() *GetHealthParams

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

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

func (*GetHealthParams) WithHTTPClient

func (o *GetHealthParams) WithHTTPClient(client *http.Client) *GetHealthParams

WithHTTPClient adds the HTTPClient to the get health params

func (*GetHealthParams) WithTimeout

func (o *GetHealthParams) WithTimeout(timeout time.Duration) *GetHealthParams

WithTimeout adds the timeout to the get health params

func (*GetHealthParams) WriteToRequest

func (o *GetHealthParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetHealthReader

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

GetHealthReader is a Reader for the GetHealth structure.

func (*GetHealthReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetHealthzOK

type GetHealthzOK struct {
	Payload *models.StatusResponse
}

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

Success

func NewGetHealthzOK

func NewGetHealthzOK() *GetHealthzOK

NewGetHealthzOK creates a GetHealthzOK with default headers values

func (*GetHealthzOK) Error

func (o *GetHealthzOK) Error() string

func (*GetHealthzOK) GetPayload

func (o *GetHealthzOK) GetPayload() *models.StatusResponse

func (*GetHealthzOK) IsClientError

func (o *GetHealthzOK) IsClientError() bool

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

func (*GetHealthzOK) IsCode

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

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

func (*GetHealthzOK) IsRedirect

func (o *GetHealthzOK) IsRedirect() bool

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

func (*GetHealthzOK) IsServerError

func (o *GetHealthzOK) IsServerError() bool

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

func (*GetHealthzOK) IsSuccess

func (o *GetHealthzOK) IsSuccess() bool

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

func (*GetHealthzOK) String

func (o *GetHealthzOK) String() string

type GetHealthzParams

type GetHealthzParams struct {

	/* Brief.

	   Brief will return a brief representation of the Cilium status.

	*/
	Brief *bool

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

GetHealthzParams contains all the parameters to send to the API endpoint

for the get healthz operation.

Typically these are written to a http.Request.

func NewGetHealthzParams

func NewGetHealthzParams() *GetHealthzParams

NewGetHealthzParams creates a new GetHealthzParams 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 NewGetHealthzParamsWithContext

func NewGetHealthzParamsWithContext(ctx context.Context) *GetHealthzParams

NewGetHealthzParamsWithContext creates a new GetHealthzParams object with the ability to set a context for a request.

func NewGetHealthzParamsWithHTTPClient

func NewGetHealthzParamsWithHTTPClient(client *http.Client) *GetHealthzParams

NewGetHealthzParamsWithHTTPClient creates a new GetHealthzParams object with the ability to set a custom HTTPClient for a request.

func NewGetHealthzParamsWithTimeout

func NewGetHealthzParamsWithTimeout(timeout time.Duration) *GetHealthzParams

NewGetHealthzParamsWithTimeout creates a new GetHealthzParams object with the ability to set a timeout on a request.

func (*GetHealthzParams) SetBrief

func (o *GetHealthzParams) SetBrief(brief *bool)

SetBrief adds the brief to the get healthz params

func (*GetHealthzParams) SetContext

func (o *GetHealthzParams) SetContext(ctx context.Context)

SetContext adds the context to the get healthz params

func (*GetHealthzParams) SetDefaults

func (o *GetHealthzParams) SetDefaults()

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

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

func (*GetHealthzParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get healthz params

func (*GetHealthzParams) SetTimeout

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

SetTimeout adds the timeout to the get healthz params

func (*GetHealthzParams) WithBrief

func (o *GetHealthzParams) WithBrief(brief *bool) *GetHealthzParams

WithBrief adds the brief to the get healthz params

func (*GetHealthzParams) WithContext

func (o *GetHealthzParams) WithContext(ctx context.Context) *GetHealthzParams

WithContext adds the context to the get healthz params

func (*GetHealthzParams) WithDefaults

func (o *GetHealthzParams) WithDefaults() *GetHealthzParams

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

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

func (*GetHealthzParams) WithHTTPClient

func (o *GetHealthzParams) WithHTTPClient(client *http.Client) *GetHealthzParams

WithHTTPClient adds the HTTPClient to the get healthz params

func (*GetHealthzParams) WithTimeout

func (o *GetHealthzParams) WithTimeout(timeout time.Duration) *GetHealthzParams

WithTimeout adds the timeout to the get healthz params

func (*GetHealthzParams) WriteToRequest

func (o *GetHealthzParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetHealthzReader

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

GetHealthzReader is a Reader for the GetHealthz structure.

func (*GetHealthzReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetMapNameEventsNotFound

type GetMapNameEventsNotFound struct {
}

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

Map not found

func NewGetMapNameEventsNotFound

func NewGetMapNameEventsNotFound() *GetMapNameEventsNotFound

NewGetMapNameEventsNotFound creates a GetMapNameEventsNotFound with default headers values

func (*GetMapNameEventsNotFound) Error

func (o *GetMapNameEventsNotFound) Error() string

func (*GetMapNameEventsNotFound) IsClientError

func (o *GetMapNameEventsNotFound) IsClientError() bool

IsClientError returns true when this get map name events not found response has a 4xx status code

func (*GetMapNameEventsNotFound) IsCode

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

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

func (*GetMapNameEventsNotFound) IsRedirect

func (o *GetMapNameEventsNotFound) IsRedirect() bool

IsRedirect returns true when this get map name events not found response has a 3xx status code

func (*GetMapNameEventsNotFound) IsServerError

func (o *GetMapNameEventsNotFound) IsServerError() bool

IsServerError returns true when this get map name events not found response has a 5xx status code

func (*GetMapNameEventsNotFound) IsSuccess

func (o *GetMapNameEventsNotFound) IsSuccess() bool

IsSuccess returns true when this get map name events not found response has a 2xx status code

func (*GetMapNameEventsNotFound) String

func (o *GetMapNameEventsNotFound) String() string

type GetMapNameEventsOK

type GetMapNameEventsOK struct {
	Payload io.Writer
}

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

Success

func NewGetMapNameEventsOK

func NewGetMapNameEventsOK(writer io.Writer) *GetMapNameEventsOK

NewGetMapNameEventsOK creates a GetMapNameEventsOK with default headers values

func (*GetMapNameEventsOK) Error

func (o *GetMapNameEventsOK) Error() string

func (*GetMapNameEventsOK) GetPayload

func (o *GetMapNameEventsOK) GetPayload() io.Writer

func (*GetMapNameEventsOK) IsClientError

func (o *GetMapNameEventsOK) IsClientError() bool

IsClientError returns true when this get map name events o k response has a 4xx status code

func (*GetMapNameEventsOK) IsCode

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

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

func (*GetMapNameEventsOK) IsRedirect

func (o *GetMapNameEventsOK) IsRedirect() bool

IsRedirect returns true when this get map name events o k response has a 3xx status code

func (*GetMapNameEventsOK) IsServerError

func (o *GetMapNameEventsOK) IsServerError() bool

IsServerError returns true when this get map name events o k response has a 5xx status code

func (*GetMapNameEventsOK) IsSuccess

func (o *GetMapNameEventsOK) IsSuccess() bool

IsSuccess returns true when this get map name events o k response has a 2xx status code

func (*GetMapNameEventsOK) String

func (o *GetMapNameEventsOK) String() string

type GetMapNameEventsParams

type GetMapNameEventsParams struct {

	/* Follow.

	   Whether to follow streamed requests
	*/
	Follow *bool

	/* Name.

	   Name of map
	*/
	Name string

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

GetMapNameEventsParams contains all the parameters to send to the API endpoint

for the get map name events operation.

Typically these are written to a http.Request.

func NewGetMapNameEventsParams

func NewGetMapNameEventsParams() *GetMapNameEventsParams

NewGetMapNameEventsParams creates a new GetMapNameEventsParams 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 NewGetMapNameEventsParamsWithContext

func NewGetMapNameEventsParamsWithContext(ctx context.Context) *GetMapNameEventsParams

NewGetMapNameEventsParamsWithContext creates a new GetMapNameEventsParams object with the ability to set a context for a request.

func NewGetMapNameEventsParamsWithHTTPClient

func NewGetMapNameEventsParamsWithHTTPClient(client *http.Client) *GetMapNameEventsParams

NewGetMapNameEventsParamsWithHTTPClient creates a new GetMapNameEventsParams object with the ability to set a custom HTTPClient for a request.

func NewGetMapNameEventsParamsWithTimeout

func NewGetMapNameEventsParamsWithTimeout(timeout time.Duration) *GetMapNameEventsParams

NewGetMapNameEventsParamsWithTimeout creates a new GetMapNameEventsParams object with the ability to set a timeout on a request.

func (*GetMapNameEventsParams) SetContext

func (o *GetMapNameEventsParams) SetContext(ctx context.Context)

SetContext adds the context to the get map name events params

func (*GetMapNameEventsParams) SetDefaults

func (o *GetMapNameEventsParams) SetDefaults()

SetDefaults hydrates default values in the get map name events params (not the query body).

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

func (*GetMapNameEventsParams) SetFollow

func (o *GetMapNameEventsParams) SetFollow(follow *bool)

SetFollow adds the follow to the get map name events params

func (*GetMapNameEventsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get map name events params

func (*GetMapNameEventsParams) SetName

func (o *GetMapNameEventsParams) SetName(name string)

SetName adds the name to the get map name events params

func (*GetMapNameEventsParams) SetTimeout

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

SetTimeout adds the timeout to the get map name events params

func (*GetMapNameEventsParams) WithContext

WithContext adds the context to the get map name events params

func (*GetMapNameEventsParams) WithDefaults

WithDefaults hydrates default values in the get map name events params (not the query body).

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

func (*GetMapNameEventsParams) WithFollow

func (o *GetMapNameEventsParams) WithFollow(follow *bool) *GetMapNameEventsParams

WithFollow adds the follow to the get map name events params

func (*GetMapNameEventsParams) WithHTTPClient

func (o *GetMapNameEventsParams) WithHTTPClient(client *http.Client) *GetMapNameEventsParams

WithHTTPClient adds the HTTPClient to the get map name events params

func (*GetMapNameEventsParams) WithName

WithName adds the name to the get map name events params

func (*GetMapNameEventsParams) WithTimeout

WithTimeout adds the timeout to the get map name events params

func (*GetMapNameEventsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetMapNameEventsReader

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

GetMapNameEventsReader is a Reader for the GetMapNameEvents structure.

func (*GetMapNameEventsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetMapNameNotFound

type GetMapNameNotFound struct {
}

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

Map not found

func NewGetMapNameNotFound

func NewGetMapNameNotFound() *GetMapNameNotFound

NewGetMapNameNotFound creates a GetMapNameNotFound with default headers values

func (*GetMapNameNotFound) Error

func (o *GetMapNameNotFound) Error() string

func (*GetMapNameNotFound) IsClientError

func (o *GetMapNameNotFound) IsClientError() bool

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

func (*GetMapNameNotFound) IsCode

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

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

func (*GetMapNameNotFound) IsRedirect

func (o *GetMapNameNotFound) IsRedirect() bool

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

func (*GetMapNameNotFound) IsServerError

func (o *GetMapNameNotFound) IsServerError() bool

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

func (*GetMapNameNotFound) IsSuccess

func (o *GetMapNameNotFound) IsSuccess() bool

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

func (*GetMapNameNotFound) String

func (o *GetMapNameNotFound) String() string

type GetMapNameOK

type GetMapNameOK struct {
	Payload *models.BPFMap
}

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

Success

func NewGetMapNameOK

func NewGetMapNameOK() *GetMapNameOK

NewGetMapNameOK creates a GetMapNameOK with default headers values

func (*GetMapNameOK) Error

func (o *GetMapNameOK) Error() string

func (*GetMapNameOK) GetPayload

func (o *GetMapNameOK) GetPayload() *models.BPFMap

func (*GetMapNameOK) IsClientError

func (o *GetMapNameOK) IsClientError() bool

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

func (*GetMapNameOK) IsCode

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

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

func (*GetMapNameOK) IsRedirect

func (o *GetMapNameOK) IsRedirect() bool

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

func (*GetMapNameOK) IsServerError

func (o *GetMapNameOK) IsServerError() bool

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

func (*GetMapNameOK) IsSuccess

func (o *GetMapNameOK) IsSuccess() bool

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

func (*GetMapNameOK) String

func (o *GetMapNameOK) String() string

type GetMapNameParams

type GetMapNameParams struct {

	/* Name.

	   Name of map
	*/
	Name string

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

GetMapNameParams contains all the parameters to send to the API endpoint

for the get map name operation.

Typically these are written to a http.Request.

func NewGetMapNameParams

func NewGetMapNameParams() *GetMapNameParams

NewGetMapNameParams creates a new GetMapNameParams 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 NewGetMapNameParamsWithContext

func NewGetMapNameParamsWithContext(ctx context.Context) *GetMapNameParams

NewGetMapNameParamsWithContext creates a new GetMapNameParams object with the ability to set a context for a request.

func NewGetMapNameParamsWithHTTPClient

func NewGetMapNameParamsWithHTTPClient(client *http.Client) *GetMapNameParams

NewGetMapNameParamsWithHTTPClient creates a new GetMapNameParams object with the ability to set a custom HTTPClient for a request.

func NewGetMapNameParamsWithTimeout

func NewGetMapNameParamsWithTimeout(timeout time.Duration) *GetMapNameParams

NewGetMapNameParamsWithTimeout creates a new GetMapNameParams object with the ability to set a timeout on a request.

func (*GetMapNameParams) SetContext

func (o *GetMapNameParams) SetContext(ctx context.Context)

SetContext adds the context to the get map name params

func (*GetMapNameParams) SetDefaults

func (o *GetMapNameParams) SetDefaults()

SetDefaults hydrates default values in the get map name params (not the query body).

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

func (*GetMapNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get map name params

func (*GetMapNameParams) SetName

func (o *GetMapNameParams) SetName(name string)

SetName adds the name to the get map name params

func (*GetMapNameParams) SetTimeout

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

SetTimeout adds the timeout to the get map name params

func (*GetMapNameParams) WithContext

func (o *GetMapNameParams) WithContext(ctx context.Context) *GetMapNameParams

WithContext adds the context to the get map name params

func (*GetMapNameParams) WithDefaults

func (o *GetMapNameParams) WithDefaults() *GetMapNameParams

WithDefaults hydrates default values in the get map name params (not the query body).

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

func (*GetMapNameParams) WithHTTPClient

func (o *GetMapNameParams) WithHTTPClient(client *http.Client) *GetMapNameParams

WithHTTPClient adds the HTTPClient to the get map name params

func (*GetMapNameParams) WithName

func (o *GetMapNameParams) WithName(name string) *GetMapNameParams

WithName adds the name to the get map name params

func (*GetMapNameParams) WithTimeout

func (o *GetMapNameParams) WithTimeout(timeout time.Duration) *GetMapNameParams

WithTimeout adds the timeout to the get map name params

func (*GetMapNameParams) WriteToRequest

func (o *GetMapNameParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetMapNameReader

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

GetMapNameReader is a Reader for the GetMapName structure.

func (*GetMapNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetMapOK

type GetMapOK struct {
	Payload *models.BPFMapList
}

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

Success

func NewGetMapOK

func NewGetMapOK() *GetMapOK

NewGetMapOK creates a GetMapOK with default headers values

func (*GetMapOK) Error

func (o *GetMapOK) Error() string

func (*GetMapOK) GetPayload

func (o *GetMapOK) GetPayload() *models.BPFMapList

func (*GetMapOK) IsClientError

func (o *GetMapOK) IsClientError() bool

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

func (*GetMapOK) IsCode

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

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

func (*GetMapOK) IsRedirect

func (o *GetMapOK) IsRedirect() bool

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

func (*GetMapOK) IsServerError

func (o *GetMapOK) IsServerError() bool

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

func (*GetMapOK) IsSuccess

func (o *GetMapOK) IsSuccess() bool

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

func (*GetMapOK) String

func (o *GetMapOK) String() string

type GetMapParams

type GetMapParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetMapParams contains all the parameters to send to the API endpoint

for the get map operation.

Typically these are written to a http.Request.

func NewGetMapParams

func NewGetMapParams() *GetMapParams

NewGetMapParams creates a new GetMapParams 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 NewGetMapParamsWithContext

func NewGetMapParamsWithContext(ctx context.Context) *GetMapParams

NewGetMapParamsWithContext creates a new GetMapParams object with the ability to set a context for a request.

func NewGetMapParamsWithHTTPClient

func NewGetMapParamsWithHTTPClient(client *http.Client) *GetMapParams

NewGetMapParamsWithHTTPClient creates a new GetMapParams object with the ability to set a custom HTTPClient for a request.

func NewGetMapParamsWithTimeout

func NewGetMapParamsWithTimeout(timeout time.Duration) *GetMapParams

NewGetMapParamsWithTimeout creates a new GetMapParams object with the ability to set a timeout on a request.

func (*GetMapParams) SetContext

func (o *GetMapParams) SetContext(ctx context.Context)

SetContext adds the context to the get map params

func (*GetMapParams) SetDefaults

func (o *GetMapParams) SetDefaults()

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

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

func (*GetMapParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get map params

func (*GetMapParams) SetTimeout

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

SetTimeout adds the timeout to the get map params

func (*GetMapParams) WithContext

func (o *GetMapParams) WithContext(ctx context.Context) *GetMapParams

WithContext adds the context to the get map params

func (*GetMapParams) WithDefaults

func (o *GetMapParams) WithDefaults() *GetMapParams

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

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

func (*GetMapParams) WithHTTPClient

func (o *GetMapParams) WithHTTPClient(client *http.Client) *GetMapParams

WithHTTPClient adds the HTTPClient to the get map params

func (*GetMapParams) WithTimeout

func (o *GetMapParams) WithTimeout(timeout time.Duration) *GetMapParams

WithTimeout adds the timeout to the get map params

func (*GetMapParams) WriteToRequest

func (o *GetMapParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetMapReader

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

GetMapReader is a Reader for the GetMap structure.

func (*GetMapReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNodeIdsOK

type GetNodeIdsOK struct {
	Payload []*models.NodeID
}

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

Success

func NewGetNodeIdsOK

func NewGetNodeIdsOK() *GetNodeIdsOK

NewGetNodeIdsOK creates a GetNodeIdsOK with default headers values

func (*GetNodeIdsOK) Error

func (o *GetNodeIdsOK) Error() string

func (*GetNodeIdsOK) GetPayload

func (o *GetNodeIdsOK) GetPayload() []*models.NodeID

func (*GetNodeIdsOK) IsClientError

func (o *GetNodeIdsOK) IsClientError() bool

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

func (*GetNodeIdsOK) IsCode

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

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

func (*GetNodeIdsOK) IsRedirect

func (o *GetNodeIdsOK) IsRedirect() bool

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

func (*GetNodeIdsOK) IsServerError

func (o *GetNodeIdsOK) IsServerError() bool

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

func (*GetNodeIdsOK) IsSuccess

func (o *GetNodeIdsOK) IsSuccess() bool

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

func (*GetNodeIdsOK) String

func (o *GetNodeIdsOK) String() string

type GetNodeIdsParams

type GetNodeIdsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetNodeIdsParams contains all the parameters to send to the API endpoint

for the get node ids operation.

Typically these are written to a http.Request.

func NewGetNodeIdsParams

func NewGetNodeIdsParams() *GetNodeIdsParams

NewGetNodeIdsParams creates a new GetNodeIdsParams 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 NewGetNodeIdsParamsWithContext

func NewGetNodeIdsParamsWithContext(ctx context.Context) *GetNodeIdsParams

NewGetNodeIdsParamsWithContext creates a new GetNodeIdsParams object with the ability to set a context for a request.

func NewGetNodeIdsParamsWithHTTPClient

func NewGetNodeIdsParamsWithHTTPClient(client *http.Client) *GetNodeIdsParams

NewGetNodeIdsParamsWithHTTPClient creates a new GetNodeIdsParams object with the ability to set a custom HTTPClient for a request.

func NewGetNodeIdsParamsWithTimeout

func NewGetNodeIdsParamsWithTimeout(timeout time.Duration) *GetNodeIdsParams

NewGetNodeIdsParamsWithTimeout creates a new GetNodeIdsParams object with the ability to set a timeout on a request.

func (*GetNodeIdsParams) SetContext

func (o *GetNodeIdsParams) SetContext(ctx context.Context)

SetContext adds the context to the get node ids params

func (*GetNodeIdsParams) SetDefaults

func (o *GetNodeIdsParams) SetDefaults()

SetDefaults hydrates default values in the get node ids params (not the query body).

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

func (*GetNodeIdsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get node ids params

func (*GetNodeIdsParams) SetTimeout

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

SetTimeout adds the timeout to the get node ids params

func (*GetNodeIdsParams) WithContext

func (o *GetNodeIdsParams) WithContext(ctx context.Context) *GetNodeIdsParams

WithContext adds the context to the get node ids params

func (*GetNodeIdsParams) WithDefaults

func (o *GetNodeIdsParams) WithDefaults() *GetNodeIdsParams

WithDefaults hydrates default values in the get node ids params (not the query body).

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

func (*GetNodeIdsParams) WithHTTPClient

func (o *GetNodeIdsParams) WithHTTPClient(client *http.Client) *GetNodeIdsParams

WithHTTPClient adds the HTTPClient to the get node ids params

func (*GetNodeIdsParams) WithTimeout

func (o *GetNodeIdsParams) WithTimeout(timeout time.Duration) *GetNodeIdsParams

WithTimeout adds the timeout to the get node ids params

func (*GetNodeIdsParams) WriteToRequest

func (o *GetNodeIdsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetNodeIdsReader

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

GetNodeIdsReader is a Reader for the GetNodeIds structure.

func (*GetNodeIdsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchConfigBadRequest

type PatchConfigBadRequest struct {
	Payload models.Error
}

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

Bad configuration parameters

func NewPatchConfigBadRequest

func NewPatchConfigBadRequest() *PatchConfigBadRequest

NewPatchConfigBadRequest creates a PatchConfigBadRequest with default headers values

func (*PatchConfigBadRequest) Error

func (o *PatchConfigBadRequest) Error() string

func (*PatchConfigBadRequest) GetPayload

func (o *PatchConfigBadRequest) GetPayload() models.Error

func (*PatchConfigBadRequest) IsClientError

func (o *PatchConfigBadRequest) IsClientError() bool

IsClientError returns true when this patch config bad request response has a 4xx status code

func (*PatchConfigBadRequest) IsCode

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

IsCode returns true when this patch config bad request response a status code equal to that given

func (*PatchConfigBadRequest) IsRedirect

func (o *PatchConfigBadRequest) IsRedirect() bool

IsRedirect returns true when this patch config bad request response has a 3xx status code

func (*PatchConfigBadRequest) IsServerError

func (o *PatchConfigBadRequest) IsServerError() bool

IsServerError returns true when this patch config bad request response has a 5xx status code

func (*PatchConfigBadRequest) IsSuccess

func (o *PatchConfigBadRequest) IsSuccess() bool

IsSuccess returns true when this patch config bad request response has a 2xx status code

func (*PatchConfigBadRequest) String

func (o *PatchConfigBadRequest) String() string

type PatchConfigFailure

type PatchConfigFailure struct {
	Payload models.Error
}

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

Recompilation failed

func NewPatchConfigFailure

func NewPatchConfigFailure() *PatchConfigFailure

NewPatchConfigFailure creates a PatchConfigFailure with default headers values

func (*PatchConfigFailure) Error

func (o *PatchConfigFailure) Error() string

func (*PatchConfigFailure) GetPayload

func (o *PatchConfigFailure) GetPayload() models.Error

func (*PatchConfigFailure) IsClientError

func (o *PatchConfigFailure) IsClientError() bool

IsClientError returns true when this patch config failure response has a 4xx status code

func (*PatchConfigFailure) IsCode

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

IsCode returns true when this patch config failure response a status code equal to that given

func (*PatchConfigFailure) IsRedirect

func (o *PatchConfigFailure) IsRedirect() bool

IsRedirect returns true when this patch config failure response has a 3xx status code

func (*PatchConfigFailure) IsServerError

func (o *PatchConfigFailure) IsServerError() bool

IsServerError returns true when this patch config failure response has a 5xx status code

func (*PatchConfigFailure) IsSuccess

func (o *PatchConfigFailure) IsSuccess() bool

IsSuccess returns true when this patch config failure response has a 2xx status code

func (*PatchConfigFailure) String

func (o *PatchConfigFailure) String() string

type PatchConfigForbidden

type PatchConfigForbidden struct {
}

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

Forbidden

func NewPatchConfigForbidden

func NewPatchConfigForbidden() *PatchConfigForbidden

NewPatchConfigForbidden creates a PatchConfigForbidden with default headers values

func (*PatchConfigForbidden) Error

func (o *PatchConfigForbidden) Error() string

func (*PatchConfigForbidden) IsClientError

func (o *PatchConfigForbidden) IsClientError() bool

IsClientError returns true when this patch config forbidden response has a 4xx status code

func (*PatchConfigForbidden) IsCode

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

IsCode returns true when this patch config forbidden response a status code equal to that given

func (*PatchConfigForbidden) IsRedirect

func (o *PatchConfigForbidden) IsRedirect() bool

IsRedirect returns true when this patch config forbidden response has a 3xx status code

func (*PatchConfigForbidden) IsServerError

func (o *PatchConfigForbidden) IsServerError() bool

IsServerError returns true when this patch config forbidden response has a 5xx status code

func (*PatchConfigForbidden) IsSuccess

func (o *PatchConfigForbidden) IsSuccess() bool

IsSuccess returns true when this patch config forbidden response has a 2xx status code

func (*PatchConfigForbidden) String

func (o *PatchConfigForbidden) String() string

type PatchConfigOK

type PatchConfigOK struct {
}

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

Success

func NewPatchConfigOK

func NewPatchConfigOK() *PatchConfigOK

NewPatchConfigOK creates a PatchConfigOK with default headers values

func (*PatchConfigOK) Error

func (o *PatchConfigOK) Error() string

func (*PatchConfigOK) IsClientError

func (o *PatchConfigOK) IsClientError() bool

IsClientError returns true when this patch config o k response has a 4xx status code

func (*PatchConfigOK) IsCode

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

IsCode returns true when this patch config o k response a status code equal to that given

func (*PatchConfigOK) IsRedirect

func (o *PatchConfigOK) IsRedirect() bool

IsRedirect returns true when this patch config o k response has a 3xx status code

func (*PatchConfigOK) IsServerError

func (o *PatchConfigOK) IsServerError() bool

IsServerError returns true when this patch config o k response has a 5xx status code

func (*PatchConfigOK) IsSuccess

func (o *PatchConfigOK) IsSuccess() bool

IsSuccess returns true when this patch config o k response has a 2xx status code

func (*PatchConfigOK) String

func (o *PatchConfigOK) String() string

type PatchConfigParams

type PatchConfigParams struct {

	// Configuration.
	Configuration *models.DaemonConfigurationSpec

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

PatchConfigParams contains all the parameters to send to the API endpoint

for the patch config operation.

Typically these are written to a http.Request.

func NewPatchConfigParams

func NewPatchConfigParams() *PatchConfigParams

NewPatchConfigParams creates a new PatchConfigParams 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 NewPatchConfigParamsWithContext

func NewPatchConfigParamsWithContext(ctx context.Context) *PatchConfigParams

NewPatchConfigParamsWithContext creates a new PatchConfigParams object with the ability to set a context for a request.

func NewPatchConfigParamsWithHTTPClient

func NewPatchConfigParamsWithHTTPClient(client *http.Client) *PatchConfigParams

NewPatchConfigParamsWithHTTPClient creates a new PatchConfigParams object with the ability to set a custom HTTPClient for a request.

func NewPatchConfigParamsWithTimeout

func NewPatchConfigParamsWithTimeout(timeout time.Duration) *PatchConfigParams

NewPatchConfigParamsWithTimeout creates a new PatchConfigParams object with the ability to set a timeout on a request.

func (*PatchConfigParams) SetConfiguration

func (o *PatchConfigParams) SetConfiguration(configuration *models.DaemonConfigurationSpec)

SetConfiguration adds the configuration to the patch config params

func (*PatchConfigParams) SetContext

func (o *PatchConfigParams) SetContext(ctx context.Context)

SetContext adds the context to the patch config params

func (*PatchConfigParams) SetDefaults

func (o *PatchConfigParams) SetDefaults()

SetDefaults hydrates default values in the patch config params (not the query body).

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

func (*PatchConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch config params

func (*PatchConfigParams) SetTimeout

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

SetTimeout adds the timeout to the patch config params

func (*PatchConfigParams) WithConfiguration

func (o *PatchConfigParams) WithConfiguration(configuration *models.DaemonConfigurationSpec) *PatchConfigParams

WithConfiguration adds the configuration to the patch config params

func (*PatchConfigParams) WithContext

func (o *PatchConfigParams) WithContext(ctx context.Context) *PatchConfigParams

WithContext adds the context to the patch config params

func (*PatchConfigParams) WithDefaults

func (o *PatchConfigParams) WithDefaults() *PatchConfigParams

WithDefaults hydrates default values in the patch config params (not the query body).

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

func (*PatchConfigParams) WithHTTPClient

func (o *PatchConfigParams) WithHTTPClient(client *http.Client) *PatchConfigParams

WithHTTPClient adds the HTTPClient to the patch config params

func (*PatchConfigParams) WithTimeout

func (o *PatchConfigParams) WithTimeout(timeout time.Duration) *PatchConfigParams

WithTimeout adds the timeout to the patch config params

func (*PatchConfigParams) WriteToRequest

func (o *PatchConfigParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PatchConfigReader

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

PatchConfigReader is a Reader for the PatchConfig structure.

func (*PatchConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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