The Python SDK for BigQuery components shows an option for passing query_parameters
to the BigqueryCreateModelJobOp
PipelineTask. This task shows that it expects a list
. I can't find any example of how to specify parameters as a list here. For a specific example:
BigqueryCreateModelJobOp(
project="silly-demo-project",
location="country-region1",
query="SELECT * FROM {{ params.table }}",
query_parameters=["table=silly-demo-project.dataset.cooltable"]
)
The above doesn't work - so what should query_parameters
look like here?