Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | The Connector entity ID. | [optional] |
Name | Pointer to string | The Connector name. | [optional] |
EngineId | Pointer to string | A reference to the Engine that this Connector belongs to. | [optional] |
Type | Pointer to string | The type of Connector. One of Database, File, or Mainframe. | [optional] |
Hostname | Pointer to string | The network hostname or IP address of the database server. | [optional] |
Port | Pointer to int32 | The TCP port of the server. | [optional] |
Username | Pointer to string | The username this Connector will use to connect to the database. | [optional] |
Tags | Pointer to []Tag | [optional] |
func NewConnector() *Connector
NewConnector instantiates a new Connector 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 NewConnectorWithDefaults() *Connector
NewConnectorWithDefaults instantiates a new Connector 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 *Connector) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Connector) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Connector) SetId(v string)
SetId sets Id field to given value.
func (o *Connector) HasId() bool
HasId returns a boolean if a field has been set.
func (o *Connector) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *Connector) 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 *Connector) SetName(v string)
SetName sets Name field to given value.
func (o *Connector) HasName() bool
HasName returns a boolean if a field has been set.
func (o *Connector) GetEngineId() string
GetEngineId returns the EngineId field if non-nil, zero value otherwise.
func (o *Connector) GetEngineIdOk() (*string, bool)
GetEngineIdOk returns a tuple with the EngineId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Connector) SetEngineId(v string)
SetEngineId sets EngineId field to given value.
func (o *Connector) HasEngineId() bool
HasEngineId returns a boolean if a field has been set.
func (o *Connector) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *Connector) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Connector) SetType(v string)
SetType sets Type field to given value.
func (o *Connector) HasType() bool
HasType returns a boolean if a field has been set.
func (o *Connector) GetHostname() string
GetHostname returns the Hostname field if non-nil, zero value otherwise.
func (o *Connector) 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 *Connector) SetHostname(v string)
SetHostname sets Hostname field to given value.
func (o *Connector) HasHostname() bool
HasHostname returns a boolean if a field has been set.
func (o *Connector) GetPort() int32
GetPort returns the Port field if non-nil, zero value otherwise.
func (o *Connector) GetPortOk() (*int32, 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.
func (o *Connector) SetPort(v int32)
SetPort sets Port field to given value.
func (o *Connector) HasPort() bool
HasPort returns a boolean if a field has been set.
func (o *Connector) GetUsername() string
GetUsername returns the Username field if non-nil, zero value otherwise.
func (o *Connector) 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 *Connector) SetUsername(v string)
SetUsername sets Username field to given value.
func (o *Connector) HasUsername() bool
HasUsername returns a boolean if a field has been set.
func (o *Connector) GetTags() []Tag
GetTags returns the Tags field if non-nil, zero value otherwise.
func (o *Connector) GetTagsOk() (*[]Tag, bool)
GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Connector) SetTags(v []Tag)
SetTags sets Tags field to given value.
func (o *Connector) HasTags() bool
HasTags returns a boolean if a field has been set.