# Functions
Create is an operation which provisions a new security group with default security group rules for the IPv4 and IPv6 ether types.
Delete will permanently delete a particular security group based on its unique ID.
ExtractGroups accepts a Page struct, specifically a SecGroupPage struct, and extracts the elements into a slice of SecGroup structs.
Get retrieves a particular security group based on its unique ID.
List returns a Pager which allows you to iterate over a collection of security groups.
# Structs
CreateOpts contains all the values needed to create a new security group.
CreateResult represents the result of a create operation.
DeleteResult represents the result of a delete operation.
GetResult represents the result of a get operation.
ListOpts allows the filtering and sorting of paginated collections through the API.
SecGroup represents a container for security group rules.
SecGroupPage is the page returned by a pager when traversing over a collection of security groups.