VHD Locations

Get

Retrieve FSLogix Profile Container VHDLocation List of a Site Defaults object.

GET/api/AVD/DefaultSettings/MultiSession/FSLogix/ProfileContainer/VHDLocations
Query parameters
Response

Success

Body
itemsstring
Request
const response = await fetch('/api/AVD/DefaultSettings/MultiSession/FSLogix/ProfileContainer/VHDLocations', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  "text"
]

Add

Add a VHDLocation to the VHDLocation List of the FSLogix Profile Container settings.

POST/api/AVD/DefaultSettings/MultiSession/FSLogix/ProfileContainer/VHDLocations
Query parameters
Body

VHDLocation configuration.

vhdLocation*nullable string

Specifies the 'VHDLocation' path to add to the VHDLocation List.

Response

Created

Request
const response = await fetch('/api/AVD/DefaultSettings/MultiSession/FSLogix/ProfileContainer/VHDLocations', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({
      "vhdLocation": "text"
    }),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "detail": "text",
  "instance": "text"
}

Delete

Remove a VHDLocation from the VHDLocation List of the FSLogix Profile Container settings.

DELETE/api/AVD/DefaultSettings/MultiSession/FSLogix/ProfileContainer/VHDLocations
Query parameters
Body

VHDLocation configuration.

vhdLocation*nullable string

Specifies the 'VHDLocation' path to remove from the VHDLocation List.

Response

No Content

Request
const response = await fetch('/api/AVD/DefaultSettings/MultiSession/FSLogix/ProfileContainer/VHDLocations', {
    method: 'DELETE',
    headers: {
      "Content-Type": "application/json; api-version=1.0"
    },
    body: JSON.stringify({
      "vhdLocation": "text"
    }),
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "detail": "text",
  "instance": "text"
}

Last updated

Other Resources

Feedback

© 2024 Parallels International GmbH. All rights reserved.