Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation deleteEphemeralKeysKey
Synopsis
- deleteEphemeralKeysKey :: forall m. MonadHTTP m => Text -> Maybe DeleteEphemeralKeysKeyRequestBody -> ClientT m (Response DeleteEphemeralKeysKeyResponse)
- data DeleteEphemeralKeysKeyRequestBody = DeleteEphemeralKeysKeyRequestBody {}
- mkDeleteEphemeralKeysKeyRequestBody :: DeleteEphemeralKeysKeyRequestBody
- data DeleteEphemeralKeysKeyResponse
Documentation
deleteEphemeralKeysKey Source #
:: forall m. MonadHTTP m | |
=> Text | key | Constraints: Maximum length of 5000 |
-> Maybe DeleteEphemeralKeysKeyRequestBody | The request body to send |
-> ClientT m (Response DeleteEphemeralKeysKeyResponse) | Monadic computation which returns the result of the operation |
DELETE /v1/ephemeral_keys/{key}
<p>Invalidates a short-lived API key for a given resource.</p>
data DeleteEphemeralKeysKeyRequestBody Source #
Defines the object schema located at paths./v1/ephemeral_keys/{key}.DELETE.requestBody.content.application/x-www-form-urlencoded.schema
in the specification.
DeleteEphemeralKeysKeyRequestBody | |
|
mkDeleteEphemeralKeysKeyRequestBody :: DeleteEphemeralKeysKeyRequestBody Source #
Create a new DeleteEphemeralKeysKeyRequestBody
with all required fields.
data DeleteEphemeralKeysKeyResponse Source #
Represents a response of the operation deleteEphemeralKeysKey
.
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), DeleteEphemeralKeysKeyResponseError
is used.
DeleteEphemeralKeysKeyResponseError String | Means either no matching case available or a parse error |
DeleteEphemeralKeysKeyResponse200 EphemeralKey | Successful response. |
DeleteEphemeralKeysKeyResponseDefault Error | Error response. |