Updating a Security Group
PUT /v2/security_groups/:guid
Fields
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name of the security group.
|
|
|
|
rules
|
The egress rules for apps that belong to this security group.
A rule consists of a protocol (tcp,icmp,udp,all), destination CIDR or destination range,
port or port range (tcp,udp,all), type (control signal for icmp), code (control signal for icmp),
log (enables logging for the egress rule)
|
|
|
[
{
"protocol": "icmp",
"destination": "0.0.0.0/0",
"type": 0,
"code": 1
},
{
"protocol": "tcp",
"destination": "0.0.0.0/0",
"ports": "2048-3000",
"log": true
},
{
"protocol": "udp",
"destination": "0.0.0.0/0",
"ports": "53, 5353"
},
{
"protocol": "all",
"destination": "0.0.0.0/0"
}
]
|
space_guids
|
The list of associated spaces.
|
|
|
|
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Security Group
|
|
|
Request
Headers
Route
PUT /v2/security_groups/479b592b-f278-430f-9745-624de4c93fd8
Body
{
"name": "new_name",
"rules": [
]
}
cURL
curl "https://api.[your-domain.com]/v2/security_groups/479b592b-f278-430f-9745-624de4c93fd8" -d '{
"name": "new_name",
"rules": [
]
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTc3IiwiZW1haWwiOiJlbWFpbC00OEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI0MzEwMTIyfQ.DujvP3Ru3MpEbEvxOH4TYEgVt3VTu2Roje5LRP4Whl8" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "479b592b-f278-430f-9745-624de4c93fd8",
"url": "/v2/security_groups/479b592b-f278-430f-9745-624de4c93fd8",
"created_at": "2015-02-12T01:41:57Z",
"updated_at": "2015-02-12T01:42:02Z"
},
"entity": {
"name": "new_name",
"rules": [
],
"running_default": false,
"staging_default": false,
"spaces_url": "/v2/security_groups/479b592b-f278-430f-9745-624de4c93fd8/spaces"
}
}