Reputation: 31520
I launch some dataflow jobs in different VPCs and some not in VPCs
Where do I see what VPC/subnetwork a dataflow job is running in? This should be obvious but I can't find this info in the web UI. How can I list all my dataflow jobs in project XYZ and get a table that looks something like <job name> : <VPC/subnetwork>
.
Upvotes: 0
Views: 154
Reputation: 75715
You can have this information in the console. Go to the job, and click on the REST button in the bottom right corner. In the popup, search for the environment -> worker-pool
part. scroll, scroll and scroll, and you find the Network (here default)
You can find the detail of the API here
You can't have this level of detail in one request. You have to get all the jobId before and then ask the full description of each JobId to get the network value (add the view=JOB_VIEW_ALL
to your API URI to call)
Upvotes: 1