ProjectsEvaluationJobs
class ProjectsEvaluationJobs extends Resource (View source)
The "evaluationJobs" collection of methods.
Typical usage is:
$datalabelingService = new Google\Service\DataLabeling(...);
$evaluationJobs = $datalabelingService->projects_evaluationJobs;
Methods
Creates an evaluation job. (evaluationJobs.create)
Stops and deletes an evaluation job. (evaluationJobs.delete)
Gets an evaluation job by resource name. (evaluationJobs.get)
Lists all evaluation jobs within a project with possible filters. Pagination is supported. (evaluationJobs.listProjectsEvaluationJobs)
Updates an evaluation job. You can only update certain fields of the job's
EvaluationJobConfig: humanAnnotationConfig.instruction
, exampleCount
, and
exampleSamplePercentage
. If you want to change any other aspect of the
evaluation job, you must delete the job and create a new one.
Pauses an evaluation job. Pausing an evaluation job that is already in a
PAUSED
state is a no-op. (evaluationJobs.pause)
Resumes a paused evaluation job. A deleted evaluation job can't be resumed.
Details
GoogleCloudDatalabelingV1beta1EvaluationJob
create(string $parent, GoogleCloudDatalabelingV1beta1CreateEvaluationJobRequest $postBody, array $optParams = [])
Creates an evaluation job. (evaluationJobs.create)
GoogleProtobufEmpty
delete(string $name, array $optParams = [])
Stops and deletes an evaluation job. (evaluationJobs.delete)
GoogleCloudDatalabelingV1beta1EvaluationJob
get(string $name, array $optParams = [])
Gets an evaluation job by resource name. (evaluationJobs.get)
GoogleCloudDatalabelingV1beta1ListEvaluationJobsResponse
listProjectsEvaluationJobs(string $parent, array $optParams = [])
Lists all evaluation jobs within a project with possible filters. Pagination is supported. (evaluationJobs.listProjectsEvaluationJobs)
GoogleCloudDatalabelingV1beta1EvaluationJob
patch(string $name, GoogleCloudDatalabelingV1beta1EvaluationJob $postBody, array $optParams = [])
Updates an evaluation job. You can only update certain fields of the job's
EvaluationJobConfig: humanAnnotationConfig.instruction
, exampleCount
, and
exampleSamplePercentage
. If you want to change any other aspect of the
evaluation job, you must delete the job and create a new one.
(evaluationJobs.patch)
GoogleProtobufEmpty
pause(string $name, GoogleCloudDatalabelingV1beta1PauseEvaluationJobRequest $postBody, array $optParams = [])
Pauses an evaluation job. Pausing an evaluation job that is already in a
PAUSED
state is a no-op. (evaluationJobs.pause)
GoogleProtobufEmpty
resume(string $name, GoogleCloudDatalabelingV1beta1ResumeEvaluationJobRequest $postBody, array $optParams = [])
Resumes a paused evaluation job. A deleted evaluation job can't be resumed.
Resuming a running or scheduled evaluation job is a no-op. (evaluationJobs.resume)