Hi All,
i am building a unittest framework for validating the pipeline names from the streamsets control hub
For that i need to fetch pipeline names from streamsets using the python platform sdk as seen below
from streamsets.sdk import Controlhub
sch = Controlhub(credential_id="my_id", token ="Mytoken", use_webscoke_tunneling=False)
pipelines = sch.pipeline.get_all
the above code return list of attributes and name of pipeline with the type of class ‘Method’.
i actually need to get only those pipelines that already deployed into the streamsets through our CI platform
so what would be the right approach to filter and get the pipeline names from control hub?
I don't see any example specific to this scenario
Can you please help on this?