operations

package
v0.0.0-...-8f56799 Latest Latest
Warning

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

Go to latest
Published: Dec 27, 2024 License: EPL-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type TocAPI

type TocAPI 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

	// LogExportLogHandler sets the operation handler for the export log operation
	LogExportLogHandler logops.ExportLogHandler
	// ArchiveGetArchiveByIDHandler sets the operation handler for the get archive by Id operation
	ArchiveGetArchiveByIDHandler archive.GetArchiveByIDHandler
	// ArchiveGetArchivesHandler sets the operation handler for the get archives operation
	ArchiveGetArchivesHandler archive.GetArchivesHandler
	// BackupGetBackupByIDHandler sets the operation handler for the get backup by Id operation
	BackupGetBackupByIDHandler backup.GetBackupByIDHandler
	// BackupGetBackupsHandler sets the operation handler for the get backups operation
	BackupGetBackupsHandler backup.GetBackupsHandler
	// QuotaGetQuotasHandler sets the operation handler for the get quotas operation
	QuotaGetQuotasHandler quota.GetQuotasHandler
	// RestorationGetRestorationByIDHandler sets the operation handler for the get restoration by Id operation
	RestorationGetRestorationByIDHandler restoration.GetRestorationByIDHandler
	// RestorationGetRestorationsHandler sets the operation handler for the get restorations operation
	RestorationGetRestorationsHandler restoration.GetRestorationsHandler
	// TransferGetTransferByIDHandler sets the operation handler for the get transfer by Id operation
	TransferGetTransferByIDHandler transfer.GetTransferByIDHandler
	// TransferGetTransfersHandler sets the operation handler for the get transfers operation
	TransferGetTransfersHandler transfer.GetTransfersHandler
	// ArchiveNewArchiveHandler sets the operation handler for the new archive operation
	ArchiveNewArchiveHandler archive.NewArchiveHandler
	// BackupNewBackupHandler sets the operation handler for the new backup operation
	BackupNewBackupHandler backup.NewBackupHandler
	// RestorationNewRestorationHandler sets the operation handler for the new restoration operation
	RestorationNewRestorationHandler restoration.NewRestorationHandler
	// SynchronizationNewSynchronizationHandler sets the operation handler for the new synchronization operation
	SynchronizationNewSynchronizationHandler synchronization.NewSynchronizationHandler
	// TransferNewTransferHandler sets the operation handler for the new transfer operation
	TransferNewTransferHandler transfer.NewTransferHandler
	// ArchiveUpdateArchiveHandler sets the operation handler for the update archive operation
	ArchiveUpdateArchiveHandler archive.UpdateArchiveHandler
	// BackupUpdateBackupHandler sets the operation handler for the update backup operation
	BackupUpdateBackupHandler backup.UpdateBackupHandler
	// LogUpdateLogHandler sets the operation handler for the update log operation
	LogUpdateLogHandler logops.UpdateLogHandler
	// RestorationUpdateRestorationHandler sets the operation handler for the update restoration operation
	RestorationUpdateRestorationHandler restoration.UpdateRestorationHandler
	// SynchronizationUpdateSynchronizationHandler sets the operation handler for the update synchronization operation
	SynchronizationUpdateSynchronizationHandler synchronization.UpdateSynchronizationHandler
	// TransferUpdateTransferHandler sets the operation handler for the update transfer operation
	TransferUpdateTransferHandler transfer.UpdateTransferHandler

	// 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
}

TocAPI An API to create backup and restoration

func NewTocAPI

func NewTocAPI(spec *loads.Document) *TocAPI

NewTocAPI creates a new Toc instance

func (*TocAPI) AddMiddlewareFor

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

AddMiddlewareFor adds a http middleware to existing handler

func (*TocAPI) AuthenticatorsFor

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

AuthenticatorsFor gets the authenticators for the specified security schemes

func (*TocAPI) Authorizer

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

Authorizer returns the registered authorizer

func (*TocAPI) ConsumersFor

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

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

func (*TocAPI) Context

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

Context returns the middleware context for the toc API

func (*TocAPI) DefaultConsumes

func (o *TocAPI) DefaultConsumes() string

DefaultConsumes returns the default consumes media type

func (*TocAPI) DefaultProduces

func (o *TocAPI) DefaultProduces() string

DefaultProduces returns the default produces media type

func (*TocAPI) Formats

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

Formats returns the registered string formats

func (*TocAPI) HandlerFor

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

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

func (*TocAPI) Init

func (o *TocAPI) Init()

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

func (*TocAPI) ProducersFor

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

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

func (*TocAPI) RegisterConsumer

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

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

func (*TocAPI) RegisterFormat

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

RegisterFormat registers a custom format validator

func (*TocAPI) RegisterProducer

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

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

func (*TocAPI) Serve

func (o *TocAPI) 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 (*TocAPI) ServeErrorFor

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

ServeErrorFor gets a error handler for a given operation id

func (*TocAPI) SetDefaultConsumes

func (o *TocAPI) SetDefaultConsumes(mediaType string)

SetDefaultConsumes returns the default consumes media type

func (*TocAPI) SetDefaultProduces

func (o *TocAPI) SetDefaultProduces(mediaType string)

SetDefaultProduces sets the default produces media type

func (*TocAPI) SetSpec

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

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

func (*TocAPI) UseRedoc

func (o *TocAPI) UseRedoc()

UseRedoc for documentation at /docs

func (*TocAPI) UseSwaggerUI

func (o *TocAPI) UseSwaggerUI()

UseSwaggerUI for documentation at /docs

func (*TocAPI) Validate

func (o *TocAPI) Validate() error

Validate validates the registrations in the TocAPI

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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