Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation get_performance_obligations
Synopsis
- get_performance_obligations :: forall m. MonadHTTP m => ClientT m (Response Get_performance_obligationsResponse)
- data Get_performance_obligationsResponse
- get_performance_obligationsWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response Get_performance_obligationsResponse)
- get_performance_obligationsRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- get_performance_obligationsWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
get_performance_obligations Source #
:: forall m. MonadHTTP m | |
=> ClientT m (Response Get_performance_obligationsResponse) | Monadic computation which returns the result of the operation |
GET /performance_obligations
Get a site's Performance Obligations
data Get_performance_obligationsResponse Source #
Represents a response of the operation get_performance_obligations
.
The response constructor is chosen by the status code of the response. If no case matches (no specific case for the response code, no range case, no default case), Get_performance_obligationsResponseError
is used.
Get_performance_obligationsResponseError String | Means either no matching case available or a parse error |
Get_performance_obligationsResponse200 PerformanceObligationList | A list of Performance Obligations. |
Get_performance_obligationsResponseDefault Error | Unexpected error. |
get_performance_obligationsWithConfiguration Source #
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response Get_performance_obligationsResponse) | Monadic computation which returns the result of the operation |
GET /performance_obligations
The same as get_performance_obligations
but accepts an explicit configuration.
get_performance_obligationsRaw Source #
:: forall m. MonadHTTP m | |
=> ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /performance_obligations
The same as get_performance_obligations
but returns the raw ByteString
.
get_performance_obligationsWithConfigurationRaw Source #
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /performance_obligations
The same as get_performance_obligations
but accepts an explicit configuration and returns the raw ByteString
.