Values.UpdateFlowTemplateRequestSourceUpdates the specified workflow. All deployed systems and system instances that use the workflow will see the changes in the flow when it is redeployed. If you don't want this behavior, copy the workflow (creating a new workflow with a different ID), and update the copy. The workflow can contain only entities in the specified namespace.
type nonrec t = {id : Urn.t;The ID of the workflow to be updated. The ID should be in the following format. urn:tdm:REGION/ACCOUNT ID/default:workflow:WORKFLOWNAME
*)definition : DefinitionDocument.t;The DefinitionDocument that contains the updated workflow definition.
*)compatibleNamespaceVersion : Version.t option;The version of the user's namespace. If no value is specified, the latest version is used by default. Use the GetFlowTemplateRevisions if you want to find earlier revisions of the flow to update.
*)}val make :
?compatibleNamespaceVersion:??? ->
id:Urn.t ->
definition:DefinitionDocument.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Long of Version.t
| `String of Urn.t
| `Structure of
(string * [> `Enum of string | `String of DefinitionText.t ]) list ])
list ]