Struct gapi_grpc::google::storagetransfer::v1::UpdateTransferJobRequest[][src]

pub struct UpdateTransferJobRequest {
    pub job_name: String,
    pub project_id: String,
    pub transfer_job: Option<TransferJob>,
    pub update_transfer_job_field_mask: Option<FieldMask>,
}

Request passed to UpdateTransferJob.

Fields

job_name: String

The name of job to update. Required.

project_id: String

The ID of the Google Cloud Platform Console project that owns the job. Required.

transfer_job: Option<TransferJob>

The job to update. transferJob is expected to specify only three fields: description, transferSpec, and status. An UpdateTransferJobRequest that specifies other fields will be rejected with an error INVALID_ARGUMENT. Required.

update_transfer_job_field_mask: Option<FieldMask>

The field mask of the fields in transferJob that are to be updated in this request. Fields in transferJob that can be updated are: description, transferSpec, and status. To update the transferSpec of the job, a complete transfer specification has to be provided. An incomplete specification which misses any required fields will be rejected with the error INVALID_ARGUMENT.

Trait Implementations

impl Clone for UpdateTransferJobRequest[src]

impl Debug for UpdateTransferJobRequest[src]

impl Default for UpdateTransferJobRequest[src]

impl Message for UpdateTransferJobRequest[src]

impl PartialEq<UpdateTransferJobRequest> for UpdateTransferJobRequest[src]

impl StructuralPartialEq for UpdateTransferJobRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for UpdateTransferJobRequest

impl Send for UpdateTransferJobRequest

impl Sync for UpdateTransferJobRequest

impl Unpin for UpdateTransferJobRequest

impl UnwindSafe for UpdateTransferJobRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]