Azure Node Js Api - 创建网络接口

时间:2017-04-19 08:01:12

标签: node.js api azure sdk network-interface

我尝试使用Node js SDK在Azure中创建网络接口。

虽然它无法正常工作,但我仍然无法解析请求"。微软的文档并没有帮助。

请求是:

{
  "resourceGroupName": "name",
  "networkInterfaceName": "another-name",
  "properties": {
    "location": "eastus2",
        "ipConfigurations": [
      {
        "properties": {
          "privateIpAddress": "10.1.10.1"
        }
      }
    ]
  }
}

回复是:

{
  "request": {
    "id": "7384079f-83a6-459f-b8a9-096f76db97ff",
    "url": "/network/networkInterface/",
    "method": "POST",
    "timestamp": "2017-04-19T07:40:56.022Z"
  },
  "response": {
    "status": {
      "code": 400,
      "message": "Bad Request"
    },
    "errors": [
      {
        "code": "Error",
        "message": "Cannot parse the request."
      }
    ]
  }
}

如果没有ipConfigurations数组,我会收到一条响应,声明我必须附加ipConfigurations。

谢谢, 吉拉德

1 个答案:

答案 0 :(得分:0)

实际上我已经成功地解决了这个问题。 我添加了一个子网属性,它工作。