Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ type CreateOpts struct {
// 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"`

// The administrative state of the Listener. A valid value is true (UP)
// or false (DOWN).
AdminStateUp *bool `json:"admin_state_up,omitempty"`
Expand Down Expand Up @@ -168,6 +171,9 @@ type UpdateOpts struct {
// 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"`

// The administrative state of the Listener. A valid value is true (UP)
// or false (DOWN).
AdminStateUp *bool `json:"admin_state_up,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ type Listener struct {
// A reference to a Barbican container of TLS secrets.
DefaultTlsContainerRef string `json:"default_tls_container_ref"`

// Specifies the security policy used by the listener.
TlsCiphersPolicy string `json:"tls_ciphers_policy"`

// The administrative state of the Listener. A valid value is true (UP) or false (DOWN).
AdminStateUp bool `json:"admin_state_up"`

Expand Down