VHD Locations

Get

Retrieves FSLogix Office Container VHDLocation List of a session server with the specified ID.

GET/api/AVD/HostPool/{id}/FSLogix/OfficeContainer/VHDLocations
Path parameters
id*integer (int32)

The ID of a session server for which to retrieve the FSLogix Office Container settings.

Response

Success

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

Add

Add a folder to the VHDLocation List of the FSLogix Office Container settings.

POST/api/AVD/HostPool/{id}/FSLogix/OfficeContainer/VHDLocations
Path parameters
id*integer (int32)

The ID of a session server for which to modify the FSLogix Office Container settings.

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/HostPool/{id}/FSLogix/OfficeContainer/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"
}

Remove

Remove a folder from the VHDLocation List of the FSLogix Office Container settings.

DELETE/api/AVD/HostPool/{id}/FSLogix/OfficeContainer/VHDLocations
Path parameters
id*integer (int32)

The ID of a session server for which to modify the FSLogix Office Container settings.

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/HostPool/{id}/FSLogix/OfficeContainer/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.