Provider.list_gnns()
List available GNN engines.
Parameters
Section titled “Parameters”| Name | Type | Description | Optional |
|---|---|---|---|
param_state | str | Optional status filter (e.g., READY, SUSPENDED, PENDING, FAILED). Returns only engines with chosen status. Defaults to None. | Yes |
Returns
Section titled “Returns”A list of engines, where each engine is represented as a dictionary containing its details with the following keys:
name– The name of the engine.id– The unique identifier for the engine.size– The compute pool size assigned to the engine.state– The current status of the engine (e.g.,READY,SUSPENDED,PENDING,FAILED).created_by– The user who created the engine.created_on– The timestamp when the engine was created.updated_on– The timestamp of the last update to the engine.settings– A dictionary containing engine-specific configuration settings.
Example
Section titled “Example”engines = provider.list_gnns()