AppPackageAssigned
Retrieve the setting of the assigned application package.
Retrieve the assigned application package by ID.
Success
Unauthorized
Not Found
GET /api/RDS/HostPool/{id}/AppPackageAssigned HTTP/1.1
Host:
Accept: */*
[
{
"version": "text",
"tagName": "text",
"tagId": 1,
"packageName": "text"
}
]
Add an assigned application package.
The ID for which to add the assigned application package.
The application package name. This must be the actual application package name used in the RAS farm.
The version of the application package. This must be the actual application package version used in the RAS farm.
Created
Unauthorized
Not Found
Conflict
POST /api/RDS/HostPool/{id}/AppPackageAssigned HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39
{
"packageName": "text",
"version": "text"
}
No content
Update the assigned application package settings with the specified ID.
The ID for which to modify the assigned application package setting.
The name of the application package for which to change the version. This must be the actual application package name used in the RAS farm.
The new version of the application package. This must be the actual application package version used in the RAS farm.
No Content
Unauthorized
Not Found
PUT /api/RDS/HostPool/{id}/AppPackageAssigned HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39
{
"packageName": "text",
"version": "text"
}
No content
Remove the assigned application package.
ID for which to remove the assigned application package.
The name of the application package for which to remove the assigned packaged application. This must be the actual application package name used in the RAS farm.
No Content
Unauthorized
Not Found
DELETE /api/RDS/HostPool/{id}/AppPackageAssigned HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 22
{
"packageName": "text"
}
No content
Was this helpful?