mirror of https://github.com/apache/cloudstack.git
cloudmonkey: misses a couple of verbs for 'lock' and 'disassociate'
The following api commands have no cloudmonkey equivalent because cloudmonkey grammar misses the related verbs. ~/tools/cli/cloudmonkey/marvin/cloudstackAPI(branch:master*) $ ls disassociateIpAddress.py disassociateIpAddress.py ------------------------------------------------------------ ~/tools/cli/cloudmonkey/marvin/cloudstackAPI(branch:master*) $ ls lock* lockAccount.py lockUser.py ------------------------------------------------------------ Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
parent
1e40551cd5
commit
75b059e6e4
|
|
@ -40,9 +40,9 @@ config_fields = {'host': 'localhost', 'port': '8080',
|
|||
os.path.expanduser('~/.cloudmonkey_history')}
|
||||
|
||||
# Add verbs in grammar
|
||||
grammar = ['create', 'list', 'delete', 'update',
|
||||
grammar = ['create', 'list', 'delete', 'update', 'lock',
|
||||
'enable', 'activate', 'disable', 'add', 'remove',
|
||||
'attach', 'detach', 'associate', 'generate', 'ldap',
|
||||
'attach', 'detach', 'associate', 'disassociate', 'generate', 'ldap',
|
||||
'assign', 'authorize', 'change', 'register', 'configure',
|
||||
'start', 'restart', 'reboot', 'stop', 'reconnect',
|
||||
'cancel', 'destroy', 'revoke', 'mark', 'reset',
|
||||
|
|
|
|||
Loading…
Reference in New Issue