在与网络接口相同的资源组中创建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."
}
}
请求详细信息:
标题: 内容类型: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
}
}
]
}
}
}
答案 0 :(得分:1)
在这种情况下,该错误是由于VM及其NIC必须位于同一区域而造成的。找不到错误提示,因为它正在寻找ID和区域的组合。