Class ProjectsResource.EvaluationJobsResource.ListRequest
Lists all evaluation jobs within a project with possible filters. Pagination is supported.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.DataLabeling.v1beta1
Assembly: Google.Apis.DataLabeling.v1beta1.dll
Syntax
public class ProjectsResource.EvaluationJobsResource.ListRequest : DataLabelingBaseServiceRequest<GoogleCloudDatalabelingV1beta1ListEvaluationJobsResponse>, IClientServiceRequest<GoogleCloudDatalabelingV1beta1ListEvaluationJobsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
Filter
Optional. You can filter the jobs to list by model_id (also known as model_name, as described in
EvaluationJob.modelVersion) or by evaluation job state (as described in EvaluationJob.state). To
filter by both criteria, use the AND
operator or the OR
operator. For example, you can use the
following string for your filter: "evaluation_job.model_id = {model_name} AND evaluation_job.state =
{evaluation_job_state}"
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Optional. Requested page size. Server may return fewer results than requested. Default value is 100.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. A token identifying a page of results for the server to return. Typically obtained by the nextPageToken in the response to the previous request. The request returns the first page if this is empty.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. Evaluation job resource parent. Format: "projects/{project_id}"
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()