Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateOpts ¶
type CreateOpts struct { // The administrative state of the Listener. A valid value is true (UP) // or false (DOWN). AdminStateUp *bool `json:"admin_state_up,omitempty"` // the ID of the CA certificate used by the listener. CAContainerRef string `json:"client_ca_tls_container_ref,omitempty"` // The ID of the default pool with which the Listener is associated. DefaultPoolID string `json:"default_pool_id,omitempty"` // A reference to a Barbican container of TLS secrets. DefaultTlsContainerRef string `json:"default_tls_container_ref,omitempty"` // Human-readable description for the Listener. Description string `json:"description,omitempty"` // whether to use HTTP2. Http2Enable *bool `json:"http2_enable,omitempty"` // The load balancer on which to provision this listener. LoadbalancerID string `json:"loadbalancer_id" required:"true"` // Human-readable name for the Listener. Does not have to be unique. Name string `json:"name,omitempty"` // 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"` // The protocol - can either be TCP, HTTP or HTTPS. Protocol Protocol `json:"protocol" required:"true"` // The port on which to listen for client traffic. ProtocolPort int `json:"protocol_port,omitempty"` // A list of references to TLS secrets. SniContainerRefs []string `json:"sni_container_refs,omitempty"` // Specifies the security policy used by the listener. TlsCiphersPolicy string `json:"tls_ciphers_policy,omitempty"` // Whether enable member retry EnableMemberRetry *bool `json:"enable_member_retry,omitempty"` // Whether enable proxy protocol ProxyProtocolEnable *bool `json:"proxy_protocol_enable,omitempty"` // Whether enable ssl early data SslEarlyDataEnable *bool `json:"ssl_early_data_enable,omitempty"` // The keepalive timeout of the Listener. KeepaliveTimeout *int `json:"keepalive_timeout,omitempty"` // The client timeout of the Listener. ClientTimeout *int `json:"client_timeout,omitempty"` // The member timeout of the Listener. MemberTimeout *int `json:"member_timeout,omitempty"` // The ipgroup of the Listener. IpGroup *IpGroup `json:"ipgroup,omitempty"` // The http insert headers of the Listener. InsertHeaders *InsertHeaders `json:"insert_headers,omitempty"` // Transparent client ip enable TransparentClientIP *bool `json:"transparent_client_ip_enable,omitempty"` // Enhance L7policy enable EnhanceL7policy *bool `json:"enhance_l7policy_enable,omitempty"` // The port range of the current listener PortRanges []PortRange `json:"port_ranges,omitempty"` // ELB gzip enable GzipEnable *bool `json:"gzip_enable,omitempty"` // The QUIC configuration for the current listener QuicConfig *QuicConfig `json:"quic_config,omitempty"` // Security Policy ID SecurityPolicyId string `json:"security_policy_id,omitempty"` // The SNI certificates used by the listener. SniMatchAlgo string `json:"sni_match_algo,omitempty"` // Protection status ProtectionStatus string `json:"protection_status,omitempty"` // Protection reason ProtectionReason string `json:"protection_reason,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 *golangsdk.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 tenants by specifying a TenantID attribute different than their own.
type DeleteResult ¶
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 *golangsdk.ServiceClient, id string) (r DeleteResult)
Delete will permanently delete a particular Listeners based on its unique ID.
func ForceDelete ¶
func ForceDelete(c *golangsdk.ServiceClient, id string) (r DeleteResult)
ForceDelete will delete the listener and the sub resource(listener and l7 policies, unbind associated pools)
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.
type InsertHeaders ¶
type InsertHeaders struct { ForwardedELBIP *bool `json:"X-Forwarded-ELB-IP,omitempty"` ForwardedPort *bool `json:"X-Forwarded-Port,omitempty"` ForwardedForPort *bool `json:"X-Forwarded-For-Port,omitempty"` ForwardedHost *bool `json:"X-Forwarded-Host,omitempty"` ForwardedProto *bool `json:"X-Forwarded-Proto,omitempty"` RealIP *bool `json:"X-Real-IP,omitempty"` ForwardedELBID *bool `json:"X-Forwarded-ELB-ID,omitempty"` ForwardedTLSCertificateID *bool `json:"X-Forwarded-TLS-Certificate-ID,omitempty"` ForwardedTLSCipher *bool `json:"X-Forwarded-TLS-Cipher,omitempty"` ForwardedTLSProtocol *bool `json:"X-Forwarded-TLS-Protocol,omitempty"` }
type IpGroupUpdate ¶
type Listener ¶
type Listener struct { // The unique ID for the Listener. ID string `json:"id"` // The administrative state of the Listener. A valid value is true (UP) or false (DOWN). AdminStateUp bool `json:"admin_state_up"` // the ID of the CA certificate used by the listener. CAContainerRef string `json:"client_ca_tls_container_ref"` // The maximum number of connections allowed for the Loadbalancer. // Default is -1, meaning no limit. ConnLimit int `json:"connection_limit"` // The UUID of default pool. Must have compatible protocol with listener. DefaultPoolID string `json:"default_pool_id"` // A reference to a Barbican container of TLS secrets. DefaultTlsContainerRef string `json:"default_tls_container_ref"` // Human-readable description for the Listener. Description string `json:"description"` // whether to use HTTP2. Http2Enable bool `json:"http2_enable"` // A list of load balancer IDs. Loadbalancers []LoadBalancerID `json:"loadbalancers"` // Human-readable name for the Listener. Does not have to be unique. Name string `json:"name"` // The protocol to loadbalance. A valid value is TCP, HTTP, or 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 list of references to TLS secrets. SniContainerRefs []string `json:"sni_container_refs"` // Specifies the security policy used by the listener. TlsCiphersPolicy string `json:"tls_ciphers_policy"` // Whether enable member retry EnableMemberRetry bool `json:"enable_member_retry"` // Whether enable proxy protocol ProxyProtocolEnable bool `json:"proxy_protocol_enable"` // The keepalive timeout of the Listener. KeepaliveTimeout int `json:"keepalive_timeout"` // The client timeout of the Listener. ClientTimeout int `json:"client_timeout"` // The member timeout of the Listener. MemberTimeout int `json:"member_timeout"` // The ipgroup of the Listener. IpGroup IpGroup `json:"ipgroup"` // The http insert headers of the Listener. InsertHeaders InsertHeaders `json:"insert_headers"` // Transparent client ip enable TransparentClientIP bool `json:"transparent_client_ip_enable"` // The creation time of the current listener CreatedAt string `json:"created_at"` // The update time of the current listener UpdatedAt string `json:"updated_at"` // The port range of the current listener PortRanges []PortRange `json:"port_ranges"` // ELB gzip enable GzipEnable bool `json:"gzip_enable"` // The QUIC configuration for the current listener QuicConfig QuicConfig `json:"quic_config"` // Security Policy ID SecurityPolicyId string `json:"security_policy_id"` // The SNI certificates used by the listener. SniMatchAlgo string `json:"sni_match_algo"` // Whether enable ssl early data SslEarlyDataEnable bool `json:"ssl_early_data_enable"` // Enhance L7policy enable EnhanceL7policy bool `json:"enhance_l7policy_enable"` // Update protection status ProtectionStatus string `json:"protection_status"` // Update protection reason ProtectionReason string `json:"protection_reason"` }
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.
type LoadBalancerID ¶
type LoadBalancerID struct {
ID string `json:"id"`
}
type QuicConfig ¶
type UpdateOpts ¶
type UpdateOpts struct { // Human-readable name for the Listener. Does not have to be unique. Name string `json:"name,omitempty"` // Human-readable description for the Listener. Description *string `json:"description,omitempty"` // The administrative state of the Listener. A valid value is true (UP) // or false (DOWN). AdminStateUp *bool `json:"admin_state_up,omitempty"` // the ID of the CA certificate used by the listener. CAContainerRef *string `json:"client_ca_tls_container_ref,omitempty"` // The ID of the default pool with which the Listener is associated. DefaultPoolID string `json:"default_pool_id,omitempty"` // A reference to a container of TLS secrets. DefaultTlsContainerRef *string `json:"default_tls_container_ref,omitempty"` // whether to use HTTP2. Http2Enable *bool `json:"http2_enable,omitempty"` // A list of references to TLS secrets. SniContainerRefs *[]string `json:"sni_container_refs,omitempty"` // Specifies the security policy used by the listener. TlsCiphersPolicy *string `json:"tls_ciphers_policy,omitempty"` // Whether enable member retry EnableMemberRetry *bool `json:"enable_member_retry,omitempty"` // Whether enable proxy protocol ProxyProtocolEnable *bool `json:"proxy_protocol_enable,omitempty"` // Whether enable ssl early data SslEarlyDataEnable *bool `json:"ssl_early_data_enable,omitempty"` // The keepalive timeout of the Listener. KeepaliveTimeout *int `json:"keepalive_timeout,omitempty"` // The client timeout of the Listener. ClientTimeout *int `json:"client_timeout,omitempty"` // The member timeout of the Listener. MemberTimeout *int `json:"member_timeout,omitempty"` // The ipgroup of the Listener. IpGroup *IpGroupUpdate `json:"ipgroup,omitempty"` // The http insert headers of the Listener. InsertHeaders *InsertHeaders `json:"insert_headers,omitempty"` // Transparent client ip enable TransparentClientIP *bool `json:"transparent_client_ip_enable,omitempty"` // Enhance L7policy enable EnhanceL7policy *bool `json:"enhance_l7policy_enable,omitempty"` // ELB gzip enable GzipEnable *bool `json:"gzip_enable,omitempty"` // The QUIC configuration for the current listener QuicConfig *QuicConfig `json:"quic_config"` // Security Policy ID SecurityPolicyId *string `json:"security_policy_id"` // The SNI certificates used by the listener. SniMatchAlgo string `json:"sni_match_algo,omitempty"` // Update protection status ProtectionStatus string `json:"protection_status,omitempty"` // Update protection reason ProtectionReason *string `json:"protection_reason,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 *golangsdk.ServiceClient, id string, opts UpdateOpts) (r UpdateResult)
Update is an operation which modifies the attributes of the specified Listener.