我尝试使用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,但我找不到任何内容。
答案 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_profile
和create_network_profile
代码},storage_profile
,storage_account
和network_profile
。
希望它有所帮助。