在Google Cloud Talent Solution(python)中创建公司时如何使用默认租户?

时间:2019-06-14 10:02:34

标签: python google-cloud-talent-solution

我可以通过以下方式创建公司

client = talent_v4beta1.CompanyServiceClient()
company = {'display_name': ..., 'external_id: ...}
response = client.create_company('projects/my-project-id', company)

我没有指定tenant,Google会创建并使用默认租户。

我怎么称呼get_company()

client = talent_v4beta1.CompanyServiceClient()
name = ?
response = client.get_company(name)

我可以找到的唯一填充name的API是tentant_path(),它需要传递tenant,而我没有该值。如果我打电话给project_path(),则其中不包括任何租户,并且get_company()无法匹配任何公司。

0 个答案:

没有答案