Versions in this module Expand all Collapse all v1 v1.3.0 Feb 14, 2023 Changes in this version + func List(c *gophercloud.ServiceClient, opts ListOpts) pagination.Pager + type CreateOpts struct + Address string + AdminStateUp *bool + ConnLimit *int + Description string + Name string + Persistence *SessionPersistence + PoolID string + Protocol string + ProtocolPort int + SubnetID string + TenantID string + func (opts CreateOpts) ToVIPCreateMap() (map[string]interface{}, error) + type CreateOptsBuilder interface + ToVIPCreateMap func() (map[string]interface{}, error) + type CreateResult struct + func Create(c *gophercloud.ServiceClient, opts CreateOpts) (r CreateResult) + func (r CreateResult) Extract() (*VirtualIP, error) + type DeleteResult struct + func Delete(c *gophercloud.ServiceClient, id string) (r DeleteResult) + type GetResult struct + func Get(c *gophercloud.ServiceClient, id string) (r GetResult) + func (r GetResult) Extract() (*VirtualIP, error) + type ListOpts struct + Address string + AdminStateUp *bool + ConnectionLimit int + ID string + Limit int + Marker string + Name string + PortID string + Protocol string + ProtocolPort int + SortDir string + SortKey string + Status string + SubnetID string + TenantID string + type SessionPersistence struct + CookieName string + Type string + type UpdateOpts struct + AdminStateUp *bool + ConnLimit *int + Description *string + Name *string + Persistence *SessionPersistence + PoolID *string + func (opts UpdateOpts) ToVIPUpdateMap() (map[string]interface{}, error) + type UpdateOptsBuilder interface + ToVIPUpdateMap func() (map[string]interface{}, error) + type UpdateResult struct + func Update(c *gophercloud.ServiceClient, id string, opts UpdateOptsBuilder) (r UpdateResult) + func (r UpdateResult) Extract() (*VirtualIP, error) + type VIPPage struct + func (r VIPPage) IsEmpty() (bool, error) + func (r VIPPage) NextPageURL() (string, error) + type VirtualIP struct + Address string + AdminStateUp bool + ConnLimit int + Description string + ID string + Name string + Persistence SessionPersistence + PoolID string + PortID string + Protocol string + ProtocolPort int + Status string + SubnetID string + TenantID string + func ExtractVIPs(r pagination.Page) ([]VirtualIP, error)