The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pithub::Repos::Keys - Github v3 Repo Keys API

VERSION

version 0.01025

METHODS

create

  • Create

        POST /repos/:user/:repo/keys

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->create(
            user => 'plu',
            repo => 'Pithub',
            data => {
                title => 'some key',
                key   => 'ssh-rsa AAA...',
            },
        );

delete

  • Delete

        DELETE /repos/:user/:repo/keys/:id

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->delete(
            user   => 'plu',
            repo   => 'Pithub',
            key_id => 1,
        );

get

  • Get

        GET /repos/:user/:repo/keys/:id

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->get(
            user   => 'plu',
            repo   => 'Pithub',
            key_id => 1,
        );

list

  • List

        GET /repos/:user/:repo/keys

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->list(
            user => 'plu',
            repo => 'Pithub',
        );

update

  • Edit

        PATCH /repos/:user/:repo/keys/:id

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->update(
            user   => 'plu',
            repo   => 'Pithub',
            key_id => 1,
            data   => { title => 'some new title' },
        );

AUTHOR

Johannes Plunien <plu@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Johannes Plunien.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.