如何使用node.js API将现有的静态IP附加到VM?
我可以使用gcloud command来执行此操作,但是我无法在Address和VM文档上找到节点API在何处实现此功能
答案 0 :(得分:1)
Node.js Google Cloud library上没有您需要的方法,但是您可以使用Node.js与REST Compute Engine API一起使用。
您有两个选择:
1。-添加new network configuration。
2.- Update (just partially if you want) the network configuration。
在文档中完全浏览以查看代码示例(也在Node.js中)。