mirror of https://github.com/apache/cloudstack.git
Add new api to gen_toc.py to avoid api-doc build error.
This commit is contained in:
parent
1c448cd6e3
commit
cd2d066fda
|
|
@ -245,8 +245,6 @@ listS3s=1
|
|||
addImageStore=1
|
||||
listImageStores=1
|
||||
deleteImageStore=1
|
||||
enableImageStore=1
|
||||
|
||||
|
||||
#### host commands
|
||||
addHost=3
|
||||
|
|
|
|||
|
|
@ -466,11 +466,11 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe
|
|||
public ManagementServerImpl() {
|
||||
setRunLevel(ComponentLifecycle.RUN_LEVEL_APPLICATION_MAINLOOP);
|
||||
}
|
||||
|
||||
|
||||
public List<UserAuthenticator> getUserAuthenticators() {
|
||||
return _userAuthenticators;
|
||||
}
|
||||
|
||||
|
||||
public void setUserAuthenticators(List<UserAuthenticator> authenticators) {
|
||||
_userAuthenticators = authenticators;
|
||||
}
|
||||
|
|
@ -2301,6 +2301,9 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe
|
|||
cmdList.add(AssignToGlobalLoadBalancerRuleCmd.class);
|
||||
cmdList.add(RemoveFromGlobalLoadBalancerRuleCmd.class);
|
||||
cmdList.add(ListStorageProvidersCmd.class);
|
||||
cmdList.add(AddImageStoreCmd.class);
|
||||
cmdList.add(ListImageStoresCmd.class);
|
||||
cmdList.add(DeleteImageStoreCmd.class);
|
||||
return cmdList;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -138,6 +138,9 @@ known_categories = {
|
|||
'addIpToNic': 'Nic',
|
||||
'removeIpFromNic': 'Nic',
|
||||
'listNics':'Nic',
|
||||
'addImageStore': 'Image Store',
|
||||
'listImageStores': 'Image Store',
|
||||
'deleteImageStore': 'Image Store',
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue