如何查询共享 VPC 网络?

How to query for shared VPC networks?

如何查看共享 VPC 中可供我使用的 networks/subnetworks 列表?以下仅returns当前项目中的子网列表,未共享给它:

from googleapiclient.discovery import build
compute = build('compute', 'v1')
compute.networks().list(project='project').execute()
compute.subnetworks().listUsable(project='project').execute()

考虑到all of the existing VPC networks in the host project are Shared VPC networks you can use the getXpnHost method from the REST API to get the shared VPC host project that your project links to and from there use the same networks().list() and subnetworks().listUsable()得到想要的信息。