Class SoftwareConfigServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.heat.internal.BaseHeatServices
-
- org.openstack4j.openstack.heat.internal.SoftwareConfigServiceImpl
-
- All Implemented Interfaces:
SoftwareConfigService,RestService
public class SoftwareConfigServiceImpl extends BaseHeatServices implements SoftwareConfigService
Software Configuration Service for HEAT Orchestration- Author:
- Jeremy Unruh
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
BaseOpenStackService.Invocation<R>
-
-
Constructor Summary
Constructors Constructor Description SoftwareConfigServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SoftwareConfigcreate(SoftwareConfig sc)Creates a new Software Config.ActionResponsedelete(String configId)Deletes a Software Config by IDSoftwareConfigshow(String configId)Fetches a Software Configuration by ID-
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
-
create
public SoftwareConfig create(SoftwareConfig sc)
Creates a new Software Config. SeeBuilders.softwareConfig()for creating the model- Specified by:
createin interfaceSoftwareConfigService- Parameters:
sc- the software config to create- Returns:
- the newly created SoftwareConfig
-
show
public SoftwareConfig show(String configId)
Fetches a Software Configuration by ID- Specified by:
showin interfaceSoftwareConfigService- Parameters:
configId- the configuration ID- Returns:
- SoftwareConfig
-
delete
public ActionResponse delete(String configId)
Deletes a Software Config by ID- Specified by:
deletein interfaceSoftwareConfigService- Parameters:
configId- the software config ID to delete- Returns:
- the action response
-
-