tabsdata.AzureAccountKeyCredentials#

class AzureAccountKeyCredentials(account_name: str | dict | Secret, account_key: str | dict | Secret)[source]#

Bases: AzureCredentials

Credentials class to store the credentials needed to access an Azure using account key credentials (account name and account key).

account_name#

The Azure account name.

Type:

Secret

account_key#

The Azure account key.

Type:

Secret

to_dict() dict[source]#

Convert the AzureAccountNameKeyCredentials object to a dictionary

__init__(account_name: str | dict | Secret, account_key: str | dict | Secret)[source]#

Initialize the AzureAccountNameKeyCredentials object.

Parameters:
  • account_name (str | dict | Secret) – The Azure account name.

  • account_key (str | dict | Secret) – The Azure account key.

Methods

__init__(account_name, account_key)

Initialize the AzureAccountNameKeyCredentials object.

Attributes

account_key

The Azure account key.

account_name

The Azure account name.