I am trying to interact with Azure Batch with python API, in the following way:
from azure.batch import BatchServiceClient
batch = BatchServiceClient('<mycredential>','https://<mybatchaccount>.<region>.batch.azure.com')
next(batch.job.list())
This is run in a ML Studio notebook.
However the following error appears: AttributeError: 'str' object has no attribute 'signed_session'.
I am taking the url and credentials from my batch console UI:
As a credential I tried both Primary and Secondary access keys amd "URL" as batch url.
Am I doing anything wrong?
Thanks
