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