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