:class:`BodyStub` ================= .. py:class:: ansys.speos.core.kernel.body.BodyStub(channel) Bases: :py:obj:`ansys.speos.core.kernel.crud.CrudStub` Database interactions for body. :Parameters: **channel** : :obj:`grpc.Channel` Channel to use for the stub. .. rubric:: 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() .. !! processed by numpydoc !! .. py:currentmodule:: BodyStub Overview -------- .. tab-set:: .. tab-item:: Methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~create` - Create a new entry. * - :py:attr:`~read` - Get an existing entry. * - :py:attr:`~update` - Change an existing entry. * - :py:attr:`~delete` - Remove an existing entry. * - :py:attr:`~list` - List existing entries. Import detail ------------- .. code-block:: python from ansys.speos.core.kernel.body import BodyStub Method detail ------------- .. py:method:: create(message) Create a new entry. :Parameters: **message** : :obj:`body.Body` Datamodel for the new entry. :Returns: :obj:`ansys.speos.core.kernel.body.BodyLink` Link object created. .. !! processed by numpydoc !! .. py:method:: read(ref) Get an existing entry. :Parameters: **ref** : :obj:`ansys.speos.core.kernel.body.BodyLink` Link object to read. :Returns: :obj:`body.Body` Datamodel of the entry. .. !! processed by numpydoc !! .. py:method:: update(ref, data) Change an existing entry. :Parameters: **ref** : :obj:`ansys.speos.core.kernel.body.BodyLink` Link object to update. **data** : :obj:`body.Body` New datamodel for the entry. .. !! processed by numpydoc !! .. py:method:: delete(ref) Remove an existing entry. :Parameters: **ref** : :obj:`ansys.speos.core.kernel.body.BodyLink` Link object to delete. .. !! processed by numpydoc !! .. py:method:: list() List existing entries. :Returns: :obj:`List`\[:obj:`ansys.speos.core.kernel.body.BodyLink`] Link objects. .. !! processed by numpydoc !!