Documentation ¶
Overview ¶
Package providers provides information about the supported providers at OpenStack Octavia Load Balancing service.
Example to List Providers
allPages, err := providers.List(lbClient).AllPages() if err != nil { panic(err) } allProviders, err := providers.ExtractProviders(allPages) if err != nil { panic(err) } for _, p := range allProviders { fmt.Printf("%+v\n", p) }
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func List ¶
func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager
List returns a Pager which allows you to iterate over a collection of providers.
Default policy settings return only those providers that are owned by the project who submits the request, unless an admin user submits the request.
Types ¶
type GetResult ¶
type GetResult struct {
// contains filtered or unexported fields
}
GetResult represents the result of a get operation. Call its Extract method to interpret it as a Provider.
type ListOpts ¶
type ListOpts struct {
Fields []string `q:"fields"`
}
ListOpts allows the filtering and sorting of paginated collections through the API. Filtering is achieved by passing in struct field values that map to the Provider attributes you want to see returned.
func (ListOpts) ToProviderListQuery ¶
ToProviderListQuery formats a ListOpts into a query string.
type ListOptsBuilder ¶
ListOptsBuilder allows extensions to add additional parameters to the List request.
type Provider ¶
type Provider struct { // Human-readable description for the Loadbalancer. Description string `json:"description"` // Human-readable name for the Provider. Name string `json:"name"` }
Provider is the Octavia driver that implements the load balancing mechanism
func ExtractProviders ¶
func ExtractProviders(r pagination.Page) ([]Provider, error)
ExtractProviders accepts a Page struct, specifically a ProviderPage struct, and extracts the elements into a slice of Provider structs. In other words, a generic collection is mapped into a relevant slice.
type ProviderPage ¶
type ProviderPage struct {
pagination.LinkedPageBase
}
ProviderPage is the page returned by a pager when traversing over a collection of providers.
func (ProviderPage) IsEmpty ¶
func (r ProviderPage) IsEmpty() (bool, error)
IsEmpty checks whether a ProviderPage struct is empty.
func (ProviderPage) NextPageURL ¶
func (r ProviderPage) NextPageURL() (string, error)
NextPageURL is invoked when a paginated collection of providers has reached the end of a page and the pager seeks to traverse over a new one. In order to do this, it needs to construct the next page's URL.