Name: CollectionChangeRequest

Encapsulates changes to a collection of objects. The encapsulation consists of two collections of object IDs, one to be added and one to be removed. Object IDs can be any string that uniquely identifies the object, for example a Tintri VM UUID.

Data Structure
{
   "typeId": "com.tintri.api.rest.v310.dto.CollectionChangeRequest",
   "objectIdsAdded": [<String>],
   "objectIdsRemoved": [<String>],
}

Elements
NameTypeDescription
objectIdAdded (wrapped by objectIdsAdded)xsd:list[xsd:string]Object ids that have been added to the actual collection.
objectIdRemoved (wrapped by objectIdsRemoved)xsd:list[xsd:string]Object ids that have been removed from the actual collection.