[autohelp] Update opt types

Copy/paste (mostly) the dict from oslo.config.

Change-Id: I16c9e554f29f7dee08768d4a7c02991ad8718f66
This commit is contained in:
Gauvain Pocentek 2017-04-28 17:53:40 +02:00
parent 121ddfebd1
commit 4534f04bad
1 changed files with 4 additions and 3 deletions

View File

@ -55,14 +55,15 @@ _TYPE_DESCRIPTIONS = {
cfg.StrOpt: 'String',
cfg.BoolOpt: 'Boolean',
cfg.IntOpt: 'Integer',
cfg.IPOpt: 'IP',
cfg.FloatOpt: 'Floating point',
cfg.HostnameOpt: 'Hostname',
cfg.ListOpt: 'List',
cfg.DictOpt: 'Dict',
cfg.PortOpt: 'Port number',
cfg.MultiStrOpt: 'Multi-valued',
cfg.IPOpt: 'IP address',
cfg.PortOpt: 'Port number',
cfg.HostnameOpt: 'Hostname',
cfg.URIOpt: 'URI',
cfg.HostAddressOpt: 'Host address',
cfg._ConfigFileOpt: 'List of filenames',
cfg._ConfigDirOpt: 'List of directory names',
}