Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.39 KB

ApicOut.md

File metadata and controls

160 lines (87 loc) · 4.39 KB

ApicOut

Properties

Name Type Description Notes
ClassId string The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to "apic.Out"]
ObjectType string The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to "apic.Out"]
Dn Pointer to string Distinguished Name (DN) of an object within the Cisco Application Policy Infrastructure Controller (APIC) GUI. [optional]
Name Pointer to string L3Out Name of an object within the Cisco Application Policy Infrastructure Controller. [optional]
Tenant Pointer to NullableApicTenantRelationship [optional]

Methods

NewApicOut

func NewApicOut(classId string, objectType string, ) *ApicOut

NewApicOut instantiates a new ApicOut 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

NewApicOutWithDefaults

func NewApicOutWithDefaults() *ApicOut

NewApicOutWithDefaults instantiates a new ApicOut 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

GetClassId

func (o *ApicOut) GetClassId() string

GetClassId returns the ClassId field if non-nil, zero value otherwise.

GetClassIdOk

func (o *ApicOut) GetClassIdOk() (*string, bool)

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

SetClassId

func (o *ApicOut) SetClassId(v string)

SetClassId sets ClassId field to given value.

GetObjectType

func (o *ApicOut) GetObjectType() string

GetObjectType returns the ObjectType field if non-nil, zero value otherwise.

GetObjectTypeOk

func (o *ApicOut) GetObjectTypeOk() (*string, bool)

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

SetObjectType

func (o *ApicOut) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

GetDn

func (o *ApicOut) GetDn() string

GetDn returns the Dn field if non-nil, zero value otherwise.

GetDnOk

func (o *ApicOut) GetDnOk() (*string, bool)

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

SetDn

func (o *ApicOut) SetDn(v string)

SetDn sets Dn field to given value.

HasDn

func (o *ApicOut) HasDn() bool

HasDn returns a boolean if a field has been set.

GetName

func (o *ApicOut) GetName() string

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

GetNameOk

func (o *ApicOut) 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 *ApicOut) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *ApicOut) HasName() bool

HasName returns a boolean if a field has been set.

GetTenant

func (o *ApicOut) GetTenant() ApicTenantRelationship

GetTenant returns the Tenant field if non-nil, zero value otherwise.

GetTenantOk

func (o *ApicOut) GetTenantOk() (*ApicTenantRelationship, bool)

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

SetTenant

func (o *ApicOut) SetTenant(v ApicTenantRelationship)

SetTenant sets Tenant field to given value.

HasTenant

func (o *ApicOut) HasTenant() bool

HasTenant returns a boolean if a field has been set.

SetTenantNil

func (o *ApicOut) SetTenantNil(b bool)

SetTenantNil sets the value for Tenant to be an explicit nil

UnsetTenant

func (o *ApicOut) UnsetTenant()

UnsetTenant ensures that no value is present for Tenant, not even an explicit nil

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