有没有办法在Azure中更新虚拟机上的customData / user数据

时间:2017-09-20 12:41:31

标签: azure

可以在克隆时将CustomData注入虚拟机。我正在寻找一种方法来注入/更新现有VM上的自定义数据。

我正在使用Java SDK for Azure,而在VirtualMachine.update中,我无法找到一种方法来实现它。

1 个答案:

答案 0 :(得分:0)

计算服务不支持在VM更新中更新或添加自定义数据,因此在流畅的VM更新流程中不会公开此选项。尝试通过VM更新更改自定义数据将导致以下错误:

{
  "error": {
    "code": "PropertyChangeNotAllowed",
    "target": "customData",
    "message": "Changing property 'customData' is not allowed."
  }
}

{ "error": { "code": "PropertyChangeNotAllowed", "target": "customData", "message": "Changing property 'customData' is not allowed." } }