I am following the example in the how-to guide for batch operations in Google's Cloud Talent Solution service found in this link
I have tried all the other examples and they are working fine.
Except this one, where I get the following error.
Unresolved attribute reference 'batch_create_jobs' for class 'JobServiceClient'
The IDE is also complaining and unable to auto complete the missing function.
My code boils down to this:
from google.cloud import talent_v4beta1
client = talent_v4beta1.JobServiceClient()
# initialize jobs and parent variables
operation = client.batch_update_jobs(parent, jobs) # this line is failing