class Google::Apis::StoragetransferV1::TransferOperation
A description of the execution of a transfer.
Attributes
A collection of counters that report the progress of a transfer operation. Corresponds to the JSON property `counters` @return [Google::Apis::StoragetransferV1::TransferCounters]
End time of this transfer execution. Corresponds to the JSON property `endTime` @return [String]
Summarizes errors encountered with sample error log entries. Corresponds to the JSON property `errorBreakdowns` @return [Array<Google::Apis::StoragetransferV1::ErrorSummary>]
A globally unique ID assigned by the system. Corresponds to the JSON property `name` @return [String]
The ID of the Google Developers Console project that owns the operation. Required. Corresponds to the JSON property `projectId` @return [String]
Start time of this transfer execution. Corresponds to the JSON property `startTime` @return [String]
Status of the transfer operation. Corresponds to the JSON property `status` @return [String]
The name of the transfer job that triggers this transfer operation. Corresponds to the JSON property `transferJobName` @return [String]
Configuration for running a transfer. Corresponds to the JSON property `transferSpec` @return [Google::Apis::StoragetransferV1::TransferSpec]
Public Class Methods
# File generated/google/apis/storagetransfer_v1/classes.rb, line 857 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/storagetransfer_v1/classes.rb, line 862 def update!(**args) @name = args[:name] if args.key?(:name) @project_id = args[:project_id] if args.key?(:project_id) @transfer_spec = args[:transfer_spec] if args.key?(:transfer_spec) @start_time = args[:start_time] if args.key?(:start_time) @end_time = args[:end_time] if args.key?(:end_time) @status = args[:status] if args.key?(:status) @counters = args[:counters] if args.key?(:counters) @error_breakdowns = args[:error_breakdowns] if args.key?(:error_breakdowns) @transfer_job_name = args[:transfer_job_name] if args.key?(:transfer_job_name) end