Class VimServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.tacker.internal.BaseTackerServices
-
- org.openstack4j.openstack.tacker.internal.VimServiceImpl
-
- All Implemented Interfaces:
VimService,RestService
public class VimServiceImpl extends BaseTackerServices implements VimService
- Author:
- Vishvesh Deshmukh
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
BaseOpenStackService.Invocation<R>
-
-
Constructor Summary
Constructors Constructor Description VimServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionResponsedelete(String vimId)Delete Vim - Deletes a specified vimId from the VIM catalog.List<? extends TackerVim>list()List vims - Lists instantiated vims in VIM ManagerList<? extends TackerVim>list(Map<String,String> filteringParams)List vims - Lists instantiated vims in VIM Manager filtered by parameters.Vimregister(Vim vim)Create Vim - Register a Vim entry based on the Vim template.TackerVimshow(String vimId)Show Vim - Show information for a specified vimId.-
Methods inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
delete, deleteWithResponse, get, getProvider, getServiceVersion, getWithResponse, getXOpenstackRequestId, head, patch, patchWithResponse, post, postWithResponse, put, putWithResponse, request, toList, uri
-
-
-
-
Method Detail
-
list
public List<? extends TackerVim> list()
List vims - Lists instantiated vims in VIM Manager- Specified by:
listin interfaceVimService- Returns:
- list of all Vim(s)
-
list
public List<? extends TackerVim> list(Map<String,String> filteringParams)
List vims - Lists instantiated vims in VIM Manager filtered by parameters.- Specified by:
listin interfaceVimService- Parameters:
filteringParams- map (name, value) of filtering parameters- Returns:
- filtered list of Vim(s)
-
show
public TackerVim show(String vimId)
Show Vim - Show information for a specified vimId.- Specified by:
showin interfaceVimService- Parameters:
vimId- the Vim identifier- Returns:
- the Vim or null if not found
-
delete
public ActionResponse delete(String vimId)
Delete Vim - Deletes a specified vimId from the VIM catalog.- Specified by:
deletein interfaceVimService- Parameters:
vimId- the Vim identifier- Returns:
- the action response
-
register
public Vim register(Vim vim)
Create Vim - Register a Vim entry based on the Vim template.- Specified by:
registerin interfaceVimService- Returns:
- Vim
-
-