Documentation
¶
Index ¶
- Variables
- func AbortActionID(w http.ResponseWriter, req *http.Request)
- func ConfigureSystemForUnitTesting()
- func CreateAction(w http.ResponseWriter, req *http.Request)
- func CreateImage(w http.ResponseWriter, req *http.Request)
- func CreateRouterAndHandler()
- func CreateSnapshot(w http.ResponseWriter, req *http.Request)
- func DeleteAction(w http.ResponseWriter, req *http.Request)
- func DeleteImage(w http.ResponseWriter, req *http.Request)
- func DeleteSnapshot(w http.ResponseWriter, req *http.Request)
- func DrainAndCloseRequestBody(req *http.Request)
- func DrainAndCloseResponseBody(resp *http.Response)
- func GetAction(w http.ResponseWriter, req *http.Request)
- func GetActionIDOperations(w http.ResponseWriter, req *http.Request)
- func GetActionIDStatus(w http.ResponseWriter, req *http.Request)
- func GetActionOperationID(w http.ResponseWriter, req *http.Request)
- func GetDefaultActionParameters() (params storage.ActionParameters)
- func GetDefaultCompositeActionParameters() (params storage.ActionParameters)
- func GetDefaultCompositeSnapshotParameters() (params storage.SnapshotParameters)
- func GetDefaultSnapshotParameters() (params storage.SnapshotParameters)
- func GetDefaultSnapshotParametersMarshaled() (params presentation.SnapshotParametersMarshaled)
- func GetImage(w http.ResponseWriter, req *http.Request)
- func GetImages(w http.ResponseWriter, req *http.Request)
- func GetOperationID(w http.ResponseWriter, req *http.Request)
- func GetSnapshot(w http.ResponseWriter, req *http.Request)
- func GetSnapshots(w http.ResponseWriter, req *http.Request)
- func GetUUIDFromVars(key string, r *http.Request) (passback model.Passback)
- func Index(w http.ResponseWriter, r *http.Request)
- func LoaderDeleteID(w http.ResponseWriter, req *http.Request)
- func LoaderLoad(w http.ResponseWriter, req *http.Request)
- func LoaderLoadNexus(w http.ResponseWriter, req *http.Request)
- func LoaderStatus(w http.ResponseWriter, req *http.Request)
- func LoaderStatusID(w http.ResponseWriter, req *http.Request)
- func Logger(inner http.Handler, name string) http.Handler
- func NewRouter() *mux.Router
- func ServiceStatus(w http.ResponseWriter, req *http.Request)
- func ServiceStatusDetails(w http.ResponseWriter, req *http.Request)
- func ServiceStatusVersion(w http.ResponseWriter, req *http.Request)
- func StartRestoreSnapshot(w http.ResponseWriter, req *http.Request)
- func UpdateImage(w http.ResponseWriter, req *http.Request)
- func WriteHeaders(w http.ResponseWriter, pb model.Passback)
- func WriteHeadersWithLocation(w http.ResponseWriter, pb model.Passback, location string)
- func WriteJSON(w http.ResponseWriter, i interface{})
- type LoaderID
- type Route
- type Routes
Constants ¶
This section is empty.
Variables ¶
var DSP storage.StorageProvider
var IsHandled bool
IsHandled - setups protection for the mutex
var IsHandledCSFUT bool
var UTMutex sync.Mutex
Functions ¶
func AbortActionID ¶
func AbortActionID(w http.ResponseWriter, req *http.Request)
AbortActionID - halt a running action
func ConfigureSystemForUnitTesting ¶
func ConfigureSystemForUnitTesting()
ToDo should replace storage provider with ETCD
func CreateAction ¶
func CreateAction(w http.ResponseWriter, req *http.Request)
CreateAction - creates an action and will trigger an 'update'
func CreateImage ¶
func CreateImage(w http.ResponseWriter, req *http.Request)
CreateImage - will create an image record
func CreateRouterAndHandler ¶
func CreateRouterAndHandler()
CreateRouterAndHandler - Create a singleton for setting up routing for the UnitTests
func CreateSnapshot ¶
func CreateSnapshot(w http.ResponseWriter, req *http.Request)
CreateSnapshot - record a snapshot of the system
func DeleteAction ¶
func DeleteAction(w http.ResponseWriter, req *http.Request)
DeleteAction - delete action by actionID
func DeleteImage ¶
func DeleteImage(w http.ResponseWriter, req *http.Request)
DeleteImage - will delete an image record
func DeleteSnapshot ¶
func DeleteSnapshot(w http.ResponseWriter, req *http.Request)
DeleteSnapshot - delete a system snapshot
func DrainAndCloseRequestBody ¶ added in v1.35.0
While it is generally not a requirement to close request bodies in server handlers, it is good practice. If a body is only partially read, there can be a resource leak. Additionally, if the body is not read at all, the server may not be able to reuse the connection.
func DrainAndCloseResponseBody ¶ added in v1.35.0
Response bodies on the other hand, should always be drained and closed, else we leak resources
func GetAction ¶
func GetAction(w http.ResponseWriter, req *http.Request)
GetAction - returns all actions, or action by actionID
func GetActionIDOperations ¶
func GetActionIDOperations(w http.ResponseWriter, req *http.Request)
GetActionIDOperations - get action with detailed operations
func GetActionIDStatus ¶
func GetActionIDStatus(w http.ResponseWriter, req *http.Request)
GetActionIDStatus - get action with summary operations
func GetActionOperationID ¶
func GetActionOperationID(w http.ResponseWriter, req *http.Request)
GetActionOperationID - get an operation by action/operation ids
func GetDefaultActionParameters ¶
func GetDefaultActionParameters() (params storage.ActionParameters)
func GetDefaultCompositeActionParameters ¶
func GetDefaultCompositeActionParameters() (params storage.ActionParameters)
func GetDefaultCompositeSnapshotParameters ¶
func GetDefaultCompositeSnapshotParameters() (params storage.SnapshotParameters)
func GetDefaultSnapshotParameters ¶
func GetDefaultSnapshotParameters() (params storage.SnapshotParameters)
func GetDefaultSnapshotParametersMarshaled ¶
func GetDefaultSnapshotParametersMarshaled() (params presentation.SnapshotParametersMarshaled)
func GetImage ¶
func GetImage(w http.ResponseWriter, req *http.Request)
GetImage - will return an image
func GetImages ¶
func GetImages(w http.ResponseWriter, req *http.Request)
GetImages - will return all images
func GetOperationID ¶
func GetOperationID(w http.ResponseWriter, req *http.Request)
GetOperationID - get an operation by operation id NOTE: Returns same structure as GetActionOperationID Since operation ids are unique, action id is not needed to locate operation.
func GetSnapshot ¶
func GetSnapshot(w http.ResponseWriter, req *http.Request)
GetSnapshot - returns a snapshot by name
func GetSnapshots ¶
func GetSnapshots(w http.ResponseWriter, req *http.Request)
GetSnapshots - returns all snapshot summaries
func GetUUIDFromVars ¶
GetUUIDFromVars - attempts to retrieve a UUID from an http.Request URL returns a passback
func LoaderDeleteID ¶
func LoaderDeleteID(w http.ResponseWriter, req *http.Request)
func LoaderLoad ¶
func LoaderLoad(w http.ResponseWriter, req *http.Request)
func LoaderLoadNexus ¶
func LoaderLoadNexus(w http.ResponseWriter, req *http.Request)
func LoaderStatus ¶
func LoaderStatus(w http.ResponseWriter, req *http.Request)
func LoaderStatusID ¶
func LoaderStatusID(w http.ResponseWriter, req *http.Request)
func Logger ¶
Logger - used for logging what methods were invoked and how long they took to complete
func ServiceStatus ¶
func ServiceStatus(w http.ResponseWriter, req *http.Request)
func ServiceStatusDetails ¶
func ServiceStatusDetails(w http.ResponseWriter, req *http.Request)
func ServiceStatusVersion ¶
func ServiceStatusVersion(w http.ResponseWriter, req *http.Request)
func StartRestoreSnapshot ¶
func StartRestoreSnapshot(w http.ResponseWriter, req *http.Request)
StartRestoreSnapshot - triggers an action; by restoring a snapshot. Returns and actionID
func UpdateImage ¶
func UpdateImage(w http.ResponseWriter, req *http.Request)
UpdateImage - will create or update an image record
func WriteHeaders ¶
func WriteHeaders(w http.ResponseWriter, pb model.Passback)
WriteHeaders - writes JSON to the open http connection along with headers
func WriteHeadersWithLocation ¶
func WriteHeadersWithLocation(w http.ResponseWriter, pb model.Passback, location string)
func WriteJSON ¶
func WriteJSON(w http.ResponseWriter, i interface{})
WriteJSON - writes JSON to the open http connection