Standalone

Create Standalone

Creates an Azure Virtual Desktop Host from a Standalone Azure Virtual Desktop Host Pool.

POST/api/Provider/VM/AVDHost/Standalone
Query parameters
Body

Azure Virtual Desktop Host.

hostPoolId*integer (int32)

Host Pool Id of the AVD Host.

azureId*nullable string

The Azure Host ID of the AVD Host. Found as Resource ID in Azure.

Response

No Content

Request
const response = await fetch('/api/Provider/VM/AVDHost/Standalone', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({
      "azureId": "text"
    }),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "detail": "text",
  "instance": "text"
}

Remove Standalone

Removes an Azure Virtual Desktop Host from a Standalone Azure Virtual Desktop Host Pool.

DELETE/api/Provider/VM/AVDHost/Standalone
Query parameters
Body

Azure Virtual Desktop Host.

hostPoolId*integer (int32)

Host Pool Id.

azureId*nullable string

The Azure Host ID.

Response

No Content

Request
const response = await fetch('/api/Provider/VM/AVDHost/Standalone', {
    method: 'DELETE',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({
      "azureId": "text"
    }),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "detail": "text",
  "instance": "text"
}

© 2024 Parallels International GmbH. All rights reserved.