Share via

Cloud Gaming Service

Joshua Jackson 1 Reputation point
2020-12-29T03:20:02.41+00:00

So, I am making a Cloud Gaming Service. I am wondering if I can get mu VMs to be controlled on my website. Like I can make a VM with NV6 size on my website. Is that possible?

Azure Virtual Machines
Azure Virtual Machines

An Azure service that is used to provision Windows and Linux virtual machines.


2 answers

Sort by: Most helpful
  1. Andreas Baumgarten 132.1K Reputation points MVP Volunteer Moderator
    2020-12-30T10:00:44.123+00:00

    REST API for Virtual Networks: https://learn.microsoft.com/en-us/rest/api/virtualnetwork/virtualnetworks

    ----------

    (If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)

    Regards
    Andreas Baumgarten

    Was this answer helpful?

    0 comments No comments

  2. whoward-msft 2,771 Reputation points
    2020-12-29T18:37:56.667+00:00

    Hi @Joshua Jackson ,

    It sounds like your asking how you could host a website where interactions would cause Azure to deploy additional VMs to your subscription? Firstly I would advise against this as this is susceptible to abuse and rather I'd have your VMs set to scale out automatically with like VMSS.

    But if you really want to do this, there are two options:

    1. You could have your site hit the Azure REST API to deploy more VMs and manage existing VMs. See the docs for using the Azure REST API here.
    2. You could use the Azure SDK to deploy and manage VMs. See the docs for using the Azure SDK here.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.