diff --git a/Conductor/Api/WorkflowResourceApi.cs b/Conductor/Api/WorkflowResourceApi.cs
index f0969e27..4cd83b41 100644
--- a/Conductor/Api/WorkflowResourceApi.cs
+++ b/Conductor/Api/WorkflowResourceApi.cs
@@ -72,20 +72,26 @@ public interface IWorkflowResourceApi : IApiAccessor
/// WorkflowRun
WorkflowRun ExecuteWorkflow(StartWorkflowRequest body, string requestId, string name, int? version, string waitUntilTaskRef = null);
- ///
- /// Execute a workflow synchronously
- ///
- ///
- ///
- ///
- /// Thrown when fails to make API call
- ///
- ///
- ///
- ///
- /// (optional)
- /// ApiResponse of WorkflowRun
- ApiResponse ExecuteWorkflowWithHttpInfo(StartWorkflowRequest body, string requestId, string name, int? version, string waitUntilTaskRef = null);
+ ///
+ /// Update the value of the workflow variables for the given workflow id
+ ///
+ ///
+ /// ApiResponse of Object(void)
+ Object UpdateWorkflowVariables(Workflow workflow);
+ ///
+ /// Execute a workflow synchronously
+ ///
+ ///
+ ///
+ ///
+ /// Thrown when fails to make API call
+ ///
+ ///
+ ///
+ ///
+ /// (optional)
+ /// ApiResponse of WorkflowRun
+ ApiResponse ExecuteWorkflowWithHttpInfo(StartWorkflowRequest body, string requestId, string name, int? version, string waitUntilTaskRef = null);
///
/// Gets the workflow by workflow id
///
@@ -1029,15 +1035,82 @@ public ApiResponse ExecuteWorkflowWithHttpInfo(StartWorkflowRequest
(WorkflowRun)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(WorkflowRun)));
}
- ///
- /// Gets the workflow by workflow id
- ///
- /// Thrown when fails to make API call
- ///
- /// (optional, default to true)
- /// (optional, default to false)
- /// Workflow
- public Workflow GetExecutionStatus(string workflowId, bool? includeTasks = null, bool? summarize = null)
+ public Object UpdateWorkflowVariables(Workflow workflow)
+ {
+ ApiResponse