## List Supported Policies `gpu_droplets.backups.list_supported_policies() -> BackupListSupportedPoliciesResponse` **get** `/v2/droplets/backups/supported_policies` To retrieve a list of all supported Droplet backup policies, send a GET request to `/v2/droplets/backups/supported_policies`. ### Returns - `class BackupListSupportedPoliciesResponse` - **supported\_policies:** `Optional[List[SupportedPolicy]]` - **name:** `Optional[str]` The name of the Droplet backup plan. - **possible\_days:** `Optional[List[str]]` The day of the week the backup will occur. - **possible\_window\_starts:** `Optional[List[int]]` An array of integers representing the hours of the day that a backup can start. - **retention\_period\_days:** `Optional[int]` The number of days that a backup will be kept. - **window\_length\_hours:** `Optional[int]` The number of hours that a backup window is open. ### Example ```python from do_gradientai import GradientAI client = GradientAI() response = client.gpu_droplets.backups.list_supported_policies() print(response.supported_policies) ```