| Verb | URI | Description |
| PUT | /vpn/ikepolicies/ikepolicy-id |
Updates an IKE policy. |
Normal Response Code: 200
Error Response Codes: Unauthorized (401), Bad Request (400), Not Found (404)
Example 4.184. Update IKE Policy: Request
PUT /v2.0/vpn/ikepolicies/5522aff7-1b3c-48dd-9c3c-b50f016b73db.json
User-Agent: python-neutronclient
Accept: application/json
{
"ikepolicy": {
"encryption_algorithm": "aes-256"
}
}
Example 4.185. Update IKE Policy: Response
HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
{
"ikepolicy": {
"name": "ikepolicy1",
"tenant_id": "ccb81365fe36411a9011e90491fe1330",
"auth_algorithm": "sha1",
"encryption_algorithm": "aes-256",
"pfs": "group5",
"phase1_negotiation_mode": "main",
"lifetime": {
"units": "seconds",
"value": 3600
},
"ike_version": "v1",
"id": "5522aff7-1b3c-48dd-9c3c-b50f016b73db",
"description": ""
}
}

