# Packages
subnetpools unit tests.
# Functions
Create requests the creation of a new address-scope on the server.
Delete accepts a unique ID and deletes the address-scope associated with it.
ExtractAddressScopes interprets the results of a single page from a List() API call, producing a slice of AddressScopes structs.
Get retrieves a specific address-scope based on its ID.
List returns a Pager which allows you to iterate over a collection of address-scopes.
Update accepts a UpdateOpts struct and updates an existing address-scope using the values provided.
# Structs
AddressScope represents a Neutron address-scope.
AddressScopePage stores a single page of AddressScopes from a List() API call.
CreateOpts specifies parameters of a new address-scope.
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 Neutron API.
UpdateOpts represents options used to update an address-scope.
UpdateResult represents the result of an update operation.
# Interfaces
CreateOptsBuilder allows to add additional parameters to the Create request.
ListOptsBuilder allows extensions to add additional parameters to the List request.
UpdateOptsBuilder allows extensions to add additional parameters to the Update request.