gpt4 book ai didi

go - 如何在 computeService.Zones.List(project) Google Cloud Platform API 中添加过滤器

转载 作者:数据小太阳 更新时间:2023-10-29 03:09:01 25 4
gpt4 key购买 nike

我正在尝试在 Google Cloud Platform API 中过滤区域列表

但我无法在 Google 中找到任何说明在 API 中放置过滤器的文档:

req := computeService.Zones.List(project)

上面的代码行将列出 Google Cloud Compute 中的区域

在命令行中我们可以做同样的事情

gcloud compute zones list --filter="name:us-"

谢谢,席德

最佳答案

它会在以下情况下帮助某人:

req := computeService.Zones.List("ProjectName")
if err := req.Filter("name=us*").Pages(ctx, func(page *compute.ZoneList) error {
//Your code
}

关于go - 如何在 computeService.Zones.List(project) Google Cloud Platform API 中添加过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55543740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com