Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation postRadarValueListItems
Synopsis
- postRadarValueListItems :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostRadarValueListItemsRequestBody -> m (Either HttpException (Response PostRadarValueListItemsResponse))
- postRadarValueListItemsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostRadarValueListItemsRequestBody -> m (Either HttpException (Response ByteString))
- postRadarValueListItemsM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostRadarValueListItemsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostRadarValueListItemsResponse))
- postRadarValueListItemsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostRadarValueListItemsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data PostRadarValueListItemsRequestBody = PostRadarValueListItemsRequestBody {}
- data PostRadarValueListItemsResponse
Documentation
postRadarValueListItems Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> PostRadarValueListItemsRequestBody | The request body to send |
-> m (Either HttpException (Response PostRadarValueListItemsResponse)) | Monad containing the result of the operation |
POST /v1/radar/value_list_items
<p>Creates a new <code>ValueListItem</code> object, which is added to the specified parent value list.</p>
postRadarValueListItemsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> PostRadarValueListItemsRequestBody -> m (Either HttpException (Response ByteString)) Source #
POST /v1/radar/value_list_items
The same as postRadarValueListItems
but returns the raw ByteString
postRadarValueListItemsM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostRadarValueListItemsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response PostRadarValueListItemsResponse)) Source #
POST /v1/radar/value_list_items
Monadic version of postRadarValueListItems
(use with runWithConfiguration
)
postRadarValueListItemsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => PostRadarValueListItemsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
POST /v1/radar/value_list_items
Monadic version of postRadarValueListItemsRaw
(use with runWithConfiguration
)
data PostRadarValueListItemsRequestBody Source #
Defines the data type for the schema postRadarValueListItemsRequestBody
PostRadarValueListItemsRequestBody | |
|
data PostRadarValueListItemsResponse Source #
Represents a response of the operation postRadarValueListItems
.
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), PostRadarValueListItemsResponseError
is used.
PostRadarValueListItemsResponseError String | Means either no matching case available or a parse error |
PostRadarValueListItemsResponse200 Radar'valueListItem | Successful response. |
PostRadarValueListItemsResponseDefault Error | Error response. |