Values.UpdateModelManifestRequestSourceUpdates a vehicle model (model manifest). If created vehicles are associated with a vehicle model, it can't be updated.
type nonrec t = {name : ResourceName.t;The name of the vehicle model to update.
*)description : Description.t option;A brief description of the vehicle model.
*)nodesToAdd : NodePaths.t option;A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to add to the vehicle model.
*)nodesToRemove : NodePaths.t option;A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to remove from the vehicle model.
*)status : ManifestStatus.t option;The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model.
*)}val make :
?description:??? ->
?nodesToAdd:??? ->
?nodesToRemove:??? ->
?status:??? ->
name:ResourceName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of NodePath.t ] list
| `String of ResourceName.t ])
list ]