ArcGIS Pro 2.9 API Reference Guide
Job Class
Members  Example 

ArcGIS.Desktop.Workflow.Models.JobModels Namespace : Job Class
Represents a Workflow Manager job
Object Model
Job ClassJobAttachment ClassWorkflowExecutionResult ClassWorkflowExecutionResult ClassWorkflowExecutionResult Class
Syntax
public sealed class Job 
Public NotInheritable Class Job 
Remarks
A Job is a single unit of work that is carried out within an organization. It may have one or many people working on it. It can would with a single dataset, multiple dataset or no data at all. A Job is created based off of a template known as a Job Type, which is configured with the desired properties and components (such as the Workflow and Maps) that will be used in the job. For more information on Workflow Concepts please refer to the help topic below.
Example

JobsManager manager = WorkflowModule.GetManager<JobsManager>(connectionPath);
Job jobInfo = await manager.GetJob(123);
jobInfo.Name = "test";
await jobInfo.Save();
Inheritance Hierarchy

System.Object
   ArcGIS.Desktop.Workflow.Models.JobModels.Job

Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

Job Members
ArcGIS.Desktop.Workflow.Models.JobModels Namespace