in Notation.Plugin.AzureKeyVault/KeyVault/Credentials.cs [59:64]
public static TokenCredential GetCredentials(Dictionary<string, string>? pluginConfig)
{
string? credentialType = null;
pluginConfig?.TryGetValue(CredentialTypeKey, out credentialType);
return GetCredentials(credentialType);
}