python-openstackclient/doc/source/command-objects/keypair.rst
Huanxuan Ao 43a07e133d Add missing '(name only)' message for keypair in computev2
In 'keypair show' command. One help message had '(name only)'
but the doc had not. And another had not '(name only)' but the
doc had. This patch Fixs them and keeps the consistent between
doc and help message.

Change-Id: Ic88219ae25a6f545a1db39e6b585e1857ae9e2e0
2016-07-04 14:45:40 +08:00

1.0 KiB

keypair

The badly named keypair is really the public key of an OpenSSH key pair to be used for access to created servers.

Compute v2

keypair create

Create new public key

keypair create

os keypair create
    [--public-key <file>]
    <name>

--public-key <file>

Filename for public key to add

<name>

New public key name

keypair delete

Delete public key(s)

keypair delete

os keypair delete
    <key> [<key> ...]

<key>

Public key(s) to delete (name only)

keypair list

List public key fingerprints

keypair list

os keypair list

keypair show

Display public key details

keypair show

os keypair show
    [--public-key]
    <key>

--public-key

Show only bare public key (name only)

<key>

Public key to display (name only)