Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.16 KB

File metadata and controls

135 lines (72 loc) · 3.16 KB

ELFSecurity

Properties

Name Type Description Notes
Pie bool
Stripped bool
Canary bool
Nx bool
Relo bool

Methods

NewELFSecurity

func NewELFSecurity(pie bool, stripped bool, canary bool, nx bool, relo bool, ) *ELFSecurity

NewELFSecurity instantiates a new ELFSecurity 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

NewELFSecurityWithDefaults

func NewELFSecurityWithDefaults() *ELFSecurity

NewELFSecurityWithDefaults instantiates a new ELFSecurity 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

GetPie

func (o *ELFSecurity) GetPie() bool

GetPie returns the Pie field if non-nil, zero value otherwise.

GetPieOk

func (o *ELFSecurity) GetPieOk() (*bool, bool)

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

SetPie

func (o *ELFSecurity) SetPie(v bool)

SetPie sets Pie field to given value.

GetStripped

func (o *ELFSecurity) GetStripped() bool

GetStripped returns the Stripped field if non-nil, zero value otherwise.

GetStrippedOk

func (o *ELFSecurity) GetStrippedOk() (*bool, bool)

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

SetStripped

func (o *ELFSecurity) SetStripped(v bool)

SetStripped sets Stripped field to given value.

GetCanary

func (o *ELFSecurity) GetCanary() bool

GetCanary returns the Canary field if non-nil, zero value otherwise.

GetCanaryOk

func (o *ELFSecurity) GetCanaryOk() (*bool, bool)

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

SetCanary

func (o *ELFSecurity) SetCanary(v bool)

SetCanary sets Canary field to given value.

GetNx

func (o *ELFSecurity) GetNx() bool

GetNx returns the Nx field if non-nil, zero value otherwise.

GetNxOk

func (o *ELFSecurity) GetNxOk() (*bool, bool)

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

SetNx

func (o *ELFSecurity) SetNx(v bool)

SetNx sets Nx field to given value.

GetRelo

func (o *ELFSecurity) GetRelo() bool

GetRelo returns the Relo field if non-nil, zero value otherwise.

GetReloOk

func (o *ELFSecurity) GetReloOk() (*bool, bool)

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

SetRelo

func (o *ELFSecurity) SetRelo(v bool)

SetRelo sets Relo field to given value.

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