创建用于通过Ruby启动Azure VM的存储配置文件

时间:2017-04-15 09:46:13

标签: ruby azure azure-resource-manager azure-sdk-for-ruby

我尝试使用azure-sdk-for-ruby在Azure云中创建/删除VM。我跟随compute API中的示例。

有一部分我无法理解:

# create_storage_profile is hypothetical helper method which creates storage
# profile by means of ARM Storage SDK.
params.storage_profile = create_storage_profile

我如何为新VM创建配置文件?

我已查看storage API,但我找不到任何内容。

2 个答案:

答案 0 :(得分:3)

诚然,RubyDocs并不是很好,但只是在ruby storage_profile上搜索更有帮助。

def的{​​{1}}可以在virtual_machines_spec.rb

中找到
create_storage_profile

您不必像代码段所述那样需要它,它是假设的辅助方法。它只需要一个方法来返回StorageProfile实例。

答案 1 :(得分:1)

使用Azure SDK for Ruby创建Azure VM有一个官方sample code,您可以通过关键字{{1}找到您想要的create_storage_profilecreate_network_profile代码},storage_profilestorage_accountnetwork_profile

希望它有所帮助。