Skip to content

Latest commit

 

History

History
368 lines (199 loc) · 11.7 KB

File metadata and controls

368 lines (199 loc) · 11.7 KB

DhcpRangeAddInput

Properties

Name Type Description Notes
ServerId Pointer to int32 The database identifier (ID) of the DHCPv4 server, a unique numeric key value automatically incremented when you add a DHCPv4 server. Use the ID to specify the DHCPv4 server of your choice. [optional]
ServerName Pointer to string The name of the DHCPv4 server. [optional]
RangeEndAddr Pointer to string The last IP address of the DHCPv4 range. [optional]
RangeStartAddr Pointer to string The first IP address of the DHCPv4 range. [optional]
ScopeId Pointer to int32 The database identifier (ID) of the DHCPv4 scope, a unique numeric key value automatically incremented when you add a DHCPv4 scope. Use the ID to specify the DHCPv4 scope of your choice. [optional]
ServerHostaddr Pointer to string The IP address of the DHCP server. [optional]
RangeAcl Pointer to string The list of ACLs associated with the DHCPv4 range, as follows: <b>&lt;ACL_name&gt;;&lt;ACL_name&gt;;</b>... . [optional]
RangeName Pointer to string The start and end IP address of the DHCPv4 range, as follows: <b>&lt;start-ip&gt;-&lt;end-ip&gt;</b>. [optional]
ScopeName Pointer to string The name of the DHCPv4 scope. [optional]
ClassParametersToDelete Pointer to []string class parameters you want to delete from the object [optional]
RangeClassName Pointer to string The name of the class to apply to the object you are adding. You must specify the class file directory, e.g. <b>my_directory/my_class.class</b> . You cannot use the classes <b>global</b> and <b>default</b>, they are reserved by the system. [optional]
RangeClassParameters Pointer to []ApiClassParameterInputEntry class parameters in json format [optional]
Warnings Pointer to string A way to bypass <b>(accept) </b>any enabled rule that would return warning messages. If the service returns an error message, you cannot bypass the enabled rules. [optional]

Methods

NewDhcpRangeAddInput

func NewDhcpRangeAddInput() *DhcpRangeAddInput

NewDhcpRangeAddInput instantiates a new DhcpRangeAddInput 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

NewDhcpRangeAddInputWithDefaults

func NewDhcpRangeAddInputWithDefaults() *DhcpRangeAddInput

NewDhcpRangeAddInputWithDefaults instantiates a new DhcpRangeAddInput 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

GetServerId

func (o *DhcpRangeAddInput) GetServerId() int32

GetServerId returns the ServerId field if non-nil, zero value otherwise.

GetServerIdOk

func (o *DhcpRangeAddInput) GetServerIdOk() (*int32, bool)

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

SetServerId

func (o *DhcpRangeAddInput) SetServerId(v int32)

SetServerId sets ServerId field to given value.

HasServerId

func (o *DhcpRangeAddInput) HasServerId() bool

HasServerId returns a boolean if a field has been set.

GetServerName

func (o *DhcpRangeAddInput) GetServerName() string

GetServerName returns the ServerName field if non-nil, zero value otherwise.

GetServerNameOk

func (o *DhcpRangeAddInput) GetServerNameOk() (*string, bool)

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

SetServerName

func (o *DhcpRangeAddInput) SetServerName(v string)

SetServerName sets ServerName field to given value.

HasServerName

func (o *DhcpRangeAddInput) HasServerName() bool

HasServerName returns a boolean if a field has been set.

GetRangeEndAddr

func (o *DhcpRangeAddInput) GetRangeEndAddr() string

GetRangeEndAddr returns the RangeEndAddr field if non-nil, zero value otherwise.

GetRangeEndAddrOk

func (o *DhcpRangeAddInput) GetRangeEndAddrOk() (*string, bool)

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

SetRangeEndAddr

func (o *DhcpRangeAddInput) SetRangeEndAddr(v string)

SetRangeEndAddr sets RangeEndAddr field to given value.

HasRangeEndAddr

func (o *DhcpRangeAddInput) HasRangeEndAddr() bool

HasRangeEndAddr returns a boolean if a field has been set.

GetRangeStartAddr

func (o *DhcpRangeAddInput) GetRangeStartAddr() string

GetRangeStartAddr returns the RangeStartAddr field if non-nil, zero value otherwise.

GetRangeStartAddrOk

func (o *DhcpRangeAddInput) GetRangeStartAddrOk() (*string, bool)

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

SetRangeStartAddr

func (o *DhcpRangeAddInput) SetRangeStartAddr(v string)

SetRangeStartAddr sets RangeStartAddr field to given value.

HasRangeStartAddr

func (o *DhcpRangeAddInput) HasRangeStartAddr() bool

HasRangeStartAddr returns a boolean if a field has been set.

GetScopeId

func (o *DhcpRangeAddInput) GetScopeId() int32

GetScopeId returns the ScopeId field if non-nil, zero value otherwise.

GetScopeIdOk

func (o *DhcpRangeAddInput) GetScopeIdOk() (*int32, bool)

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

