I tried calling the lib "import azure.mgmt.datafactory.models.RunFilterParameters" inside databricks and got the following error:
ModuleNotFoundError: No module named 'azure.mgmt.datafactory.models.RunFilterParameters'
I tried to execute this part of the function:
self.activity_filter_parameters = RunFilterParameters(last_updated_after=self.today_date - timedelta(hours=pipeline_timedelta+10),
last_updated_before=self.today_date,
order_by=[RunQueryOrderBy(order_by='ActivityRunStart', order='DESC')])
self.activity_filter_parameters_asc = RunFilterParameters(last_updated_after=self.today_date - timedelta(hours=pipeline_timedelta+10),
last_updated_before=self.today_date,
order_by=[RunQueryOrderBy(order_by='ActivityRunStart', order='ASC')])
self.pipeline_filter_parameters = RunFilterParameters(last_updated_after=self.today_date - timedelta(hours=pipeline_timedelta),
last_updated_before=self.today_date,
order_by=[RunQueryOrderBy(order_by='RunStart', order='DESC')])
I checked that it appears in the documentation normally (https://docs.microsoft.com/en-us/python/api/azure-mgmt-datafactory/azure.mgmt.datafactory.models.runfilterparameters?view=azure-python). Can I do anything to fix this?
