uranusjr commented on issue #33694:
URL: https://github.com/apache/airflow/issues/33694#issuecomment-1707955132

   Maybe the easiest way out would be to add a `Literally` wrapper that 
disables rendering? So you can write
   
   ```python
   BigQueryInsertJobOperator(
       ...,
       configuration={
           "extract": {
               "destinationUris": [Literally("gs://xxx/yyy/*.json")],
               ...,
           },
       },
   )
   ```
   
   Please do bikeshed on the name. I’m intentionally avoiding `Literal` to 
avoid confusion with `typing.Literal`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to