Struct google_storagetransfer1::UpdateTransferJobRequest[][src]

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

Request passed to UpdateTransferJob.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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

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.

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.

Trait Implementations

impl Default for UpdateTransferJobRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for UpdateTransferJobRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UpdateTransferJobRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UpdateTransferJobRequest
[src]

Auto Trait Implementations