SetScopeId

func (o *DhcpRangeAddInput) SetScopeId(v int32)

SetScopeId sets ScopeId field to given value.

HasScopeId

func (o *DhcpRangeAddInput) HasScopeId() bool

HasScopeId returns a boolean if a field has been set.

GetServerHostaddr

func (o *DhcpRangeAddInput) GetServerHostaddr() string

GetServerHostaddr returns the ServerHostaddr field if non-nil, zero value otherwise.

GetServerHostaddrOk

func (o *DhcpRangeAddInput) GetServerHostaddrOk() (*string, bool)

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

SetServerHostaddr

func (o *DhcpRangeAddInput) SetServerHostaddr(v string)

SetServerHostaddr sets ServerHostaddr field to given value.

HasServerHostaddr

func (o *DhcpRangeAddInput) HasServerHostaddr() bool

HasServerHostaddr returns a boolean if a field has been set.

GetRangeAcl

func (o *DhcpRangeAddInput) GetRangeAcl() string

GetRangeAcl returns the RangeAcl field if non-nil, zero value otherwise.

GetRangeAclOk

func (o *DhcpRangeAddInput) GetRangeAclOk() (*string, bool)

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

SetRangeAcl

func (o *DhcpRangeAddInput) SetRangeAcl(v string)

SetRangeAcl sets RangeAcl field to given value.

HasRangeAcl

func (o *DhcpRangeAddInput) HasRangeAcl() bool

HasRangeAcl returns a boolean if a field has been set.

GetRangeName

func (o *DhcpRangeAddInput) GetRangeName() string

GetRangeName returns the RangeName field if non-nil, zero value otherwise.

GetRangeNameOk

func (o *DhcpRangeAddInput) GetRangeNameOk() (*string, bool)

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

SetRangeName

func (o *DhcpRangeAddInput) SetRangeName(v string)

SetRangeName sets RangeName field to given value.

HasRangeName

func (o *DhcpRangeAddInput) HasRangeName() bool

HasRangeName returns a boolean if a field has been set.

GetScopeName

func (o *DhcpRangeAddInput) GetScopeName() string

GetScopeName returns the ScopeName field if non-nil, zero value otherwise.

GetScopeNameOk

func (o *DhcpRangeAddInput) GetScopeNameOk() (*string, bool)

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

SetScopeName

func (o *DhcpRangeAddInput) SetScopeName(v string)

SetScopeName sets ScopeName field to given value.

HasScopeName

func (o *DhcpRangeAddInput) HasScopeName() bool

HasScopeName returns a boolean if a field has been set.

GetClassParametersToDelete

func (o *DhcpRangeAddInput) GetClassParametersToDelete() []string

GetClassParametersToDelete returns the ClassParametersToDelete field if non-nil, zero value otherwise.

GetClassParametersToDeleteOk

func (o *DhcpRangeAddInput) GetClassParametersToDeleteOk() (*[]string, bool)

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

SetClassParametersToDelete

func (o *DhcpRangeAddInput) SetClassParametersToDelete(v []string)

SetClassParametersToDelete sets ClassParametersToDelete field to given value.

HasClassParametersToDelete

func (o *DhcpRangeAddInput) HasClassParametersToDelete() bool

HasClassParametersToDelete returns a boolean if a field has been set.

GetRangeClassName

func (o *DhcpRangeAddInput) GetRangeClassName() string

GetRangeClassName returns the RangeClassName field if non-nil, zero value otherwise.

GetRangeClassNameOk

func (o *DhcpRangeAddInput) GetRangeClassNameOk() (*string, bool)

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

SetRangeClassName

func (o *DhcpRangeAddInput) SetRangeClassName(v string)

SetRangeClassName sets RangeClassName field to given value.

HasRangeClassName

func (o *DhcpRangeAddInput) HasRangeClassName() bool

HasRangeClassName returns a boolean if a field has been set.

GetRangeClassParameters

func (o *DhcpRangeAddInput) GetRangeClassParameters() []ApiClassParameterInputEntry

GetRangeClassParameters returns the RangeClassParameters field if non-nil, zero value otherwise.

GetRangeClassParametersOk

func (o *DhcpRangeAddInput) GetRangeClassParametersOk() (*[]ApiClassParameterInputEntry, bool)

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

SetRangeClassParameters

func (o *DhcpRangeAddInput) SetRangeClassParameters(v []ApiClassParameterInputEntry)

SetRangeClassParameters sets RangeClassParameters field to given value.

HasRangeClassParameters

func (o *DhcpRangeAddInput) HasRangeClassParameters() bool

HasRangeClassParameters returns a boolean if a field has been set.

GetWarnings

func (o *DhcpRangeAddInput) GetWarnings() string

GetWarnings returns the Warnings field if non-nil, zero value otherwise.

GetWarningsOk

func (o *DhcpRangeAddInput) GetWarningsOk() (*string, bool)

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

SetWarnings

func (o *DhcpRangeAddInput) SetWarnings(v string)

SetWarnings sets Warnings field to given value.

HasWarnings

func (o *DhcpRangeAddInput) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

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