AzureAccountKeyCredentials
classView source ↗
class AzureAccountKeyCredentials(
account_name: str | dict | Secret,
account_key: str | dict | 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 | dict | SecretThe Azure account name.
parameter
account_keystr | dict | SecretThe Azure account key.
Properties
property
account_keySecretThe Azure account key.
property
account_nameSecretThe Azure account name.