Disallow Cache Rule
This setting is available in dynamic(aksela) resource type.
Method | URL |
---|---|
PUT | https://cloud.medianova.com/api/v1/cdn/{organization_uuid}/resource/{resource_id} |
Parameters | Description | Type | Required |
---|---|---|---|
organization_uuid | The created organization in Medianova Cloud Panel unit ID value. Path parameter. | String | Yes |
resource_uuid | The created resource in Medianova Cloud Panel unit ID value. Path parameter. | String | Yes |
exclude_cache | When enabled, this option allows you to disallow caching for the URI you will add. | Object | Yes |
exclude_cache.uri | URI information is entered. | String | Yes |
exclude_cache.status_exact_match | When the Exact Match option is turned on, the Disallow Cache Rule is valid for the exact URI path only, the regex function gets disabled. When the Exact Match option is turned off, the Disallow Cache Rule is valid for all subfolders and content under the given URI path. | Boolean | Yes |
Payload
{
"resource_uuid": "****-****-****-****",
"exclude_cache": {
"uri": [
"domain.test.com"
],
"status_exact_match": [
false
]
}
}