|
|
|
Description |
Implementation of the RAPI client interface.
|
|
Synopsis |
|
filePrefix :: String | | getUrl :: Monad m => String -> IO (m String) | | ioErrToResult :: IO a -> IO (Result a) | | formatHost :: String -> String | | getInstances :: NameAssoc -> String -> Result [(String, Instance)] | | getNodes :: NameAssoc -> String -> Result [(String, Node)] | | getGroups :: String -> Result [(String, Group)] | | parseInstance :: NameAssoc -> JSRecord -> Result (String, Instance) | | parseNode :: NameAssoc -> JSRecord -> Result (String, Node) | | parseGroup :: JSRecord -> Result (String, Group) | | parseCluster :: JSObject JSValue -> Result ([String], IPolicy) | | readDataHttp :: String -> IO (Result String, Result String, Result String, Result String) | | readDataFile :: String -> IO (Result String, Result String, Result String, Result String) | | readData :: String -> IO (Result String, Result String, Result String, Result String) | | parseData :: (Result String, Result String, Result String, Result String) -> Result ClusterData | | loadData :: String -> IO (Result ClusterData) |
|
|
Documentation |
|
|
File method prefix.
|
|
getUrl :: Monad m => String -> IO (m String) | Source |
|
Read an URL via curl and return the body if successful.
|
|
|
Helper to convert I/O errors in Bad values.
|
|
formatHost :: String -> String | Source |
|
Append the default port if not passed in.
|
|
|
Parse a instance list in JSON format.
|
|
|
Parse a node list in JSON format.
|
|
|
Parse a group list in JSON format.
|
|
|
Construct an instance from a JSON object.
|
|
|
Construct a node from a JSON object.
|
|
|
Construct a group from a JSON object.
|
|
|
Parse cluster data from the info resource.
|
|
|
:: String | Cluster or URL to use as source
| -> IO (Result String, Result String, Result String, Result String) | | Loads the raw cluster data from an URL.
|
|
|
|
:: String | Path to the directory containing the files
| -> IO (Result String, Result String, Result String, Result String) | | Loads the raw cluster data from the filesystem.
|
|
|
|
|
|
|
Builds the cluster data from the raw Rapi content.
|
|
|
:: String | Cluster or URL to use as source
| -> IO (Result ClusterData) | | Top level function for data loading.
|
|
|
Produced by Haddock version 2.6.0 |