Versions in this module Expand all Collapse all v1 v1.0.0 Oct 28, 2014 Changes in this version + func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager + type AdminState *bool + var Down AdminState = &iFalse + var Up AdminState = &iTrue + type CreateOpts networkOpts + func (opts CreateOpts) ToNetworkCreateMap() (map[string]interface{}, error) + type CreateOptsBuilder interface + ToNetworkCreateMap func() (map[string]interface{}, error) + type CreateResult struct + func Create(c *gophercloud.ServiceClient, opts CreateOptsBuilder) CreateResult + func (r CreateResult) Extract() (*Network, error) + type DeleteResult struct + func Delete(c *gophercloud.ServiceClient, networkID string) DeleteResult + type GetResult struct + func Get(c *gophercloud.ServiceClient, id string) GetResult + func (r GetResult) Extract() (*Network, error) + type ListOpts struct + AdminStateUp *bool + ID string + Limit int + Marker string + Name string + Shared *bool + SortDir string + SortKey string + Status string + TenantID string + func (opts ListOpts) ToNetworkListQuery() (string, error) + type ListOptsBuilder interface + ToNetworkListQuery func() (string, error) + type Network struct + AdminStateUp bool + ID string + Name string + Shared bool + Status string + Subnets []string + TenantID string + func ExtractNetworks(page pagination.Page) ([]Network, error) + type NetworkPage struct + func (p NetworkPage) IsEmpty() (bool, error) + func (p NetworkPage) NextPageURL() (string, error) + type UpdateOpts networkOpts + func (opts UpdateOpts) ToNetworkUpdateMap() (map[string]interface{}, error) + type UpdateOptsBuilder interface + ToNetworkUpdateMap func() (map[string]interface{}, error) + type UpdateResult struct + func Update(c *gophercloud.ServiceClient, networkID string, opts UpdateOptsBuilder) UpdateResult + func (r UpdateResult) Extract() (*Network, error)