Package com.morpheusdata.core.library
Interface MorpheusEnvironmentVariableTypeService
- All Superinterfaces:
MorpheusDataQueryService<EnvironmentVariableType>,MorpheusDataService<EnvironmentVariableType,EnvironmentVariableType>
public interface MorpheusEnvironmentVariableTypeService
extends MorpheusDataService<EnvironmentVariableType,EnvironmentVariableType>
Context methods for syncing
EnvironmentVariableType in Morpheus-
Method Summary
Modifier and TypeMethodDescriptionio.reactivex.rxjava3.core.Single<Boolean>create(List<EnvironmentVariableType> environmentVariableTypes) Deprecated.io.reactivex.rxjava3.core.Observable<EnvironmentVariableType>listById(Collection<Long> ids) Deprecated.io.reactivex.rxjava3.core.Single<Boolean>remove(List<EnvironmentVariableType> environmentVariableTypes) Deprecated.io.reactivex.rxjava3.core.Single<Boolean>save(List<EnvironmentVariableType> environmentVariableTypes) Deprecated.useMorpheusDataService.bulkSave(java.util.List<M>)insteadMethods 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, remove, save
-
Method Details
-
listById
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Observable<EnvironmentVariableType> listById(Collection<Long> ids) Deprecated.Get a list of EnvironmentVariableType objects from a list of projection ids- Parameters:
ids- EnvironmentVariableType ids- Returns:
- Observable stream of EnvironmentVariableTypes
-
save
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Single<Boolean> save(List<EnvironmentVariableType> environmentVariableTypes) Deprecated.useMorpheusDataService.bulkSave(java.util.List<M>)insteadSave updates to existing EnvironmentVariableTypes- Specified by:
savein interfaceMorpheusDataService<EnvironmentVariableType,EnvironmentVariableType> - Parameters:
environmentVariableTypes- updated EnvironmentVariableType- Returns:
- success
- See Also:
-
create
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Single<Boolean> create(List<EnvironmentVariableType> environmentVariableTypes) Deprecated.Create new EnvironmentVariableTypes in Morpheus- Specified by:
createin interfaceMorpheusDataService<EnvironmentVariableType,EnvironmentVariableType> - Parameters:
environmentVariableTypes- new EnvironmentVariableTypes to persist- Returns:
- success
- See Also:
-
remove
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Single<Boolean> remove(List<EnvironmentVariableType> environmentVariableTypes) Deprecated.Remove persisted EnvironmentVariableType from Morpheus- Specified by:
removein interfaceMorpheusDataService<EnvironmentVariableType,EnvironmentVariableType> - Parameters:
environmentVariableTypes- to delete- Returns:
- success
- See Also:
-
MorpheusDataService.bulkCreate(java.util.List<M>)instead