Windows Component

List

get

Retrieve Windows Component Custom

Path parameters
idinteger · int32Required

The ID of the optimization setting to retrieve the windows component custom list.

Responses
200
Success
application/json; api-version=1.0
get
GET /api/AVD/Template/{id}/Optimization/WindowsComponent HTTP/1.1
Host: 
Accept: */*
[
  {
    "type": [
      "0 = Predefined",
      "1 = Custom"
    ],
    "componentName": "text",
    "displayName": "text",
    "aliases": "text"
  }
]

Add

post

Adds a Windows Component Custom to optimization.

Path parameters
idinteger · int32Required

The ID of the Optimization settings to add the windows component custom.

Body
aliasesstring | nullableOptional

Windows Components Alias

displayNamestring | nullableOptional

Windows Components Diplay Name

componentNamestring | nullableOptional

Windows Components Name

Responses
201
Created
post
POST /api/AVD/Template/{id}/Optimization/WindowsComponent HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 62

{
  "aliases": "text",
  "displayName": "text",
  "componentName": "text"
}

No content

Delete

delete

Removes Windows Component Custom From Optimization.

Path parameters
idinteger · int32Required

The ID of the optimization setting to remove the windows component custom.

Body
componentNamestring | nullableOptional

Windows Component Name

Responses
204
No Content
delete
DELETE /api/AVD/Template/{id}/Optimization/WindowsComponent HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 24

{
  "componentName": "text"
}

No content

Last updated

Was this helpful?