8.2.4.7.8.2. Create, Obtain, Remove

Note

Applicable to Vulcan port only.

8.2.4.7.8.2.1. Create and Obtain

Create a connection group on the Vulcan port, and obtain the connection group object. The connection group index is automatically assigned by the port.

cg = await port.connection_groups.create()

8.2.4.7.8.2.2. Obtain One

Obtain an existing connection group on the port with an explicit connection group index.

cg = port.connection_groups.obtain(cg_idx)

8.2.4.7.8.2.3. Obtain Multiple

Obtain multiple existing connection groups on the port with explicit connection group indices.

cg_list = port.connection_groups.obtain_multiple(*cg_idx_list)

8.2.4.7.8.2.4. Remove

Remove a connection group on the port with an explicit connection group index.

await port.connection_groups.remove(cg_idx)