Skip to content

Commit

Permalink
allow update vmTemplate (#11024)
Browse files Browse the repository at this point in the history
* allow update vmTemplate

* Automatic for personal desktop assignment type
  • Loading branch information
datr93 authored Oct 7, 2020
1 parent 79b7964 commit a3bcbd0
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2275,6 +2275,10 @@
"$ref": "#/definitions/RegistrationInfoPatch",
"description": "The registration info of HostPool."
},
"vmTemplate": {
"type": "string",
"description": "VM template for sessionhosts configuration within hostpool."
},
"ssoContext": {
"type": "string",
"description": "Path to keyvault containing ssoContext secret."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"expirationTime": "2020-10-01T14:01:54.9571247Z",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": "KeyVaultPath",
"preferredAppGroupType": "Desktop"
}
Expand All @@ -42,7 +43,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -53,6 +54,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand All @@ -72,7 +74,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -31,6 +31,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -31,6 +31,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -31,6 +31,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand All @@ -48,7 +49,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -59,6 +60,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -32,6 +32,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand All @@ -49,7 +50,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -60,6 +61,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"expirationTime": "2020-10-01T15:01:54.9571247Z",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": "KeyVaultPath"
}
}
Expand All @@ -39,7 +40,7 @@
"friendlyName": "friendly",
"description": "des1",
"hostPoolType": "Pooled",
"personalDesktopAssignmentType": null,
"personalDesktopAssignmentType": "Automatic",
"customRdpProperty": null,
"maxSessionLimit": 999999,
"loadBalancerType": "BreadthFirst",
Expand All @@ -50,6 +51,7 @@
"token": "token",
"registrationTokenOperation": "Update"
},
"vmTemplate": "{json:json}",
"ssoContext": null,
"preferredAppGroupType": "Desktop"
}
Expand Down

0 comments on commit a3bcbd0

Please sign in to comment.