Long-running operation metadata related to a data transfer.
JSON representation |
---|
{ "counters": { object ( |
Fields | |
---|---|
counters |
Output only. The progress of the transfer operation. |
transferType |
Output only. The type of transfer occurring. |
Union field source . The source of transfer operation. source can be only one of the following: |
|
sourceParallelstore |
Output only. Parallelstore source. |
sourceGcsBucket |
Output only. Cloud Storage source. |
Union field destination . The destination of transfer operation. destination can be only one of the following: |
|
destinationGcsBucket |
Output only. Cloud Storage destination. |
destinationParallelstore |
Output only. Parallelstore destination. |
SourceParallelstore
Parallelstore as the source of a data transfer.
JSON representation |
---|
{ "path": string } |
Fields | |
---|---|
path |
Optional. Root directory path to the Paralellstore filesystem, starting with |
SourceGcsBucket
Cloud Storage as the source of a data transfer.
JSON representation |
---|
{ "uri": string } |
Fields | |
---|---|
uri |
Required. URI to a Cloud Storage bucket in the format: |
TransferCounters
A collection of counters that report the progress of a transfer operation.
JSON representation |
---|
{ "objectsFound": string, "bytesFound": string, "objectsSkipped": string, "bytesSkipped": string, "objectsCopied": string, "bytesCopied": string } |
Fields | |
---|---|
objectsFound |
Objects found in the data source that are scheduled to be transferred, excluding any that are filtered based on object conditions or skipped due to sync. |
bytesFound |
Bytes found in the data source that are scheduled to be transferred, excluding any that are filtered based on object conditions or skipped due to sync. |
objectsSkipped |
Objects in the data source that are not transferred because they already exist in the data destination. |
bytesSkipped |
Bytes in the data source that are not transferred because they already exist in the data destination. |
objectsCopied |
Objects that are copied to the data destination. |
bytesCopied |
Bytes that are copied to the data destination. |