Documentation ¶
Overview ¶
Package listeners provides information and interaction with Listeners of the LBaaS v2 extension for the OpenStack Networking service.
Example to List Listeners
listOpts := listeners.ListOpts{ LoadbalancerID : "ca430f80-1737-4712-8dc6-3f640d55594b", } allPages, err := listeners.List(networkClient, listOpts).AllPages() if err != nil { panic(err) } allListeners, err := listeners.ExtractListeners(allPages) if err != nil { panic(err) } for _, listener := range allListeners { fmt.Printf("%+v\n", listener) }
Example to Create a Listener
createOpts := listeners.CreateOpts{ Protocol: "TCP", Name: "db", LoadbalancerID: "79e05663-7f03-45d2-a092-8b94062f22ab", AdminStateUp: gophercloud.Enabled, DefaultPoolID: "41efe233-7591-43c5-9cf7-923964759f9e", ProtocolPort: 3306, Tags: []string{"test", "stage"}, } listener, err := listeners.Create(networkClient, createOpts).Extract() if err != nil { panic(err) }
Example to Update a Listener
listenerID := "d67d56a6-4a86-4688-a282-f46444705c64" i1001 := 1001 i181000 := 181000 newTags := []string{"prod"} updateOpts := listeners.UpdateOpts{ ConnLimit: &i1001, TimeoutClientData: &i181000, TimeoutMemberData: &i181000, Tags: &newTags, } listener, err := listeners.Update(networkClient, listenerID, updateOpts).Extract() if err != nil { panic(err) }
Example to Delete a Listener
listenerID := "d67d56a6-4a86-4688-a282-f46444705c64" err := listeners.Delete(networkClient, listenerID).ExtractErr() if err != nil { panic(err) }
Example to Get the Statistics of a Listener
listenerID := "d67d56a6-4a86-4688-a282-f46444705c64" stats, err := listeners.GetStats(networkClient, listenerID).Extract() if err != nil { panic(err) }
Index ¶
- func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager
- type CreateOpts
- type CreateOptsBuilder
- type CreateResult
- type DeleteResult
- type GetResult
- type ListOpts
- type ListOptsBuilder
- type Listener
- type ListenerPage
- type LoadBalancerID
- type Protocol
- type Stats
- type StatsResult
- type TLSVersion
- type UpdateOpts
- type UpdateOptsBuilder
- type UpdateResult
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 listeners. It accepts a ListOpts struct, which allows you to filter and sort the returned collection for greater efficiency.
Default policy settings return only those listeners that are owned by the project who submits the request, unless an admin user submits the request.
Types ¶
type CreateOpts ¶
type CreateOpts struct { // The load balancer on which to provision this listener. LoadbalancerID string `json:"loadbalancer_id,omitempty"` // The protocol - can either be TCP, SCTP, HTTP, HTTPS or TERMINATED_HTTPS. Protocol Protocol `json:"protocol" required:"true"` // The port on which to listen for client traffic. ProtocolPort int `json:"protocol_port" required:"true"` // ProjectID is only required if the caller has an admin role and wants // to create a pool for another project. ProjectID string `json:"project_id,omitempty"` // Human-readable name for the Listener. Does not have to be unique. Name string `json:"name,omitempty"` // The ID of the default pool with which the Listener is associated. DefaultPoolID string `json:"default_pool_id,omitempty"` // DefaultPool an instance of pools.CreateOpts which allows a // (default) pool to be created at the same time the listener is created. // // This is only possible to use when creating a fully populated // load balancer. DefaultPool *pools.CreateOpts `json:"default_pool,omitempty"` // Human-readable description for the Listener. Description string `json:"description,omitempty"` // The maximum number of connections allowed for the Listener. ConnLimit *int `json:"connection_limit,omitempty"` // A reference to a Barbican container of TLS secrets. DefaultTlsContainerRef string `json:"default_tls_container_ref,omitempty"` // A list of references to TLS secrets. SniContainerRefs []string `json:"sni_container_refs,omitempty"` // The administrative state of the Listener. A valid value is true (UP) // or false (DOWN). AdminStateUp *bool `json:"admin_state_up,omitempty"` // L7Policies is a slice of l7policies.CreateOpts which allows a set // of policies to be created at the same time the listener is created. // // This is only possible to use when creating a fully populated // Loadbalancer. L7Policies []l7policies.CreateOpts `json:"l7policies,omitempty"` // Frontend client inactivity timeout in milliseconds TimeoutClientData *int `json:"timeout_client_data,omitempty"` // Backend member inactivity timeout in milliseconds TimeoutMemberData *int `json:"timeout_member_data,omitempty"` // Backend member connection timeout in milliseconds TimeoutMemberConnect *int `json:"timeout_member_connect,omitempty"` // Time, in milliseconds, to wait for additional TCP packets for content inspection TimeoutTCPInspect *int `json:"timeout_tcp_inspect,omitempty"` // A dictionary of optional headers to insert into the request before it is sent to the backend member. InsertHeaders map[string]string `json:"insert_headers,omitempty"` // A list of IPv4, IPv6 or mix of both CIDRs AllowedCIDRs []string `json:"allowed_cidrs,omitempty"` // A list of TLS protocol versions. Available from microversion 2.17 TLSVersions []TLSVersion `json:"tls_versions,omitempty"` // Tags is a set of resource tags. New in version 2.5 Tags []string `json:"tags,omitempty"` }
CreateOpts represents options for creating a listener.
func (CreateOpts) ToListenerCreateMap ¶
func (opts CreateOpts) ToListenerCreateMap() (map[string]interface{}, error)
ToListenerCreateMap builds a request body from CreateOpts.
type CreateOptsBuilder ¶
CreateOptsBuilder allows extensions to add additional parameters to the Create request.
type CreateResult ¶
type CreateResult struct {
// contains filtered or unexported fields
}
CreateResult represents the result of a create operation. Call its Extract method to interpret it as a Listener.
func Create ¶
func Create(c *gophercloud.ServiceClient, opts CreateOptsBuilder) (r CreateResult)
Create is an operation which provisions a new Listeners based on the configuration defined in the CreateOpts struct. Once the request is validated and progress has started on the provisioning process, a CreateResult will be returned.
Users with an admin role can create Listeners on behalf of other projects by specifying a ProjectID attribute different than their own.
type DeleteResult ¶
type DeleteResult struct {
gophercloud.ErrResult
}
DeleteResult represents the result of a delete operation. Call its ExtractErr method to determine if the request succeeded or failed.
func Delete ¶
func Delete(c *gophercloud.ServiceClient, id string) (r DeleteResult)
Delete will permanently delete a particular Listeners based on its unique ID.
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 Listener.
func Get ¶
func Get(c *gophercloud.ServiceClient, id string) (r GetResult)
Get retrieves a particular Listeners based on its unique ID.
type ListOpts ¶
type ListOpts struct { ID string `q:"id"` Name string `q:"name"` AdminStateUp *bool `q:"admin_state_up"` ProjectID string `q:"project_id"` LoadbalancerID string `q:"loadbalancer_id"` DefaultPoolID string `q:"default_pool_id"` Protocol string `q:"protocol"` ProtocolPort int `q:"protocol_port"` ConnectionLimit int `q:"connection_limit"` Limit int `q:"limit"` Marker string `q:"marker"` SortKey string `q:"sort_key"` SortDir string `q:"sort_dir"` TimeoutClientData *int `q:"timeout_client_data"` TimeoutMemberData *int `q:"timeout_member_data"` TimeoutMemberConnect *int `q:"timeout_member_connect"` TimeoutTCPInspect *int `q:"timeout_tcp_inspect"` }
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 floating IP attributes you want to see returned. SortKey allows you to sort by a particular listener attribute. SortDir sets the direction, and is either `asc' or `desc'. Marker and Limit are used for pagination.
func (ListOpts) ToListenerListQuery ¶
ToListenerListQuery formats a ListOpts into a query string.
type ListOptsBuilder ¶
ListOptsBuilder allows extensions to add additional parameters to the List request.
type Listener ¶
type Listener struct { // The unique ID for the Listener. ID string `json:"id"` // Owner of the Listener. ProjectID string `json:"project_id"` // Human-readable name for the Listener. Does not have to be unique. Name string `json:"name"` // Human-readable description for the Listener. Description string `json:"description"` // The protocol to loadbalance. A valid value is TCP, SCTP, HTTP, HTTPS or TERMINATED_HTTPS. Protocol string `json:"protocol"` // The port on which to listen to client traffic that is associated with the // Loadbalancer. A valid value is from 0 to 65535. ProtocolPort int `json:"protocol_port"` // The UUID of default pool. Must have compatible protocol with listener. DefaultPoolID string `json:"default_pool_id"` // The default pool with which the Listener is associated. DefaultPool *pools.Pool `json:"default_pool"` // A list of load balancer IDs. Loadbalancers []LoadBalancerID `json:"loadbalancers"` // The maximum number of connections allowed for the Loadbalancer. // Default is -1, meaning no limit. ConnLimit int `json:"connection_limit"` // The list of references to TLS secrets. SniContainerRefs []string `json:"sni_container_refs"` // A reference to a Barbican container of TLS secrets. DefaultTlsContainerRef string `json:"default_tls_container_ref"` // The administrative state of the Listener. A valid value is true (UP) or false (DOWN). AdminStateUp bool `json:"admin_state_up"` // Pools are the pools which are part of this listener. Pools []pools.Pool `json:"pools"` // L7policies are the L7 policies which are part of this listener. L7Policies []l7policies.L7Policy `json:"l7policies"` // The provisioning status of the Listener. // This value is ACTIVE, PENDING_* or ERROR. ProvisioningStatus string `json:"provisioning_status"` // Frontend client inactivity timeout in milliseconds TimeoutClientData int `json:"timeout_client_data"` // Backend member inactivity timeout in milliseconds TimeoutMemberData int `json:"timeout_member_data"` // Backend member connection timeout in milliseconds TimeoutMemberConnect int `json:"timeout_member_connect"` // Time, in milliseconds, to wait for additional TCP packets for content inspection TimeoutTCPInspect int `json:"timeout_tcp_inspect"` // A dictionary of optional headers to insert into the request before it is sent to the backend member. InsertHeaders map[string]string `json:"insert_headers"` // A list of IPv4, IPv6 or mix of both CIDRs AllowedCIDRs []string `json:"allowed_cidrs"` // List of ciphers in OpenSSL format (colon-separated). See // https://www.openssl.org/docs/man1.1.1/man1/ciphers.html // New in version 2.15 TLSCiphers string `json:"tls_ciphers"` // A list of TLS protocol versions. Available from microversion 2.17 TLSVersions []string `json:"tls_versions"` // Tags is a list of resource tags. Tags are arbitrarily defined strings // attached to the resource. New in version 2.5 Tags []string `json:"tags"` // A list of ALPN protocols. Available protocols: http/1.0, http/1.1, h2 // New in version 2.20 ALPNProtocols []string `json:"alpn_protocols"` // The TLS client authentication mode. One of the options NONE, OPTIONAL or MANDATORY. // New in version 2.8 ClientAuthentication string `json:"client_authentication"` // The ref of the key manager service secret containing a PEM format // client CA certificate bundle for TERMINATED_HTTPS listeners. // New in version 2.8 ClientCATLSContainerRef string `json:"client_ca_tls_container_ref"` // The URI of the key manager service secret containing a PEM format CA // revocation list file for TERMINATED_HTTPS listeners. // New in version 2.8 ClientCRLContainerRef string `json:"client_crl_container_ref"` // The operating status of the resource OperatingStatus string `json:"operating_status"` }
Listener is the primary load balancing configuration object that specifies the loadbalancer and port on which client traffic is received, as well as other details such as the load balancing method to be use, protocol, etc.
func ExtractListeners ¶
func ExtractListeners(r pagination.Page) ([]Listener, error)
ExtractListeners accepts a Page struct, specifically a ListenerPage struct, and extracts the elements into a slice of Listener structs. In other words, a generic collection is mapped into a relevant slice.
type ListenerPage ¶
type ListenerPage struct {
pagination.LinkedPageBase
}
ListenerPage is the page returned by a pager when traversing over a collection of listeners.
func (ListenerPage) IsEmpty ¶
func (r ListenerPage) IsEmpty() (bool, error)
IsEmpty checks whether a ListenerPage struct is empty.
func (ListenerPage) NextPageURL ¶
func (r ListenerPage) NextPageURL() (string, error)
NextPageURL is invoked when a paginated collection of listeners 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.
type LoadBalancerID ¶
type LoadBalancerID struct {
ID string `json:"id"`
}
type Protocol ¶
type Protocol string
Type Protocol represents a listener protocol.
const ( ProtocolTCP Protocol = "TCP" ProtocolUDP Protocol = "UDP" ProtocolPROXY Protocol = "PROXY" ProtocolHTTP Protocol = "HTTP" ProtocolHTTPS Protocol = "HTTPS" // Protocol SCTP requires octavia microversion 2.23 ProtocolSCTP Protocol = "SCTP" // Protocol Prometheus requires octavia microversion 2.25 ProtocolPrometheus Protocol = "PROMETHEUS" ProtocolTerminatedHTTPS Protocol = "TERMINATED_HTTPS" )
Supported attributes for create/update operations.
type Stats ¶
type Stats struct { // The currently active connections. ActiveConnections int `json:"active_connections"` // The total bytes received. BytesIn int `json:"bytes_in"` // The total bytes sent. BytesOut int `json:"bytes_out"` // The total requests that were unable to be fulfilled. RequestErrors int `json:"request_errors"` // The total connections handled. TotalConnections int `json:"total_connections"` }
type StatsResult ¶
type StatsResult struct {
gophercloud.Result
}
StatsResult represents the result of a GetStats operation. Call its Extract method to interpret it as a Stats.
func GetStats ¶
func GetStats(c *gophercloud.ServiceClient, id string) (r StatsResult)
GetStats will return the shows the current statistics of a particular Listeners.
func (StatsResult) Extract ¶
func (r StatsResult) Extract() (*Stats, error)
Extract is a function that accepts a result and extracts the status of a Listener.
type TLSVersion ¶ added in v0.18.0
type TLSVersion string
Type TLSVersion represents a tls version
const ( TLSVersionSSLv3 TLSVersion = "SSLv3" TLSVersionTLSv1 TLSVersion = "TLSv1" TLSVersionTLSv1_1 TLSVersion = "TLSv1.1" TLSVersionTLSv1_2 TLSVersion = "TLSv1.2" TLSVersionTLSv1_3 TLSVersion = "TLSv1.3" )
type UpdateOpts ¶
type UpdateOpts struct { // Human-readable name for the Listener. Does not have to be unique. Name *string `json:"name,omitempty"` // The ID of the default pool with which the Listener is associated. DefaultPoolID *string `json:"default_pool_id,omitempty"` // Human-readable description for the Listener. Description *string `json:"description,omitempty"` // The maximum number of connections allowed for the Listener. ConnLimit *int `json:"connection_limit,omitempty"` // A reference to a Barbican container of TLS secrets. DefaultTlsContainerRef *string `json:"default_tls_container_ref,omitempty"` // A list of references to TLS secrets. SniContainerRefs *[]string `json:"sni_container_refs,omitempty"` // The administrative state of the Listener. A valid value is true (UP) // or false (DOWN). AdminStateUp *bool `json:"admin_state_up,omitempty"` // Frontend client inactivity timeout in milliseconds TimeoutClientData *int `json:"timeout_client_data,omitempty"` // Backend member inactivity timeout in milliseconds TimeoutMemberData *int `json:"timeout_member_data,omitempty"` // Backend member connection timeout in milliseconds TimeoutMemberConnect *int `json:"timeout_member_connect,omitempty"` // Time, in milliseconds, to wait for additional TCP packets for content inspection TimeoutTCPInspect *int `json:"timeout_tcp_inspect,omitempty"` // A dictionary of optional headers to insert into the request before it is sent to the backend member. InsertHeaders *map[string]string `json:"insert_headers,omitempty"` // A list of IPv4, IPv6 or mix of both CIDRs AllowedCIDRs *[]string `json:"allowed_cidrs,omitempty"` // A list of TLS protocol versions. Available from microversion 2.17 TLSVersions *[]TLSVersion `json:"tls_versions,omitempty"` // Tags is a set of resource tags. New in version 2.5 Tags *[]string `json:"tags,omitempty"` }
UpdateOpts represents options for updating a Listener.
func (UpdateOpts) ToListenerUpdateMap ¶
func (opts UpdateOpts) ToListenerUpdateMap() (map[string]interface{}, error)
ToListenerUpdateMap builds a request body from UpdateOpts.
type UpdateOptsBuilder ¶
UpdateOptsBuilder allows extensions to add additional parameters to the Update request.
type UpdateResult ¶
type UpdateResult struct {
// contains filtered or unexported fields
}
UpdateResult represents the result of an update operation. Call its Extract method to interpret it as a Listener.
func Update ¶
func Update(c *gophercloud.ServiceClient, id string, opts UpdateOpts) (r UpdateResult)
Update is an operation which modifies the attributes of the specified Listener.