Name | Type | Description | Notes |
---|---|---|---|
Label | string | An alias to easily identify and reference the entity in subsequent requests. | |
ClientID | string | The Application ID that will be accessing the Key Vault. | |
ClientSecret | string | The application’s secret key that you generate when you first register the application in Azure. | |
TenantID | string | Also known as Directory ID. | |
SubscriptionID | string | The ID linked to your subscription to Azure services. | |
BaseGroupName | string | The Resource Group Name for the resource being accessed. |
func NewBaseAzureAccount(label string, clientID string, clientSecret string, tenantID string, subscriptionID string, baseGroupName string, ) *BaseAzureAccount
NewBaseAzureAccount instantiates a new BaseAzureAccount 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
func NewBaseAzureAccountWithDefaults() *BaseAzureAccount
NewBaseAzureAccountWithDefaults instantiates a new BaseAzureAccount 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
func (o *BaseAzureAccount) GetLabel() string
GetLabel returns the Label field if non-nil, zero value otherwise.
func (o *BaseAzureAccount) GetLabelOk() (*string, bool)
GetLabelOk returns a tuple with the Label field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseAzureAccount) SetLabel(v string)
SetLabel sets Label field to given value.
func (o *BaseAzureAccount) GetClientID() string
GetClientID returns the ClientID field if non-nil, zero value otherwise.
func (o *BaseAzureAccount) GetClientIDOk() (*string, bool)
GetClientIDOk returns a tuple with the ClientID field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseAzureAccount) SetClientID(v string)
SetClientID sets ClientID field to given value.
func (o *BaseAzureAccount) GetClientSecret() string
GetClientSecret returns the ClientSecret field if non-nil, zero value otherwise.
func (o *BaseAzureAccount) GetClientSecretOk() (*string, bool)
GetClientSecretOk returns a tuple with the ClientSecret field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseAzureAccount) SetClientSecret(v string)
SetClientSecret sets ClientSecret field to given value.
func (o *BaseAzureAccount) GetTenantID() string
GetTenantID returns the TenantID field if non-nil, zero value otherwise.
func (o *BaseAzureAccount) GetTenantIDOk() (*string, bool)
GetTenantIDOk returns a tuple with the TenantID field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseAzureAccount) SetTenantID(v string)
SetTenantID sets TenantID field to given value.
func (o *BaseAzureAccount) GetSubscriptionID() string
GetSubscriptionID returns the SubscriptionID field if non-nil, zero value otherwise.
func (o *BaseAzureAccount) GetSubscriptionIDOk() (*string, bool)
GetSubscriptionIDOk returns a tuple with the SubscriptionID field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseAzureAccount) SetSubscriptionID(v string)
SetSubscriptionID sets SubscriptionID field to given value.
func (o *BaseAzureAccount) GetBaseGroupName() string
GetBaseGroupName returns the BaseGroupName field if non-nil, zero value otherwise.
func (o *BaseAzureAccount) GetBaseGroupNameOk() (*string, bool)
GetBaseGroupNameOk returns a tuple with the BaseGroupName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseAzureAccount) SetBaseGroupName(v string)
SetBaseGroupName sets BaseGroupName field to given value.