Summary
The JobType object provides access to the job types in the Workflow Manager (Classic) database.
Discussion
The job type in the Workflow Manager (Classic) database is a template for the jobs to be created.
Properties
Property | Explanation | Data Type |
ID (Read Only) | The ID of the JobType. | Integer |
name (Read Only) | The name of the JobType. | String |
Code sample
The following script gets and lists all the job types in the Workflow Manager (Classic) database filtered by applied job filters.
import arcpy
#Establish a connection to a Workflow database
conn = arcpy.wmx.Connect(r'c:\test\Workflow.jtc')
#List all job type names in the Workflow database filtered by applied job filters.
conn.config.getJobTypes()