CreateOfferingModel

Details for creating one or more offerings.

Properties

NameDescription Additional information
SessionMachineCatalogId

ID of the session machine catalog to create the offerings for. Required.

Type: String

IsolationMode

Isolation mode for the offerings. Required.

Type: IsolationModeState

Items

Items to create offerings for. Required.

Type: Array of CreateOfferingItemModel

Tags

See Tags and Custom Properties.

Type: Array of String

CustomProperties

See Tags and Custom Properties.

Type: Array of CustomPropertyModel

Comment

Administrator-visible description of the offering. Not visible to end users.

Type: String

Sample

application/json

Sample:
{
  "SessionMachineCatalogId": "628fa898-0c36-4024-8fe4-d7e9a9bfbcfa",
  "IsolationMode": "PrivateDeliveryGroup",
  "Items": [
    {
      "DiscoveredApplicationId": "1c58d824-2838-4c70-9a1f-348afb244157"
    }
  ],
  "Tags": [
    "tag"
  ],
  "CustomProperties": [
    {
      "Name": "myProperty",
      "Value": "myValue"
    }
  ],
  "Comment": "Created by joe"
}