JobType

Résumé

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.

Propriétés

PropriétéExplicationType de données
ID
(Lecture seule)

The ID of the JobType.

Integer
name
(Lecture seule)

The name of the JobType.

String

Exemple de code

JobType example

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()