I\'m working on Dataflow, I already has build my custom pipeline via Python SDK. I would like to add the parameters at the Dataflow UI into my custom pipeline. using the Addit
As mentioned by @mk_sta
It seems that ReadFromPubSub module doesn't accept ValueProvider. Have you checked this Stack thread?
and explained in that thread, ReadFromPubSub does not currently accept ValueProvider arguments since it is implemented as a native transform in Dataflow.
You can check I/O methods that accept runtime parameters for the ValueProvider
support in different SDKs.
So at this moment, if you switch from Python SDK to Java SDK, the Read of PubSubIO does support ValueProvider.