我正在编写一个应用程序,使用golang API(https://godoc.org/google.golang.org/api/appengine/v1beta4)将代码部署到google appengine。对于缩放我使用的是AutomaticScaling选项。这应该意味着我可以将实例类设置为F1,F2,F4或F4_1G。但是,每次尝试将InstanceClass设置为任何内容时,我都会得到以下响应:
version := &appengine.Version{
AutomaticScaling: automaticScaling,
Deployment:deployment,
Handlers: handlers,
Id: "5",
Runtime: "java7",
InstanceClass: "F1",
InboundServices: inbound_services,
Threadsafe: true,
}
任何人都知道指定InstanceClass的正确值是什么?
代码:
CheckBox
答案 0 :(得分:0)
F1,F2,F4和F4_1G正常工作。我在其他地方有一个错误,这使我的验证混乱。