SpectrumStub
#
- class ansys.speos.core.kernel.spectrum.SpectrumStub(channel)#
Bases:
ansys.speos.core.kernel.crud.CrudStub
Database interactions for spectrums.
- Parameters:
- channel
grpc.Channel
Channel to use for the stub.
- channel
Examples
The best way to get a SpectrumStub is to retrieve it from SpeosClient via spectrums() method. Like in the following example:
>>> from ansys.speos.core.speos import Speos >>> speos = Speos(host="localhost", port=50098) >>> spe_db = speos.client.spectrums()
Overview#
Import detail#
from ansys.speos.core.kernel.spectrum import SpectrumStub
Method detail#
- SpectrumStub.create(message)#
Create a new entry.
- Parameters:
- message
spectrum.Spectrum
Datamodel for the new entry.
- message
- Returns:
ansys.speos.core.kernel.spectrum.SpectrumLink
Link object created.
- SpectrumStub.read(ref)#
Get an existing entry.
- Parameters:
- ref
ansys.speos.core.kernel.spectrum.SpectrumLink
Link object to read.
- ref
- Returns:
spectrum.Spectrum
Datamodel of the entry.
- SpectrumStub.update(ref, data)#
Change an existing entry.
- Parameters:
- ref
ansys.speos.core.kernel.spectrum.SpectrumLink
Link object to update.
- data
spectrum.Spectrum
New datamodel for the entry.
- ref
- SpectrumStub.delete(ref)#
Remove an existing entry.
- Parameters:
- ref
ansys.speos.core.kernel.spectrum.SpectrumLink
Link object to delete.
- ref
- SpectrumStub.list()#
List existing entries.
- Returns:
List
[ansys.speos.core.kernel.spectrum.SpectrumLink
]Link objects.