25fb7e4c32
Currently, L7Policy already support the redirection by url_prefix. Then we can support the redirection with HTTP code. This patch adds an new option 'redirect_http_code' to L7Policy API. Story: 2003609 Task: 24941 Change-Id: Id0c9c376ffbc2fb10ddb988537d0ef1a8205e586
13 lines
353 B
JSON
13 lines
353 B
JSON
{
|
|
"l7policy": {
|
|
"description": "Redirect requests to images.example.com",
|
|
"admin_state_up": true,
|
|
"redirect_http_code": 301,
|
|
"redirect_url": "http://images.example.com",
|
|
"name": "redirect-images.example.com",
|
|
"action": "REDIRECT_TO_URL",
|
|
"position": 1,
|
|
"tags": ["updated_tag"]
|
|
}
|
|
}
|