Skip to content

Latest commit

 

History

History
171 lines (92 loc) · 4.4 KB

VariableAlias.md

File metadata and controls

171 lines (92 loc) · 4.4 KB

VariableAlias

Properties

Name Type Description Notes
Id string
Key string
Value Pointer to NullableString [optional]
MountPath string
Scope APIVariableScopeEnum
VariableType APIVariableTypeEnum

Methods

NewVariableAlias

func NewVariableAlias(id string, key string, mountPath string, scope APIVariableScopeEnum, variableType APIVariableTypeEnum, ) *VariableAlias

NewVariableAlias instantiates a new VariableAlias 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

NewVariableAliasWithDefaults

func NewVariableAliasWithDefaults() *VariableAlias

NewVariableAliasWithDefaults instantiates a new VariableAlias 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

GetId

func (o *VariableAlias) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *VariableAlias) GetIdOk() (*string, bool)

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

SetId

func (o *VariableAlias) SetId(v string)

SetId sets Id field to given value.

GetKey

func (o *VariableAlias) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *VariableAlias) GetKeyOk() (*string, bool)

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

SetKey

func (o *VariableAlias) SetKey(v string)

SetKey sets Key field to given value.

GetValue

func (o *VariableAlias) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *VariableAlias) GetValueOk() (*string, bool)

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

SetValue

func (o *VariableAlias) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *VariableAlias) HasValue() bool

HasValue returns a boolean if a field has been set.

SetValueNil

func (o *VariableAlias) SetValueNil(b bool)

SetValueNil sets the value for Value to be an explicit nil

UnsetValue

func (o *VariableAlias) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

GetMountPath

func (o *VariableAlias) GetMountPath() string

GetMountPath returns the MountPath field if non-nil, zero value otherwise.

GetMountPathOk

func (o *VariableAlias) GetMountPathOk() (*string, bool)

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

SetMountPath

func (o *VariableAlias) SetMountPath(v string)

SetMountPath sets MountPath field to given value.

GetScope

func (o *VariableAlias) GetScope() APIVariableScopeEnum

GetScope returns the Scope field if non-nil, zero value otherwise.

GetScopeOk

func (o *VariableAlias) GetScopeOk() (*APIVariableScopeEnum, bool)

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

SetScope

func (o *VariableAlias) SetScope(v APIVariableScopeEnum)

SetScope sets Scope field to given value.

GetVariableType

func (o *VariableAlias) GetVariableType() APIVariableTypeEnum

GetVariableType returns the VariableType field if non-nil, zero value otherwise.

GetVariableTypeOk

func (o *VariableAlias) GetVariableTypeOk() (*APIVariableTypeEnum, bool)

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

SetVariableType

func (o *VariableAlias) SetVariableType(v APIVariableTypeEnum)

SetVariableType sets VariableType field to given value.

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