[][src]Struct gcp_client::google::cloud::talent::v4beta1::BatchUpdateJobsRequest

pub struct BatchUpdateJobsRequest {
    pub parent: String,
    pub jobs: Vec<Job>,
    pub update_mask: Option<FieldMask>,
}

Request to update a batch of jobs.

Fields

parent: String

Required. The resource name of the tenant under which the job is created.

The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created. For example, "projects/foo".

jobs: Vec<Job>

Required. The jobs to be updated.

update_mask: Option<FieldMask>

Strongly recommended for the best service experience. Be aware that it will also increase latency when checking the status of a batch operation.

If [update_mask][google.cloud.talent.v4beta1.BatchUpdateJobsRequest.update_mask] is provided, only the specified fields in [Job][google.cloud.talent.v4beta1.Job] are updated. Otherwise all the fields are updated.

A field mask to restrict the fields that are updated. Only top level fields of [Job][google.cloud.talent.v4beta1.Job] are supported.

If [update_mask][google.cloud.talent.v4beta1.BatchUpdateJobsRequest.update_mask] is provided, The [Job][google.cloud.talent.v4beta1.Job] inside [JobResult][google.cloud.talent.v4beta1.JobOperationResult.JobResult] will only contains fields that is updated, plus the Id of the Job. Otherwise, [Job][google.cloud.talent.v4beta1.Job] will include all fields, which can yield a very large response.

Trait Implementations

impl Clone for BatchUpdateJobsRequest[src]

impl Debug for BatchUpdateJobsRequest[src]

impl Default for BatchUpdateJobsRequest[src]

impl Message for BatchUpdateJobsRequest[src]

impl PartialEq<BatchUpdateJobsRequest> for BatchUpdateJobsRequest[src]

impl StructuralPartialEq for BatchUpdateJobsRequest[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]