<<

Bugzilla::App::Command::revoke_api_keys

NAME

Bugzilla::App::Command::revoke_api_keys - revoke API keys command

SYNOPSIS

  Usage: APPLICATION revoke_api_keys [OPTIONS]

    mojo revoke_api_keys -a deadbeef

  Options:
    -h, --help                  Show this summary of available options
    -a, --app-id app_id         Match against a specific app_id
    -d, --description desc      Match against a specific description

DESCRIPTION

Bugzilla::App::Command::revoke_api_keys revokes API keys.

ATTRIBUTES

Bugzilla::App::Command::revoke_api_keys inherits all attributes from Mojolicious::Command and implements the following new ones.

description

  my $description = $revoke_api_keys->description;
  $revoke_api_keys        = $revoke_api_keys->description('Foo');

Short description of this command, used for the command list.

usage

  my $usage = $revoke_api_keys->usage;
  $revoke_api_keys  = $revoke_api_keys->usage('Foo');

Usage information for this command, used for the help screen.

METHODS

Bugzilla::App::Command::revoke_api_keys inherits all methods from Mojolicious::Command and implements the following new ones.

run

  $revoke_api_keys->run(@ARGV);

Run this command.

<<