Provides information for filtering a list of dominant language detection jobs. For more information, see the operation.

interface KeyPhrasesDetectionJobFilter {
    JobName?: string;
    JobStatus?: JobStatus;
    SubmitTimeAfter?: Date;
    SubmitTimeBefore?: Date;
}

Properties

JobName?: string

Filters on the name of the job.

JobStatus?: JobStatus

Filters the list of jobs based on job status. Returns only jobs with the specified status.

SubmitTimeAfter?: Date

Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.

SubmitTimeBefore?: Date

Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.