Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 4.26 KB

ApicTenant.md

File metadata and controls

150 lines (81 loc) · 4.26 KB

ApicTenant

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.Tenant"]
ObjectType string The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to "apic.Tenant"]
Description Pointer to string Description for Tenant in Cisco Application Policy Infrastructure Controller. [optional]
Dn Pointer to string Distinguished Name (DN) of an object within the Cisco Application Policy Infrastructure Controller (APIC) GUI. [optional]
Name Pointer to string Tenant Name in Cisco Application Policy Infrastructure Controller. [optional]

Methods

NewApicTenant

func NewApicTenant(classId string, objectType string, ) *ApicTenant

NewApicTenant instantiates a new ApicTenant 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

NewApicTenantWithDefaults

func NewApicTenantWithDefaults() *ApicTenant

NewApicTenantWithDefaults instantiates a new ApicTenant 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 *ApicTenant) GetClassId() string

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

GetClassIdOk

func (o *ApicTenant) 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 *ApicTenant) SetClassId(v string)

SetClassId sets ClassId field to given value.

GetObjectType

func (o *ApicTenant) GetObjectType() string

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

GetObjectTypeOk

func (o *ApicTenant) 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 *ApicTenant) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

GetDescription

func (o *ApicTenant) GetDescription() string

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

GetDescriptionOk

func (o *ApicTenant) 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 *ApicTenant) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ApicTenant) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetDn

func (o *ApicTenant) GetDn() string

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

GetDnOk

func (o *ApicTenant) 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 *ApicTenant) SetDn(v string)

SetDn sets Dn field to given value.

HasDn

func (o *ApicTenant) HasDn() bool

HasDn returns a boolean if a field has been set.

GetName

func (o *ApicTenant) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *ApicTenant) HasName() bool

HasName returns a boolean if a field has been set.

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