Struct google_storagetransfer1::TransferOperation[][src]

pub struct TransferOperation {
    pub transfer_spec: Option<TransferSpec>,
    pub status: Option<String>,
    pub transfer_job_name: Option<String>,
    pub name: Option<String>,
    pub project_id: Option<String>,
    pub error_breakdowns: Option<Vec<ErrorSummary>>,
    pub start_time: Option<String>,
    pub end_time: Option<String>,
    pub counters: Option<TransferCounters>,
}

A description of the execution of a transfer.

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

Transfer specification. Required.

Status of the transfer operation.

The name of the transfer job that triggers this transfer operation.

A globally unique ID assigned by the system.

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

Summarizes errors encountered with sample error log entries.

Start time of this transfer execution.

End time of this transfer execution.

Information about the progress of the transfer operation.

Trait Implementations

impl Default for TransferOperation
[src]

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

impl Clone for TransferOperation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TransferOperation
[src]

Formats the value using the given formatter. Read more

impl Resource for TransferOperation
[src]

Auto Trait Implementations