OssClientCopyBigObject Method |
Deprecated. Use ResumableCopyObject instead.
Copy the specified file with optional checkpoint support.
Namespace: Aliyun.OSSAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntax public CopyObjectResult CopyBigObject(
CopyObjectRequest copyObjectRequest,
Nullable<long> partSize = null,
string checkpointDir = null
)
Public Function CopyBigObject (
copyObjectRequest As CopyObjectRequest,
Optional partSize As Nullable(Of Long) = Nothing,
Optional checkpointDir As String = Nothing
) As CopyObjectResult
public:
virtual CopyObjectResult^ CopyBigObject(
CopyObjectRequest^ copyObjectRequest,
Nullable<long long> partSize = nullptr,
String^ checkpointDir = nullptr
) sealed
abstract CopyBigObject :
copyObjectRequest : CopyObjectRequest *
?partSize : Nullable<int64> *
?checkpointDir : string
(* Defaults:
let _partSize = defaultArg partSize null
let _checkpointDir = defaultArg checkpointDir null
*)
-> CopyObjectResult
override CopyBigObject :
copyObjectRequest : CopyObjectRequest *
?partSize : Nullable<int64> *
?checkpointDir : string
(* Defaults:
let _partSize = defaultArg partSize null
let _checkpointDir = defaultArg checkpointDir null
*)
-> CopyObjectResult
Parameters
- copyObjectRequest
- Type: Aliyun.OSSCopyObjectRequest
the request parameter - partSize (Optional)
- Type: SystemNullableInt64
part size. If the part size is not specified, or less than DefaultPartSize,
PartSizeLowerLimit will be used instead.
- checkpointDir (Optional)
- Type: SystemString
The checkpoint file folder. If it's not specified, checkpoint information is not stored and resumnable upload will not be supported in this case.
Return Value
Type:
CopyObjectResultCopyObjectResult instance.
Implements
IOssCopyBigObject(CopyObjectRequest, NullableInt64, String)See Also