Background: There seems to be a way to parameterize DataPath
with PipelineParameter
https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-showcasing-datapath-and-pipelineparameter.ipynb
But I'd like to parameterize my SQL query with PipelineParameter, for example, with this query
sql_query = """
SELECT id, foo, bar FROM baz
WHERE baz.id BETWEEN 10 AND 20
"""
dataset = Dataset.Tabular.from_sql_query((sql_datastore, sql_query))
I'd like to use PipelineParameter to parameterize 10
and 20
as param_1
and param_2
. Is this possible?