github.com/sleungcy-sap/cli@v7.1.0+incompatible/api/cloudcontroller/ccv2/security_group_rule.go (about) 1 package ccv2 2 3 // SecurityGroupRule represents a Cloud Controller Security Group Role. 4 type SecurityGroupRule struct { 5 // Description is a short message discribing the rule. 6 Description string 7 8 // Destination is the destination CIDR or range of IPs. 9 Destination string 10 11 // Ports is the port or port range. 12 Ports string 13 14 // Protocol can be tcp, icmp, udp, all. 15 Protocol string 16 }