NetworkACLShow displays a single network ACL.
(acl *management.NetworkACL)
| 215 | |
| 216 | // NetworkACLShow displays a single network ACL. |
| 217 | func (r *Renderer) NetworkACLShow(acl *management.NetworkACL) error { |
| 218 | r.Heading("network ACL") |
| 219 | r.Result(makeNetworkACLView(acl)) |
| 220 | return nil |
| 221 | } |
| 222 | |
| 223 | // NetworkACLCreate displays the result of creating a network ACL. |
| 224 | func (r *Renderer) NetworkACLCreate(acl *management.NetworkACL) error { |
no test coverage detected