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