restapi

package
v0.0.0-...-686bfca Latest Latest
Warning

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

Go to latest
Published: Feb 18, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CceAPIAPI

type CceAPIAPI struct {
	Middleware func(middleware.Builder) http.Handler

	// BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator
	// APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator
	// BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator

	// JSONConsumer registers a consumer for the following mime types:
	//   - application/json
	JSONConsumer runtime.Consumer

	// JSONProducer registers a producer for the following mime types:
	//   - application/json
	JSONProducer runtime.Producer

	// EniDeleteEniHandler sets the operation handler for the delete eni operation
	EniDeleteEniHandler eni.DeleteEniHandler
	// IpamDeleteIpamIPHandler sets the operation handler for the delete ipam IP operation
	IpamDeleteIpamIPHandler ipam.DeleteIpamIPHandler
	// EndpointGetEndpointExtpluginStatusHandler sets the operation handler for the get endpoint extplugin status operation
	EndpointGetEndpointExtpluginStatusHandler endpoint.GetEndpointExtpluginStatusHandler
	// DaemonGetHealthzHandler sets the operation handler for the get healthz operation
	DaemonGetHealthzHandler daemon.GetHealthzHandler
	// MetricsGetMetricsHandler sets the operation handler for the get metrics operation
	MetricsGetMetricsHandler metrics.GetMetricsHandler
	// EniPostEniHandler sets the operation handler for the post eni operation
	EniPostEniHandler eni.PostEniHandler
	// IpamPostIpamHandler sets the operation handler for the post ipam operation
	IpamPostIpamHandler ipam.PostIpamHandler
	// IpamPostIpamIPHandler sets the operation handler for the post ipam IP operation
	IpamPostIpamIPHandler ipam.PostIpamIPHandler
	// EndpointPutEndpointProbeHandler sets the operation handler for the put endpoint probe operation
	EndpointPutEndpointProbeHandler endpoint.PutEndpointProbeHandler
	// ServeError is called when an error is received, there is a default handler
	// but you can set your own with this
	ServeError func(http.ResponseWriter, *http.Request, error)

	// PreServerShutdown is called before the HTTP(S) server is shutdown
	// This allows for custom functions to get executed before the HTTP(S) server stops accepting traffic
	PreServerShutdown func()

	// ServerShutdown is called when the HTTP(S) server is shut down and done
	// handling all active connections and does not accept connections any more
	ServerShutdown func()

	// Custom command line argument groups with their descriptions
	CommandLineOptionsGroups []swag.CommandLineOptionsGroup

	// User defined logger function.
	Logger func(string, ...interface{})
	// contains filtered or unexported fields
}

CceAPIAPI CCE

func NewCceAPIAPI

func NewCceAPIAPI(spec *loads.Document) *CceAPIAPI

NewCceAPIAPI creates a new CceAPI instance

func (*CceAPIAPI) AddMiddlewareFor

func (o *CceAPIAPI) AddMiddlewareFor(method, path string, builder middleware.Builder)

AddMiddlewareFor adds a http middleware to existing handler

func (*CceAPIAPI) AuthenticatorsFor

func (o *CceAPIAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator

AuthenticatorsFor gets the authenticators for the specified security schemes

func (*CceAPIAPI) Authorizer

func (o *CceAPIAPI) Authorizer() runtime.Authorizer

Authorizer returns the registered authorizer

func (*CceAPIAPI) ConsumersFor

func (o *CceAPIAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer

ConsumersFor gets the consumers for the specified media types. MIME type parameters are ignored here.

func (*CceAPIAPI) Context

func (o *CceAPIAPI) Context() *middleware.Context

Context returns the middleware context for the cce API API

func (*CceAPIAPI) DefaultConsumes

func (o *CceAPIAPI) DefaultConsumes() string

DefaultConsumes returns the default consumes media type

func (*CceAPIAPI) DefaultProduces

func (o *CceAPIAPI) DefaultProduces() string

DefaultProduces returns the default produces media type

func (*CceAPIAPI) Formats

func (o *CceAPIAPI) Formats() strfmt.Registry

Formats returns the registered string formats

func (*CceAPIAPI) HandlerFor

func (o *CceAPIAPI) HandlerFor(method, path string) (http.Handler, bool)

HandlerFor gets a http.Handler for the provided operation method and path

func (*CceAPIAPI) Init

func (o *CceAPIAPI) Init()

Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit

func (*CceAPIAPI) ProducersFor

func (o *CceAPIAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer

ProducersFor gets the producers for the specified media types. MIME type parameters are ignored here.

func (*CceAPIAPI) RegisterConsumer

func (o *CceAPIAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)

RegisterConsumer allows you to add (or override) a consumer for a media type.

func (*CceAPIAPI) RegisterFormat

func (o *CceAPIAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator)

RegisterFormat registers a custom format validator

func (*CceAPIAPI) RegisterProducer

func (o *CceAPIAPI) RegisterProducer(mediaType string, producer runtime.Producer)

RegisterProducer allows you to add (or override) a producer for a media type.

func (*CceAPIAPI) Serve

func (o *CceAPIAPI) Serve(builder middleware.Builder) http.Handler

Serve creates a http handler to serve the API over HTTP can be used directly in http.ListenAndServe(":8000", api.Serve(nil))

func (*CceAPIAPI) ServeErrorFor

func (o *CceAPIAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)

ServeErrorFor gets a error handler for a given operation id

func (*CceAPIAPI) SetDefaultConsumes

func (o *CceAPIAPI) SetDefaultConsumes(mediaType string)

SetDefaultConsumes returns the default consumes media type

func (*CceAPIAPI) SetDefaultProduces

func (o *CceAPIAPI) SetDefaultProduces(mediaType string)

SetDefaultProduces sets the default produces media type

func (*CceAPIAPI) SetSpec

func (o *CceAPIAPI) SetSpec(spec *loads.Document)

SetSpec sets a spec that will be served for the clients.

func (*CceAPIAPI) UseRedoc

func (o *CceAPIAPI) UseRedoc()

UseRedoc for documentation at /docs

func (*CceAPIAPI) UseSwaggerUI

func (o *CceAPIAPI) UseSwaggerUI()

UseSwaggerUI for documentation at /docs

func (*CceAPIAPI) Validate

func (o *CceAPIAPI) Validate() error

Validate validates the registrations in the CceAPIAPI

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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