创建用于网络接口ID的Azure虚拟机REST API抛出404

时间:2018-12-26 12:20:51

标签: azure azure-virtual-machine

在与网络接口相同的资源组中创建VM(使用https://docs.microsoft.com/en-us/rest/api/compute/virtualmachines/createorupdate#create_a_vm_with_password_authentication。)时链接网络接口会引发此错误(我是连接到网络的虚拟网络子网的所有者界面):

错误:

{
  "error": {
    "details": [],
    "code": "NotFound",
    "message": "Resource /subscriptions/40fbe15/resourceGroups/sym/providers/Microsoft.Network/networkInterfaces/deletethis374 not found."
  }
}

请求详细信息:

url:https://management.azure.com/subscriptions/40fbe15/resourceGroups/sym/providers/Microsoft.Compute/virtualMachines/myVM?api-version=2018-06-01

标题: 内容类型:application / json 授权:Bearer'eyJ0eXAimtpZCI ....'(通过上述API的try it功能获得令牌)

身体:

{
'location': 'westus',
'properties': {
'hardwareProfile': {
'vmSize': 'Standard_D1_v2'
},
'storageProfile': {
'imageReference': {
'sku': '2016-Datacenter',
'publisher': 'MicrosoftWindowsServer',
'version': 'latest',
'offer': 'WindowsServer'
},
'osDisk': {
'caching': 'ReadWrite',
'managedDisk': {
'storageAccountType': 'Standard_LRS'
},
'name': 'myVMosdisk',
'createOption': 'FromImage'
}
},
'osProfile': {
 "adminUsername": "Demo1",
 "computerName": "myVM",
 "adminPassword": "Demo1Demo1Demo1"
}
,
'networkProfile': {
'networkInterfaces': [
{
'id': '/subscriptions/40fbe15/resourceGroups/sym/providers/Microsoft.Network/networkInterfaces/deletethis374',
'properties': {
'primary': true
}
}
]
}
}
}

1 个答案:

答案 0 :(得分:1)

在这种情况下,该错误是由于VM及其NIC必须位于同一区域而造成的。找不到错误提示,因为它正在寻找ID和区域的组合。