Skip to content

Latest commit

 

History

History
156 lines (83 loc) · 4.61 KB

BaseAzureAccount.md

File metadata and controls

156 lines (83 loc) · 4.61 KB

BaseAzureAccount

Properties

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.

Methods

NewBaseAzureAccount

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

NewBaseAzureAccountWithDefaults

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

GetLabel

func (o *BaseAzureAccount) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

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.

SetLabel

func (o *BaseAzureAccount) SetLabel(v string)

SetLabel sets Label field to given value.

GetClientID

func (o *BaseAzureAccount) GetClientID() string

GetClientID returns the ClientID field if non-nil, zero value otherwise.

GetClientIDOk

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.

SetClientID

func (o *BaseAzureAccount) SetClientID(v string)

SetClientID sets ClientID field to given value.

GetClientSecret

func (o *BaseAzureAccount) GetClientSecret() string

GetClientSecret returns the ClientSecret field if non-nil, zero value otherwise.

GetClientSecretOk

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.

SetClientSecret

func (o *BaseAzureAccount) SetClientSecret(v string)

SetClientSecret sets ClientSecret field to given value.

GetTenantID

func (o *BaseAzureAccount) GetTenantID() string

GetTenantID returns the TenantID field if non-nil, zero value otherwise.

GetTenantIDOk

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.

SetTenantID

func (o *BaseAzureAccount) SetTenantID(v string)

SetTenantID sets TenantID field to given value.

GetSubscriptionID

func (o *BaseAzureAccount) GetSubscriptionID() string

GetSubscriptionID returns the SubscriptionID field if non-nil, zero value otherwise.

GetSubscriptionIDOk

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.

SetSubscriptionID

func (o *BaseAzureAccount) SetSubscriptionID(v string)

SetSubscriptionID sets SubscriptionID field to given value.

GetBaseGroupName

func (o *BaseAzureAccount) GetBaseGroupName() string

GetBaseGroupName returns the BaseGroupName field if non-nil, zero value otherwise.

GetBaseGroupNameOk

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.

SetBaseGroupName

func (o *BaseAzureAccount) SetBaseGroupName(v string)

SetBaseGroupName sets BaseGroupName field to given value.

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