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