View Firewall Group Details

From Hostway API Documentation
Revision as of 20:35, 12 April 2013 by Administrator (Talk | contribs)
Jump to: navigation, search

This operation will list the details for the specified firewall group.

Contents

GET /os-security-groups/name

Parameters

name
The unique identifier of the firewall group.

Response

JSON

 {
    "security_group" : {
       "display_name" : "{firewall_group_display_name}",
       "description" : "{firewall_group_description}",
       "links" : [
          {
             "href" : "http://{api-server}/os-security-groups/{firewall_group_name}/",
	     "rel" : "self"
          }
       ],
       "rules" : [
          {
             "fromport" : "{start_port}",
	     "toport" : "{end_port}",
             "protocol" : "{ip_protocol}",
             "cidrIp": "0.0.0.0/0",
	     "id" : "145"
	  },
          {
             "fromport" : "{start_port}",
	     "toport" : "{end_port}",
             "protocol" : "{ip_protocol}",
             "cidrIp": "127.0.0.1/0",
	     "id" : "169"
	  }
       ],
       "servers" : ["{server_id}"],
       "account_number" : "{user_account_number}",
       "name" : "{firewall_group_name}"
    }
 }

security_group
display name - string
The display name of the firewall group.
description - string
Text describing the firewall group.
links - list
Hypermedia for this resource.
rules - list
List describing all defined security rules for the group.
servers - list
List of server ids this firewall group is assigned to.
account_number - string
Identifies an account that owns the firewall group.
name - string
The name of this firewall group.*(Unique identifier for this firewall group.)

Response Codes

Success
HTTP/1.1 200 OK
Failure
HTTP/1.1 401 Unauthorized : This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.
HTTP/1.1 404 Not Found - The resource does not exist.

Examples

Successfully list details for specified firewall group

GET http(s)://{api_server}/os-security-groups/group2012May11_OK30Zs7Ju

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 200 OK

Response Body:

 {
    "security_group" : {
       "display_name": "Test Firewall Group 1", 
       "description": "Test firewall group 1 description.", 
       "links": [
          {
             "href": "http://{api_server}/os-security-groups/group2012May11_OK30Zs7Ju/", 
             "rel": "self"
          }
       ], 
       "rules": [ 
          {
             'toport': 1111, 
             'fromport': 1111, 
             'protocol': 'TCP', 
             'id': 145, 
             'cidrIp': '0.0.0.0/0'
          },
          {
             'toport': 80, 
             'fromport': 80, 
             'protocol': 'tcp', 
             'id': 196, 
             'cidrIp': '127.0.0.1/24'
          }
       ], 
       "name": "group2012May11_OK30Zs7Ju", 
       "account_number": "test_account_120761",
       "servers": ["test-server-0003"]
    }
 }

Failure while trying to request details for a firewall group that does not exist

GET http(s)://{api_server}/os-security-groups/{fake_firewall_group_name}

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

Response Code:

HTTP/1.1 404 Not Found

Response Body:

{
   "itemNotFound": 
      {
         "message": "Resource not found", 
         "code": 404, 
         "details": ""
      }
}

Failure while trying to make unauthorized access

GET http(s)://{api_server}/os-security-groups/group2012May11_OK30Zs7Ju

Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded fake_authentication_string

Response Code:

HTTP/1.1 401 Unauthorized

Response Body:

    401 Unauthorized
    This server could not verify that you are authorized to
    access the document you requested.  Either you supplied the
    wrong credentials (e.g., bad password), or your browser
    does not understand how to supply the credentials required.


blog comments powered by Disqus


Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox