JobType

Diese ArcGIS 3.1-Dokumentation wurde archiviert und wird nicht mehr aktualisiert. Inhalt und Links sind möglicherweise veraltet. Verwenden Sie die aktuelle Dokumentation.

Zusammenfassung

The JobType object provides access to the job types in the Workflow Manager (Classic) database.

Diskussion

The job type in the Workflow Manager (Classic) database is a template for the jobs to be created.

Eigenschaften

EigenschaftErläuterungDatentyp
ID
(Schreibgeschützt)

The ID of the JobType.

Integer
name
(Schreibgeschützt)

The name of the JobType.

String

Codebeispiel

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