Improve help messages for a few options
Closes-Bug: #1962037 Change-Id: If082a7f4cc09ffc42c68081dd43c2808b6c5f8a9changes/84/830684/1
parent
7bbce9761c
commit
bb7c630504
|
@ -56,7 +56,8 @@ class BaseV2Loader(BaseIdentityLoader):
|
|||
options.extend([
|
||||
opts.Opt('tenant-id', help='Tenant ID'),
|
||||
opts.Opt('tenant-name', help='Tenant Name'),
|
||||
opts.Opt('trust-id', help='Trust ID'),
|
||||
opts.Opt('trust-id',
|
||||
help='ID of the trust to use as a trustee use'),
|
||||
])
|
||||
|
||||
return options
|
||||
|
@ -83,7 +84,8 @@ class BaseV3Loader(BaseIdentityLoader):
|
|||
help='Domain ID containing project'),
|
||||
opts.Opt('project-domain-name',
|
||||
help='Domain name containing project'),
|
||||
opts.Opt('trust-id', help='Trust ID'),
|
||||
opts.Opt('trust-id',
|
||||
help='ID of the trust to use as a trustee use'),
|
||||
])
|
||||
|
||||
return options
|
||||
|
@ -148,7 +150,8 @@ class BaseGenericLoader(BaseIdentityLoader):
|
|||
help='Domain ID containing project'),
|
||||
opts.Opt('project-domain-name',
|
||||
help='Domain name containing project'),
|
||||
opts.Opt('trust-id', help='Trust ID'),
|
||||
opts.Opt('trust-id',
|
||||
help='ID of the trust to use as a trustee use'),
|
||||
opts.Opt('default-domain-id',
|
||||
help='Optional domain ID to use with v3 and v2 '
|
||||
'parameters. It will be used for both the user '
|
||||
|
|
|
@ -103,13 +103,17 @@ class Session(base.BaseLoader):
|
|||
'--os-cert',
|
||||
metavar='<certificate>',
|
||||
default=os.environ.get('OS_CERT'),
|
||||
help='Defaults to env[OS_CERT].')
|
||||
help='The location for the keystore (PEM formatted) '
|
||||
'containing the public key of this client. '
|
||||
'Defaults to env[OS_CERT].')
|
||||
|
||||
session_group.add_argument(
|
||||
'--os-key',
|
||||
metavar='<key>',
|
||||
default=os.environ.get('OS_KEY'),
|
||||
help='Defaults to env[OS_KEY].')
|
||||
help='The location for the keystore (PEM formatted) '
|
||||
'containing the private key of this client. '
|
||||
'Defaults to env[OS_KEY].')
|
||||
|
||||
session_group.add_argument(
|
||||
'--timeout',
|
||||
|
|
Loading…
Reference in New Issue