Skip to content

TcontVO

Properties

Name Type Description Notes
DbaId int32 The DBA template ID bound to the T-cont. DbaId should be a within the range of 0 to 512. Currently existing DBA templates, including DBA system templates, can also be referenced by the T-cont.
GemPortIds Pointer to []int32 A list of GEM Port IDs bound to this T-Cont. [optional]
IsInUse Pointer to bool Whether the T-cont has been used. If it has been used, it cannot be deleted. True indicates it has been used, while false or null indicates it has not been used. [optional]
TcontId int32 T-cont ID should be within the range of 1 to 127 and should not be null

Methods

NewTcontVO

func NewTcontVO(dbaId int32, tcontId int32, ) *TcontVO

NewTcontVO instantiates a new TcontVO 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

NewTcontVOWithDefaults

func NewTcontVOWithDefaults() *TcontVO

NewTcontVOWithDefaults instantiates a new TcontVO 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

GetDbaId

func (o *TcontVO) GetDbaId() int32

GetDbaId returns the DbaId field if non-nil, zero value otherwise.

GetDbaIdOk

func (o *TcontVO) GetDbaIdOk() (*int32, bool)

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

SetDbaId

func (o *TcontVO) SetDbaId(v int32)

SetDbaId sets DbaId field to given value.

GetGemPortIds

func (o *TcontVO) GetGemPortIds() []int32

GetGemPortIds returns the GemPortIds field if non-nil, zero value otherwise.

GetGemPortIdsOk

func (o *TcontVO) GetGemPortIdsOk() (*[]int32, bool)

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

SetGemPortIds

func (o *TcontVO) SetGemPortIds(v []int32)

SetGemPortIds sets GemPortIds field to given value.

HasGemPortIds

func (o *TcontVO) HasGemPortIds() bool

HasGemPortIds returns a boolean if a field has been set.

GetIsInUse

func (o *TcontVO) GetIsInUse() bool

GetIsInUse returns the IsInUse field if non-nil, zero value otherwise.

GetIsInUseOk

func (o *TcontVO) GetIsInUseOk() (*bool, bool)

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

SetIsInUse

func (o *TcontVO) SetIsInUse(v bool)

SetIsInUse sets IsInUse field to given value.

HasIsInUse

func (o *TcontVO) HasIsInUse() bool

HasIsInUse returns a boolean if a field has been set.

GetTcontId

func (o *TcontVO) GetTcontId() int32

GetTcontId returns the TcontId field if non-nil, zero value otherwise.

GetTcontIdOk

func (o *TcontVO) GetTcontIdOk() (*int32, bool)

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

SetTcontId

func (o *TcontVO) SetTcontId(v int32)

SetTcontId sets TcontId field to given value.

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