Fetch in-depth information about a single SLA
slas.retrieve(strurn) -> SlaRetrieveResponse
GET/v1/slas/{urn}
Fetch in-depth information about a single SLA
Parameters
urn: str
Returns
Fetch in-depth information about a single SLA
import os
from clarative import Clarative
client = Clarative(
api_key=os.environ.get("CLARATIVE_API_KEY"), # This is the default and can be omitted
)
sla = client.slas.retrieve(
"urn",
)
print(sla.description){
"description": "description",
"name": "name",
"urn": "urn",
"vendor_urn": "vendor_urn"
}Returns Examples
{
"description": "description",
"name": "name",
"urn": "urn",
"vendor_urn": "vendor_urn"
}