PUT StoreFrontServerGroups({id})/Validate

Validate the update for a StoreFront server group. See Validation.

Request Information

Parameters

NameDescriptionAdditional information
id

ID of the StoreFront server group to validate the update for.

Type: String

Request body type

UpdateStoreFrontServerGroupModel

Request body formats

application/json, text/json

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

Response Information

See Validation.

Response type

ValidationResultModel<UpdateStoreFrontServerGroupModel>

Response body formats

application/json, text/json

Sample:
{
  "Input": {
    "Description": "my StoreFront server group",
    "Tags": [
      "tag"
    ],
    "CustomProperties": [
      {
        "Name": "myProperty",
        "Value": "myValue"
      }
    ],
    "Servers": [
      "sf1",
      "sf2"
    ]
  },
  "Errors": [
    {
      "MemberNames": [
        "Servers"
      ],
      "ErrorMessage": "At least 2 servers are required",
      "ErrorCode": "ArgumentInvalid"
    }
  ]
}