Package com.morpheusdata.core
Interface MorpheusComputeServerService
- All Superinterfaces:
MorpheusDataQueryService<ComputeServer>,MorpheusDataService<ComputeServer,,ComputeServerIdentityProjection> MorpheusIdentityService<ComputeServerIdentityProjection>
public interface MorpheusComputeServerService
extends MorpheusDataService<ComputeServer,ComputeServerIdentityProjection>, MorpheusIdentityService<ComputeServerIdentityProjection>
Context methods for syncing
ComputeServer in Morpheus- Since:
- 0.8.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the ComputePort context used for performing sync operations onComputeServerAccessrelated assets within Morpheus.Returns the ComputePort context used for performing sync operations onComputePortrelated assets within Morpheus.Returns the ComputeServerInterfaceContext used for performing updates or queries onComputeServerInterfacerelated assets within Morpheus.io.reactivex.rxjava3.core.Observable<ComputeServer>listByCloudAndExternalIdIn(Long cloudId, Collection<String> externalIds) Lists allComputeServerobjects by cloud ID and a list of External IDs.io.reactivex.rxjava3.core.Observable<ComputeServer>listByResourcePoolId(Long resourcePoolId) Lists allComputeServerobjects by aComputeZonePool.io.reactivex.rxjava3.core.Observable<ComputeServerIdentityProjection>listIdentityProjections(Long cloudId, String regionCode) Get a list ofComputeServerprojections based on Cloud idio.reactivex.rxjava3.core.Observable<ComputeServerIdentityProjection>listSyncProjections(Long cloudId) Deprecated.io.reactivex.rxjava3.core.Single<Boolean>remove(List<ComputeServer> computeServers, InstanceScale instanceScale) Remove persisted ComputeServers from Morpheus and remove them theInstanceScalethey are associated withio.reactivex.rxjava3.core.Single<Boolean>restartServer(Long computeServerId) Restart a ComputeServer.io.reactivex.rxjava3.core.Single<Boolean>startServer(Long computeServerId) Start a ComputeServer.io.reactivex.rxjava3.core.Single<Boolean>stopServer(Long computeServerId) Stop a ComputeServer.io.reactivex.rxjava3.core.Single<Void>updatePowerState(Long computeServerId, ComputeServer.PowerState state) Update the power state of a server and any related vmsMethods inherited from interface com.morpheusdata.core.MorpheusDataQueryService
count, find, get, list, list, listById, listOptions, listOptions, searchMethods inherited from interface com.morpheusdata.core.MorpheusDataService
bulkCreate, bulkRemove, bulkSave, create, create, remove, remove, save, saveMethods inherited from interface com.morpheusdata.core.MorpheusIdentityService
getIdentityProperties, listIdentityProjections
-
Method Details
-
listIdentityProjections
io.reactivex.rxjava3.core.Observable<ComputeServerIdentityProjection> listIdentityProjections(Long cloudId, String regionCode) Get a list ofComputeServerprojections based on Cloud id- Parameters:
cloudId- Cloud idregionCode- theComputeZoneRegionto optionally filter by- Returns:
- Observable stream of sync projection
-
listSyncProjections
@Deprecated io.reactivex.rxjava3.core.Observable<ComputeServerIdentityProjection> listSyncProjections(Long cloudId) Deprecated.replaced by {listIdentityProjections(Long, String)}Get a list ofComputeServerprojections based on Cloud id- Parameters:
cloudId- Cloud id- Returns:
- Observable stream of sync projection
-
listByCloudAndExternalIdIn
io.reactivex.rxjava3.core.Observable<ComputeServer> listByCloudAndExternalIdIn(Long cloudId, Collection<String> externalIds) Lists allComputeServerobjects by cloud ID and a list of External IDs.- Parameters:
cloudId- the cloud to filter the list of servers by.externalIds- a Collection of external Ids to filter the list of servers by- Returns:
- an RxJava Observable stream of
ComputeServerto be subscribed to.
-
listByResourcePoolId
Lists allComputeServerobjects by aComputeZonePool.- Parameters:
resourcePoolId- the id of the resource pool (ComputeZonePool) to filter the list of servers by.- Returns:
- an RxJava Observable stream of
ComputeServerto be subscribed to.
-
updatePowerState
io.reactivex.rxjava3.core.Single<Void> updatePowerState(Long computeServerId, ComputeServer.PowerState state) Update the power state of a server and any related vms- Parameters:
computeServerId- id of theComputeServerstate- power state- Returns:
- void
-
getComputeServerInterface
MorpheusComputeServerInterfaceService getComputeServerInterface()Returns the ComputeServerInterfaceContext used for performing updates or queries onComputeServerInterfacerelated assets within Morpheus.- Returns:
- An instance of the ComputeServerInterface Context
-
getComputePort
MorpheusComputePortService getComputePort()Returns the ComputePort context used for performing sync operations onComputePortrelated assets within Morpheus.- Returns:
- An instance of the ComputePort context
-
getAccess
MorpheusComputeServerAccessService getAccess()Returns the ComputePort context used for performing sync operations onComputeServerAccessrelated assets within Morpheus.- Returns:
- An instance of the ComputeServerAccess context
-
remove
io.reactivex.rxjava3.core.Single<Boolean> remove(List<ComputeServer> computeServers, InstanceScale instanceScale) Remove persisted ComputeServers from Morpheus and remove them theInstanceScalethey are associated with- Parameters:
computeServers- ComputeServers to deleteinstanceScale- the InstanceScale instance to remove the servers from- Returns:
- success
-
stopServer
Stop a ComputeServer. This is an async operation and the server may not be stopped immediately.- Parameters:
computeServerId- ComputeServer id to stop- Returns:
- success if the request to stop the server was successful
-
startServer
Start a ComputeServer. This is an async operation and the server may not be started immediately.- Parameters:
computeServerId- ComputeServer id to start- Returns:
- success if the request to start the server was successful
-
restartServer
Restart a ComputeServer. This is an async operation and the server may not be restarted immediately.- Parameters:
computeServerId- ComputeServer id to restart- Returns:
- success if the request to restart the server was successful
-
listIdentityProjections(Long, String)}