github-0.23: Access to the GitHub API, v3.
LicenseBSD-3-Clause
MaintainerTodd Mohney <toddmohney@gmail.com>
Safe HaskellNone
LanguageHaskell2010

GitHub.Endpoints.Repos.DeployKeys

Description

The deploy keys API, as described at https://developer.github.com/v3/repos/keys

Synopsis

Querying deploy keys

deployKeysFor' :: Auth -> Name Owner -> Name Repo -> IO (Either Error (Vector RepoDeployKey)) Source #

Querying deploy keys.

deployKeyFor' :: Auth -> Name Owner -> Name Repo -> Id RepoDeployKey -> IO (Either Error RepoDeployKey) Source #

Querying a deploy key

Create

createRepoDeployKey' :: Auth -> Name Owner -> Name Repo -> NewRepoDeployKey -> IO (Either Error RepoDeployKey) Source #

Create a deploy key

Delete