CDN Resource - Page Rule Query String Parameter – Ignore Specific
This setting is available in small, large and dynamic(aksela) resource types.
Method | URL |
---|---|
PUT | https://cloud.medianova.com/api/v1/cdn/{organization_uuid}/resource/{resource_uuid} |
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 |
page_rule | A Page Rule is a set of configurations containing custom settings for a specific URL pattern or path. | Object | Yes |
page_rule.id | Represents the unique identifier of the Page Rule. It is a singular identifier for a specific Page Rule. | Integer | Yes |
page_rule.status_qs | A query string parameter used as part of the Page Rule. It is used to enable or disable a specific status. | Boolean | Yes |
page_rule.status_qs_cache_ignore | A query string parameter used as part of the Page Rule. This parameter ensures that the specified status is not considered for caching. | Boolean | Yes |
page_rule.qs_cache_ignore_param | As part of a Page Rule, this parameter is used to identify a query string parameter. The purpose of this parameter is to instruct the system to ignore caching considerations for the specified query string parameter.
| Array | Yes |
page_rule.status_cqs | A query string parameter used as part of the Page Rule. It is used to enable or disable a specific status. | Boolean | Yes |
page_rule.cqs_args | This parameter is used as part of a Page Rule and involves specifying query string parameters and their arguments. It is employed to enable or disable a specific status based on the provided query string parameters and arguments. | Array | Yes |
Payload
{
"page_rule": [
{
"rule_id": 2,
"status_qs": "on",
"status_qs_cache_ignore": true,
"qs_cache_ignore_param": ["version"],
"status_cqs": false,
"cqs_args": []
}
]
}