UpdateStoreFrontServerGroupModel

Updated details for a StoreFront server group.

Properties

NameDescription Additional information
Description

Description.

Type: String

Tags

See Tags and Custom Properties.

Type: Array of String

CustomProperties

See Tags and Custom Properties.

Type: Array of CustomPropertyModel

Servers

A list of servers on which to deploy StoreFront, to create the StoreFront server group. At least 2 servers are required.

Any servers which were not in the StoreFront server group prior to the update will be provisioned and added as StoreFront servers. Any servers which were in the StoreFront server group prior to the update, but are not specified, will be deprovisioned and removed from the StoreFront server group.

Type: Array of String

Sample

application/json

Sample:
{
  "Description": "my StoreFront server group",
  "Tags": [
    "tag"
  ],
  "CustomProperties": [
    {
      "Name": "myProperty",
      "Value": "myValue"
    }
  ],
  "Servers": [
    "sf1",
    "sf2"
  ]
}