FolderInclusion

Get

Retrieve FSLogix Profile Container Folder Inclusion List of a session server with the specified ID.

GET/api/RDS/HostPool/{id}/FSLogix/ProfileContainer/FolderInclusion
Path parameters
id*integer (int32)

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

Response

Success

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

Add

Add a folder to the Folder Inclusion List of the FSLogix Profile Container settings.

POST/api/RDS/HostPool/{id}/FSLogix/ProfileContainer/FolderInclusion
Path parameters
id*integer (int32)

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

Body

Folder configuration.

folder*nullable string

Specifies the 'Folder' path to add to the Include/Exclude Folder List.

Response

Created

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

Delete

Remove a folder from the Folder Inclusion List of the FSLogix Profile Container settings.

DELETE/api/RDS/HostPool/{id}/FSLogix/ProfileContainer/FolderInclusion
Path parameters
id*integer (int32)

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

Body

Folder configuration.

folder*nullable string

Specifies the 'Folder' path to remove to the Include/Exclude Folder List.

Response

No Content

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

Other Resources

Feedback

© 2024 Parallels International GmbH. All rights reserved.