GCP资源管理器Python客户端列表组织策略?

时间:2019-06-14 17:12:27

标签: function google-cloud-platform cloud

是否可以使用Google Cloud Functions和Python客户端列出组织策略?目前,我的代码返回如下:

1 from google.cloud import resource_manager
2 client = resource_manager.Client()
3
4 def list_orgConstraints(data, context):
5        for project in client.list_projects():
6        print(project.project_id)
7        for project in client.list_projects():
8        policies = client.list_org_policies
9        print(policies)

错误:客户端没有属性list_org_policies

我真的需要弄清楚是否可以使用功能来纠正错误的设置。希望有办法。

0 个答案:

没有答案