Skip to content

Latest commit

 

History

History
203 lines (108 loc) · 5.22 KB

LogForwarder.md

File metadata and controls

203 lines (108 loc) · 5.22 KB

LogForwarder

Properties

Name Type Description Notes
Id Pointer to string [optional] [readonly]
Name string
Description string
Type string
ConnectionType string
DataFormat LogForwarderDataFormat
Settings LogForwarderSetting
Status bool

Methods

NewLogForwarder

func NewLogForwarder(name string, description string, type_ string, connectionType string, dataFormat LogForwarderDataFormat, settings LogForwarderSetting, status bool, ) *LogForwarder

NewLogForwarder instantiates a new LogForwarder 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

NewLogForwarderWithDefaults

func NewLogForwarderWithDefaults() *LogForwarder

NewLogForwarderWithDefaults instantiates a new LogForwarder 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

GetId

func (o *LogForwarder) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

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

SetId

func (o *LogForwarder) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *LogForwarder) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *LogForwarder) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

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

SetName

func (o *LogForwarder) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *LogForwarder) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *LogForwarder) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *LogForwarder) SetDescription(v string)

SetDescription sets Description field to given value.

GetType

func (o *LogForwarder) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

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

SetType

func (o *LogForwarder) SetType(v string)

SetType sets Type field to given value.

GetConnectionType

func (o *LogForwarder) GetConnectionType() string

GetConnectionType returns the ConnectionType field if non-nil, zero value otherwise.

GetConnectionTypeOk

func (o *LogForwarder) GetConnectionTypeOk() (*string, bool)

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

SetConnectionType

func (o *LogForwarder) SetConnectionType(v string)

SetConnectionType sets ConnectionType field to given value.

GetDataFormat

func (o *LogForwarder) GetDataFormat() LogForwarderDataFormat

GetDataFormat returns the DataFormat field if non-nil, zero value otherwise.

GetDataFormatOk

func (o *LogForwarder) GetDataFormatOk() (*LogForwarderDataFormat, bool)

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

SetDataFormat

func (o *LogForwarder) SetDataFormat(v LogForwarderDataFormat)

SetDataFormat sets DataFormat field to given value.

GetSettings

func (o *LogForwarder) GetSettings() LogForwarderSetting

GetSettings returns the Settings field if non-nil, zero value otherwise.

GetSettingsOk

func (o *LogForwarder) GetSettingsOk() (*LogForwarderSetting, bool)

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

SetSettings

func (o *LogForwarder) SetSettings(v LogForwarderSetting)

SetSettings sets Settings field to given value.

GetStatus

func (o *LogForwarder) GetStatus() bool

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *LogForwarder) GetStatusOk() (*bool, bool)

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

SetStatus

func (o *LogForwarder) SetStatus(v bool)

SetStatus sets Status field to given value.

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