Merge "Add --tenant-id in VIM & VNFD osc commands"

This commit is contained in:
Zuul 2018-02-26 05:31:36 +00:00 committed by Gerrit Code Review
commit 9a36c0e4ea
2 changed files with 6 additions and 0 deletions

View File

@ -98,6 +98,9 @@ class CreateVIM(command.ShowOne):
parser.add_argument(
'name', metavar='NAME',
help=_('Set a name for the VIM'))
parser.add_argument(
'--tenant-id', metavar='TENANT_ID',
help=_('The owner tenant ID or project ID'))
parser.add_argument(
'--config-file',
required=True,

View File

@ -55,6 +55,9 @@ class CreateVNFD(command.ShowOne):
parser.add_argument(
'name', metavar='NAME',
help=_('Name for VNFD'))
parser.add_argument(
'--tenant-id', metavar='TENANT_ID',
help=_('The owner tenant ID or project ID'))
parser.add_argument(
'--vnfd-file',
required=True,