DeliveryGroupForUpdateModel

Details of a delivery group which should be updated.

Properties

NameDescription Additional information
DeliveryGroupId

ID of an existing delivery group.

Type: String

DeliveryGroupChangeId

See Optimistic Concurrency.

Type: String

NumDesiredMachines

The desired number of machines for the delivery group. Must be greater than zero if the delivery group is used as a primary for any users.

Type: Number

Tags

See Tags and Custom Properties.

Type: Array of String

CustomProperties

See Tags and Custom Properties.

Type: Array of CustomPropertyModel

Sample

application/json

Sample:
{
  "DeliveryGroupId": "c004375e-a96d-4368-96ba-c80702d7e80f",
  "DeliveryGroupChangeId": "4",
  "NumDesiredMachines": 5,
  "Tags": [
    "tag"
  ],
  "CustomProperties": [
    {
      "Name": "myProperty",
      "Value": "myValue"
    }
  ]
}