AzureAccountKeyCredentials
classView source ↗
class AzureAccountKeyCredentials(account_name: str | Secret, account_key: str | Secret)
Bases: AzureCredentials
Categories: credentials
Credentials class to store the credentials needed to access an Azure using account key credentials (account name and account key).
Attributes: account_name (Secret): The Azure account name. account_key (Secret): The Azure account key.
Methods: to_dict() -> dict: Convert the AzureAccountNameKeyCredentials object to a dictionary
Initialize the AzureAccountNameKeyCredentials object.
Parameters
parameter
account_namestr | SecretThe Azure account name.
parameter
account_keystr | SecretThe Azure account key.
Properties
property
account_keySecretThe Azure account key.
property
account_nameSecretThe Azure account name.