[][src]Struct gcp_client::google::cloud::datalabeling::v1beta1::ListEvaluationJobsRequest

pub struct ListEvaluationJobsRequest {
    pub parent: String,
    pub filter: String,
    pub page_size: i32,
    pub page_token: String,
}

Request message for ListEvaluationJobs.

Fields

parent: String

Required. Evaluation job resource parent. Format: "projects/{project_id}"

filter: String

Optional. You can filter the jobs to list by model_id (also known as model_name, as described in [EvaluationJob.modelVersion][google.cloud.datalabeling.v1beta1.EvaluationJob.model_version]) or by evaluation job state (as described in [EvaluationJob.state][google.cloud.datalabeling.v1beta1.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: "evaluationjob.model_id = {model_name} AND evaluationjob.state = {evaluation_job_state}"

page_size: i32

Optional. Requested page size. Server may return fewer results than requested. Default value is 100.

page_token: String

Optional. A token identifying a page of results for the server to return. Typically obtained by the [nextPageToken][google.cloud.datalabeling.v1beta1.ListEvaluationJobsResponse.next_page_token] in the response to the previous request. The request returns the first page if this is empty.

Trait Implementations

impl Clone for ListEvaluationJobsRequest[src]

impl Debug for ListEvaluationJobsRequest[src]

impl Default for ListEvaluationJobsRequest[src]

impl Message for ListEvaluationJobsRequest[src]

impl PartialEq<ListEvaluationJobsRequest> for ListEvaluationJobsRequest[src]

impl StructuralPartialEq for ListEvaluationJobsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]