Name | Type | Description | Notes |
---|---|---|---|
Name | string | ||
Hostname | string | ||
Username | Pointer to NullableString | [optional] | |
Password | Pointer to NullableString | [optional] | |
HashicorpVaultUsernameCommandArgs | Pointer to []string | Arguments to pass to the Vault CLI tool to retrieve the username for the engine. | [optional] |
HashicorpVaultPasswordCommandArgs | Pointer to []string | Arguments to pass to the Vault CLI tool to retrieve the password for the engine. | [optional] |
HashicorpVaultId | Pointer to NullableInt64 | Reference to the Hashicorp vault to use to retrieve engine credentials. | [optional] |
InsecureSsl | Pointer to bool | Allow connections to the engine over HTTPs without validating the TLS certificate. Even though the connection to the engine might be performed over HTTPs, setting this property eliminates the protection against a man-in-the-middle attach for connections to this engine. Instead, consider creating a truststore with a Certificate Authority to validate the engine's certificate, and set the truststore_path propery. | [optional] [default to false] |
UnsafeSslHostnameCheck | Pointer to bool | Ignore validation of the name associated to the TLS certificate when connecting to the engine over HTTPs. Setting this value must only be done if the TLS certificate of the engine does not match the hostname, and the TLS configuration of the engine cannot be fixed. Setting this property reduces the protection against a man-in-the-middle attack for connections to this engine. This is ignored if insecure_ssl is set. | [optional] [default to false] |
TruststoreFilename | Pointer to NullableString | File name of a truststore which can be used to validate the TLS certificate of the engine. The truststore must be available at /etc/config/certs/<truststore_filename> | [optional] |
TruststorePassword | Pointer to NullableString | Password to read the truststore. | [optional] |
func NewEngineRegistrationParameter(name string, hostname string, ) *EngineRegistrationParameter
NewEngineRegistrationParameter instantiates a new EngineRegistrationParameter 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
func NewEngineRegistrationParameterWithDefaults() *EngineRegistrationParameter
NewEngineRegistrationParameterWithDefaults instantiates a new EngineRegistrationParameter 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
func (o *EngineRegistrationParameter) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetName(v string)
SetName sets Name field to given value.
func (o *EngineRegistrationParameter) GetHostname() string
GetHostname returns the Hostname field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetHostnameOk() (*string, bool)
GetHostnameOk returns a tuple with the Hostname field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetHostname(v string)
SetHostname sets Hostname field to given value.
func (o *EngineRegistrationParameter) GetUsername() string
GetUsername returns the Username field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetUsernameOk() (*string, bool)
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetUsername(v string)
SetUsername sets Username field to given value.
func (o *EngineRegistrationParameter) HasUsername() bool
HasUsername returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetUsernameNil(b bool)
SetUsernameNil sets the value for Username to be an explicit nil
func (o *EngineRegistrationParameter) UnsetUsername()
UnsetUsername ensures that no value is present for Username, not even an explicit nil
func (o *EngineRegistrationParameter) GetPassword() string
GetPassword returns the Password field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetPasswordOk() (*string, bool)
GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetPassword(v string)
SetPassword sets Password field to given value.
func (o *EngineRegistrationParameter) HasPassword() bool
HasPassword returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetPasswordNil(b bool)
SetPasswordNil sets the value for Password to be an explicit nil
func (o *EngineRegistrationParameter) UnsetPassword()
UnsetPassword ensures that no value is present for Password, not even an explicit nil
func (o *EngineRegistrationParameter) GetHashicorpVaultUsernameCommandArgs() []string
GetHashicorpVaultUsernameCommandArgs returns the HashicorpVaultUsernameCommandArgs field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetHashicorpVaultUsernameCommandArgsOk() (*[]string, bool)
GetHashicorpVaultUsernameCommandArgsOk returns a tuple with the HashicorpVaultUsernameCommandArgs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetHashicorpVaultUsernameCommandArgs(v []string)
SetHashicorpVaultUsernameCommandArgs sets HashicorpVaultUsernameCommandArgs field to given value.
func (o *EngineRegistrationParameter) HasHashicorpVaultUsernameCommandArgs() bool
HasHashicorpVaultUsernameCommandArgs returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetHashicorpVaultUsernameCommandArgsNil(b bool)
SetHashicorpVaultUsernameCommandArgsNil sets the value for HashicorpVaultUsernameCommandArgs to be an explicit nil
func (o *EngineRegistrationParameter) UnsetHashicorpVaultUsernameCommandArgs()
UnsetHashicorpVaultUsernameCommandArgs ensures that no value is present for HashicorpVaultUsernameCommandArgs, not even an explicit nil
func (o *EngineRegistrationParameter) GetHashicorpVaultPasswordCommandArgs() []string
GetHashicorpVaultPasswordCommandArgs returns the HashicorpVaultPasswordCommandArgs field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetHashicorpVaultPasswordCommandArgsOk() (*[]string, bool)
GetHashicorpVaultPasswordCommandArgsOk returns a tuple with the HashicorpVaultPasswordCommandArgs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetHashicorpVaultPasswordCommandArgs(v []string)
SetHashicorpVaultPasswordCommandArgs sets HashicorpVaultPasswordCommandArgs field to given value.
func (o *EngineRegistrationParameter) HasHashicorpVaultPasswordCommandArgs() bool
HasHashicorpVaultPasswordCommandArgs returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetHashicorpVaultPasswordCommandArgsNil(b bool)
SetHashicorpVaultPasswordCommandArgsNil sets the value for HashicorpVaultPasswordCommandArgs to be an explicit nil
func (o *EngineRegistrationParameter) UnsetHashicorpVaultPasswordCommandArgs()
UnsetHashicorpVaultPasswordCommandArgs ensures that no value is present for HashicorpVaultPasswordCommandArgs, not even an explicit nil
func (o *EngineRegistrationParameter) GetHashicorpVaultId() int64
GetHashicorpVaultId returns the HashicorpVaultId field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetHashicorpVaultIdOk() (*int64, bool)
GetHashicorpVaultIdOk returns a tuple with the HashicorpVaultId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetHashicorpVaultId(v int64)
SetHashicorpVaultId sets HashicorpVaultId field to given value.
func (o *EngineRegistrationParameter) HasHashicorpVaultId() bool
HasHashicorpVaultId returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetHashicorpVaultIdNil(b bool)
SetHashicorpVaultIdNil sets the value for HashicorpVaultId to be an explicit nil
func (o *EngineRegistrationParameter) UnsetHashicorpVaultId()
UnsetHashicorpVaultId ensures that no value is present for HashicorpVaultId, not even an explicit nil
func (o *EngineRegistrationParameter) GetInsecureSsl() bool
GetInsecureSsl returns the InsecureSsl field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetInsecureSslOk() (*bool, bool)
GetInsecureSslOk returns a tuple with the InsecureSsl field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetInsecureSsl(v bool)
SetInsecureSsl sets InsecureSsl field to given value.
func (o *EngineRegistrationParameter) HasInsecureSsl() bool
HasInsecureSsl returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) GetUnsafeSslHostnameCheck() bool
GetUnsafeSslHostnameCheck returns the UnsafeSslHostnameCheck field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetUnsafeSslHostnameCheckOk() (*bool, bool)
GetUnsafeSslHostnameCheckOk returns a tuple with the UnsafeSslHostnameCheck field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetUnsafeSslHostnameCheck(v bool)
SetUnsafeSslHostnameCheck sets UnsafeSslHostnameCheck field to given value.
func (o *EngineRegistrationParameter) HasUnsafeSslHostnameCheck() bool
HasUnsafeSslHostnameCheck returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) GetTruststoreFilename() string
GetTruststoreFilename returns the TruststoreFilename field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetTruststoreFilenameOk() (*string, bool)
GetTruststoreFilenameOk returns a tuple with the TruststoreFilename field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetTruststoreFilename(v string)
SetTruststoreFilename sets TruststoreFilename field to given value.
func (o *EngineRegistrationParameter) HasTruststoreFilename() bool
HasTruststoreFilename returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetTruststoreFilenameNil(b bool)
SetTruststoreFilenameNil sets the value for TruststoreFilename to be an explicit nil
func (o *EngineRegistrationParameter) UnsetTruststoreFilename()
UnsetTruststoreFilename ensures that no value is present for TruststoreFilename, not even an explicit nil
func (o *EngineRegistrationParameter) GetTruststorePassword() string
GetTruststorePassword returns the TruststorePassword field if non-nil, zero value otherwise.
func (o *EngineRegistrationParameter) GetTruststorePasswordOk() (*string, bool)
GetTruststorePasswordOk returns a tuple with the TruststorePassword field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *EngineRegistrationParameter) SetTruststorePassword(v string)
SetTruststorePassword sets TruststorePassword field to given value.
func (o *EngineRegistrationParameter) HasTruststorePassword() bool
HasTruststorePassword returns a boolean if a field has been set.
func (o *EngineRegistrationParameter) SetTruststorePasswordNil(b bool)
SetTruststorePasswordNil sets the value for TruststorePassword to be an explicit nil
func (o *EngineRegistrationParameter) UnsetTruststorePassword()
UnsetTruststorePassword ensures that no value is present for TruststorePassword, not even an explicit nil