Displays the running-config rule for a user.
| URI | Description | 
|---|---|
| <base_URI>/config/running/rule/{rule-name}/command/ show running-config | Displays the running-config rule. | 
GET, POST, PUT, PATCH, DELETE, OPTIONS, and HEAD operations are supported.
The switch obtains its configuration from the principal node. Enabling this feature solves most node-segmentation issues.
The following example uses the GET option to retrieve the configuration details.
http://host:80/config/runnin//rule/{rule-name}/command/ show running-config
None
<ruleurn:brocade.com:mgmt:brocade-aaa"" xmlns:y=""http://brocade.com/ns/rest"" y:self=""/rest/config/running/rule/5"">
  <index>5</index>
  <action>reject</action>
  <operation>read-write</operation>
  <role>testRole</role>
  <command y:self=""/rest/config/running/rule/5/command"">
    <show y:self=""/rest/config/running/rule/5/command/show"">
      <running-config y:self=""/rest/config/running/rule/5/command/show/running-config"">
      </running-config>
    </show>
  </command>
</rule
 
		The following example uses the PATCH option to modify the rule .
http://host:80/rest/config/running/rule/{rule-name}/command/ show running-config
<rule>
  <index>5</index>
  <command>
    <show>
      <running-config>
      </running-config>
    </show>
  </command>
</rule>
 
		None
The following example uses the DELETE option to delete the rule.
http://host:80/rest/config/running/rule/{rule-name}
None
None