Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.89 KB

SSHTargetDetails.md

File metadata and controls

186 lines (101 loc) · 4.89 KB

SSHTargetDetails

Properties

Name Type Description Notes
Host Pointer to string [optional]
Password Pointer to string [optional]
Port Pointer to string [optional]
PrivateKey Pointer to string [optional]
PrivateKeyPassword Pointer to string [optional]
Username Pointer to string [optional]

Methods

NewSSHTargetDetails

func NewSSHTargetDetails() *SSHTargetDetails

NewSSHTargetDetails instantiates a new SSHTargetDetails 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

NewSSHTargetDetailsWithDefaults

func NewSSHTargetDetailsWithDefaults() *SSHTargetDetails

NewSSHTargetDetailsWithDefaults instantiates a new SSHTargetDetails 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

GetHost

func (o *SSHTargetDetails) GetHost() string

GetHost returns the Host field if non-nil, zero value otherwise.

GetHostOk

func (o *SSHTargetDetails) GetHostOk() (*string, bool)

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

SetHost

func (o *SSHTargetDetails) SetHost(v string)

SetHost sets Host field to given value.

HasHost

func (o *SSHTargetDetails) HasHost() bool

HasHost returns a boolean if a field has been set.

GetPassword

func (o *SSHTargetDetails) GetPassword() string

GetPassword returns the Password field if non-nil, zero value otherwise.

GetPasswordOk

func (o *SSHTargetDetails) 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.

SetPassword

func (o *SSHTargetDetails) SetPassword(v string)

SetPassword sets Password field to given value.

HasPassword

func (o *SSHTargetDetails) HasPassword() bool

HasPassword returns a boolean if a field has been set.

GetPort

func (o *SSHTargetDetails) GetPort() string

GetPort returns the Port field if non-nil, zero value otherwise.

GetPortOk

func (o *SSHTargetDetails) GetPortOk() (*string, bool)

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

SetPort

func (o *SSHTargetDetails) SetPort(v string)

SetPort sets Port field to given value.

HasPort

func (o *SSHTargetDetails) HasPort() bool

HasPort returns a boolean if a field has been set.

GetPrivateKey

func (o *SSHTargetDetails) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field if non-nil, zero value otherwise.

GetPrivateKeyOk

func (o *SSHTargetDetails) GetPrivateKeyOk() (*string, bool)

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

SetPrivateKey

func (o *SSHTargetDetails) SetPrivateKey(v string)

SetPrivateKey sets PrivateKey field to given value.

HasPrivateKey

func (o *SSHTargetDetails) HasPrivateKey() bool

HasPrivateKey returns a boolean if a field has been set.

GetPrivateKeyPassword

func (o *SSHTargetDetails) GetPrivateKeyPassword() string

GetPrivateKeyPassword returns the PrivateKeyPassword field if non-nil, zero value otherwise.

GetPrivateKeyPasswordOk

func (o *SSHTargetDetails) GetPrivateKeyPasswordOk() (*string, bool)

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

SetPrivateKeyPassword

func (o *SSHTargetDetails) SetPrivateKeyPassword(v string)

SetPrivateKeyPassword sets PrivateKeyPassword field to given value.

HasPrivateKeyPassword

func (o *SSHTargetDetails) HasPrivateKeyPassword() bool

HasPrivateKeyPassword returns a boolean if a field has been set.

GetUsername

func (o *SSHTargetDetails) GetUsername() string

GetUsername returns the Username field if non-nil, zero value otherwise.

GetUsernameOk

func (o *SSHTargetDetails) 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.

SetUsername

func (o *SSHTargetDetails) SetUsername(v string)

SetUsername sets Username field to given value.

HasUsername

func (o *SSHTargetDetails) HasUsername() bool

HasUsername returns a boolean if a field has been set.

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