如何以编程方式查找 Azure 实例角色大小?
azure中是否有API可以查找角色(和实例角色)的属性?我正在查找实例大小,但它在 Azure 管理 API 中不可用。
Is there an API in azure to find the properties of a role (and an instance role)? I'm looking for the instance size, and it is not available in the Azure Management API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如您已经发现的那样,VM 大小不会在 API 中公开。正如 Neil Mackenzie 此处的建议,您可以从 Azure 应用程序调用 Environment.ProcessorCount,这可以让您推断 VM 大小。例如,您可以将其存储在 Azure 表中,并查询该表。
编辑:这是一个屏幕快照,其中我将一个超大实例推送到 Windows Azure 并调用 Environment.ProcessorCount:
编辑 2011 年 6 月 6 日 - 服务管理 API 刚刚更新,包括对 GetDeployment 的更新,该更新返回实例大小、SDK 版本等。请参阅博客文章 此处了解更多详细信息。
VM size isn't exposed in the API, as you've already found out. As suggested by Neil Mackenzie here, you can call Environment.ProcessorCount from your Azure application, which lets you deduce VM size. You could then store this in an Azure table, for example, and query the table.
EDIT: Here's a screen snapshot where I pushed an Extra-Large instance to Windows Azure and called Environment.ProcessorCount:
EDIT June 6, 2011 - The Serivce Management API was just updated, including updates to GetDeployment which returns instance size, SDK version, and more. See blog post here for more details.
现在,您可以使用托管服务获取部署操作下的服务管理 API 以编程方式获取实例大小。请参阅此LINK了解信息。
Now you can get the instance size programmatically using the Service Management API under operations on Hosted Services Get Deployment. See this LINK for info.