Versions in this module Expand all Collapse all v1 v1.3.0 Feb 14, 2023 Changes in this version + func ExtractFloatingIPsInto(r pagination.Page, v interface{}) error + func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager + type CreateOpts struct + Description string + FixedIP string + FloatingIP string + FloatingNetworkID string + PortID string + ProjectID string + SubnetID string + TenantID string + func (opts CreateOpts) ToFloatingIPCreateMap() (map[string]interface{}, error) + type CreateOptsBuilder interface + ToFloatingIPCreateMap func() (map[string]interface{}, error) + type CreateResult struct + func Create(c *gophercloud.ServiceClient, opts CreateOptsBuilder) (r CreateResult) + func (r CreateResult) Extract() (*FloatingIP, error) + func (r CreateResult) ExtractInto(v interface{}) error + type DeleteResult struct + func Delete(c *gophercloud.ServiceClient, id string) (r DeleteResult) + type FloatingIP struct + CreatedAt time.Time + Description string + FixedIP string + FloatingIP string + FloatingNetworkID string + ID string + PortID string + ProjectID string + RouterID string + Status string + Tags []string + TenantID string + UpdatedAt time.Time + func ExtractFloatingIPs(r pagination.Page) ([]FloatingIP, error) + func (r *FloatingIP) UnmarshalJSON(b []byte) error + type FloatingIPPage struct + func (r FloatingIPPage) IsEmpty() (bool, error) + func (r FloatingIPPage) NextPageURL() (string, error) + type GetResult struct + func Get(c *gophercloud.ServiceClient, id string) (r GetResult) + func (r GetResult) Extract() (*FloatingIP, error) + func (r GetResult) ExtractInto(v interface{}) error + type ListOpts struct + Description string + FixedIP string + FloatingIP string + FloatingNetworkID string + ID string + Limit int + Marker string + NotTags string + NotTagsAny string + PortID string + ProjectID string + RouterID string + SortDir string + SortKey string + Status string + Tags string + TagsAny string + TenantID string + func (opts ListOpts) ToFloatingIPListQuery() (string, error) + type ListOptsBuilder interface + ToFloatingIPListQuery func() (string, error) + type UpdateOpts struct + Description *string + FixedIP string + PortID *string + func (opts UpdateOpts) ToFloatingIPUpdateMap() (map[string]interface{}, error) + type UpdateOptsBuilder interface + ToFloatingIPUpdateMap func() (map[string]interface{}, error) + type UpdateResult struct + func Update(c *gophercloud.ServiceClient, id string, opts UpdateOptsBuilder) (r UpdateResult) + func (r UpdateResult) Extract() (*FloatingIP, error) + func (r UpdateResult) ExtractInto(v interface{}) error