## List `slas.list() -> SlaListResponse` **get** `/v1/slas` List all SLAs ### Returns - `List[SlaListResponseItem]` - `description: str` A description of the SLA - `name: str` The name of the SLA - `urn: str` A unique identifier for the SLA - `vendor_urn: str` A unique identifier for the vendor associated with the SLA ### Example ```python import os from clarative import Clarative client = Clarative( api_key=os.environ.get("CLARATIVE_API_KEY"), # This is the default and can be omitted ) slas = client.slas.list() print(slas) ```