## List Members `gpu_droplets.autoscale.list_members(strautoscale_pool_id, AutoscaleListMembersParams**kwargs) -> AutoscaleListMembersResponse` **get** `/v2/droplets/autoscale/{autoscale_pool_id}/members` To list the Droplets in an autoscale pool, send a GET request to `/v2/droplets/autoscale/$AUTOSCALE_POOL_ID/members`. The response body will be a JSON object with a key of `droplets`. This will be set to an array containing information about each of the Droplets in the autoscale pool. ### Parameters - **autoscale\_pool\_id:** `str` - **page:** `int` Which 'page' of paginated results to return. - **per\_page:** `int` Number of items returned per page ### Returns - `class AutoscaleListMembersResponse` - **meta:** `MetaProperties` Information about the response itself. - **droplets:** `Optional[List[Droplet]]` - **created\_at:** `datetime` The creation time of the Droplet in ISO8601 combined date and time format. - **current\_utilization:** `DropletCurrentUtilization` - **cpu:** `Optional[float]` The CPU utilization average of the individual Droplet. - **memory:** `Optional[float]` The memory utilization average of the individual Droplet. - **droplet\_id:** `int` The unique identifier of the Droplet. - **health\_status:** `str` The health status of the Droplet. - **status:** `Literal["provisioning", "active", "deleting", "off"]` The power status of the Droplet. - `"provisioning"` - `"active"` - `"deleting"` - `"off"` - **updated\_at:** `datetime` The last updated time of the Droplet in ISO8601 combined date and time format. - **links:** `Optional[PageLinks]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() response = client.gpu_droplets.autoscale.list_members( autoscale_pool_id="0d3db13e-a604-4944-9827-7ec2642d32ac", ) print(response.meta) ```