Show security group

 
MethodURIDescription
GET/v2.0/security-groups/{security_group_id}

Shows information for a specified security group.

This operation returns a response body that contains the description, name, ID, and security group rules associated with the specified security group and tenant ID.

Normal response codes: 200

Error response codes: unauthorized (401), itemNotFound (404)

 Request

This table shows the URI parameters for the show security group request:

NameTypeDescription

{security_group_id}

​Uuid

The unique identifier of the security group.

 

Example 4.50. Show security group: JSON request

GET /v2.0/security-groups/85cc3048-abc3-43cc-89b3-377341426ac5
Accept: application/json

This operation does not require a request body.

 Response

 

Example 4.51. Show security group: JSON response

{
   "security_group":{
      "description":"default",
      "id":"85cc3048-abc3-43cc-89b3-377341426ac5",
      "name":"default",
      "security_group_rules":[
         {
            "direction":"egress",
            "ethertype":"IPv6",
            "id":"3c0e45ff-adaf-4124-b083-bf390e5482ff",
            "port_range_max":null,
            "port_range_min":null,
            "protocol":null,
            "remote_group_id":null,
            "remote_ip_prefix":null,
            "security_group_id":"85cc3048-abc3-43cc-89b3-377341426ac5",
            "tenant_id":"e4f50856753b4dc6afee5fa6b9b6c550"
         },
         {
            "direction":"egress",
            "ethertype":"IPv4",
            "id":"93aa42e5-80db-4581-9391-3a608bd0e448",
            "port_range_max":null,
            "port_range_min":null,
            "protocol":null,
            "remote_group_id":null,
            "remote_ip_prefix":null,
            "security_group_id":"85cc3048-abc3-43cc-89b3-377341426ac5",
            "tenant_id":"e4f50856753b4dc6afee5fa6b9b6c550"
         },
         {
            "direction":"ingress",
            "ethertype":"IPv6",
            "id":"c0b09f00-1d49-4e64-a0a7-8a186d928138",
            "port_range_max":null,
            "port_range_min":null,
            "protocol":null,
            "remote_group_id":"85cc3048-abc3-43cc-89b3-377341426ac5",
            "remote_ip_prefix":null,
            "security_group_id":"85cc3048-abc3-43cc-89b3-377341426ac5",
            "tenant_id":"e4f50856753b4dc6afee5fa6b9b6c550"
         },
         {
            "direction":"ingress",
            "ethertype":"IPv4",
            "id":"f7d45c89-008e-4bab-88ad-d6811724c51c",
            "port_range_max":null,
            "port_range_min":null,
            "protocol":null,
            "remote_group_id":"85cc3048-abc3-43cc-89b3-377341426ac5",
            "remote_ip_prefix":null,
            "security_group_id":"85cc3048-abc3-43cc-89b3-377341426ac5",
            "tenant_id":"e4f50856753b4dc6afee5fa6b9b6c550"
         }
      ],
      "tenant_id":"e4f50856753b4dc6afee5fa6b9b6c550"
   }
}

Questions? Discuss on ask.openstack.org
Found an error? Report a bug against this page


loading table of contents...