Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 7.63 KB

SecuritySettings.md

File metadata and controls

186 lines (101 loc) · 7.63 KB

SecuritySettings

Properties

Name Type Description Notes
ClusterPublicKey Pointer to string The Base 64 encoded public key of the cluster in PEM format. [optional]
ClusterPublicKeyId Pointer to string Key Id to identify the cluster's active key pair. [optional]
DataRecoveryPasswordConfigured Pointer to bool Indicates whether the backup recovery password has been configured. [optional]
MessageSecurityMode Pointer to string Determines if signing and verification of the JMS messages passed between Horizon components takes place. * DISABLED: Message security mode is disabled. * MIXED: Message security mode is enabled but not enforced. * ENABLED: Message security mode is enabled. Unsigned messages are rejected by Horizon components. * ENHANCED: Message Security mode is Enhanced. Message signing and validation is performed based on the current Security Level and desktop Message Security mode. [optional]
MessageSecurityStatus Pointer to string The status of the JMS message security. This tracks the application of changes to messageSecurityMode. * READY: The cluster is performing at the specified message security mode. * INITIALIZING_ENHANCED: The cluster is initializing a transition to the ENHANCED message security mode. * PENDING_ENHANCED: The cluster is propagating the change to ENHANCED message security mode to all nodes. * LEAVING_ENHANCED: The cluster is leaving the ENHANCED message security mode. [optional]
ReAuthSecureTunnelAfterInterruption Pointer to bool Determines if user credentials must be re-authenticated after a network interruption when Horizon clients use secure tunnel connections to Horizon resources. When you select this setting, if a secure tunnel connection ends during a session, Horizon Client requires the user to re-authenticate before reconnecting. [optional]

Methods

NewSecuritySettings

func NewSecuritySettings() *SecuritySettings

NewSecuritySettings instantiates a new SecuritySettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewSecuritySettingsWithDefaults

func NewSecuritySettingsWithDefaults() *SecuritySettings

NewSecuritySettingsWithDefaults instantiates a new SecuritySettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetClusterPublicKey

func (o *SecuritySettings) GetClusterPublicKey() string

GetClusterPublicKey returns the ClusterPublicKey field if non-nil, zero value otherwise.

GetClusterPublicKeyOk

func (o *SecuritySettings) GetClusterPublicKeyOk() (*string, bool)

GetClusterPublicKeyOk returns a tuple with the ClusterPublicKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetClusterPublicKey

func (o *SecuritySettings) SetClusterPublicKey(v string)

SetClusterPublicKey sets ClusterPublicKey field to given value.

HasClusterPublicKey

func (o *SecuritySettings) HasClusterPublicKey() bool

HasClusterPublicKey returns a boolean if a field has been set.

GetClusterPublicKeyId

func (o *SecuritySettings) GetClusterPublicKeyId() string

GetClusterPublicKeyId returns the ClusterPublicKeyId field if non-nil, zero value otherwise.

GetClusterPublicKeyIdOk

func (o *SecuritySettings) GetClusterPublicKeyIdOk() (*string, bool)

GetClusterPublicKeyIdOk returns a tuple with the ClusterPublicKeyId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetClusterPublicKeyId

func (o *SecuritySettings) SetClusterPublicKeyId(v string)

SetClusterPublicKeyId sets ClusterPublicKeyId field to given value.

HasClusterPublicKeyId

func (o *SecuritySettings) HasClusterPublicKeyId() bool

HasClusterPublicKeyId returns a boolean if a field has been set.

GetDataRecoveryPasswordConfigured

func (o *SecuritySettings) GetDataRecoveryPasswordConfigured() bool

GetDataRecoveryPasswordConfigured returns the DataRecoveryPasswordConfigured field if non-nil, zero value otherwise.

GetDataRecoveryPasswordConfiguredOk

func (o *SecuritySettings) GetDataRecoveryPasswordConfiguredOk() (*bool, bool)

GetDataRecoveryPasswordConfiguredOk returns a tuple with the DataRecoveryPasswordConfigured field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDataRecoveryPasswordConfigured

func (o *SecuritySettings) SetDataRecoveryPasswordConfigured(v bool)

SetDataRecoveryPasswordConfigured sets DataRecoveryPasswordConfigured field to given value.

HasDataRecoveryPasswordConfigured

func (o *SecuritySettings) HasDataRecoveryPasswordConfigured() bool

HasDataRecoveryPasswordConfigured returns a boolean if a field has been set.

GetMessageSecurityMode

func (o *SecuritySettings) GetMessageSecurityMode() string

GetMessageSecurityMode returns the MessageSecurityMode field if non-nil, zero value otherwise.

GetMessageSecurityModeOk

func (o *SecuritySettings) GetMessageSecurityModeOk() (*string, bool)

GetMessageSecurityModeOk returns a tuple with the MessageSecurityMode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMessageSecurityMode

func (o *SecuritySettings) SetMessageSecurityMode(v string)

SetMessageSecurityMode sets MessageSecurityMode field to given value.

HasMessageSecurityMode

func (o *SecuritySettings) HasMessageSecurityMode() bool

HasMessageSecurityMode returns a boolean if a field has been set.

GetMessageSecurityStatus

func (o *SecuritySettings) GetMessageSecurityStatus() string

GetMessageSecurityStatus returns the MessageSecurityStatus field if non-nil, zero value otherwise.

GetMessageSecurityStatusOk

func (o *SecuritySettings) GetMessageSecurityStatusOk() (*string, bool)

GetMessageSecurityStatusOk returns a tuple with the MessageSecurityStatus field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMessageSecurityStatus

func (o *SecuritySettings) SetMessageSecurityStatus(v string)

SetMessageSecurityStatus sets MessageSecurityStatus field to given value.

HasMessageSecurityStatus

func (o *SecuritySettings) HasMessageSecurityStatus() bool

HasMessageSecurityStatus returns a boolean if a field has been set.

GetReAuthSecureTunnelAfterInterruption

func (o *SecuritySettings) GetReAuthSecureTunnelAfterInterruption() bool

GetReAuthSecureTunnelAfterInterruption returns the ReAuthSecureTunnelAfterInterruption field if non-nil, zero value otherwise.

GetReAuthSecureTunnelAfterInterruptionOk

func (o *SecuritySettings) GetReAuthSecureTunnelAfterInterruptionOk() (*bool, bool)

GetReAuthSecureTunnelAfterInterruptionOk returns a tuple with the ReAuthSecureTunnelAfterInterruption field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetReAuthSecureTunnelAfterInterruption

func (o *SecuritySettings) SetReAuthSecureTunnelAfterInterruption(v bool)

SetReAuthSecureTunnelAfterInterruption sets ReAuthSecureTunnelAfterInterruption field to given value.

HasReAuthSecureTunnelAfterInterruption

func (o *SecuritySettings) HasReAuthSecureTunnelAfterInterruption() bool

HasReAuthSecureTunnelAfterInterruption returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]